@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: creativeminds
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: #353535;
  --clr-gray-2: #a3a4b3;
  --clr-gray-600: #474967;

  --radius-50: 50px;
  --radius-24: 24px;
  --radius-20: 20px;
  --radius-16: 16px;
  --radius-8: 8px;
  --radius-30: 30px;
  --radius-100: 100px;

  --shadow-1: 0 30px 50px #0000000a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.4;
  font-weight: 400;
  overflow-x: hidden;
  color: var(--clr-gray);
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  outline: none;
  cursor: pointer;
  border: none;
  color: var(--clr-gray);
}

input,
textarea,
select {
  outline: none;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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;
  overflow: hidden;
}

section .content {
  position: relative;
  z-index: 2;
}

/* ---------- global styles ------------ */
.container {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

.hero-heading {
  font-size: 51px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--clr-heading-1);
  max-width: 1100px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
  text-align: center;

  & span {
    position: relative;

    & img {
      position: absolute;
      top: 100%;
      right: -2rem;
      z-index: -1;
    }
  }
}

.section-heading {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--clr-heading-2);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;

  & span {
    position: relative;

    & img {
      position: absolute;
      top: 80%;
      right: 0rem;
      z-index: -1;
    }
  }
}

.section-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--clr-gray);
}

.btn,
input[type='submit'] {
  min-width: 140px;
  min-height: 50px;
  padding: 16px 38px;
  border-radius: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  text-wrap: nowrap;
  color: #ffffff;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Plus Jakarta Sans' !important;
}

.btn::after,
.cm-popup-btn::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0;
  opacity: 0;
  margin-left: 0;
  transition: all 0.3s ease;
}

.btn:hover,
.cm-popup-btn:hover {
  padding-right: 30px;
}

.btn:hover::after,
.cm-popup-btn:hover::after {
  font-size: 18px;
  opacity: 1;
  margin-left: 12px;
  transform: translateX(5px);
}

.cm-popup-btn:hover::after {
  font-size: 11px;
}

.btn-red {
  background-color: var(--primary-clr);
  box-shadow: 0 4px 0 #972611;
}

.btn-green,
input[type='submit'] {
  background-color: var(--secondary-clr) !important;
  box-shadow: 0 4px 0 #33711e !important;
}

.section-padding {
  padding: 80px 0;
}

.scroll-btn {
  position: fixed;
  bottom: 30px;
  right: 10px;
  width: 30px;
  height: 50px;
  background-color: var(--secondary-clr);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;

  opacity: 0;
  visibility: hidden;
}

.scroll-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-btn:hover {
  transform: translateY(-5px);
  background-color: var(--primary-clr);
}

/* helper classes */
.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
}

.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;
}
.mt-1 {
  margin-top: 1rem;
}
.px-4 {
  padding-left: 40px;
  padding-right: 40px;
}
.pt-home {
  padding-top: 230px;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

@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) {
  .pt-home {
    padding-top: 200px;
  }
  .btn {
    font-size: 18px;
    padding: 0 20px;
  }

  .hero-heading {
    font-size: 40px;
    line-height: 50px;
  }

  .section-heading {
    font-size: 34px;
    line-height: 40px;
  }
  .section-padding {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 639px) {
  .btn {
    min-width: auto;
    width: 100%;
  }
}
