* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Raleway", sans-serif;
}

section {
  padding: 70px 0;
}

p,
a,
li {
  font-size: 16px;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0 0 20px 0;
  padding: 0;
  font-weight: normal;
}

.container h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}

.container h2, .container .h2 {
  font-weight: 500;
  font-size: 24px;
}

.container h3, .container .h3 {
  font-size: 24px;
}

.centered{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.container ul {
  list-style: none;
  text-align: left;
}


.container ul li {
  margin-left: 20px;
}
.main-header .container ul li {
  margin-left: 0;
}

.container img {
  width: 100%;
  height: auto;
}
.header-top img {
  width: auto !important;
}

.container p {
  /*    line-height: 1.125;*/
  text-align: left;
  color: #2f2f2f;
}

.container a:hover,
.container .button:hover {
  text-decoration: none;
}

strong {
  font-family: "Raleway SemiBold";
}

.small {
  font-size: 14px;
  margin-left: 30px;
  font-style: italic;
}
.header-menu .small {
    font-style: normal;
}

button:focus {
  outline: none;
}

.bg-lightgrey {
  background-color: #f7f7f7;
  padding: 70px 0 80px 0;
}

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

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.l-3 {
  width: 23.5%;
}

.l-4 {
  width: 31.5%;
}

.l-5 {
  width: 38.5%;
}

.l-6 {
  width: 48.5%;
}

.l-7 {
  width: 58.5%;
}

.l-12 {
  width: 100%;
}

.button {
  display: block;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: #00a8e7;
  text-decoration: none;
  font-size: 16px;
  color: white;
  text-align: center;
  cursor: pointer;
  transition: 0.7s;
}

.button:visited {
  color: white;
}

.button:hover {
  color: white;
  background-color: #2d76bb;
  transition: 0.7s;
}

.button:active {
  color: white;
  background-color: #3c9efa;
  transition: 0.7s;
}

.intro {
  padding-bottom: 5%;
}

.intro-info {
  margin-bottom: 35px;
  padding-right: 10px;
}

.intro .plane {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

#express-delivery h2 {
  text-align: left;
  margin-bottom: 50px;
}

#express-delivery .express-items {
  justify-content: space-around;
  counter-reset: express-items;
}

#express-delivery .express-item {
  position: relative;
  padding-bottom: 15px;
  text-align: center;
  width: 152px;
  margin-bottom: 20px;
}

#express-delivery .express-item::after {
  position: absolute;
  bottom: 10px;
  left: 35%;
  content: "";
  width: 30%;
  height: 3px;
  border-radius: 2px;
  background-color: #00a8e7;
  transition: 0.5s;
}

#express-delivery .express-item:hover::after {
  width: 80%;
  left: 10%;
}

#express-delivery .express-item p {
  text-align: center;
}

#express-delivery .icon-container {
  height: 75px;
  position: relative;
  margin-bottom: 20px;
}

#express-delivery .icon-container::after {
  position: absolute;
  bottom: -10px;
  right: 15px;
  background: #ffffff;
  color: #00a8e7;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 3px 16px rgba(41, 41, 41, 0.19);
  font-family: "Raleway SemiBold", sans-serif;
  font-size: 16px;
  font-weight: 400;
  counter-increment: express-items;
  content: counter(express-items);
  transition: 0.7s;
}

#express-delivery .express-item:hover .icon-container::after {
  box-shadow: none;
}

#express-delivery .icon-container img {
  width: auto;
  height: 70px;
}

#express-delivery ul li::before {
  content: "\2022";
  color: #00a8e7;
  margin-right: 15px;
  margin-left: -20px;
  font-size: inherit;
}

#advantages .advantage-text,
#advantages .advantage-img {
  margin-bottom: 35px;
}

#advantages h2 {
  text-align: left;
  margin-bottom: 35px;
}

#advantages .btn-expert {
  height: 42px;
  max-width: 250px;
  line-height: 42px;
  font-size: 14px;
  margin-top: 35px;
}

#advantages .advantage-img img,
#fastest .fastest-img img {
  border-radius: 4px;
  overflow: hidden;
}

#fastest h2 {
  margin-bottom: 60px;
}

#fastest .fastest-img,
#fastest .fastest-text {
  margin-bottom: 30px;
}

#fastest ol {
  counter-reset: stages;
  list-style: none;
  text-align: left;
}

#fastest ol li {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 63px;
  box-shadow: 3px 2px 27px rgba(154, 154, 154, 0.18);
  border-radius: 8px;
  background-color: #ffffff;
  padding: 10px 5% 10px 60px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.5s;
}

#fastest ol li:hover {
  box-shadow: 3px 2px 27px rgba(0, 168, 231, 0.18);
}

#fastest ol li::before {
  position: absolute;
  left: 34px;
  top: 27%;
  counter-increment: stages;
  content: counter(stages);
}

#fastest p {
  text-align: center;
}

#facts .h2 {
  text-align: left;
  margin: 50px 0;
}

#facts ol {
  counter-reset: facts;
  list-style: none;
  text-align: left;
}

#facts ol li {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 87px;
  box-shadow: 3px 2px 27px rgba(154, 154, 154, 0.18);
  border-radius: 8px;
  background-color: #ffffff;
  padding: 10px 5% 10px 90px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.5s;
}

#facts ol li:hover {
  box-shadow: 3px 2px 27px rgba(0, 168, 231, 0.18);
}

#facts ol li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 45px;
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  background-color: #00a8e7;
  counter-increment: facts;
  content: counter(facts);
  color: #ffffff;
  font-family: "Raleway Medium";
  font-size: 18px;
  font-weight: 500;
  transition: all 0.5s;
}

#facts ol li:hover::before {
  background-color: #2d76bb;
}

#facts p {
  margin: 30px 0 50px 0;
}

#guarantees .top-caption {
  max-width: 720px;
  margin: 30px auto;
}

#guarantees .top-caption p {
  text-align: center;
}

#guarantees .card-container p {
  color: white;
}

#guarantees .card-block {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
#guarantees .front,
.back {
  background-size: cover;
  background-position: center;
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  min-height: 200px;
  height: auto;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
}
#guarantees .back {
  background: #cedce7;
  background: linear-gradient(45deg, #cedce7 0%, #596a72 100%);
}
#guarantees .front:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  opacity: 0.6;
  background-color: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}
#guarantees .card-block:hover .front,
#guarantees .card-block:hover .back {
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
#guarantees .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#guarantees .inner {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}

#guarantees .card-block .inner p {
  text-align: center;
}

#guarantees .card-block .back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
#guarantees .card-block .front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
#guarantees .card-block:hover .back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
#guarantees .card-block:hover .front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
#guarantees .front .inner p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

@media screen and (max-width: 420px) {
  #guarantees .back .inner p {
    font-size: 1.2rem;
  }
}

#guarantees .front .inner p:after {
  content: "";
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #c6d4df;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -0.75rem;
}
#guarantees .block-1 .front {
  background: url("../img/card-1.png") no-repeat center/cover;
}
#guarantees .block-2 .front {
  background: url("../img/card-2.png") no-repeat center/cover;
}
#guarantees .block-3 .front {
  background: url("../img/card-3.png") no-repeat center/cover;
}
#guarantees .block-4 .front {
  background: url("../img/card-4.png") no-repeat center/cover;
}
#guarantees .block-5 .front {
  background: url("../img/card-5.png") no-repeat center/cover;
}
#guarantees .block-6 .front {
  background: url("../img/card-6.png") no-repeat center/cover;
}

#rewiews {
  padding: 70px 0;
  background: #2f8eb4 url(../img/rewiews-bg.jpg) no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

#rewiews .rewiews-title {
  text-align: center;
  margin-bottom: 30px;
}

#rewiews .rewiews-title{
  color: white;
}

#rewiews .rewiews-container {
  margin: 0 -10px;
}

#rewiews .rewiew-container {
  margin: 10px 0 20px 0;
  float: none;
}

#rewiews .rewiew-item {
  height: 100%;
  position: relative;
  display: block;
  padding: 40px 30px 10px 30px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 5px 3px 24px rgba(41, 41, 41, 0.18);
  margin-bottom: 20px;
}

#rewiews .rewiew-item::before {
  content: "";
  width: 40px;
  height: 37px;
  background: url(../img/right-quotes-symbol.png) no-repeat;
  position: absolute;
  top: -11px;
  left: 21px;
}

#rewiews .rewiew-item .author {
  text-align: right;
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0;
}

#rewiews .rewiew-text {
  height: 74px;
  overflow: hidden;
}

#rewiews .button {
  max-width: max-content;
  padding: 5px 20px;
  margin: 20px auto 0;
}

#clients,
#partners {
  padding: 70px 0;
}

.our-partners-swiper-wrapper .swiper-partners-slide,
.our-clients-swiper-wrapper .swiper-partners-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.our-partners-swiper-wrapper .swiper-partners-slide img,
.our-clients-swiper-wrapper .swiper-partners-slide img {
  max-width: 120px;
  max-height: 80px;
  opacity: 0.3;
  transition: 0.5s;
}

.our-partners-swiper-wrapper .swiper-partners-slide:hover img,
.our-clients-swiper-wrapper .swiper-partners-slide:hover img {
  opacity: 1;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 0;
  transform: none;
  text-align: center;
  margin: 30px auto;
}

.rewiews-slider a:hover {
  text-decoration: none;
}

#offer {
  padding-bottom: 0;
}

.container .clients-title, .container .partners-title {
  text-align: center;
  margin-bottom: 30px;
}

.container .offer-title {
  text-align: left;
  margin: 10px 0 35px 0;
}

.form-container .form-field {
  width: 100%;
  border-radius: 4px;
  margin: 0 0 10px 0;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #f4f4f4;
  transition: all 0.3s;
  resize: none;
}

.form-container .count-form .form-field {
  padding-right: 28%;
}

.form-container .form-field:hover {
  border: 1px solid #d6d6d6;
}

.form-container .form-field:focus {
  border: 1px solid #b6b6b6;
  background-color: #f4f4f4;
}

.form-container .main-form-submit,
.form-container .count-form-submit {
  display: block;
  border: none;
  margin: 20px auto;
  transition-duration: 0.2s;
  height: 34px;
  padding: 0 10px;
  color: #fff;
  font-size: 13px;
  background-color: #00a8e7;
  border-radius: 3px;
}

.form-container .count-form .count-form-submit {
  width: 100%;
  max-width: 460px;
  height: 42px;
  margin-left: 0;
  font-size: 16px;
}

.form-container .main-form-submit:hover,
.form-container .count-form-submit:hover {
  background-color: #2d76bb;
}

.form-container .small-text-form {
  color: #2f2f2f;
  font-size: 11px;
}

.form-container .small-text-form a {
  font-size: 11px;
}

#offer .offer-img {
  width: 80%;
  margin-left: 5%;
}

@media screen and (max-width: 1199px) {
}

@media screen and (max-width: 991px) {
  .l-6 {
    width: 100%;
  }
  #facts ol li {
    min-height: 110px;
  }
  #offer .offer-img {
    display: block;
    width: 50%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .bg-lightgrey{padding: 30px 0;}
}

@media screen and (max-width: 575px) {
  .l-4,
  .l-5,
  .l-7 {
    width: 100%;
  }
  #facts ol li {
    min-height: 130px;
    font-size: 12px;
  }
}

@media screen and (max-width: 375px) {
  #facts ol li {
    min-height: 150px;
  }
}

.block-calculator{
    padding: 0;
}

.block-calculator .wrapper{
    padding: 5% 0;
    position: relative;
}

.block-calculator .title{
    font-weight: bold;
    font-size: 48px;
    line-height: 1;
    color: #363B3F;
    margin-bottom: 25px;
}

.block-calculator .title span{
    font-size: 36px;
}

.block-calculator .text{
    margin-bottom: 20px;
    font-size: 16px;
}

.block-calculator .img-absolute{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    z-index: -1;
}

.block-calculator .calc-link{
    margin-bottom: 20px;
    background: #E33F31;
    width: 195px;
    height: 42px;
    margin-top: 20px;
    line-height: 1;
    display: block;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;

}

.block-calculator .calc-link:hover{
    background: #a93328;
    box-shadow: 0 0 10px #E33F31;
}

.block-calculator .img-box, .block-calculator .text-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block-calculator .row{
    flex-wrap: nowrap;
    margin: 0 15px;
}

.block-calculator .img-box img{
    height: auto;
    width: 100%;
}

#videoLink{
    width: 220px;
    padding: 16px 12px;
    background: #fff;
    position: fixed;
    right: 40px;
    bottom: 100px;
    border-radius: 4px;
    z-index: 200;
    text-decoration: none;
    cursor: pointer;
}
#videoLink .close-btn{
    position: absolute;
    width: 23px;
    height: 23px;
    background: #fff;
    border-radius: 50%;
    top: -12px;
    right: -12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #838383;
    transform: rotate(45deg);
    z-index: 201; 
    font-style: normal;
    transition: .3s;   
}
#videoLink img{
    display: block;
    margin-bottom: 20px;
}
#videoLink .text{
    font-weight: 700;
    font-size: 14px;
    line-height: 1.14;
    color: #283C5C;
    padding: 0 10px 0 20px;

}
#videoLink:before{
    content: '';
    border: 11px solid transparent;
    border-left: 11px solid #00A8E7;
    position: absolute;
    bottom: 20px;
    left: 0;
}

@media screen and (max-width: 991px) {
   .block-calculator .img-absolute{opacity: 0.2;}

}

@media screen and (max-width:767px){
   .block-calculator .img-box{display: none;}
}
.vid-block{
    background: url(/images/vid-bg.png) no-repeat right center / cover;
    padding: 40px 0;
}
.vid-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vid-box .text-wrap{
    width: 50%;
    padding-left: 65px;
    border-left: 3px solid #00A8E7;
}
.vid-box .text-wrap .title{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #283C5C;
    margin-bottom: 15px;
}
.vid-box .text-wrap .title span{
    font-size: 75%;
    font-weight: 500;
}
.vid-box .link{
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: underline;
    color: #00A8E7;
}
.vid-box .link:hover{
    color: #283C5C;
}
.vid-box .img-wrap{
    width: 320px;
    position: relative;    
}
.vid-box .img-wrap img{max-width: 100%;}

@media screen and (min-width: 993px) {
    .vid-box .img-wrap{
        margin-right: 5%;
    }
    .vid-box .img-wrap:before {
        content: '';
        width: 150px;
        height: 50px;
        background: url(/images/vid-arrow.png) no-repeat center / contain;
        position: absolute;
        top: 50%;
        right: 115%;
    }
}
@media screen and (max-width: 768px) {
    .vid-box{flex-direction: column;}
    .vid-box .text-wrap{width: 100%; padding-left: 15px;}
    .vid-box .img-wrap{width: 100%; max-width: 320px; margin: 15px auto 0;}
}
@media screen and (max-width: 450px) {
    .vid-box .text-wrap .title{font-size: 24px;}
}

#footer, #footer p{
    color: #999;
}
#footer a{
    text-decoration: none;
    transition: .3s;
    color: #fff;
}
#footer .tabs-link:hover{
    color: #fff;
}
#footer a:hover {
    color: #00a8e7;
}
#footer li{
    list-style: none;
    color: #fff;
    margin-left: 0;
}
.company-services li {    
    margin-bottom: 15px;
}
.company-services li a {
    color: #fff;
    font-size: 16px;    
}
#footer .small{
  margin-left: 0;
}
#footer .small a{  
  font-size: 1rem;
  font-style: normal;
  color: #999;
}

