/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins",  system-ui, -apple-system, "Segoe UI", Poppins, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color-1: #ffffff; /* Background color for the entire website, including individual sections */
  --background-color-2: #678B00;
  --default-color: #707070; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #678B00; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #9AC328; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --error: rgb(211, 36, 36);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #678B00; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #678B00; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #f0eded; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

p {
  font-size: 25px;
  font-weight: 300;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 35px;
  margin-right: 8px;
}

@media (max-width: 1199px) {
  .header .logo img {
    max-height: 25px;
    margin-right: 8px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #678B00;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}
.footer .cert {
  padding: 35px 0;
}

.footer .cert img {
  width: 180px;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: left;
  padding-top: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 65px;
  font-weight: 800;
  margin-bottom: 4rem;
}

.section-title p {
  font-family: "lora";
  font-size: 50px;
  font-weight: 300;
  font-style: italic;
}

@media (max-width: 768px){
  .section-title h2 {
    font-size: 45px;
  }
  
  .section-title p {
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Main Section
--------------------------------------------------------------*/
.main {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/main-bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* .main:before {
  content: "";
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  position: absolute;
  inset: 0;
  z-index: 2;
} */

.main .container {
  position: relative;
  z-index: 3;
}

.main h2 {
  margin-top: 30px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.main mark {
  background-color: var(--background-color-1);
  color: var(--heading-color);
}

.main p {
  color: var(--contrast-color);
  margin: 40px 0 10px 0;
  font-size: 40px;
  font-style:  normal;
  font-weight: 400;
  width: 100%;
}

.main .today-btn {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 25px;
  padding: 20px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-device-width: 768px) and (max-device-width: 820px) {
  .main p {
    max-width: 50%;
  }
}

@media (max-width: 1199px) {
  .main {
    width: 100%;
    min-height: 60vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    background: url(../img/main-bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .main h2 {
    font-size: 20px;
    line-height: 5px;
  }

  .main p {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .main .today-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# Applaud Section
--------------------------------------------------------------*/
.applaud {
  background: var(--background-color-2);
}

.applaud .content h4, .applaud .content h2, .applaud .content p {
  color: var(--contrast-color);
}
.applaud .content h4 {
  font-size: 25px;
  font-weight: 600;
  margin-top: 40px;
}
.applaud .content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
}
.applaud .content p {
  font-size: 25px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Play Section
--------------------------------------------------------------*/
.play {
  position: relative;
  background-color: var(--background-color-2);
}
.play::before {
  content: "";
  background: url("../img/grid.png") repeat;
  position: absolute;
  inset: 0;
  opacity: 40%;
}
.play .section-title h2 {
  color: var(--contrast-color);
}
.play .content {
  display: flex;
  color: var(--contrast-color);
  z-index: 0;
}
.play .content .count{
  font-family: 'lora';
  font-style: italic;
  font-size: 100px;
  font-weight: 300;
}
.play .content h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--contrast-color);
}
.play .content p {
  font-family: 'lora';
  font-style: italic;
  font-size: 25px;
}

@media (max-width:460px){
  .play .content:first-child{
    padding: 0 13px;
  }
  .play .content .count{
    font-family: 'lora';
    font-style: italic;
    font-size: 100px;
    font-weight: 300;
  }
  .play .content h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--contrast-color);
  }
  .play .content p {
    font-family: 'lora';
    font-style: italic;
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
  .features .features-item h3 {
    font-size: 30px;
  }
}

.features .features-item h3 {
  color: var(--default-color);
  font-weight: 600;
  font-size: 35px;
  padding: 20px 0px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.1);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Evolution Section
--------------------------------------------------------------*/
.evolution .evolution-carousel,
.evolution .evolution-slider {
  overflow: hidden;
}

.evolution .evolution-item {
  padding: 50px;
  border: 1px solid var(--accent-color);
}

.evolution .evolution-item h3 {
  color: var(--default-color);
  font-size: 40px;
  font-weight: bold;
  margin: 0 0 30px 0;
}

.evolution .evolution-item p {
  font-family: 'lora';
  font-style: italic;
  font-size: 25px;
}

.evolution .swiper-wrapper {
  height: auto;
}

.evolution .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.evolution .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.evolution .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .evolution .evolution-item p {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .evolution .evolution-item {
    padding: 35px;
  }
  
  .evolution .evolution-item h3 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# comparison Section
--------------------------------------------------------------*/
.comparison {
  position: relative;
  background-color: #dedede;
  padding: 60px 0 120px 0;
}
.comparison::before {
  content: "";
  background: url("../img/grid.png") repeat;
  position: absolute;
  inset: 0;
  opacity: 40%;
  /* z-index: 2; */
}

.comparison .section-title {
  margin-bottom: 40px;
}
.comparison .box2 .comparison-item {
  background-color: var(--accent-color);
}
.comparison .box3 .comparison-item {
  background-color: var(--default-color);
}
.comparison .comparison-item {
  padding: 60px 40px;
  height: 100%;
  position: relative;
}

.comparison h2 {
  font-weight: 600;
  font-size: 30px;
  color: var(--default-color);
}

.comparison .box2 h2, .comparison .box3 h2 {
  color: var(--contrast-color);
}

.comparison h3, .comparison .btn {
  font-weight: 400;
  font-size: 22px;
  color: var(--default-color);
}
.comparison .box2 h3, .comparison .box3 h3 {
  color: var(--contrast-color);
}

.comparison ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.comparison ul li {
  padding-top: 20px;
  min-height: 150px;
  border-bottom: 2px solid var(--default-color);
}
.comparison .box3 ul li {
  border-bottom: 2px solid var(--contrast-color);
}

.comparison ul li:last-child {
  border: none;
}

.comparison .btn {
  border: 2px solid var(--contrast-color);
  background-color: transparent;
  border-radius: 0;
  color: var(--contrast-color);
  padding: 5px 0px;
  width: 100%;
  overflow: hidden;
}

.comparison .dropdown {
  width: 100%;
}

.comparison .dropdown ul li {
  min-height: auto;
  padding: 0;
}

@media (max-width: 768px) {
  .comparison .comparison-item {
    padding: 30px 25px;
    height: 100%;
    position: relative;
  }
  .comparison h2 {
    font-weight: 600;
    font-size: 25px;
    color: var(--default-color);
  }
  .comparison h3 {
    font-weight: 400;
    font-size: 25px;
    color: var(--default-color);
  }
  .comparison ul {
    padding: 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-align: left;
    line-height: 20px;
  }
  
  .comparison ul li {
    padding-top: 10px;
    min-height: 100px;
    display: flex;
    border-bottom: 2px solid var(--default-color);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 22px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 {
  color: var(--default-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--default-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 20px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--default-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--default-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 25px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .info-item .address {
  display: inline-block;
  padding:  10px 0;
}

.contact .info-item .address h3 {
  font-size: 18px;
  font-weight: 400;
}

.text-secondary {
  color: var(--accent-color) !important;
}

.btn-success {
  background-color: var(--background-color-2);
  color: var(--contrast-color);
  border: 0;
  border-radius: 0;
}
.btn-success:hover {
  background-color: var(--accent-color);
}

#message {
  padding-bottom: 20px;
}

#message span {
  width: 100%;
  display: block;
  text-align: center;
  padding: 5px;
}
.success {
  border: 1px solid var(--background-color-2);
  color: var(--background-color-2);
}

.error {
  border: 1px solid var(--error);
  color: var(--error);
}

.venn-diagram-container {
  display: flex;
  justify-content: center;
  height: 90vh;
  margin: 0;
}

.venn-diagram {
  position: relative;
  width: 50%;
  height: 50%;
}

.circle {
  position: absolute;
  width: 80%;
  overflow: hidden;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle1 {
  top: 10%;
  left: -20%;
  animation: float1 6s ease-in-out infinite;
}

.circle2 {
  top: -20%;
  left: 45%;
  animation: float2 4s ease-in-out infinite;
}

.circle3 {
  top: 80%;
  left: 30%;
  animation: float3 7s ease-in-out infinite;
}

/* Floating animations with different oscillations */
@keyframes float1 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes float2 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0px); }
}

@keyframes float3 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 1199px) {
  .venn-diagram-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
    margin: 0;
  }
  .venn-diagram {
      width: 65%;
  }
  .circle {
    width: 85%;
  }
  .circle1 {
    top: 0%;
    left: -30%;
  }
  .circle2 {
    top: -20%;
    left: 45%;
  }
  .circle3 {
    top: 70%;
    left: 10%;
  }
}
