:root {
  --primary: rgba(230, 188, 75, 1);
  --secondary: #7588AA;
  --tertiary: rgba(207, 125, 56, 1);
  --text: "Nunito", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

body, html {
  /* overflow-x: hidden; */
  width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* 1rem */
}

body {
  background: linear-gradient(180deg, #FFFFFF -27.79%, #FFEDBB 336.49%);
  background-repeat: no-repeat;
  min-height: 100vh;
  font-size: 1rem;
  font-family: var(--text);
  font-weight: 400;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1380px; /* 1100px / 16px */
  margin: auto;
}

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

.img-fluid {
  max-width: 100%;
  height: auto;
}

.bg-white {
  background-color: #fff;
}

.d-flex {
  display: flex;
}

.flex-column{
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.list-unstyled {
  list-style: none;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow-1{
  flex-grow: 1;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.nav-container .nav-link {
  color: rgba(32, 32, 32, 0.7);
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.nav-container .nav-link:hover{
  font-weight: 700;
  color: #000;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.fixed-top {
  position: fixed;
}

.w-100 {
  width: 100%;
}

.top-50 {
  top: 1.875rem; /* 30px / 16px */
}

.navbar {
  z-index: 999;
}

.navbar-main{
  position: fixed;
  left: 0;
  right: 0;
  top: 50px;
  z-index: 999;
}

.nav-container {
  gap: 1.25rem; /* 20px / 16px */
  margin-right: 3.125rem; /* 50px / 16px */
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem; /* 12px and 24px / 16px */
  border: 1px solid rgba(32, 32, 32, 1);
  background-color: #fff;
  border-radius: 3.125rem; /* 50px / 16px */
}

.text-end {
  text-align: right;
}

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

.mb-1 {
  margin-bottom: 1.5rem;
}

.mt-1 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 2.5rem !important;
}

.mb-3 {
  margin-bottom: 3.5rem !important;
}

.mt-2 {
  margin-top: 2.5rem;
}

.pb-1 {
  padding-bottom: 1.5rem;
}

.pb-100 {
  padding-bottom: 6.25rem; /* 100px / 16px */
}

.pt-100 {
  padding-top: 6.25rem; /* 100px / 16px */
}

.pt-1 {
  padding-top: 1.5rem;
}

.pb-2 {
  padding-bottom: 2.5rem;
}

.pt-2 {
  padding-top: 2.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.pb-space {
  padding-bottom: 7.5rem;
}

.pt-sm {
  padding-top: 0.5rem;
}

.pb-sm {
  padding-bottom: 0.5rem;
}

.spectral-extrabold {
  font-family: "Spectral", serif;
  font-weight: 800;
  font-style: normal;
}

.hero-section {
  padding-top: 260px
}

.padding-bottom-custom-1{
  padding-bottom: 32px;
}

.padding-bottom-custom-2{
  padding-bottom: 42px;
}

.grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  grid-gap: 72px;
}

.grid-container-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem; /* 48px / 16px */
}

.grid-container-main-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 197px;
  align-items: center
}

.grid-container-main-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px
}


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

.btn {
  padding: 0.625rem 1.5rem; /* 10px and 24px / 16px */
  border: 0;
  font-size: 1rem; /* 16px / 16px */
  font-weight: 800;
  line-height: 1.36375rem; /* 21.82px / 16px */
  text-align: center;
  font-family: var(--text);
  cursor: pointer;
}

.you:hover .you-bar{
    height: 60%;
    background: #e7bc4b;
}

.btn-gold {
  background-color: var(--primary);
  color: rgba(32, 32, 32, 1);
  transition: all .5s ease-in-out;
}

.btn-gold:hover{
  background-color: #000;
  color: #fff;
  transform: scale(0.9)
}

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

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

.gap-20 {
  gap: 1.25rem; /* 20px / 16px */
}

.gap-40 {
  gap: 2.5rem; /* 40px / 16px */
}

.btn-size {
  height: 3.25rem; /* 52px / 16px */
  min-width: 13.1875rem; /* 211px / 16px */
}

.hero-text {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 4.1875rem; /* 67px / 16px */
  letter-spacing: -0.02em;
}

.padding-top-custom-1{
  padding-top: 189px;
}

.btn-white {
  background-color: #fff;
}

.mx-auto {
  margin: 0 auto;
}

.w-unset {
  width: unset;
}

.hero-sub-text {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.04625rem; /* 32.74px / 16px */
}

.hero-sub-text.width-size {
  width: 36rem; /* 576px / 16px */
}

.hero-sub-text.width-size-2 {
  width: 30.625rem; /* 490px / 16px */
}

.sub-tag {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2.283125rem; /* 36.53px / 16px */
  text-align: left;
  color: var(--tertiary);
}

.speech-box {
  border: 1px solid rgba(32, 32, 32, 1);
  background-color: var(--primary);
  border-radius: 2.5rem; /* 40px / 16px */
  padding-top: 118px; /* 48px / 16px */
  padding-left: 96px;
  padding-right: 96px;
  padding-bottom: 77px;
}

.spacing-1{
  padding-top: 218px;
}

.speech-box h3 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 4.125rem; /* 66px / 16px */
  letter-spacing: -0.04em;
  text-align: left;
}

.form-control {
  padding: 0.625rem 1.5rem; /* 10px and 24px / 16px */
  border: 0;
  font-size: 1rem; /* 16px / 16px */
  font-weight: 400;
  line-height: 1.36375rem; /* 21.82px / 16px */
  text-align: left;
  font-family: var(--text);
}

.grid-form {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.btn-dark {
  background-color: rgba(32, 32, 32, 1);
  color: #fff;
}

.btn-dark:hover{
  background-color: var(--secondary);
  color: #000;
}

.fam-overlay {
  height: 25rem; /* 400px / 16px */
}

.position-relative {
  position: relative;
}

.overlap-fam {
  position: absolute;
  height: 14.0625rem; /* 225px / 16px */
  bottom: -3.125rem; /* 50px / 16px */
  right: 6.25rem; /* 100px / 16px */
}

.curved-arrow {
  width: 50%;
  bottom: -4.6875rem; /* 75px / 16px */
  position: absolute;
  right: 0px;
  z-index: 1;
}

.bloop-hero {
  position: absolute;
  right: 0;
  height: 50%;
  top: 324px; /* 45px / 16px */
}

.line-speech {
  position: absolute;
  top: -10.9375rem;
  /* height: 8.75rem; */
  left: 5rem;
}

.you-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem; /* 16px / 16px */
  z-index: -1;
}

.heading-1 {
  font-size: 4rem; /* 64px / 16px */
  font-weight: 800;
  line-height: 4.1875rem; /* 67px / 16px */
  letter-spacing: -0.02em;
  text-align: center;
}

.box-center {
  width: 75%;
  margin: 0 auto;
}

.shape-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-63%, -67%);
  z-index: -1;
  width: 35%;
}

.pos-absolute-1 {
  position: absolute;
  right: 0;
}

.pos-absolute-2 {
  position: absolute;
  left: 0;
}

.pos-absolute-3 {
  position: absolute;
  left: 0;
}

.card-blog {
  border-radius: 1.25rem; /* 20px / 16px */
  border: 1px solid #000000;
  padding: 1.5rem; /* 24px / 16px */
  background-color: #fff;
}

.course-list {
  border-radius: 1.25rem; /* 20px / 16px */
  border: 1px solid #000000;
  padding: 1.5rem; /* 24px / 16px */
}

.card-blog-box {
  border-radius: 1.25rem; /* 20px / 16px */
  border: 1px solid #000000;
  overflow: hidden;
}

.blog-item li {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2rem; /* 32px / 16px */
  letter-spacing: -0.05em;
}

.course-heading {
  font-size: 2rem; /* 32px / 16px */
  font-weight: 800;
  line-height: 3.04375rem; /* 48.7px / 16px */
  letter-spacing: -0.05em;
}

.blog-heading {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2rem; /* 32px / 16px */
  letter-spacing: -0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.badge-new{
  position: absolute;
  right: 15px;
  bottom: 18px;
}

.blog-item li a {
  color: #202020;
}

.text-tertiary {
  color: var(--tertiary);
}

.btn-dark {
  background-color: #202020;
  color: #fff;
}

.text-opacity {
  color: rgba(32, 32, 32, 0.4);
}

.text-title-sm {
  font-family: var(--text);
  font-size: 0.875rem; /* 14px / 16px */
  font-weight: 700;
  line-height: 1.19375rem; /* 19.1px / 16px */
  color: rgba(32, 32, 32, 1);
}

.me-1 {
  margin-right: 0.625rem; /* 10px / 16px */
}

.card-img {
  height: 15rem; /* 240px / 16px */
  position: relative;
  overflow: hidden;
}

.object-fit-cover {
  object-fit: cover;
}

.object-fit-contain {
  object-fit: contain
}

.object-position-center{
  object-position: center center;
}

.w-100{
  width: 100%;
}

.h-100{
  height: 100%;
}

.grid-container-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-card-blog{
  padding: 16px;
}

.avatar-sm{
  height: 32px;
  width: 32px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.text-medium{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.19375rem;
}

.text-bold{
  font-weight: 700;
}

.course-desc {
  font-size: 1rem; /* 16px / 16px */
  font-weight: 600;
  line-height: 1.36375rem; /* 21.82px / 16px */
  color: rgba(32, 32, 32, 0.7);
}

.text-sub {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4475rem; /* 23.16px / 16px */
  color: #fff;
}

.course-card {
  border-radius: 1.25rem; /* 20px / 16px */
  border: 1px solid #000000;
  background-color: #fff;
}

.padding-all {
  padding: 32px; /* 24px / 16px */
}

.padding-all-2 {
  padding: 4rem; /* 64px / 16px */
}

.text-normal {
  font-size: 1rem; /* 16px / 16px */
  font-weight: 600;
  line-height: 1.36375rem; /* 21.82px / 16px */
}

.course-item li {
  margin-bottom: 16px; /* 15px / 16px */
}

.mask-absolute-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11.375rem;
  width: 100%;
}

.free-training {
  position: relative;
  z-index: 1;
  margin-top: -6.25rem; /* 100px / 16px */
}

.free-img {
  height: 10.25rem; /* 164px / 16px */
}

.course-icon {
  height: 10.25rem; /* 164px / 16px */
  width: 10.25rem; /* 164px / 16px */
  position: relative;
  overflow: hidden;
}

.w-75 {
  width: 75%;
}

.text-dark {
  color: #202020;
}

.overlap-2 {
  position: absolute;
  width: 45%;
  right: 0px;
  top: 25%;
}

.overlap-3 {
  position: absolute;
  right: 0;
  top: 50%;
  left: 50%;
  transform: translate(-75%, 0%);
}

.overlap-4 {
  position: absolute;
  right: 30%;
  top: 15%;
  width: 7.5rem; /* 120px / 16px */
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.25rem; /* 20px / 16px */
}

.grid-container-2 {
  display: grid;
  grid-template-columns: 28.75rem 1fr; /* 460px / 16px */
  grid-gap: 2.5rem; /* 40px / 16px */
  align-items: center;
}

.bg-color-1 {
  background-color: #E4DAD3;
}

.bg-color-3 {
  background-color: #FFEDBB;
}

.pod-icon-absolute {
  position: absolute;
  z-index: 1;
  right: 1.25rem; /* 20px / 16px */
  bottom: 1.25rem; /* 20px / 16px */
}

.tag-line {
  font-size: 3.875rem; /* 62px / 16px */
  font-weight: 900;
  line-height: 4.25rem; /* 68px / 16px */
  text-align: center;
}

.w-80 {
  width: 80%;
}

.bg-color-2 {
  background-color: #E19F92;
}

.video-box {
  /* height: 19.4375rem;
  width: 19.4375rem; */
  height: 19.4375rem;
  width: 100%;
  border-radius: 1.25rem;
  border: 1px solid #000;
  position: relative;
  overflow: hidden;
}

.pos-link-absolute {
  position: absolute;
  z-index: 1;
  right: 1.25rem; /* 20px / 16px */
  top: 1.25rem; /* 20px / 16px */
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; /* 20px / 16px */
}

.social-box {
  width: 60%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: -1.1875rem 1.1875rem 0px 0px #000000; /* 19px / 16px */
  transition: all .5s ease-in-out;
}

.social-box:hover{
  box-shadow: -1.1875rem -1.1875rem 0px 0px #000000; /* 19px / 16px */
}

.social-box-item{
  transition: all .5s ease-in-out;
}

.social-box-item:hover{
  transform: scale(0.9);
}

.white-mask {
  position: absolute;
  left: 0;
  right: 0;
  top: -3.125rem; /* 50px / 16px */
  width: 100%;
}

.text-transform {
  text-transform: uppercase;
}

.z-index-2 {
  z-index: 2;
}

footer {
  font-size: 1rem; /* 16px / 16px */
  font-weight: 800;
  line-height: 1.36375rem; /* 21.82px / 16px */
}

footer li a {
  color: #202020;
}

.overflow-hidden {
  overflow: hidden;
}

.sub-text {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.72875rem; /* 43.65px / 16px */
}

.blue-mask {
  position: absolute;
  left: 0;
  right: 0;
  top: -3.75rem; /* 60px / 16px */
  width: 100%;
}

.blue-mask-2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3.75rem; /* 60px / 16px */
  z-index: 1;
  width: 100%;
}

.float-icon-3 {
  position: absolute;
  right: 1.875rem; /* 30px / 16px */
  top: 0px;
}

.float-icon-4 {
  position: absolute;
  left: 0px;
  bottom: 10%;
}

.float-icon-5 {
  position:absolute;
  right: 0px;
  bottom: 30%;
}

.float-icon-6 {
  position: absolute;
  left: 0px;
  bottom: 10%;
}

.float-icon-7 {
  position: absolute;
  right: 0.625rem; /* 10px / 16px */
  top: 10%;
  width: 10%;
}

.float-icon-8 {
  position: absolute;
  left: 0px;
  bottom: 20%;
}

.pt-150 {
  padding-top: 9.375rem; /* 150px / 16px */
}

.float-icon-9 {
  position:absolute;
  right: 0;
  top: 0;
}

.float-icon-10 {
  position: absolute;
  right: 1.25rem; /* 20px / 16px */
  bottom: 0;
}

.float-icon-11 {
  position: absolute;
  left: 0px;
  bottom: 25%;
}

.float-icon-12 {
  position: absolute;
  right: 0;
  top: 0;
}

.float-icon-13 {
  position: absolute;
  left: 2.5rem; /* 40px / 16px */
  bottom: 5%;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.active-short-line{
  display: none;
}

.tab-link.active .active-short-line{
  display: inline-block;
}

/* .social-box a{
  display: block;
  text-align: center;
} */

.heading-2{
  font-size: 32px;
  font-weight: 800;
  line-height: 48.7px;
  letter-spacing: -0.05em;
  text-align: center;
}

.margin-bottom-custom-3{
  margin-bottom: 16px;
}

.video-container{
  background-color: #D9D9D9;
  border-radius: 40px;
  height: 339px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_button{
  transition: all .5s ease-in-out;
}

.contact_button:hover{
  transform: scale(0.9);
}

.start-btn{
  transition: all .5s ease-in-out;
}

.start-btn:hover{
  transform: scale(0.9);
}

@media screen and (max-width: 767.98px) {
  .grid-container {
      grid-template-columns: 1fr;
  }

  .pt-100.pt-50{
    padding-top: 50px;
  }

  .tab-link.active{
    background-color: var(--primary);
  }

  .gap-40 {
    gap: 1.5rem;
  }

  .active-short-line{
    display: none !important;
  }

  .heading-2{
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
  }

  .blog-item li a{
    padding: 10px 15px;
  }

  .card-blog{
    padding: 0;
  }

  .d-absolute{
    position: absolute;
    left: 0;
    right: 0;
    top: 24%;
    width: 1000px;
  }

  .padding-bottom-custom-1{
    padding-bottom: 16px;
  }

  .padding-bottom-custom-2{
    padding-bottom: 24px;
  }

  .w-sm-100{
    width: 100%;
  }

  .navbar-container{
    border: 1px solid #fff;
  }

  .social-box {
    width: 85%;
    box-shadow: -9px 9px 0px 0px #000000;
  }

  .flex-wrap-sm{
    flex-wrap: wrap;
  }

  .footer .copyright{
    font-size: 12px;
    font-weight: 700;
    line-height: 16.37px;
  }

  .footer li a{
    font-size: 12px;
    font-weight: 700;
    line-height: 16.37px;
  }

  .grid-container-2 {
      grid-template-columns: 1fr;
  }

  .grid-container-3 {
      grid-template-columns: 1fr;
  }

  .grid-container-main {
      grid-template-columns: 1fr;
  }

  .grid-container-main-2 {
    grid-template-columns: 1fr;
    grid-gap: unset;
  }

  .grid-container-main-3 {
    grid-template-columns: 1fr;
  }

  .grid-row {
      grid-template-columns: 1fr;
  }

  .podcast-grid{
      grid-template-columns: 1fr;
  }

  .hero-text {
      font-size: 1.5rem;
      font-weight: 800;
      line-height: 2rem; /* 32px / 16px */
      letter-spacing: -0.05em;
      text-align: left;
  }

  .hero-sub-text.width-size {
      width: unset;
  }

  .hero-sub-text.width-size-2 {
      width: unset;
  }

  .speech-box h3 {
      font-size: 2rem;
      line-height: 3rem;
  }

  .tag-line {
      font-size: 32px;
      font-weight: 900;
      line-height: 43.65px;
  }

  .w-80 {
      width: 100%;
  }

  .pb-sm-1{
      padding-bottom: 1rem;
  }

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

  .float-icon-13{
      display: none;
  }

  .float-icon-12{
      height: 115px;
  }

  .padding-all-2 {
      padding: 1.5rem;
  }

  .hero-sub-text {
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.5rem;
  }

  .course-icon {
      height: 81px;
      width: 81px;
      position: relative;
      overflow: hidden;
  }

  .start-btn{
      font-size: 20px;
  }

  .float-icon-9 {
      position: absolute;
      right: 0;
      top: 0;
      height: 65px;
  }

  .float-icon-10 {
      position: absolute;
      right: -28px;
      bottom: 0;
      height: 40px;
  }

  .float-icon-11 {
      position: absolute;
      left: 0px;
      bottom: 0;
      height: 50px;
  }

  .mask-absolute-bottom {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -3rem;
  }

  .free-training {
      position: relative;
      z-index: 1;
      margin-top: -8.25rem;
  }

  .d-sm-none{
      display: none;
  }

  .rounded-pill{
      border-radius: 50px;
  }

  .blog-item.spectral-extrabold.non-spectral{
      font-family: var(--text);
      font-size: 14px;
      font-weight: 700;
      line-height: 19.1px;
  }

  .mb-sm-1{
      margin-bottom: 1rem;
  }

  /* .grid-apply-area{
      grid-template-areas:
      "item2 item2";
  } */

  .item_1{
      order: 3
  }

  .item-x{
      order: 2
  }

  .item_2{
    order: 1
  }

  .float-icon-7 {
      position: absolute;
      right: 0.625rem;
      top: 6%;
      width: 70%;
  }

  .blue-mask {
      position: absolute;
      left: 0;
      right: 0;
      top: -1.75rem;
  }

  .blue-mask-2 {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1.75rem;
      z-index: 1;
  }

  .float-icon-3 {
      position: absolute;
      right: 1.875rem;
      top: 0px;
      height: 10%;
  }

  .heading-1 {
      font-size: 1.5rem;
      font-weight: 800;
      line-height: 2rem;
      letter-spacing: -0.02em;
      text-align: center;
  }

  .pos-absolute-1 {
      display: none;
  }

  .pos-absolute-2 {
      display: none;
  }

  .pos-absolute-3{
    height: 12%;
  }

  .box-center {
      width: 100%;
      margin: 0 auto;
  }

  .curved-arrow {
      width: 100%;
  }

  .speech-box{
      padding: unset;
      background-color: unset;
      border: unset;
  }

  .speech-section{
      background-color: var(--primary);
      padding-top: 50px;
      padding-bottom: 50px;
  }

  .speech-section.pb-100{
      padding-bottom: 50px;
  }

  .line-speech{
      display: none;
  }

  .bloop-hero {
      position: absolute;
      right: 0;
      height: 30%;
      top: 10.8125rem;
  }

  .hero-section{
    padding-top: 164px;
    padding-bottom: 24px;
  }

  .padding-top-custom-1 {
    padding-top: 61px;
  }

  .container-sm{
      width: 90% !important;
      margin: 0 auto;
  }

  .btn-sm{
      /* font-size: 12px;
      font-weight: 500;
      line-height: 19.1px; */
      height: 3.25rem; /* 52px / 16px */
      min-width: 13.1875rem;
  }

  .grid-form {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 10px;
  }

  /* .border-custom-right-radius{
      border-top-right-radius: 50px;
      border-bottom-right-radius: 50px;
  }

  .border-custom-left-radius{
      border-top-left-radius: 50px;
      border-bottom-left-radius: 50px;
  } */

  .grid-form .form-control{
      height: 52px;
  }

  .menu-nav{
      position: absolute;
      display: flex;
      flex-direction: column;
      padding: 20px;
      border-radius: 20px;
      border: 1px solid #000;
      align-items: start;
      top: 115%;
      background: white;
      left: 0;
      right: 0;
      display: none;
  }

  .menu-nav.active{
      display: block;
  }

  .menu-nav .nav-container{
      flex-direction: column;
      align-items: start;
  }

  .contact_button{
      margin-top: 15px;
      order: 1;
  }

  .main-logo{
      order: 2;
  }

  .overlap-4 {
    position: absolute;
    right: 30%;
    top: 15%;
    width: 5rem;
  }

  .overlap-fam {
    right: 1.25rem;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {

  .hamburger{
      display: none;
  }

  .flex-wrap-sm{
    flex-wrap: wrap;
  }

  .grid-container-main-2 {
    grid-template-columns: 1fr;
    grid-gap: unset;
  }

  .grid-container-main-3 {
    grid-template-columns: 1fr;
  }

  .mask-absolute-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5.375rem;
  }

  .grid-container{
    grid-template-columns: 1fr;
  }

  .bloop-hero {
    position: absolute;
    right: 0;
    height: 20%;
    top: 2.8125rem;
  }

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

  .hero-sub-text.width-size-2 {
    width: unset;
  }

  .d-md-none{
    display: none;
  }

  .pos-md-item{
    width: 60%;
    margin: 0 auto;
  }
  
  .curved-arrow {
    width: 80%;
    bottom: -8.6875rem;
    position: absolute;
    right: 105px;
    z-index: 1;
  }

  .grid-container-main{
    grid-template-columns: 1fr;
  }

  .item_1{
    order: 1;
  }

  .grid-container-2{
    grid-template-columns: 1fr;
  }
}


@media screen and (min-width: 991px){
  .d-lg-none{
      display: none;
  }

  .hamburger{
      display: none;
  }

  .justify-content-lg-between {
      justify-content: space-between;
  }

  .container-lg {
      width: 90%;
      max-width: 1380px; /* 1100px / 16px */
      margin: 0 auto;
  }
}

.swiper-container {
  width: 100%;
}

.swiper-container-2 {
  width: 100%;
  height: 311px;
}

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

.pos-play {
  position: absolute;
  z-index: 1;
  right: 15px;
  bottom: 15px;
  left: 15px;
  /* top: 1.25rem; */
}

.cursor-pointer{
  cursor: pointer;
}

.opacity-bg{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.text-white{
  color: #fff;
}

.font-sm{
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 16.37px !important;
}

.p-box{
  color: #202020B2;
  padding: 15px;
  font-size: 13px;
}

.swiper-pagination-bullet{
  height: 12px !important;
  width: 18px !important;
  background-color: var(--primary) !important;
  border-radius: 20px !important;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset !important;
  bottom: 60px !important;
  left: 0;
  width: 100%;
}