/*General Styles*/

.hidden {
  display: none;
}

.container {
  max-width: 1240px;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  background: rgba(0, 0, 0, 0.21);
  backdrop-filter: blur(5px);
}

* {
  text-underline-offset: 3px;
}

a:hover {
  color: #216dca !important;
  text-decoration: none;
}

h1 {
}

a.btn {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
}

a:focus,
a:active {
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
}

.arrow-btn {
  background: url("../img/icon-btn.png");
  width: 20px;
  display: inline-block;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 5px;
  left: -15px;
}

ul {
  margin-bottom: 0;
}

button:focus {
  outline: none;
}

.bg-light {
  background-color: transparent !important;
}

.section__title {
  font-weight: 500;
  font-size: 30px;
  line-height: 42px;
  color: #252431;
  margin-bottom: 25px;
}

.section__text {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #727272;
  margin-bottom: 25px;
}

ul.section__btns li:before {
  content: url("../img/icon-btn.png");
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}

ul.section__btns {
  list-style: none;
  padding-left: 0;
}

ul.section__btns li {
  position: relative;
  padding-left: 30px;
}

/*End General Styles*/

/* Header */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.header-terms {
  box-shadow: 3px 3px 10px 0px rgb(50 50 50 / 17%);
}

#main_terms {
  padding-top: 60px;
}

.header .container {
  padding: 0;
}

.navbar-collapse {
  flex-grow: inherit;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-item a {
  font-size: 18px;
  line-height: 18px;
}

.header .navbar-brand {
  margin-left: 15px;
}

.navbar-expand-lg {
  padding-top: 25px;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("../img/menu-toggle.svg");
}

.navbar-light .navbar-toggler {
  border: none;
}

.navbar {
  padding-left: 0;
  padding-right: 0;
}

.nav-item.mobile {
  display: none;
}

.header-terms .navbar-expand-lg .navbar-nav .nav-item a {
  color: #252431;
}
.header-terms .navbar .navbar-toggler-icon {
  background-image: url("../img/menu-toggle-dark.svg");
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    justify-content: space-between;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 45px;
  }
}

@media (max-width: 768px) {
  .navbar-expand-lg .navbar-nav .nav-item a {
    font-size: 16px;
    line-height: 28px;
    background-color: #fff;
    padding: 5px 15px;
    color: #000;
  }

  .navbar-nav {
    padding: 10px 0;
    background-color: #fff;
    margin-top: 15px;
    text-align: center;
    /*height: calc(100vh - 70px);*/
    padding-bottom: 100px;
  }

  .navbar-expand-lg {
    padding-top: 15px;
  }

  a.btn:last-child {
    max-width: 330px;
  }

  .nav-item.mobile {
    display: block;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
  }

  .nav-item.mobile a {
    color: #216dca !important;
    font-size: 14px !important;
  }
}
/* End Header */

/*Hero Section*/
.hero {
  min-height: calc(100vh - 300px);
  background: url("../img/banner_back.png") center center no-repeat,
    url("../img/banner.jpg") center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  color: #fff;
  position: relative;
}

.apple .hero {
  background-attachment: unset;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}
.hero .container {
  max-width: 857px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero__subtitle {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.hero__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 72px;
  text-align: center;
}

.hero__btns {
  position: absolute;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  left: 0;
  right: 0;
}

.hero__btns a {
  color: #ffffff;
}

.hero__btns a:first-child {
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .hero {
    min-height: 760px;
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .hero .container {
    min-height: 600px;
    height: 100vh;
  }

  .hero a.btn {
    padding-left: 0 !important;
  }

  .hero__btns {
    bottom: 30px !important;
  }

  .hero__btns a:first-child {
    margin-bottom: 0 !important;
  }

  .hero__title {
    font-size: 35px !important;
    line-height: 42px !important;
  }
}

/*End Hero Section*/

/*Image with Text Section*/
.img-text {
  display: flex;
  min-height: 50vw;
  width: 100%;
  flex-wrap: wrap;
}

.img-text .section__col {
  flex: 0 1 50%;
  justify-content: center;
}

.img-text .text__wrap {
  padding: 145px 110px 120px 100px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.img-text .img__wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.img-text .section__title {
  max-width: 520px;
}

.img-text .section__text {
  max-width: 500px;
}

.img-text a.btn {
  text-align: left;
  padding-left: 0;
  max-width: 350px;
  padding-left: 5px;
}

.img-text a.btn--alt {
  padding: 0.375rem 0.75rem;
  text-align: left;
  max-width: 350px;
  padding-left: 5px;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  vertical-align: middle;
  display: block;
  cursor: default;
}

.img-text .arrow-btn {
  top: 6px;
  left: -10px;
}

.img-text.left .text__wrap {
  padding-left: max(120px, calc((100vw - 1240px) / 2));
  padding-right: 150px;
  padding-top: 155px;
  padding-bottom: 155px;
  background-color: #f4f4f8;
}

.img-text .images-blocks {
  display: flex;
}

.img-text .images-blocks .images-col {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
}

.img-text .images-blocks .images-col .block-img {
  flex-basis: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.img-text .images-blocks .images-col .block-img:nth-child(1) {
  margin-bottom: 10px;
}

.img-text .images-blocks .images-col:nth-child(1) {
  margin-right: 10px;
}

.img-text .images-blocks .images-col:nth-child(1) .block-img:nth-child(1),
.img-text .images-blocks .images-col:nth-child(2) .block-img:nth-child(2) {
  flex-basis: 66.667%;
}

@media (max-width: 768px) {
  .img-text .img__wrap {
    height: 109.0277vw;
  }

  .img-text .section__col {
    flex-basis: 100%;
  }

  .img-text .text__wrap,
  .img-text.left .text__wrap {
    padding: 60px 15px;
  }

  .section__title,
  .img-text .section__text,
  .img-text a.btn,
  .img-text .section__title {
    max-width: 100%;
  }

  .section__title {
    line-height: 48px;
  }

  .section__text,
  .section__title {
    text-align: center;
  }

  .img-text .images-blocks {
    height: 420px;
  }

  .img-text a.btn {
    max-width: 100%;
  }
}
/*End Image with Text Section*/

/*Rich text Section*/
.rich-text {
  max-width: 669px;
  margin: 0 auto;
  text-align: center;
  padding: 110px 15px;
  min-height: 34vw;
  display: flex;
  align-items: center;
}

.rich-text .section__text {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text ul.section__btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rich-text ul.section__btns li {
  width: fit-content;
  text-align: center;
}

@media (max-width: 768px) {
  .rich-text {
    padding: 60px 15px;
  }

  .rich-text a.btn {
    max-width: 100%;
  }
}
/*End Rich text Section*/

/*Banner Section*/
.banner {
  min-height: 38vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.apple .banner {
  background-attachment: unset;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}
/*End Banner Section*/

/*Blocks Section*/
.blocks {
  display: flex;
  flex-wrap: wrap;
  min-height: 50vw;
}

.blocks .block-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.blocks .section__col {
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
}

.blocks .block-img {
  flex-basis: 25%;
  /* min-height: 212px; */
}

.blocks .block-text {
  flex-basis: 50%;
}

.blocks .block-text {
  padding: 25px 30px 70px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.blocks .block-text .text__wrap {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  text-align: left;
}

.blocks .block-text .arrow-btn {
  background: url("../img/icon-btn-1.png");
  width: 33px;
  height: 33px;
  position: absolute;
  background-size: cover;
  bottom: 30px;
  right: 30px;
  left: auto;
  top: auto;
}

.block-text__numb {
  display: block;
  margin-bottom: 25px;
}

@media (min-width: 1101px) {
  .as-big--hide {
    display: none;
  }
}

@media (max-width: 1100px) and (min-width: 768px) {
  .blocks .section__col {
    flex-basis: 50%;
  }

  .blocks .section__col:nth-child(2) {
    order: 1;
  }
  .blocks .section__col:nth-child(1) {
    order: 2;
  }
  .blocks .section__col:nth-child(4) {
    order: 4;
  }
  .blocks .section__col:nth-child(3) {
    order: 3;
  }

  .blocks .block-img {
    min-height: 212px;
  }

  .as-mid--hide {
    display: none;
  }
}

@media (max-width: 768px) {
  .blocks .section__col {
    flex-basis: 100%;
  }

  .banner {
    height: 300px;
  }

  .blocks .block-text {
    padding: 20px 20px 60px 20px;
  }

  .blocks .block-text .arrow-btn {
    bottom: 15px;
    right: 20px;
  }

  .blocks .block-img {
    min-height: 212px;
  }

  .as-mid--hide {
    display: none;
  }

  .blocks .section__col:nth-child(2) {
    order: 1;
  }
  .blocks .section__col:nth-child(1) {
    order: 2;
  }
  .blocks .section__col:nth-child(4) {
    order: 4;
  }
  .blocks .section__col:nth-child(3) {
    order: 3;
  }

  .blocks .section__col:nth-child(3) .block-img:first-child {
    display: none;
  }
}
/*End Blocks Section*/

/*Banner with text Section*/
.banner-text {
  padding: 130px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 23vw;
  background-attachment: fixed;
}
.apple .banner-text {
  background-attachment: unset;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

.banner-text .section__title,
.banner-text p {
  color: #fff;
}

.banner-text p a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .banner-text {
    padding: 60px 15px;
    text-align: center;
  }

  .banner-text p {
    max-width: 80%;
    line-height: 27px;
  }
}
/*End Banner with text Section*/

/*Footer*/
.footer {
  background-color: #f4f4f8;
}

.footer-top .row {
  align-items: center;
}

.footer .copyright-bar .row {
  display: block;
  min-height: 36px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-bottom,
.footer .copyright-bar {
  border-top: 1px solid #e9e9e9;
}

/* .footer .copyright-bar .row {
  display: flex;
  align-items: center;
  justify-content: center;
} */

.footer .copyright-bar .row p {
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #252431;
  margin-bottom: 0;
  text-transform: uppercase;
}

.footer .nav-link {
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #252431;
}

.footer .navbar-brand {
  margin-right: 0;
}

.footer .navbar {
  padding: 0;
  /*justify-content: center;	*/
}

.footer-subscribe .form-group {
  display: flex;
  margin-top: 57px;
  margin-bottom: 13px;
}

.footer-subscribe .form-group input {
  height: 46px;
}

.footer-subscribe .form-group #your-email::placeholder {
  font-size: 14px;
  line-height: 33px;
  letter-spacing: 0.05em;
  color: #969696;
}

.footer-subscribe .form-group #your-email {
  width: 88%;
}

.footer-subscribe .alert {
  margin-bottom: 0;
}

.footer-subscribe .form-group .submit-wrapper {
  width: 12%;
  height: 46px;
  position: relative;
  margin-left: -5px;
}

.footer-subscribe .form-group .submit-wrapper img {
  position: absolute;
  top: 15px;
  left: 12px;
}

.footer-subscribe .form-group .submit-wrapper .submit-btn {
  background: url("../img/arrow-btn.png") center center no-repeat, #216dca;
  width: 46px;
}

@media only screen and (min-width: 769px) {
  .footer .row .col-md-3 {
    flex-basis: 20%;
    max-width: 20%;
  }

  .footer .row .col-md-5 {
    flex-basis: 46.66667%;
    max-width: 46.66667%;
  }
}

@media (max-width: 769px) {
  .footer .copyright-bar .row {
    justify-content: center !important;
  }

  .footer .copyright-bar .row p {
    margin-bottom: 5px;
  }

  .footer .navbar-brand {
    text-align: center;
    margin: 20px 0;
  }

  .footer .navbar .row {
    justify-content: center;
    width: 100%;
  }

  .footer-subscribe {
    margin-bottom: 0;
  }

  .footer-subscribe .subscribe-form {
    text-align: left;
  }

  .footer-subscrib .form-group {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .footer .alert {
    padding: 5px;
  }

  .footer-subscribe .form-group {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .footer .navbar-brand {
    margin: 30px 0;
  }
}

/*End Footer*/

/* Contact Form Start */
.contact-form {
  width: 100%;
  max-width: 1140px;
  margin-top: 25px;
}
.contact-form .form-group {
  display: flex;
  margin-bottom: 20px;
}
.contact-form .form-control {
  margin: 0 15px;
  height: unset;
  padding: 10px 15px;
}
.contact-form .submit-wrapper {
  text-align: center;
  margin-bottom: 20px;
}
.contact-form .alert {
  max-width: 350px;
  margin: 0 auto;
}
button.btn {
  width: 100%;
  max-width: 350px;
  color: #fff;
  margin: 0 15px;
  background-color: #216dca;
  padding: 10px 15px;
}

@media (max-width: 767px) {
  .contact-form .form-group {
    flex-direction: column;
  }
  .contact-form .form-control {
    margin: 0 0 20px;
  }
  button.btn {
    margin: 0;
  }
}
/* Contact Form End */

/*-----Custom----*/

.nav-item-mail {
  display: none;
}
.img-text .text__wrap {
  padding: 145px 100px 120px 90px !important;
}
.img-text .section__title {
  max-width: 100%;
}
.img-text a.btn {
  max-width: 100% !important;
}
.title-custom {
  margin-bottom: 0px;
}

.blocks .block-text {
  justify-content: center;
}
.navbar-brand svg {
  width: 100%;
  max-width: 190px;
}
.footer-logo-custom svg {
  width: 100%;
  max-width: 150px;
}
@media (max-width: 775px) {
  .nav-item-mail {
    display: block;
    margin-top: 10px;
  }
  .img-text .text__wrap,
  .img-text.left .text__wrap {
    padding: 60px 15px !important;
  }
  .footer .navbar {
    justify-content: center;
  }
}

ul.section-logo li:before {
  display: none !important;
}
/* ul.section-logo li:first-child {
  padding: 0 !important;
} */
.section-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.section-logo img {
  max-height: 46px;
}

ul.section__btns.section-logo li {
  padding-left: 0px;
  padding-right: 30px;
  padding-bottom: 20px;
}
.footer-address {
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
}
.footer-subscribe {
  display: flex;
  align-items: center;
  width: 100%;
}
.footer {
  background-color: #0b2244;
  padding-top: 25px;
}
.footer .nav-link {
  color: #fff;
}

.footer .copyright-bar .row p {
  color: #fff;
}
.car-form input {
  padding: 10px;
  border: 1px solid #000;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 10px;
  background: #fff;
  width: 49%;
}
.car-form > form > input[type="text"]:nth-child(3) {
  width: 99%;
  height: 80px;
}

.car-form button {
  width: 49%;
  padding: 10px;
  color: #fff;
  background: #0b2244;
}

@media (max-width: 769px) {
  .navbar-nav {
    padding: 50px 0px;
  }
  .hero .container {
    display: flex;
    align-items: center;
  }
  .section-logo {
    flex-direction: column;
  }
  ul.section-logo li {
    margin-bottom: 20px;
  }

  ul.section-logo li:nth-child(4) {
    margin-bottom: 0px;
  }
  .car-form input {
    width: 100%;
  }
  .car-form button {
    width: 100%;
  }
  .car-form > form > input[type="text"]:nth-child(3) {
    width: 100%;
  }
  .footer {
    padding-top: 0px;
  }
  .footer .navbar-brand {
    margin: 0;
  }
  .footer-top > div > div > nav {
    margin-bottom: 20px;
  }
  .footer-address {
    text-align: center;
    margin-bottom: 20px;
  }
  .section-logo li {
    padding: 0px !important;
  }
  .title-custom,
  #Industries > div.section__col.text__wrap > h2,
  body > main > section:nth-child(3) > div.section__col.text__wrap > h2,
  body > main > section:nth-child(3) > div.section__col.text__wrap > p {
    text-align: left;
  }

  #home > div > nav > button {
    margin-top: -10px;
  }
  ul.section-logo li {
    width: 100%;
  }
}

body > main > section.section.hero > div > h1:nth-child(2) {
  display: none;
}
body > footer > div.footer-top > div > div > div {
  padding: 0px;
  flex-basis: 100%;
  max-width: 100%;
}
main > section.section.rich-text {
  min-height: 0;
}
.blocks .block-text .arrow-btn {
  display: none;
}
.blocks .block-text {
  padding: 25px 30px;
}
.footer-address {
  text-align: center;
  margin-bottom: 25px;
  width: 100%;
}
@media (max-width: 775px) {
  .blocks .block-text {
    padding: 35px 30px;
  }
  .footer-address {
    margin-top: 25px;
    padding: 0 15px;
  }
}
.footer {
  padding: 0px;
}
.navbar-toggler {
  display: none;
}
