@charset "UTF-8";

/*
Theme Name: CreativeMinds
Theme URI: https://creativeminds.evolisyss.com/
Author: Evolysiss
Author URI: 
Description: CreativeMinds Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: firestarter
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/


@charset "UTF-8";

/*
Theme Name: CreativeMinds
Theme URI: https://creativeminds.evolisyss.com
Author: Evolisyss Team
Author URI: https://creativeminds.evolisyss.com
Description: CreativeMinds Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: firestarter
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid; */
}

:root {
  --primary-clr: #e63312;
  --secondary-clr: #52ae32;

  --clr-heading-1: #4a2304;
  --clr-heading-2: #262626;

  --clr-gray: #968da6;
  --clr-gray-600: #474967;

  --radius-50: 50px;
  --radius-24: 24px;
  --radius-16: 16px;
  --radius-8: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.4;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000000;
}

button {
  outline: none;
  cursor: pointer;
  border: none;
}

input,
textarea,
select {
  outline: none;
  border: none;
}

ul,
li {
  list-style: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

img.cover,
video.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section {
  position: relative;
}

section .content {
  position: relative;
  z-index: 2;
}

/* ---------- global styles ------------ */
.container {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

.hero-heading {
  position: relative;
  max-width: 780px;
  margin: 0 auto 30px;

  & span {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    text-align: center;
    color: var(--clr-heading-1);
    position: relative;
    z-index: 2;
    display: inline-block;
  }

  & img {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.section-heading {
  margin-bottom: 15px;
  position: relative;
  left: 50%;
  display: inline-block;
  transform: translateX(-50%);

  & span {
    position: relative;
    z-index: 2;
    font-size: 48px;
    line-height: 1.2;
    /* text-align: center; */
    display: inline-block;
    color: var(--clr-heading-2);
  }

  & img {
    position: absolute;
    bottom: -20px;
    right: -6%;
    z-index: 0;
  }
}

.section-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--clr-gray-600);
}

.btn {
  min-width: 140px;
  min-height: 50px;
  padding: 16px 20px;
  border-radius: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s linear;
}

.btn-red {
  background-color: var(--primary-clr);
  box-shadow: 0 4px 0 #972611;
}

.btn-green {
  background-color: var(--secondary-clr);
  box-shadow: 0 4px 0 #33711e;
}

.btn:hover {
  background-color: var(--secondary-clr);
}

.section-padding {
  padding: 80px 0;
}

/* helper classes */
.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.grid-cols-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* utility classes */
.secondary-clr {
  color: var(--secondary-clr);
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.px-4 {
  padding-left: 40px;
  padding-right: 40px;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

@media only screen and (max-width: 1279px) {
}

@media only screen and (max-width: 1023px) {
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
  .btn {
    font-size: 18px;
  }

  .hero-heading span,
  .section-heading span {
    font-size: 34px;
    line-height: 50px;
  }
  .section-padding {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 639px) {
  .btn {
    min-width: 90px;
  }
}
