/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

.wrapper {
  max-width: 1220px;
  margin: 0 auto;
}

* {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

html, body {
  background: #1E252B;
}

@media (max-width: 1260px) {
  body {
    padding: 0 30px;
  }
}

.logo {
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  color: #ffffff;
}
@media (max-width: 520px) {
  .logo {
    font-size: 18px;
  }
}
@media (max-width: 380px) {
  .logo {
    font-size: 14px;
  }
}

.btn {
  display: inline-block;
  border-radius: 8px;
  padding: 12px 33px;
}

.btn_orange {
  background-color: #FF6E30;
  transition: all 0.2s ease-out;
}
.btn_orange:hover {
  box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.25) inset;
}
.btn_orange:focus {
  box-shadow: 0px 7px 4.2px 0px rgba(0, 0, 0, 0.25) inset;
}

.btn_outline {
  border: 1px solid #FF6E30;
  color: #FF6E30;
  transition: all 0.2s ease-out;
}
.btn_outline:hover {
  background-color: #FF6E30;
  color: #ffffff;
}

.section-title {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0;
  color: #ffffff;
}
@media (max-width: 1070px) {
  .section-title {
    font-size: 42px;
  }
}

.title-line {
  text-align: left;
  display: flex;
  align-items: center;
}
@media (max-width: 1070px) {
  .title-line {
    font-size: 42px;
  }
}
@media (max-width: 500px) {
  .title-line {
    font-size: 32px;
  }
}

.title-line:before {
  display: block;
  content: "";
  width: 100px;
  height: 3px;
  background-color: #E8E9EA;
  margin-right: 20px;
}
@media (max-width: 1070px) {
  .title-line:before {
    width: 50px;
    margin-right: 15px;
  }
}

.section-undertitle {
  text-align: center;
  margin-bottom: 80px;
  font-size: 18px;
  font-weight: 500;
  line-height: 167%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 1070px) {
  .section-undertitle {
    margin-bottom: 50px;
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .section-undertitle {
    margin-bottom: 30px;
  }
}

.open {
  display: flex !important;
}

.block-scroll {
  overflow: hidden;
}

.burger {
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
}
.burger span {
  height: 2px;
  width: 100%;
  transform: scale(1);
  background-color: rgba(255, 255, 255, 0.55);
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s ease 0s;
}
.burger::before {
  top: 0;
}
.burger::after {
  bottom: 0;
}
.burger.active span {
  transform: scale(0);
}
.burger.active::before {
  background-color: #ffffff;
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}
.burger.active::after {
  background-color: #ffffff;
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}

.header {
  display: flex;
  justify-content: space-between;
  padding-top: 34px;
  margin-bottom: 80px;
}

.nav__items {
  display: flex;
}

.nav__item {
  margin-left: 50px;
}
.nav__item a {
  transition: all 0.2s ease-out;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.55);
}
.nav__item a:hover {
  font-weight: 600;
}

@media (max-width: 940px) {
  .burger {
    display: flex;
  }
  .nav {
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 50;
    overflow-y: auto;
    padding: 50px 40px;
    background-color: #1E252B;
    animation: burgerAnimation 0.4s;
  }
  .nav .nav li {
    margin-bottom: 20px;
  }
  .nav .nav li a {
    font-size: 24px;
    color: #ffffff;
  }
}
@media (max-width: 940px) and (max-width: 460px) {
  .nav .nav li a {
    font-size: 20px;
  }
}
@media (max-width: 940px) {
  .nav__items {
    flex-direction: column;
    align-items: center;
  }
  .nav {
    font-size: 20px;
  }
}
@keyframes burgerAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
}
.main__title {
  font-size: 50px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 30px;
}
.main__title span {
  color: #FF6E30;
}
.main__desc {
  margin-bottom: 70px;
  font-size: 18px;
  font-weight: 400;
  line-height: 167%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 1070px) {
  .main .main__image {
    max-width: 40%;
    margin-left: 15px;
  }
}
@media (max-width: 890px) {
  .main .main__title {
    font-size: 42px;
  }
  .main .main__desc {
    margin-bottom: 40px;
    font-size: 16px;
  }
}
@media (max-width: 625px) {
  .main .main__title {
    font-size: 36px;
  }
  .main .main__desc {
    margin-bottom: 30px;
    font-size: 14px;
  }
}
@media (max-width: 544px) {
  .main .main__image {
    display: none;
  }
  .main .main__text {
    text-align: center;
  }
}

.reasons {
  margin-bottom: 120px;
}

.reasons__items {
  display: flex;
  justify-content: space-between;
}

.reasons__item {
  max-width: 392px;
  height: 358px;
  padding: 37px 33px 30px 33px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px;
  transition: all 0.2s ease-out;
}
.reasons__item .item__header {
  display: flex;
}
.reasons__item .item__header-title {
  margin-left: 30px;
}
.reasons__item .item__header-title h3 {
  margin-bottom: 3px;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
  transition: all 0.2s ease-out;
}
.reasons__item .item__header-title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 167%;
  letter-spacing: 0;
  color: rgba(255, 165, 55, 0.55);
  transition: all 0.2s ease-out;
}
.reasons__item .item__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 167%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s ease-out;
}
.reasons__item:hover {
  background: rgba(40, 48, 54, 0.6);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
}
.reasons__item:hover .item__header-title h3 {
  color: #ffffff;
}
.reasons__item:hover .item__header-title p {
  color: rgb(255, 165, 55);
}
.reasons__item:hover .item__text p {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1250px) {
  .reasons__item {
    max-width: 340px;
    height: auto;
    padding: 27px 23px 20px 23px;
  }
  .reasons__item .item__header-title h3 {
    font-size: 22px;
  }
  .reasons__item .item__header-title p {
    font-size: 14px;
  }
  .reasons__item .item__text p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1090px) {
  .reasons__item {
    max-width: 280px;
  }
}
@media (max-width: 900px) {
  .reasons__items {
    flex-direction: column;
  }
  .reasons__item {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.services__item {
  width: 100%;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  transition: all 0.2s ease-out;
  border-radius: 15px;
}
.services__item img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.services__item .services__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 477px;
}
.services__item .services__info .services__title {
  margin-bottom: 3px;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
  transition: all 0.2s ease-out;
}
.services__item .services__info .services__undertitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 167%;
  letter-spacing: 0;
  color: rgba(255, 165, 55, 0.55);
  transition: all 0.2s ease-out;
}
.services__item .services__info .services__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 167%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s ease-out;
}
.services__item:hover {
  background: rgba(40, 48, 54, 0.6);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
}
.services__item:hover .services__info .services__title {
  color: #ffffff;
}
.services__item:hover .services__info .services__undertitle {
  color: rgb(255, 165, 55);
}
.services__item:hover .services__info .services__text {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1010px) {
  .services__item {
    padding: 20px 25px;
  }
}
@media (max-width: 965px) {
  .services__item {
    margin-bottom: 40px;
  }
  .services__item .services__info .services__title {
    font-size: 20px;
  }
  .services__item .services__info .services__undertitle {
    font-size: 14px;
  }
  .services__item .services__info .services__text {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .services__item img {
    max-width: 40%;
    margin-left: 15px;
  }
}
@media (max-width: 670px) {
  .services__item {
    padding: 10px 15px;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .services__item img {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
}
.about {
  margin-bottom: 120px;
}

.about__text {
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}
@media (max-width: 1080px) {
  .about__text {
    font-size: 16px;
  }
}

.address__text-title {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 30px;
}

.address__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 167%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 1080px) {
  .address__text {
    font-size: 16px;
  }
}

.vendors {
  margin-bottom: 80px;
}

.vendors__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr 1fr;
  justify-items: center;
  row-gap: 36px;
}
@media (max-width: 1100px) {
  .vendors__items {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr 1fr;
  }
  .vendors__items .vendors__item:nth-child(9) {
    grid-column-start: 2;
  }
  .vendors__items .vendors__item:nth-child(10) {
    grid-column-start: 3;
  }
}
@media (max-width: 940px) {
  .vendors__items {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .vendors__items .vendors__item:nth-child(9) {
    grid-column-start: auto;
  }
  .vendors__items .vendors__item:nth-child(10) {
    grid-column-start: 2;
  }
}
@media (max-width: 690px) {
  .vendors__items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
  .vendors__items .vendors__item:nth-child(10) {
    grid-column-start: auto;
  }
}
@media (max-width: 490px) {
  .vendors__items .vendors__item {
    width: 170px;
    padding: 10px;
  }
}
@media (max-width: 420px) {
  .vendors__items .vendors__item {
    width: 125px;
  }
}

.vendors__item {
  padding: 15px;
  width: 200px;
  height: 80px;
  border-radius: 15px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vendors__item img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.trust {
  margin-bottom: 120px;
}

.trust__desc {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
}

.trust__item {
  font-size: 18px;
  font-weight: 400;
  line-height: 167%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
  list-style-type: disc;
  margin-left: 20px;
}

.contacts h2 {
  margin-bottom: 40px;
}
.contacts__texts {
  margin-bottom: 80px;
}
.contacts__texts-callToAction {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
}
.contacts__texts-contact {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
}
.contacts__texts-contact img {
  margin-right: 30px;
}
.contacts__texts-contact img:first-child {
  margin-bottom: 20px;
}

@media (max-width: 730px) {
  .contacts__texts-callToAction {
    font-size: 20px;
  }
  .contacts__texts-contact {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  .contacts__texts-callToAction {
    font-size: 18px;
  }
  .contacts__texts-contact {
    font-weight: 500;
    font-size: 14px;
  }
}
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 70px 0;
  display: flex;
  justify-content: space-between;
}
.footer .footer__link {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
}
.footer .footer__element {
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.55);
}
.footer .footer__logo {
  margin-bottom: 27px;
}
.footer .footer__copiright {
  margin-bottom: 21px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
}
.footer .footer__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 178%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer__item {
  max-width: 324px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1080px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    row-gap: 36px;
    -moz-column-gap: 25px;
         column-gap: 25px;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .footer {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 380px) {
  .footer__logo .logo {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */