/** @format */

@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}

a:hover {
  text-decoration: none;
}
a {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  text-decoration: none;
  color: #fff;
}

body {
  background-color: #151515;
  font-family: "Saans TRIAL", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: calc(14 / 12);
  letter-spacing: 0;
}

.container {
  max-width: 1360px;
  padding: 0 20px;
  margin: 0 auto;
}

.dflex {
  display: flex;
}

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

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

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

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

.radius-30 {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  overflow: hidden;
}

.radius-20 {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  overflow: hidden;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 47px;
  background-color: #fff;
  color: #151515;
  border-radius: 27px;
  -webkit-border-radius: 27px;
  max-width: max-content;
  padding: 10px 15px;
  font-weight: 500;
}

.btn:after {
  content: "";
  display: block;
  width: 7px;
  height: 12px;
  background: url(../images/arrow-right.svg) no-repeat center;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.action-btn {
  border: 1px solid #464646;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 39px;
  padding: 8px 15px 10px 10px;
}

@media (max-width: 1023px) {
  .action-btn {
    font-size: 0;
    gap: 0;
    padding: 12px;
  }
}

.action-btn.pdf-download-btn {
  padding: 8px;
}

.action-btn::after {
  content: "";
  display: block;
  width: 7px;
  height: 12px;
  background: url(../images/arrow-right-white.svg) no-repeat center;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  filter: invert(1);
  -webkit-filter: invert(1);
}

.action-btn.action-btn.pdf-download-btn:after {
  content: none;
}

.slick-slider li button {
  display: block;
  font-size: 0;
  line-height: 0;
  border: none;
  outline: none;
}

.caption {
  position: absolute;
  bottom: 0;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.sec-full-width .container {
  max-width: 1440px;
  padding: 0;
  margin: 0 auto;
}

.toggle-btn {
  display: none;
}

@media (max-width: 768px) {
  .toggle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }
}

.toggle-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  right: 0;
}

h1 {
  font-weight: 600;
  font-size: 45px;
  line-height: 1.13;
}

@media (max-width: 1023px) {
  h1 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-weight: 500;
  font-size: 96px;

  @media (max-width: 1023px) {
    font-size: 72px;
  }

  @media (max-width: 767px) {
    font-size: 48px;
  }
}
