:root {
    --accent: #EFAD16;
    --secondary: #000000;
    --main: #ffffff;
    --body-bg:#545454;
    --header-bg:#ffffff;
    --radius:5px;
  }
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding:0;
  font: inherit;
  font-size:18px;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
html,
body {
    width: 100%;
}
/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  color:var(--main);
  padding-top: 110px;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.desktop-flex {
    display:flex;
  }
  .desktop-block {
    display:block;
  }
  .mobile-block-768,
  .mobile-block,
  .mobile-flex {
    display:none;
    position: relative;
    z-index: 10;
  }
  
  .show-1000,
  .mobile-only,
  .d-none {
      display:none!important;
  }
  .show-768 {display:none!important;}
  .d-flex {display: flex;}
  .flex-wrap {flex-wrap:wrap;}
  .pos-r {position: relative;}
  .space-between {justify-content: space-between;}
  .space-center {justify-content: center;}
  .align-center {align-items: center;}
  .flex-end {align-items: flex-end;}
  .d-column {flex-direction: column;}
  .h-100 {height: 100%;}
  a{text-decoration: none;color: inherit;}
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, calc(100% / 3 - 14px));
    grid-gap: 20px;
    margin: 0;
    padding: 0;
  }
  .accent {color:var(--accent)}
  .secondary {color: var(--secondary);}
  strong{font-weight:700px;}
  /* Utitlits */
 
  .container {
    width:100%;
    max-width:1720px;
    margin:0 auto;
  }

  /* Header Styling */
 
  
  
  header {
    height: 110px;
    background-color: var(--header-bg);
    position: fixed;
    inset: 0;
    width: 100%;
    z-index: 10;
    transition: all 0.5s ease-in-out;
  }
  header.hidden {
    transform: translateY(-100%);
  }
  .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .contact-info a:first-of-type img {
    width: 60px;
    height: 60px;
  }
  header .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  .logo-wrap {
    display: flex;
    align-items: flex-end;
    gap: 10px;
  }
  .logo-wrap p{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    margin-bottom: 4px;
  }
  .logo-wrap span {
    color: #545454;
    font-size: 27px;
    line-height: 100%;
    font-weight: 600;
    text-transform: uppercase;
  }
  .logo-wrap > img {
    width: 120px;
    height: auto;
  }
  .hero-video {
    color: var(--secondary);
    position: relative;
    height:calc(100vh - 110px);
  }
  .hero-video .video {
    position: relative;
    height:100%;
  }
  .hero-video .video::before {
    content:'';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(255,255,255,0) 100%);

  }
  .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-title {
    position: absolute;
    bottom: 120px;
    left:0px;
  }
  .hero-title h1 {
    font-size: 43px;
    font-weight: 700;
    color: var(--main);
    margin-bottom:46px;
  }
  .heto-text {
    width:674px;
  }
  .heto-text p span {
    font-size: 29px;
    font-weight: 400;
  }
  .heto-text p {
    font-size: 29px;
    color:var(--main);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
  }
  .line-1 {
    border-right: 3px solid transparent;
    animation: animated-text__1 4s steps(30, end) 1s 1 normal both,
      animated-cursor__1 900ms steps(30, end) 5;
      -webkit-animation-delay: 3s;
      animation-delay: 3s;
  }
  
  .line-2 {
    border-right: 3px solid transparent;
    animation: animated-text__2 4s steps(30, end) 1s 1 normal both,
      animated-cursor__2 900ms steps(30, end) 5;
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
  }

  .line-3 {
    border-right: 3px solid transparent;
    animation: animated-text__3 4s steps(30, end) 1s 1 normal both,
      animated-cursor__3 900ms steps(30, end) 8;
    -webkit-animation-delay: 11s;
    animation-delay: 11s;
  }
  
  @keyframes animated-cursor__1 {
    from {
      border-right-color: var(--accent);
    }
    to {
      border-right-color: transparent;
    }
  }
  
  @keyframes animated-cursor__2 {
    from {
      border-right-color: var(--accent);
    }
    to {
      border-right-color: transparent;
    }
  }
  @keyframes animated-cursor__3 {
    from {
      border-right-color: var(--accent);
    }
    to {
      border-right-color: transparent;
    }
  }
  
  @keyframes animated-text__1 {
    from {
      width: 0;
    }
    to {
      width: 100%
    }
  }
  
  @keyframes animated-text__2 {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  @keyframes animated-text__3 {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }

  .progress-line {
    padding: 50px 0;
    background-color: var(--main);
    color:var(--secondary);
    position: relative;
  }
  .progress-line-header {
    position: relative;
    height: 240px;
    color: var(--secondary);
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 90px;
    display: flex;
    justify-content: space-between;
  }
  .progress-line-header > img {
    position: absolute;
    top:0px;
    right: 50%;
    transform: translateX(50%);
  }
  .progress-line-header a {
    border-radius:30px;
    background-color: #ccc;
    width: 180px;
    height: 70px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    position:relative;
    }
    /*.progress-line-header a:not(.is-active):hover {*/
    /*    background-color: var(--accent);*/
    /*    color: var(--main);*/
    /*    transition: .3s;*/
    /*}*/
    /*.progress-line-header a.is-active {*/
    /*    background-color: var(--accent);*/
    /*    color: #fff;*/
    /*}    */
    /*.progress-line-header a.is-active.is-read {*/
    /*    background-color: #E4EBF5;*/
    /*    color: #000;*/
    /*}  */
    /*.progress-line-header a.is-active.is-read::before {*/
    /*    border-top: 15px solid #E4EBF5;*/
    /*}*/
    /*.progress-line-header a.is-active:before {*/
    /*    content: '';*/
    /*    position: absolute;*/
    /*    top: calc(100% - 5px);*/
    /*    right: 50%;*/
    /*    transform: translateX(50%);*/
    /*    width: 0;*/
    /*    height: 0;*/
    /*    border-left: 18px solid transparent;*/
    /*    border-right: 18px solid transparent;*/
    /*    border-top: 15px solid var(--accent);*/
    /*}*/
    .progress-line-header div.active a {
        background-color: var(--accent);
        color: #fff;
        transition: .3s;
    }
    .progress-line-content {
        position: relative;
        margin-top:600px;
    }
    
  
    .for-step {
      opacity: 1;
      background: #ffffff;
      border-radius: 12px;
      z-index: 2;
      transition: 0.3s;
    }
   .for-step ul {
      list-style: none;
      position: relative;
      background: #fff;
      padding: 30px 30px 30px 50px;
      border-radius: 12px;
      z-index: 10;
    }
    .for-step > div {
      position: relative;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
    }
    .for-step > div:before {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: var(--accent);
      transition: 0.3s;
      z-index: 1;
      border-radius: 12px;
    }
    .for-step-1:hover div:before,
    .for-step-3:hover div:before,
    .for-step-5:hover div:before,
    .for-step-7:hover div:before {
      transform: rotate(-7deg);
    }
    .for-step-2:hover div:before,
    .for-step-4:hover div:before,
    .for-step-6:hover div:before,
    .for-step-8:hover div:before {
      transform: rotate(7deg);
    }
   .for-step ul li {
        position: relative;
        font-size: 20px;
        font-weight: 500;
        margin-bottom:6px;
    }
   .for-step ul li::before {
        content: '';
        width: 7px;
        height: 7px;
        background-color: #EFAD16;
        position: absolute;
        top: 6px;
        right: calc(100% + 10px);
    }
    .slick-wrap .slick-track {
      display:flex;
      align-items: center;

    }
    .slick-wrap .slick-track .slick-slide {
      filter: blur(1px);
      opacity: 0.6;
    }
    .slick-wrap .slick-track .slick-slide.slick-current.slick-active {
      filter: blur(0px);
      opacity: 1;
    }
    .slick-wrap .slick-dots {
      position: absolute;
      bottom:100%;
      display: flex;
      justify-content: space-between;
      width: 100%;
      left: 50%;
      transform: translateX(-50%);
      height: 525px;
      list-style: none;
      gap: 20px;
      margin:0 auto;
      transition: 0.3s;
    }
    .scroll .slick-wrap .slick-dots{
      width: 55%;
      height:300px;
    }
    .scroll .slick-wrap .slick-dots li button.heading6 span,
    .scroll .slick-wrap .slick-dots li button span,
    .scroll .slick-wrap .slick-dots li button {
      font-weight: 500;
      font-size: 16px;
    }
    .scroll .progress-line-content {
      margin-top:350px;
    }
    .slick-wrap .slick-dots li button {
      font-size:22px;
      text-transform: uppercase;
      outline: none;
      border: none;
      background-color: transparent;
      position: relative;
    }
    .slick-wrap .slick-dots li button span {
      font-size: 22px;
    }
    .slick-wrap .slick-dots::before {
      content: '';
      position: absolute;
      bottom:0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 100%;
      background-image: url(../images/btn-images/btn-bg-new.png);
      background-repeat: no-repeat;
      background-size: 100%;
    }

    .slick-wrap .slick-dots li button {
      cursor: pointer;
      font-weight: 600;
      color: #545454;
    }
    .slick-wrap .slick-dots li button.heading0 {
      position: absolute;
      top: 43%;
      left: 84px;
    }
    .scroll .slick-wrap .slick-dots li button.heading0 {
      top: 40%;
      left: 32px;
    }
    .slick-wrap .slick-dots li button.heading1 {
      position: absolute;
      top: 46%;
      left: 24%;
    }
    .scroll .slick-wrap .slick-dots li button.heading1 {
      top: 43%;
      left: calc(23% + 2px);
    }
    .slick-wrap .slick-dots li button.heading2 {
      position: absolute;
      top: calc(69% + 3px);
      left: calc(28% + 13px);
    }
    .scroll .slick-wrap .slick-dots li button.heading2 {
      top: calc(65% + 5px);
      left: calc(28% + 2px);
    }
    .slick-wrap .slick-dots li button.heading3 {
      position: absolute;
      top: 23%;
      left: calc(37% + 4px);
    }
    .scroll .slick-wrap .slick-dots li button.heading3 {
      top: 21%;
      left: calc(35% + 7px);
    }
    .slick-wrap .slick-dots li button.heading4 {
      position: absolute;
      top: 47%;
      left: calc(56% + 4px);
    }
    .scroll .slick-wrap .slick-dots li button.heading4 {
      top: 44%;
      left: calc(54% + 7px);
    }
    .slick-wrap .slick-dots li button.heading5 {
      position: absolute;
      top: 42%;
      left: calc(73% + 6px);
    }
    .scroll .slick-wrap .slick-dots li button.heading5 {
      top: 39%;
      left: calc(72% + 3px);
    }
    .slick-wrap .slick-dots li button.heading6 {
      position: absolute;
      top: 41%;
      left: calc(96% + 17px);
      line-height: 100%;
    }
    .scroll .slick-wrap .slick-dots li button.heading6 {
      top: 38%;
      left: calc(95% + 17px);
      line-height: 100%;
      font-size: 13px;
    }
    .scroll .slick-wrap .slick-dots li button.heading6 span {
      font-size: 13px;
    }
    .slick-wrap .slick-dots li button.heading7 {
      position: absolute;
      top: calc(-3% - 1px);
      left: calc(89% + 16px);
    }
    .scroll .slick-wrap .slick-dots li button.heading7 {
      top: calc(-3% - 1px);
      left: calc(88% + 11px);
    }
    .slick-wrap .slick-dots li button.heading6 span {
      font-size: 22px;
    }
    .slick-wrap .slick-dots li button:hover,
    .slick-wrap .slick-dots li.slick-active button {
      color: var(--accent);
    }
     /* the slides */
     .slick-wrap .slick-slide {
        margin: 0 100px;
    }

    /* the parent */
    /*.slick-wrap .slick-list {*/
    /*    margin: 0 -100px;*/
    /*}*/




    .contact-form {
        padding: 30px 0;
    }
    .contact-form h3 {
        color: var(--accent);
        font-size: 39px;
        font-weight: 500;
        text-align: center;
        margin-bottom:25px ;
    }
    textarea,
    input {
      all: unset;
    }
    .form {
        display: flex;
        flex-direction: column;
        width: 65%;
        padding: 0 30px;
        gap:15px;
        margin:0 auto;
    }
    .inputbox {
        width: 100%;
        position: relative;
      }
    .inputbox textarea {
        width: 100%;
        height: 100px;
        display:block;
        border: 1px solid #afafaf;
        border-radius: 12px;
        font-size: 20px;
        background: none;
        font-family: inherit;
        color: var(--body-bg);
        padding: 10px 30px;
        box-sizing: border-box;
    }
    .inputbox input {
        width: 100%;
        height: 50px;
        border: 1px solid #afafaf;
        border-radius: 12px;
        font-size: 20px;
        font-weight: 500;
        background: none;
        font-family: inherit;
        color: var(--body-bg);
        padding: 0px 30px;
        box-sizing: border-box;
      }
      .inputbox textarea:focus,
      .inputbox input:focus {
        border:1px solid var(--accent);
      }
      .dropdown-wrap {
        width: 100%;
        height: 50px;
        border: 1px solid #afafaf;
        border-radius: 12px;
        padding: 0px 30px;
        transition: .3s;
      }
      .dropdown-wrap span {
        color: #000000a6;
        font-size: 20px;
        line-height: 53px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        cursor:pointer;
      }
      .dropdown-wrap .dropdown {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 0;
        overflow: hidden;
        padding-top: 22px;
      }
      .dropdown-wrap.open {
        height: auto;
        transition: .3s;
      }
      .dropdown-wrap.open .dropdown {
        height:auto;
      }
      .dropdown input {
        border: none;
        -webkit-appearance: none;
        width: 100%;
        position: absolute;
        width: 50px;
        height: 100%;
        cursor: pointer;
        z-index: 1;
      }
      .dropdown label.select-all {
        position: relative;
        padding-top: 18px;
        margin-top: 22px;
      }
      .dropdown label.select-all:before {
        content:'';
        position: absolute;
        bottom: 100%;
        left:0;
        width: 69%;
        height: 1px;
        background-color: #afafaf;
      }
      .dropdown label {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 15px;
        font-size: 22px;
        color: #000000;
        position: relative;
      }
      .dropdown label .checkbox {
        position: relative;
        width: 35px;
        height: 35px;
        border-radius: 6px;
        border: 1px solid #B4B4B4;
        background: #fff;
        display: block;
        margin-right: 10px;
    }
    .dropdown label input:checked + .checkbox:before {
      content: '';
      position: absolute;
      top: 5px;
      left: 5px;
      width: 22px;
      height: 22px;
      border-radius:4px;
      background: var(--accent);
  }
    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, calc(100% / 2 - 20px));
        grid-gap: 40px;
        margin: 0;
        padding: 0;
    }
    form button {
        width: 300px;
        height: 60px;
        border: none;
        border-radius: 6px;
        font-size: 1.4rem;
        background: var(--accent);
        color: #fff;
        font-weight: 500;
        margin-left: auto;
        border-radius: 30px;
        text-transform: uppercase;
    }
   
    .btn {
        width: 250px;
        height: 60px;
        border: none;
        border-radius: 6px;
        font-size: 1.4rem;
        background: var(--accent);
        color: var#fff;
        font-weight: 500;
        margin-left: auto;
        border-radius: 30px;
        text-align: center;
        line-height: 60px;
        text-transform: uppercase;
    }
  .testimonials {
      margin-top:20px;
  }
  .progress-line h2,
  .testimonials h2 {
    color: var(--accent);
    font-size: 39px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
  }
  .progress-line h2 {
    margin-bottom:160px;
  }
  .testimonials-slider {
    display: flex;
    margin-bottom: 50px;
  }
  /* the slides */
  .testimonials-slider .slick-slide {
    margin: 0 100px;
}

/* the parent */
.testimonials-slider .slick-list {
    /*margin: 0 -100px;*/
}
    .slider-item > div {
      color: var(--secondary);
      border-radius: 12px;
      padding: 40px;
      max-width: 824px;
      position: relative;
      margin:0 auto;
    }
    .slider-item p > img.first-image {
      transform: rotate(180deg);
      position: absolute;
      width: 26px;
    }
    .slider-item p > img.second-image {
      transform: rotate(0);
      position: absolute;
      width: 26px;
    }
    .slider-item .slide-1 p > img.first-image {
      top: -9px;
      left: -30px;
    }
    .slider-item .slide-1 p > img.second-image {
      bottom: 9px;
      right: -15px;
    }
    .slider-item .slide-2 p > img.first-image {
      top: -9px;
      left: -5px;
    }
    .slider-item .slide-2 p > img.second-image {
      bottom: 9px;
      right: -20px;
    }
    .slider-item .slide-3 p > img.first-image {
      top: -9px;
      left: -30px;
    }
    .slider-item .slide-3 p > img.second-image {
      bottom: 9px;
      right: 38px;
    }
    .slider-item .slide-4 p > img.first-image {
      top: -9px;
      left: -24px;
    }
    .slider-item .slide-4 p > img.second-image {
      bottom: 9px;
      right: 70px;
    }
    
    .slider-item h3 {
      font-size: 26px;
      font-weight: 500;
      text-align: center;
    }
    .slider-item span {
      color: var(--accent);
      font-size: 26px;
      font-weight: 500;
      text-align: center;
      display: block;
      margin-bottom: 16px;
    }
    .slider-item p {
      font-size: 22px;
      text-align: center;
      position: relative;
    }
    .testimonials-slider .slick-track .slick-slide {
      filter: blur(2px);
    }
    .testimonials-slider .slick-slide.slick-active.slick-current {
      filter: blur(0px);
    }
    .testimonials-slider .slick-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      position: absolute;
      bottom: -40px;
      width: 100%;
      list-style: none;
    }
    .testimonials-slider .slick-dots li button {
      display: block;
      text-indent: -9999em;
      border: 1px solid var(--accent);
      width: 15px;
      height: 15px;
      border-radius: 50%;
    }
    .testimonials-slider .slick-dots li.slick-active button {
      background-color: var(--accent);
    }

    footer {
        background: var(--body-bg);
        padding: 20px 0;  
        position: relative;
    }
    .scroll-top {
      position: absolute;
      top: -80px;
      right: -3px;
    }
    .scroll-top:hover {
      animation: MoveUpDown .9s linear infinite;
    }
    @keyframes MoveUpDown {
      0%, 100% {
        top: -80px;
      }
      50% {
        top: -100px;
      }
    }
    .icon-arrow-up {
      width: 48px;
      height: 48px;
      background-image: url(../images/icon-arrow-up.png);
      display: block;
    }
    footer .icon-linkedin {
      margin-right: 10px;
    }
    footer .icon-linkedin img {
      width: 25px;
      height: 25px;
    }
    .footer-contact {
      font-size: 22px;
      display: flex;
      gap: 5px;
      align-items: center;
      margin-right: 20px;
    }
    .footer-contact img {
      width: 22px;
      height: 22px;
    }
    .footer-text span,
    .footer-text {
      font-size: 22px;
    }