/*

Tooplate 2132 Clean Work

https://www.tooplate.com/view/2132-clean-work

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #7cb8eb;
  --secondary-color: #4f83d1;
  --primary-bg-color: #ffffff;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #4f83d1;
  --custom-btn-bg-hover-color: #7cb8eb;
  --dark-color: #000000;
  --p-color: #959595;
  --grey-color: #6f6f6f;
  --border-color: #e9eaeb;
  --link-hover-color: #4f83d1;
  --consulting-form-bg-color: #ffffff;
  --header-link-color: #636363;
  --footer-link-color: #ffd600;
  --section-color-1: #ff8a00;
  --section-color-2: #d5b717;
  --section-color-3: #a400b2;
  --section-color-4: #00ab59;
  --section-color-5: #b80079;
  --section-color-6: #030088;
  --section-color-7: #b40000;
  --section-color-8: #629e00;
  --section-color-9: #393939;
  --section-color-10: #fb6900;
  --section-color-11: #0012b8;

  --title-font-family: "Gilroy", sans-serif;
  --body-font-family: "Gilroy", sans-serif;
  --about-font-family: "Merriweather", sans-serif;
  --helvetica-font-family: "Helvetica Compressed", sans-serif;

  --h1-font-size: 50px;
  --h2-font-size: 40px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 20px;
  --h6-font-size: 18px;
  --p-font-size: 20px;
  --p-font-size-m: 16px;
  --btn-font-size: 12px;
  --header-font-size: 16px;
  --header-font-size-l: 18px;
  --header-font-size-m: 14px;
  --header-font-size-s: 12px;
  --footer-font-size: 14px;
  --footer-font-size-m: 12px;

  --xl-font-size: 160px;
  --xl-font-size-m: 58px;
  --l-font-size: 120px;
  --l-font-size-m: 42px;

  --border-radius-large: 100px;
  --border-radius-medium: 16px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

html {
  overflow-x: hidden !important;
}

body {
  background-color: var(--primary-bg-color);
  color: var(--dark-color);
  font-family: var(--body-font-family);
  overflow-x: hidden !important;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

/* h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-medium);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--section-color-9);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.page-404-title {
  color: var(--secondary-color);
  font-size: 10rem;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.testimonial-section .section-overlay {
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: #e5e50f;
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}

@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}

@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}

@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: "";
}

.link--herse::before {
  display: none;
}

.link__graphic {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  fill: none;
  stroke: var(--dark-color);
  stroke-width: 1px;
}

.link__graphic--stroke path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.link:hover .link__graphic--stroke path {
  stroke-dashoffset: 0;
}

.link__graphic--arc {
  top: 73%;
  left: -23%;
}

.link__graphic--arc path {
  transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.link:hover .link__graphic--arc path {
  transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
  transition-duration: 0.3s;
}

.button {
  display: inline-block;
  position: relative;
}

.button::before,
.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button--atlas > span {
  display: inline-block;
}

.button--atlas:hover > span {
  opacity: 0;
}

.marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  --offset: 1rem;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 1s linear infinite;
  animation-play-state: paused;
  opacity: 0;
}

.button--atlas:hover .marquee__inner {
  animation-play-state: running;
  opacity: 1;
  transition-duration: 0.4s;
}

.marquee span {
  text-align: center;
  white-space: nowrap;
  font-style: italic;
  padding: 15px;
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }

  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}

.button--pan {
  overflow: hidden;
}

.button--pan span {
  position: relative;
}

.button--pan::before {
  content: "";
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.button--pan:hover::before {
  background: transparent;
  transform: translate3d(0, -100%, 0);
}

/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  position: relative;
}

.custom-block-wrap .custom-block {
  position: absolute;
  bottom: 0;
  right: 0;
}

.custom-block {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-small);
  padding: 35px;
}

.custom-block .custom-icon,
.custom-block a {
  color: var(--white-color);
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--white-color);
}

.bi-star-fill {
  color: var(--custom-btn-bg-color);
}

/*---------------------------------------
  AVATAR IMAGE - TESTIMONIAL               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  transition: all 0.3s;
  padding: 15px 25px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  /* margin-top: 8px; */
  margin-right: 0;
  padding: 12px 25px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--dark-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: transparent;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
  background: #ffffff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(16px);
  /* padding-top: 20px;
  padding-bottom: 20px; */
}

.navbar-brand {
  min-width: 154px;
  margin-right: 0;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-light);
}

.logo {
  /* background-color: var(--white-color); */
  /* border-radius: var(--border-radius-large); */
  /* width: 80px; */
  height: 80px;
  padding: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin: 20px 5px;
  padding: 12px 10px;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  font-size: var(--header-font-size-l);
  font-family: "Oswald", sans-serif;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
  color: var(--grey-color);
}

.navbar-expand-lg .navbar-nav .nav-link .bi {
  display: none;
}

.navbar .container {
  max-width: none;
  padding: 0 120px;
}

/* .navbar-nav .nav-item {
  display: flex;
  align-items: center;
} */

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--grey-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--dark-color);
}

.point-icon {
  display: block;
  margin-top: 2px;
  font-size: 24px;
  color: var(--dark-color);
  position: absolute;
  bottom: -1;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-nav .nav-item a.btn {
  padding: 0;
}

.navbar-nav .nav-item a.btn:focus {
  box-shadow: none;
}

.navbar-nav .nav-item a.btn img {
  width: 172px;
  height: 52px;
  object-fit: contain;
}

.nav-item.dropdown.download:hover .dropdown-menu {
  margin-top: 10px;
}

.dropdown-menu {
  /* background: var(--white-color); */
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 5px 15px;
  transition: all 0.3s;
  pointer-events: none;
}

.dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  position: absolute;
  top: -15px;
  left: 10px;
}

.dropdown-item {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--header-font-size);
  font-weight: var(--font-weight-bold);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-toggle::after {
  content: "\f282";
  /* display: inline-block; */
  display: none;
  font-family: bootstrap-icons !important;
  font-size: var(--footer-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }

  .about-title-values {
    margin-top: 10vh;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--primary-color);
  position: relative;
  z-index: 22;
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--footer-font-size);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}

.site-header-icon {
  display: inline-block;
}

/*---------------------------------------
  HOME  HERO        
-----------------------------------------*/
.home .hero-section,
.services .hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 0px;
  min-height: 680px;
  /* background-image: url('../images/backgrounds/Home Page-hero-bg@1x.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
}

.home .hero-section .section-overlay,
.services .hero-section .section-overlay,
.about .hero-section .section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.home .hero-section .section-overlay::after,
.about .hero-section .section-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("../images/backgrounds/Home Page-hero-bg@1x.png"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home .hero-section .section-overlay div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 54%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .hero-section .section-overlay div h1 {
  letter-spacing: 0.3em;
}

.home .hero-section .section-overlay div h1,
.services .hero-section .section-overlay div h1,
.about .hero-section .section-overlay div h1 {
  font-size: var(--xl-font-size);
  font-weight: normal;
  opacity: 0.16;
  color: var(--primary-bg-color);
  -webkit-text-stroke: 1px var(--white-color);
  text-align: center;
}

.home .hero-section .container {
  position: relative;
  z-index: 2;
}

/* @media (min-width: 1400px) {
  .home .hero-section .container {
      max-width: 1560px;
  }
} */

.home .hero-section .slider-items .slick-slide {
  margin: 10px;
}

.home .hero-section .slider-items .slick-dots li {
  width: 24px;
  height: 4px;
}

.home .hero-section .slider-items .slick-dots li button {
  width: 24px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 1px;
  background-color: #353535;
}

.home .hero-section .slider-items .slick-dots li.slick-active button {
  background-color: #d9d9d9;
}

.home .hero-section .slider-items .slick-dots li button::before {
  display: none;
}

.home .hero-section .hero-image {
  position: relative;
  display: block;
  width: 260px;
  margin: 10px auto;
}

.home .hero-section .hero-image img {
  width: 100%;
  border-radius: 18px;
  filter: drop-shadow(0px 5px 11px rgba(0, 0, 0, 0.6));
}

.home .hero-section .hero-image video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  display: none;
}

.home .hero-section svg {
  position: absolute;
  bottom: -50px;
  right: 0;
  left: 0;
  pointer-events: none;
}

.home .hero-section .container h2 {
  font-weight: normal;
  color: var(--white-color);
}

@media screen and (min-width: 991px) {
  .home {
    max-width: 90%;
    margin: 160px auto 20px auto;
    background-color: rgb(249, 247, 245);
    border-radius: 40px;
  }
}

.navbar {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
/*---------------------------------------
  HOME WINDOW SHOP        
-----------------------------------------*/
.window-section {
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 5vh;
  padding-bottom: 5vh;
  background-size: cover;
  border-top: 1px solid #dee2e6;
  align-items: center;
  display: flex;
  margin: auto;
  max-width: 80%;
  justify-content: center;
}

.window-section-video {
  padding: 60px 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 1px solid #dee2e6;
  align-items: center;
  display: flex;
  max-width: 80%;
  margin: auto;
  justify-content: center;
}

.card-text {
  font-size: 14px;
  font-weight: 600;
  color: #959595;
}

.work-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid #dee2e6;
  align-items: center;
  display: flex;
  max-width: 80%;
  padding: 30px 70px;
  margin: auto;
  margin-bottom: 36px;
  justify-content: space-between;
}

.first-window-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 90px 0px 120px 0px;
}
.modal-header-custom {
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.custom-video {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.custom-video-home {
  width: 100%;
  max-height: 675px;
  object-fit: cover;
}

@media (max-width: 577px) {
  .window-section {
    margin-bottom: 25px;
    padding: 0px !important;
    max-width: 100%;
  }

  .window-section-video {
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 100%;
  }

  .what-we-do-title {
    font-size: 54px !important;
  }

  .portfolio-title {
    font-size: 54px;
  }

  .impact-title {
    font-size: 54px;
  }

  .home-paragraph {
    font-size: 30px !important;
  }

  .custom-card-paragraph {
    font-size: 20px !important;
  }

  .events {
    margin-top: 50px;
  }

  .events h1 {
    font-size: 40px;
    font-weight: 800;
  }
}

@media (min-width: 577px) and (max-width: 767px) {
  .window-section {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .window-section-video {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.home .section .img-fluid {
  width: auto;
  object-fit: contain;
}

/*---------------------------------------
  HOME CUT DEAL
-----------------------------------------*/
.home .cut-section {
  padding-top: 120px;
  /* background-image: url("../images/backgrounds/Home Page-cut-deals.png"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*---------------------------------------
  HOME EARN BIG
-----------------------------------------*/
.home .earn-section {
  padding-top: 120px;
  /* background-image: url("../images/backgrounds/Home Page-earn-big.png"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*---------------------------------------
  HOME PLAY GAMES
-----------------------------------------*/
.home .play-section {
  padding-top: 120px;
  /* background-image: url("../images/backgrounds/Home Page-play-games.png"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*---------------------------------------
  HOME DREAM
-----------------------------------------*/
.home .dream-section .img-fluid {
  /* width: 95%; */
  height: calc(100vh - 340px);
}

.home .dream-section .fp-overflow,
.services .footer-section .fp-overflow {
  height: 100%;
}

.home .dream-section .section-wrapper,
.services .footer-section .section-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/*---------------------------------------
  SERVIES  HERO        
-----------------------------------------*/
.services .hero-section {
  /* background-image: url("../images/backgrounds/Sports Tech, Apps _ Solutions-hero-bg@1x.png"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*---------------------------------------
  SERVICES HERO SECTION OVERLAY
-----------------------------------------*/
.services .hero-section .section-overlay div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (max-width: 1280px) {
  .services .container h1 {
    font-size: var(--h2-font-size);
  }

  .services .container .description {
    font-size: var(--p-font-size-m);
  }
}

/*---------------------------------------
  SERVICES LEFT IMAGE
-----------------------------------------*/
.services .right-img-section {
  padding-top: 120px;
  /* background-image: url("../images/backgrounds/Sports Tech, Apps _ Solutions-right-bg.png"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*---------------------------------------
  SERVICES RIGHT IMAGE
-----------------------------------------*/
.services .left-img-section,
.services .footer-section {
  padding-top: 120px;
  /* background-image: url("../images/backgrounds/Sports Tech, Apps _ Solutions-left-bg.png"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*---------------------------------------
  SERVICES FOOTER SECTION
-----------------------------------------*/
.services .footer-section .merchandize-container {
  /* height: 100%; */
  margin-bottom: 0;
}

.services .footer-section .merchandize-container .img-fluid {
  height: calc(100vh - 340px);
  object-fit: contain;
}

@media (max-width: 991px) {
  .services .footer-section .merchandize-container .img-fluid {
    width: 75%;
    height: auto;
  }
}

/*---------------------------------------
  ABOUT HERO SECTION
-----------------------------------------*/
.about .hero-section .section-overlay div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .hero-section .container {
  padding-top: 196px;
  padding-bottom: 80px;
}

.about .hero-section .container p {
  width: 80%;
  font-size: 64px;
  line-height: 90px;
}

.about .vision-section {
  padding-top: 80px;
}

.about .hero-section .description {
  font-family: var(--about-font-family);
}

.about .vision-section .section-wrapper > .container {
  padding-bottom: 80px;
}

@media (max-width: 1280px) {
  .home .hero-section .section-overlay div h1,
  .services .hero-section .section-overlay div h1,
  .about .hero-section .section-overlay div h1 {
    font-size: var(--l-font-size);
  }

  .about .hero-section .container p {
    font-size: 46px;
    line-height: 58px;
  }
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control,
.input-group-file {
  background-color: var(--consulting-form-bg-color);
  color: var(--dark-color);
  border: 1px solid #000; /* Set the border color to black */
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form .form-label {
  text-align: left !important;
  color: #959595;
  width: 100%;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.resize-none {
  resize: none;
}
.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency + .form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-medium);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type="radio"] {
  background-color: var(--section-bg-color);
  border-radius: 0.25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.3s;
}

.form-check-radio .form-check-input:checked[type="radio"] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type="radio"] + .form-check-label,
.form-check-radio .form-check-input:hover + .form-check-label,
.form-check-radio .form-check-input:checked + .form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: 0.25rem;
  padding: 13px 0.75rem;
}

.input-group-file input[type="file"] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.btn-custom {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  padding: 30px;
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
  letter-spacing: 0.1em;
  width: 156px;

  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #393939;
}

.btn-custom:hover,
.btn-custom:focus {
  /* background: var(--custom-btn-bg-hover-color); */
  /* border-color: transparent; */
  color: var(--p-color);
  box-shadow: none;
}

.consulting-form {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.consulting-form-header .form-icon {
  font-size: var(--h2-font-size);
  color: var(--white-color);
}

@media screen and (max-width: 1280px) {
  .consulting-form {
    padding: 10px 30px;
  }
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--white-color);
  padding-bottom: 20px;
  border-top: 1px solid #e9e9e9;
}

.site-footer-sp {
  width: 100%;
  height: 2px;
  margin-bottom: 30px;
  background: #c1c1c1;
}

.site-footer-title {
  color: var(--white-color);
  font-family: var(--body-font-family);
  font-style: italic;
  font-weight: 800;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer-link {
  color: var(--footer-link-color);
}

.site-footer p {
  font-size: var(--footer-font-size);
}

.copyright-text {
  color: var(--section-bg-color);
  font-size: var(--footer-font-size);
  margin-right: 30px;
}

.site-footer .custom-btn {
  font-size: var(--footer-font-size);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}

/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  margin-bottom: 5px;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  width: 36px;
  height: 36px;
  margin-right: 5px;
}

.social-icon-link:hover img {
  filter: brightness(0.8);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .intro-section {
    padding-top: 0;
  }
}

@media screen and (max-width: 1280px) {
  .navbar .container {
    padding: 0 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: var(--header-font-size-m);
    padding: 12px 5px;
  }

  .navbar-nav .nav-item a.btn img {
    width: 140px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .team-section {
    padding-bottom: 80px;
  }

  .navbar {
    /* background-color: var(--white-color); */
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar .container {
    padding: 0 20px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--primary-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
    text-align: center;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 5px;
    font-size: var(--header-font-size-l);
  }

  .navbar-expand-lg .navbar-nav .nav-link .bi {
    display: contents;
    font-size: var(--header-font-size-s);
  }

  .navbar-expand-lg .navbar-nav .nav-link.custom-btn {
    background-color: var(--custom-btn-bg-color);
    color: var(--dark-color);
    margin-left: 0;
  }

  /* .navbar-collapse {
    height: 100%;
  } */

  .navbar-nav .dropdown-toggle .bi::before {
    content: "\f282";
  }

  .navbar-nav .dropdown-toggle.show .bi::before {
    content: "\f286";
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 0;
    opacity: 1;
    pointer-events: auto;
    /* max-width: 100px; */
    margin: 0 10px;
    padding: 0 10px 5px 10px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    text-align: center;
    display: none;
  }

  .navbar-nav .dropdown-menu::before {
    display: none;
  }

  .navbar-nav .dropdown-menu.show {
    display: block;
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    padding-bottom: 5px;
    font-size: var(--header-font-size-s);
    font-weight: var(--font-weight-normal);
  }

  .custom-block-wrap .custom-block {
    right: 12px;
  }

  /* .site-footer {
    padding-top: 50px;
  } */

  .site-footer .col-6 .featured-block p {
    font-size: var(--footer-font-size-m);
  }

  .site-footer .col-12 {
    margin-bottom: 40px;
  }

  .site-footer .social-m {
    text-align: center;
    margin-top: 40px;
  }

  .site-footer .social-m p {
    justify-content: center;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 50px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .home .hero-section .section-overlay div {
    height: 40%;
  }

  .home .hero-section .section-overlay div h1 {
    font-size: var(--xl-font-size-m);
  }

  /* .home .hero-section .hero-image img {
    height: 360px;
  }

  .home .hero-section .hero-image video {
    height: 100%;
  } */

  .home .section .container .row.justify-content-lg-center .col-12,
  .services .section .container .row.justify-content-lg-center .col-12 {
    text-align: center !important;
  }

  .home .section .container .row .col-12 h1,
  .services .section .container .row .col-12 h1,
  .about .section .container.vision h2 {
    font-size: var(--h3-font-size);
  }

  .home .section .container .row .col-12 p,
  .services .section .container .row .col-12 p,
  .about .section .container.vision p {
    font-size: var(--p-font-size-m);
  }

  .home .cut-section .row,
  .home .play-section .row,
  .services .right-img-section .row,
  .services .footer-section .merchandize-container .row {
    flex-direction: column;
  }

  .home .cut-section .row .col-12:nth-of-type(1),
  .home .play-section .row .col-12:nth-of-type(1),
  .services .right-img-section .row .col-12:nth-of-type(1) {
    order: 2;
  }

  /*---------------------------------------
  SERVIES  HERO        
  -----------------------------------------*/
  .services .hero-section {
    padding-top: 0px;
    /* background-image: url("../images/backgrounds/service-banner-bg-m.png"); */
  }

  .services .hero-section .section-overlay div h1 {
    font-size: var(--xl-font-size-m);
  }

  .services .hero-section .container {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .services .hero-section .container div h1 {
    font-size: var(--h3-font-size);
    text-align: center;
  }

  .services .hero-section .container div p {
    font-size: var(--p-font-size-m);
    text-align: center;
  }

  .services .hero-section .section-overlay {
    height: 20%;
  }

  .services .right-img-section,
  .services .left-img-section,
  .services .footer-section {
    /* background-image: url("../images/backgrounds/service-section-bg-m.png"); */
  }

  /*---------------------------------------
  ABOUT  HERO        
  -----------------------------------------*/
  .about .hero-section .section-overlay div {
    height: 240px;
  }
  .about .hero-section .section-overlay div h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 767px) {
  .home .hero-section .section-overlay::after {
    /* background-image: url("../images/backgrounds/Home Page-hero-bg-m.png"); */
  }

  .home .window-section,
  .home .cut-section,
  .home .earn-section,
  .home .play-section {
    padding: 50px 0;
    /* background-image: url("../images/backgrounds/earn-big-m.png"); */
  }

  .home .section .container .img-fluid {
    width: 100%;
  }

  .home .window-section .container .img-fluid,
  .home .cut-section .container .img-fluid,
  .home .earn-section .container .img-fluid,
  .home .play-section .container .img-fluid {
    height: 500px;
    margin-bottom: 60px;
    object-fit: cover;
    object-position: top;
  }

  .home .hero-section .slider-items .slick-slide {
    margin: 10px 40px;
  }

  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero-section svg {
    bottom: 0;
  }

  .home .dream-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-top: 1px solid #e9e9e9;
    padding-top: 10px;
  }

  .services .hero-section .section-overlay div h1 {
    font-size: var(--l-font-size-m);
  }

  .about .hero-section .section-overlay::after {
    /* background-image: url("../images/backgrounds/about-bg-m.png"); */
  }

  .about .hero-section .container {
    padding-top: 150px;
    padding-bottom: 40px;
  }

  .about .hero-section .container p {
    font-size: 26px;
    line-height: 39px;
  }

  .about .vision-section {
    position: relative;
    z-index: 2;
    padding-top: 40px;
  }

  .about .vision-section .section-wrapper > .container {
    padding-bottom: 40px;
  }

  .team-info::before {
    border-top: 0;
    border-bottom: 20px solid var(--white-color);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    top: -20px;
    bottom: auto;
    right: 0;
    left: 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

/* Versio Two */

.custom-box-container {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.custom-box {
  display: flex;
  padding: 4px;
  align-items: flex-start;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid #c1c1c1;
  cursor: pointer;
}

.custom-box-nav {
  display: flex;
  padding: 2px;
  align-items: flex-start;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid #c1c1c1;
  cursor: pointer;
}

.social-icon {
  width: 16px;
  height: 16px;
}

.contact-box {
  display: flex;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #393939;
  color: #fff;
  font-feature-settings: "clig" off, "liga" off;
  font-family: var(--body-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 14px;
  cursor: pointer;
  height: 35px;
  border-radius: 2px;
}

.contact-box-mt {
  margin-top: 10%;
}
.letter-icon {
  width: 24px;
  height: 24px;
}

.centered-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.custom-navbar {
  height: 100vh;
  width: 70%;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -70%;
  transition: right 0.3s ease;
  z-index: 1000;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
  .custom-navbar {
    display: none; /* Hide on large screens */
  }
}

.custom-navbar.show {
  right: 0;
}

.navbar-nav-full {
  margin-top: 40px;
}

.custom-navbar ul {
  padding: 20px;
}

.custom-navbar a {
  color: white;
  padding: 10px;
  display: block;
  text-align: center;
}

.custom-box-container-footer {
  width: 70%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.custom-box img {
  width: 30px;
}

.additional-content {
  padding-top: 100px;
  text-align: center;
}

.nav-text-1 {
  color: #0075ff;
  font-family: var(--body-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  /* line-height: normal; */
  letter-spacing: 0.64px;
  text-transform: uppercase;
}

.nav-text-2 {
  color: #393939;
  font-family: var(--body-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.16px;
}
.nav-text-3 {
  color: #c1c1c1;
  font-family: var(--body-font-family);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.home-text {
  color: var(--section-color-9) !important;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.custom-button {
  display: flex;
  padding: 8px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-feature-settings: "clig" off, "liga" off;
  font-family: var(--body-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  border-radius: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-button-work {
  display: flex;
  padding: 8px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-feature-settings: "clig" off, "liga" off;
  font-family: var(--body-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-button-work-1 {
  background: var(--section-color-10);
}

.custom-button-1 {
  background: var(--section-color-1);
}

.custom-button-2 {
  background: var(--section-color-2);
}

.custom-button-3 {
  background: var(--section-color-3);
}

.custom-button-4 {
  background: var(--section-color-4);
}
.custom-button-5 {
  background: var(--section-color-5);
}
.custom-button-6 {
  background: var(--section-color-6);
}

.custom-button-7 {
  background: var(--section-color-7);
}
.custom-button-8 {
  background: var(--section-color-8);
}

.custom-button-9 {
  background: var(--section-color-9);
}

.custom-button-10 {
  background: var(--section-color-11);
}

.section.window-section {
  overflow: hidden; /* Hide overflow to prevent horizontal scroll */
}

/* Default styles for both sections */
.custom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

/* Media query for small screens */
@media (max-width: 767px) {
  .custom-container {
    margin-left: 20px;
    margin-right: 20px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
  }

  /* Center the button within the small screen container */
  .custom-button {
    margin: 0 auto;
  }
}
.required {
  color: red;
  margin-left: 3px; /* Adjust spacing between label and red star */
}

.work-title-1 {
  color: #393939;
  text-transform: uppercase;
  font-weight: 800 !important;
  font-family: var(--helvetica-font-family);
  font-size: 32px;
}

.work-location-title {
  color: #393939;
  font-weight: 700 !important;
  font-size: 20px;
  padding-top: 8px;
}

.work-location-body {
  color: #959595;
  font-weight: 600 !important;
  font-size: 20px;
}

.section-title-1 {
  color: var(--section-color-1);
  font-weight: 800;
}
.section-title-2 {
  color: var(--section-color-2);
  font-weight: 700;
}

.section-title-3 {
  color: var(--section-color-3);
  font-weight: 700;
}

.section-title-4 {
  color: var(--section-color-4);
  font-weight: 700;
}
.section-title-5 {
  color: var(--section-color-5);
  font-weight: 700;
}
.section-title-6 {
  font-weight: 700;
  color: var(--section-color-6);
}

.section-title-7 {
  color: var(--section-color-7);
  font-weight: 700;
}
.section-title-8 {
  color: var(--section-color-8);
  font-weight: 700;
}
.section-title-9 {
  color: var(--section-color-9);
}

.about-title {
  color: #3adb40 !important;
  text-align: center;
  font-family: var(--helvetica-font-family);
  font-size: 120px;
  font-weight: 800 !important;
  line-height: 1.2; /* Adjust line height as needed */
  font-size: 100px;
}

.about-title-mission {
  color: var(--section-color-4) !important;
}

.about-title-values {
  color: var(--section-color-3) !important;
}

.home-title {
  color: #ff8a00 !important;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 120px;
  font-weight: 800 !important;
  line-height: 1; /* Adjust line height as needed */
  font-size: 100px;
}

.what-we-do-title {
  color: var(--section-color-4) !important;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 120px;
  font-weight: 800 !important;
  line-height: 1.2; /* Adjust line height as needed */
  font-size: 100px;
}

.our-work-title {
  color: var(--section-color-10) !important;
  text-align: center;
  font-family: var(--helvetica-font-family);
  font-size: 120px;
  font-weight: 800 !important;
  line-height: 1.2; /* Adjust line height as needed */
  font-size: 100px;
}

.sportsevent-title {
  color: var(--section-color-3) !important;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 120px;
  font-weight: 800 !important;
  line-height: 1.2; /* Adjust line height as needed */
  font-size: 100px;
}

.portfolio-title {
  color: #b80079 !important;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 120px;
  font-weight: 800 !important;
  line-height: 1.2; /* Adjust line height as needed */
  font-size: 100px;
}

.impact-title {
  color: var(--section-color-11) !important;
  text-align: center;
  font-family: var(--helvetica-font-family);
  font-size: 120px;
  font-weight: 800 !important;
  line-height: 1.2; /* Adjust line height as needed */
  font-size: 100px;
}

.careers-email {
  color: #ff2f7a !important;
  text-decoration: underline;
}
.careers-title {
  color: #ff2f7a !important;
  text-align: center;
  font-family: var(--helvetica-font-family);
  font-size: 120px;
  font-weight: 800 !important;
  line-height: 1.2;
  font-size: 100px;
}
#cards {
  border-top: 1px solid #e9e9e9;
}

.custom-card {
  display: flex;
  height: 300px;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.modal-content {
  z-index: 99;
}

#footer {
  border-top: 1px solid #e9e9e9;
}

.custom-card-title {
  color: #393939;
  font-family: var(--body-font-family);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  padding-bottom: 10px;
}

.card-title {
  font-size: 22px;
  font-weight: 700 !important;
  font-family: var(--helvetica-font-family);
  color: #393939;
}

.custom-card-paragraph {
  color: var(--section-color-9);
  text-align: center;
  font-feature-settings: "clig" off, "liga" off;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

@media (min-width: 992px) {
  .large-screen-image {
    max-width: 320px;
    height: auto;
    max-height: 240px;
  }
}

@media (max-width: 768px) {
  /* Decrease font size on small screens */
  .home-title {
    font-size: 54px;
    margin: 40px 0px;
  }

  .work-title-1 {
    color: #393939;
    font-weight: 800;
    text-transform: uppercase;
    font-weight: 800 !important;
    font-family: var(--body-font-family);
    font-size: 28px;
  }

  .our-work-title {
    font-size: 64px;
  }

  .work-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 1px solid #dee2e6;
    align-items: center;
    display: flex;
    max-width: 80%;
    padding: 20px 10px;
    margin: auto;
    margin-bottom: 36px;
    justify-content: space-between;
  }

  .custom-video-home {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .sportsevent-title {
    font-size: 54px;
  }
  .about-title {
    font-size: 40px;
  }

  .portfolio-title {
    font-size: 54px;
  }

  .impact-title {
    font-size: 54px;
  }
}

.home-paragraph {
  color: var(--section-color-9) !important;
  text-align: center;
  font-feature-settings: "clig" off, "liga" off;
  font-family: var(--body-font-family);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

.impact-paragraph {
  color: var(--p-color) !important;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.about-paragraph {
  color: var(--p-color) !important;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  max-width: 800px;
}

.about-values ul li {
  font-size: 32px;
  list-style: none;
  text-align: left;
  color: var(--section-color-9) !important;
  font-weight: 600;
  padding-top: 10px;
}

.about-values p {
  font-size: 32px;
  font-weight: 600;
}

.about-values span {
  color: var(--section-color-3);
  text-decoration: underline;
}

.border-card {
  border: 1px solid #e9e9e9;
}
.align-start {
  text-align: start;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  margin-top: -4px;
}
/* Responsive font sizes */
@media (max-width: 576px) {
  .home-text {
    font-size: 36px;
  }

  p {
    font-size: 20px;
  }

  .contact-box {
    margin-left: 0px !important;
  }

  .about-title {
    font-size: 36px !important;
  }

  .about-paragraph {
    color: var(--p-color) !important;
    text-align: center;
    font-family: var(--body-font-family);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    max-width: 800px;
  }

  .about-values p {
    font-size: 26px !important;
  }

  .about-title-values {
    margin-top: 0px;
  }

  .about-values ul li {
    font-size: 26px;
  }

  .section-overlay img {
    max-width: 60% !important;
  }

  .first-window-section {
    padding: 120px 0px 60px 0px;
  }

  .ms-4 {
    margin-left: 0px !important;
  }

  .logo {
    margin-left: 0px !important;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .home-text {
    font-size: 46px;
  }

  p {
    font-size: 22px;
  }

  .contact-box {
    margin-left: 0px !important;
  }
}

@media (max-width: 992px) {
  .point-icon {
    display: inline-block;
    position: absolute;
    top: auto;
    left: -10px;
  }
}
