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

body {
    font-family: 'Averta', sans-serif;
}

a {
    color: black;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}
.text-justify{
    text-align:justify;
}
#main{
    margin-bottom: 830px;
    z-index: 99;
    margin-top:94px;
    position: relative;
    background: white;
}

section{
    overflow: hidden;
}


.postwithmail a {
    all:unset !important;
}

header {
    z-index: 555;
}
 .icon-block{
    color: #fff;
    padding: 0;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position:relative;
}
 .icon-block img{
     width:30px;
     height:auto;
 }
 .icon-block{
    color:#333;
}
.icon-block i{
    font-size:19px;
}
.icon-block span{
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
}
.icon-block .languages .lang-dropdown{
    height: auto;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    flex-direction: column;
    position: absolute;
    background-color: white;
    overflow: hidden;
    z-index: 10;
    display: none;
    top: 36px;
    z-index: 25;
    right: initial;
    left: -40px;
}
.icon-block .languages .lang-dropdown .langs{
    width: 100%;
    padding: 0;
    margin: 0;
}
.icon-block .languages .lang-dropdown .langs li{
        -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.icon-block .languages .lang-dropdown .langs li:hover{
    background-color: #f5f5f5;
}
.icon-block .languages .lang-dropdown .langs li a{
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 11px 6px 8px;
    display: flex;
    align-items: center;
}
.icon-block .languages .lang-dropdown .langs li img{
    width: 20px;
    height: 20px;
    object-fit: cover;
    margin-right: 5px;
}

.fixed {
    position: fixed;
    width: 100%;
    background-color: #fff !important;
    top: 0;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    left: 0;
    z-index: 9999;
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 5px;
}
header.fixed .navbar-nav .nav-item .nav-link{
    color:black;
}

header.fixed .dropdown .dropdown_icon { 
    stroke: black; 
}
header.fixed .phone_wrap a {
    border: 1px solid #979797; 
    color: black;
}
 
.animate_delay_200ms {
    animation-delay: 0.2s;
}

.animate_delay_300ms {
    animation-delay: 0.3s;
}

.animate_delay_400ms {
    animation-delay: 0.4s;
}

.animate_delay_600ms {
    animation-delay: 0.6s;
}

.section_padding {
    padding: 5rem 0;
}

/* =======================================Header=========================== */

 header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding:10px 0;
} 

header .navbar-nav {
    display: flex;
    align-items: center;
}

header .navbar {
    padding: 0;
    display: flex;
    align-items: center;
    /*height: 76px;*/
}

header .navbar .navbar-brand {
    width: 165px;
    margin-right: 80px;
    padding: 0;
}
header.en .navbar .navbar-brand{
    width:145px;
}

header .navbar-collapse {
    flex-grow: unset;
}

.navbar-light .navbar-brand .logo {
    width: 100%;
animation:scale-logo1 1s;
}

header.fixed .navbar-light .navbar-brand .logo {

    animation:scale-logo 1s 0.7s;
}
@keyframes scale-logo{
    0% {
        transform:scale(0);
    }
    100%{
        transform:scale(1);
    }
}
@keyframes scale-logo1{
    0% {
        transform:scale(1);
    }
    50%{
        transform:scale(0.5);
    }
    
    100%{
        transform:scale(1);
    }
}
header .navbar-nav .nav-item {
    margin-right: 20px;
}

header .navbar-nav .nav-item .nav-link {
    color: black;
    position: relative;
    transition: 0.3s ease;
    will-change: transform;
    line-height: 100%;
    padding: 3px 0;
    font-weight: 500;
    
}
header  .menu_wrapper .languages span{
    color: black;
    position: relative;
    transition: 0.3s ease;
    will-change: transform;
    line-height: 100%;
    padding: 23px 0;
    font-weight: 500;
}
header.fixed  .menu_wrapper .languages span{
     color: black;
}
header .navbar-nav .nav-item:hover .nav-link {
    color: #e85258 !important;
}

header .navbar-light .navbar-nav .nav-link:focus,
header .navbar-light .navbar-nav .nav-link:hover {
    color: #e85258 !important;
}

header .dropdown-menu {
    position: absolute;
    width: 370px;
    top: 100%;
    left: 0;
    display: none;
    padding: 12px 34px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 30px rgb(0 0 0 / 8%);
    box-shadow: 0 0 30px rgb(0 0 0 / 8%);
    -webkit-animation-name: dropdownFadeIn;
    -moz-animation-name: dropdownFadeIn;
    -o-animation-name: dropdownFadeIn;
    animation-name: dropdownFadeIn;
    -webkit-animation-duration: .35s;
    -moz-animation-duration: .35s;
    -o-animation-duration: .35s;
    animation-duration: .35s;
    min-width: 190px;
    border-color: transparent;
   
}

@keyframes dropdownFadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        transform: translateZ(0);
    }

    100% {
        opacity: 1;
    }
}


header .dropdown:hover svg {
    transform: rotate(180deg);
    margin-bottom: 2px;
}

header .dropdown:hover .dropdown_icon {
    stroke: #e85258;
}


header .dropdown-menu::before {
    position: absolute;
    content: '';
    bottom: 100%;
    left: 30px;
    border: 7px solid transparent;
    border-bottom: 8px solid #fff;
}

header .dropdown-menu .dropdown-item {
    padding: 0 0 10px;
    line-height: 1.5;
}

header .dropdown-item:focus,
header .dropdown-item:hover {
    color: #e85258;
    background-color: transparent;
}

header .dropdown svg {
    width: 10px;
    height: 7px;
    margin-left: 2px;
    opacity: 1;
}

header .dropdown-toggle::after {
    content: none;
}

header .dropdown .dropdown_icon {
    fill: none;
    stroke: black;
    stroke-width: 1.5px;
    fill-rule: evenodd;
}

header .dropdown .dropdown_desc {
    font-size: 14px;
    line-height: 1.71;
    color: #4c4c4c;
    font-weight: 300;
}

header .dropdown .dropdown-menu hr {
    display: block;
    margin: 20px 0;
    border-top: 1px solid #004891;
}

header .header_left,
header .header_right {
    display: flex;
    align-items: center;
    
}
header .header_right {
    flex-direction:column;
}
header .header_left p{
     font-size: 18px;
    font-weight: 900;
     color: #2f98c1;
    margin-bottom:0;
}
header .column-bottom{
    display:flex;
    align-items:center;
}
header .header_right a {
    display: block;
    color: black;
    line-height: 1.37; 
}

header .phone_wrap a {
    border: 1px solid black;
    padding: 9px 28px;
    font-size: 14px;
    border-radius: 54px;
    color: black;
}

header .phone_wrap a:hover{
    border-color: #e85258;
    color: #e85258 !important;
}

header .order_btn {
    margin-left: 20px;
}

 header .navbar-nav .dropdown-menu >li{
     margin-bottom:5px;
            border: 1px solid #e1e1e1;
    /*border-radius: 54px;*/
    padding: 10px 0 0 10px;
    }

header .order_btn a {
    padding: 9px 20px;
    color: #FFFFFF;
    background: #e43038;
    border: 1px solid #e43038;
    box-shadow: 0 0 14px 0 rgb(228 48 56);
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
     box-shadow: 0 0 0 18px transparent;
  -webkit-animation: inf-pulse 1s;
  -moz-animation: inf-pulse 1s;
  -o-animation: inf-pulse 1s;
  animation: inf-pulse 1s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes inf-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #e43038;
    -moz-box-shadow: 0 0 0 0 #e43038;
    -o-box-shadow: 0 0 0 0 #e43038;
    box-shadow: 0 0 0 0 #e43038;
  }
}
header .order_btn img{
    width: 15px;
    filter: invert(1);
    margin-left: 5px;
    margin-top: -2px;
}

header .order_btn a:hover {
    background: #ce0f17;
}


/* ===============================Main========================= */

main {
    /*margin-top: 70px;*/
    /*background: radial-gradient(96.92% 96.92% at 103.82% 87.19%, #212121 0, #464646 42.15%, #202020 100%);*/
}

main .carousel-item .img_wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 450px; */
    display:none;
}
main .carousel-item .img_wrapper .plane-img{
    max-width:650px;
}

.languages {
    cursor: pointer;

}
.languages:hover .lang__drop{
    opacity: 1;
    transform: translateY(20px);
    visibility: visible;
}
.lang__drop{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(38px);
    transition: 0.3s all;
    z-index: 22;
    background-color: white;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 8px 32px rgb(0 0 0 / 24%);
}
.lang__drop ul{
    padding-left:0;
}

.lang__drop ul a{
    color:black;
}
.lang__drop ul a:hover{
    opacity:0.8;
}
main .carousel-item .circle_wrap {
    position: absolute;
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    /*top: 50%;*/
    border-radius: 50%;
    width: 400px;
    height: 400px;
    transition: transform .8s;
    background-color: #505050;
    transition-delay: .1s;
}

main .carousel-inner .carousel-item {
    height: 85vh;
      /*background-image: url(https://grist.org/wp-content/uploads/2021/03/Maersk-container-ship-e1614978284476.jpg);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.item__overlay{
      background: -webkit-gradient(linear, left top, left bottom, from(#2f98c1), to(transparent));
 
  position: absolute;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0px;
  left: 0px;
  margin: auto;
  right: 0;
  height: calc(100% / 1.5);
}

main .carousel-inner .carousel-item>div:not(.item__overlay) {
    display: flex;
    align-items: center;
    height: 100%;
}

main .carousel-item {
    height: calc(100vh - 62px);
}

main .carousel-item img {
    position: relative;
    object-fit: contain; 
    max-width: 800px;
}

main .text_wrapper .title {
    font-weight: 600;
    font-size: 46px;
    line-height: 70px;
    margin-bottom: 0;
}
main .text_wrapper .title span.first{
    color:#00B9E4;
}
main .text_wrapper .title span.second{
    color:#ED2939;
}
main .text_wrapper .title span.third{
    color:#3F9C35;
}
main .text_wrapper {
    height: 100%;
    color: white;
    max-width: 474px;
}

main .text_wrapper p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.80);
    margin: 22px 0 0;
    line-height: 1.76;
    font-weight: 300;
}

main .text_wrapper .btn_wrap {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
}

main .text_wrapper .btn_wrap a{
    display: inline-block;
    border: 2px solid #87c540;
    box-shadow: 0 0 14px 0 rgb(116 189 33 / 36%);
    width: max-content;
    border-radius: 25px;
    font-size: 15px;
    color: white;
    min-width: 190px;
    text-align: center;
}

main .text_wrapper .btn_wrap div a:hover{
    transform: translateY(-5px);
}

main .text_wrapper .btn_wrap div:first-child a{
    border: 2px solid #ff0426;
    box-shadow: 0 0 14px 0 rgb(46 66 112 / 36%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ff0426), to(transparent));
    margin-right: 35px;
    padding: 12px 40px;
}

main .text_wrapper .btn_wrap div:last-child a{
    background: -webkit-gradient(linear, left top, left bottom, from(#2f98c1), to(transparent)); 
        border: 2px solid #2f98c1;
            box-shadow: 0 0 14px 0 rgb(47 152 193);
    padding: 12px 30px;
}
main .text_wrapper .btn_wrap div:first-child a{
    box-shadow: 0 0 14px 0 #ff0426;
}
main .text_wrapper .btn_wrap div:last-child:hover a{
    background: #2f98c1c4;
}
main .text_wrapper .btn_wrap div:first-child:hover a{
    background: #ff041bb8;
}

/*main .text_wrapper div.more_btn:hover a {*/
/*    background: #303030;*/
/*}*/

main .carousel-control-next,
main .carousel-control-prev {
    width: 45px;
    height: 45px;
    background : #ff0426;
    opacity: 1;
    margin: 0 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.8;
}

main .carousel-control-prev {
    left: auto;
    right: 60px;
}

main .carousel-control-next {
    right: 0;
}

main .carousel-control-next-icon,
main .carousel-control-prev-icon {
    width: 25px;
    filter: invert(1);
    background-size: contain;
    background-repeat: no-repeat;
}

main .control_btn:hover {
    background-color: #e85258;
}

main .carousel-control-next-icon {
    background-image: url(../img/next.png);
}

main .carousel-control-prev-icon {
    background-image: url(../img/left.png);
}

main .control_container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 15%;
}



/* ============================== About section =========================== */

.about_section{
    padding: 35px  0;
}

.about_section .about_title{
    text-align: center;
}

.about_section .about_title h1{
    font-size: 35px;
    line-height: 1.37;
    margin-bottom: 0;
    font-weight: 600;
}

.about_section .about_title p{
    font-size: 17px;
    margin: 16px 0 0;
    color: #666;
}

.about_section .advantage_box{
    /* margin: 56px auto 0; */
    max-width: 272px;
}

.about_section .advantage_box .img_wrap{
    height: 65px;
    text-align:center;
}

.about_section .advantage_box .img_wrap img{
    /* width: 100%; */
    height: 100%;
    object-fit: contain;

}
.about_section .advantage_box .img_wrap img.hue__first{
    filter:hue-rotate(194deg) brightness(1.3);
}
.about_section .advantage_box .img_wrap img.hue__second{
    filter:hue-rotate(5deg) brightness(1.3);
}
.about_section .advantage_box .img_wrap img.hue__third{
    filter: hue-rotate(245deg) brightness(0.4);
}
.about_section .advantage_box .box_title{
    margin-top: 28px;
    font-size: 20px;
    text-align:center;
}

/* ============================== Services =========================== */

.services {
    background-color: #f4f4f4;
    padding: 40px 0 40px;
    position: relative;
}

.services_left{
    display: flex;
    align-items: center;
}

.services_left p{
    font-size: 18px;
    line-height: 1;
    letter-spacing: .02em;
    z-index: 2;
    /*text-transform: lowercase;*/
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    width: max-content;
    margin-right: 50px;
    margin-bottom: 0;
}

.services .services_item h5 {
    font-size: 22px;
    margin-top: 12px;
    color:white;
}

.services .services_item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: #fff;*/
    border-radius: 15px;
    top: 0;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    color: #212121;
    height: 200px;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 24px;
}
.services .services_item::before{
    content:"";
    position:absolute;
    background:-webkit-gradient(linear, left top, left bottom, from(#ff042675), to(transparent));
    top:0;
    left:0;
    bottom:50%;
    right:0;
    z-index:10;
}
.services .services_item .service_back_img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index:9;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
    overflow: hidden;
     
    border-radius: 15px;
}

.services .services_item .overlay {
     opacity: 0;
    z-index:8;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: none;
}
.services .services_item .overlay img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.services .services_item:hover{
    color: #fff;
    transform: translateY(-10px);
    -webkit-box-shadow: 0 28px 53px -8px #c4c4c4;
    box-shadow: 0 28px 53px -8px #c4c4c4;

}

.services .services_item:hover .service-icon{
    filter: invert(1);
}

.services .services_item:hover .overlay{
    display: block;
}

.services .services_item:hover .service_back_img{
    opacity: 0;
}
.services .services_item:hover .overlay {
    opacity:1;
}
.services .services_item_wrap{
    z-index: 10;
    text-align: center;
}

.services .service-icon{
    width: 60px;
     filter: invert(1);
}

/* ============================== Blog =========================== */

.blog{
    padding: 40px 0;
}

.blog .owl-stage-outer{
    padding: 20px 0;
}

.blog .item a{
    color: black;
}

.blog .item_img{
    position: relative;
    border-radius: 15px;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 200px;
    color: #fff;
}

.blog .img_wrap{
    background-image: url('https://www.universalcargo.com/wp-content/uploads/difference-between-cargo-and-freight.jpg');
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: inherit;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #373a42;
    -webkit-transition: -webkit-transform .3s,-webkit-box-shadow .3s!important;
    transition: -webkit-transform .3s,-webkit-box-shadow .3s!important;
    transition: transform .3s,box-shadow .3s!important;
    transition: transform .3s,box-shadow .3s,-webkit-transform .3s,-webkit-box-shadow .3s!important;
    will-change: transform;
}

.blog .img_wrap::before{
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background-color: #373a42;
    opacity: .25;
}

.blog .img_wrap::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 50%;
    background-image: linear-gradient(0deg,rgba(0,0,0,.6),transparent);
    -webkit-transition: height .3s;
    transition: height .3s;
}

.blog .item:hover .img_wrap{
    -webkit-transform: scale3d(1.05,1.05,.00001);
    transform: scale3d(1.05,1.05,.00001);
    /*-webkit-box-shadow: 0 4px 15px 0 rgb(0 0 0 / 19%);*/
    /*box-shadow: 0 4px 15px 0 rgb(0 0 0 / 19%);*/
}

/*.blog .item:hover .img_wrap::after{*/
/*    height: 100%;*/
/*}*/

.blog .date{
    position: absolute;
    z-index: 10;
    bottom: 30px;
    left: 24px;
    right: 24px;
    border-top: 1px solid hsla(0,0%,100%,.5);
    padding-top: 20px;
    color: #fff;
    margin-bottom: 0;
}
.blog .date span{
     padding: 12px 24px;
    color: #FFFFFF;
    background:-webkit-gradient(linear, left top, left bottom, from(#ff0426), to(transparent));
    border: 1px solid #e43038;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    display:inline-block;
    transition:.3s;
}
.blog .date span:hover{
    transform:translateY(-5px);
    background: #ff041bb8;
}
.blog .item_descr{
    margin-top: 22px;
    
}

.blog .item_descr p{
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    hyphens: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog .owl-nav{
    position: absolute;
    width: 88%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.blog .owl-nav button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fafafa !important;
    -webkit-box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
    position: absolute;
    top: 152px;
    
}

.blog .owl-carousel .owl-nav button.owl-next{
    right: 0;
}

.blog .owl-carousel .owl-nav button.owl-prev{
    left: 0;
}

.blog  button img {
    width: 18px;
    height: 16px;
    opacity: 0.5;
    transition: 0.3s ease;
}

.blog  button:hover img{
    opacity: 1;
}

.blog .title-blog h1{
    font-weight:700;
}

/* ============================== references =========================== */

.references {
    padding: 16px 0 20px;
}

.references .section_title h3 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
}

.references .quote {
    width: 168px;
    height: 60px;
    margin: 39px 4px;
}

.references .quote a {
    display: block;
    height: 100%;
    width: 100%;
}
.references .quote  h2{
    font-size:26px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #272424;
    font-weight: 500;
    transition:.15s ease;
}

/*.references .quote:hover h2{*/
/*    color:#272424;*/
/*}*/
.references .quote img {
    /*opacity: 1;*/
    -webkit-transition: opacity .15s ease, -webkit-filter .15s ease;
    -moz-transition: filter .15s ease, opacity .15s ease;
    -o-transition: filter .15s ease, opacity .15s ease;
    transition: opacity .15s ease, -webkit-filter .15s ease;
    transition: filter .15s ease, opacity .15s ease;
    transition: filter .15s ease, opacity .15s ease, -webkit-filter .15s ease;
    /*-webkit-filter: grayscale(100%);*/
    /*filter: grayscale(100%);*/
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*.references .quote:hover img {*/
/*    opacity: 1;*/
/*    filter: none;*/
/*}*/

/* ============================== Call to action =========================== */

.call-to-action {
    background:radial-gradient(107.36% 107.36% at 103.82% 87.19%,#4fb9e4 0,#76c0dd 42.15%,#178dbb 100%);
    padding: 76px 0;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.call-to-action .content_wrap{
    text-align: center;
}

.call-to-action .content_wrap h3 {
    font-size: 35px;
    line-height: 1.37;
    font-weight: 600;
}

.call-to-action .content_wrap p {
    margin-top: 34px;
    font-size: 17px;
    line-height: 1.76;
    letter-spacing: .32px;
}

.call-to-action .btn_wrap{
    margin-top: 18px;
}

.call-to-action .btn_wrap a{
    display: inline-block;
    min-width: 200px;
    color: white;
    padding: 13px;
    margin: 25px 15px 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#2f98c1), to(transparent));
    box-shadow:0 0 14px 0 rgb(73 167 203);
    border-radius: 25px;
}

.call-to-action .btn_wrap a:hover{
    transform: translateY(-5px);
}

.call-to-action .btn_wrap a:first-child{
    background: -webkit-gradient(linear, left top, left bottom, from(#ff0426), to(transparent));
    box-shadow: 0 0 14px 0 rgb(232 83 87 / 36%);
}

/* ============================== Footer =========================== */

footer {
    padding: 35px 0 30px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
}

footer .footer_top {
    border-bottom: 1px solid #d6d9db;
    /* padding-bottom: 40px; */
}

footer .footer_top .footer_menu {
    padding: 0;
    margin: 0;
}

footer .footer_top .footer_menu li:nth-last-child(1) a {
    margin-bottom: 0;
}

footer .footer_top .footer_menu a {
    display: block;
    font-size: 13px;
    color: black;
    margin-bottom: 11px;
    font-weight: 300;
}

footer .footer_top .footer_menu li span{
    display: block;
    font-size: 13px;
    color: black;
    margin-bottom: 16px;
    font-weight: 300;
}

footer .footer_top .footer_menu p {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 16px;
}



footer .footer_bottom {
    padding-top: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

footer .footer_top .footer_menu li a:hover{
    color: #e85258;
}

footer .first_row {
    margin-bottom: 40px;
}

footer .copyright {
    display: flex;
    align-items: center;
}

footer .copyright img {
    width: 100px;
}

footer .copyright span {
    display: inline-block;
    font-size: 15px;
}

footer .copyright p{
    font-size: 14px;
    padding-top: 8px;
    display: flex;
    align-items: center;
}

footer .copyright p a:hover{
    color: black;
    text-decoration: underline;
}

footer .social_media {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0 15px;
    margin: 0;
}

footer .social_media li {
    margin-right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #a1a1a1;
    color: white;
    font-size: 15px;
    transition: .3s ease;
}

footer .social_media li i {
    color: #FFFFFF;
}

footer .social_media li a{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

footer .social_media .facebook i{
    font-size: 13px;
}

footer .social_media li:hover {
    background-color: #e85357;
}

footer .second_row {
    font-size: 13px;
}

footer .second_row a {
    display: inline-block;
    color: black;
}

footer .second_row .phone_wrap {
    font-weight: 500px;
}

footer .footer_bottom .logo_list{
    display: flex;
    align-items: center;
    flex-wrap:wrap;
}

footer .footer_bottom .logo_list a{
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-left: 10px;
}

 

footer .footer_bottom .logo_list a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fixed-wp {
  position: fixed;
  right: 30px;
  bottom: 50px;
  display: none;
  flex-direction: row;
  align-items: center;
  left: auto;
  z-index: 999;
  -webkit-animation: MoveUpDown 2s linear infinite;
          animation: MoveUpDown 2s linear infinite;
}

.fixed-wp span {
  font-weight: 700;
  color: white;
  background: #64b261;
  margin-right: 6px;
  padding: 4px 9px;
  border-radius: 4px;
  position: relative;
}
.fixed-wp span::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #64b261;
  border-style: solid;
}
.fixed-wp .wp-icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  text-align: center;
  background-color: #64b261;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}
.fixed-wp .wp-icon a {
  color: #fff;
  padding: 18px 5px;
  display: block;
  height: 100%;
}
.fixed-wp .wp-icon a i {
  margin-right: 0;
  font-size: 25px;
  line-height: 26px;
}

@-webkit-keyframes MoveUpDown {
  0% {
    bottom: 50px;
  }
  50% {
    bottom: 80px;
  }
  100% {
    bottom: 50px;
  }
}

@keyframes MoveUpDown {
  0% {
    bottom: 50px;
  }
  50% {
    bottom: 80px;
  }
  100% {
    bottom: 50px;
  }
}
 

@keyframes MoveUpDown2 {
  0% {
   transform: translateY(-20px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
     transform: translateY(-20px);
  }
}

.mobile-karabagh{
    
    bottom:15px;
    left:0;
    width:100%;
    text-align:center;
    color:#212529 !important;
    font-size:20px !important;
    margin-top:16%;
}
.mobile-karabagh.ru{
    font-size:17px !important;
}
.mobile-karabagh .first{
    color:#00B9E4;
}
.mobile-karabagh .second{
    color:#ED2939;
}

.mobile-karabagh .third{
    color:#3F9C35;
}
.karabakh-section span.first{
    color:#00B9E4;
}
.karabakh-section span.second{
    color:#ED2939;
}
.karabakh-section span.third{
    color:#3F9C35;
}
.section-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.section-content p{
    font-size: 24px;
    font-weight: 600;
    margin-bottom:0;
}
.pagination {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination span, 
.pagination a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f1f3;
    margin: 0 4px;
    border-radius: 2px;
    color: black;
}

.pagination a:hover{
    background: #6ccef4;
    color: white;
}

.pagination>span{
    background: #f2f3f5;
}

.pagination .nav-icons a,
.pagination .nav-icons span{
    color: #adadad;
}

.pagination .nav-icons a:hover{
    background: #f2f3f5;
}
 
header.inside_page_header{
    background: white;
    
}

/*header.inside_page_header .navbar{*/
/*    padding: 10px 0;*/
/*}*/

header.inside_page_header.fixed{
    padding: 0;
}
.static-bg{
     background-image: url(../img/photo-about-bg.jpg);
}

.cat-head{
     background-image: url(../img/photo-cat-background.jpg);
}
.contact-head{
       background-image: url(../img/contact-us.jpeg);
}
.inside_pages_head {
    padding-top: 70px;
    position: relative;
 
    height: 490px;
    width: 100%;
    z-index: 2;
    text-shadow: 0px 1px #1a1a1a;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.inside_pages_head:before{
    content: '';
    position: absolute;
    bottom: -65px;
    height: 100px;
    background-color: white;
    width: 100%;
    transform: rotate(2deg);
    z-index: 9;
}

.inside_pages_head:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #008ec473;
}

.inside_pages_head .title_wrap{
    z-index: 9;
}

.inside_pages_head .title_page h1{
    color: white;
    font-size: 48px;
    margin-bottom: 0;
}


header.inside_page_header .phone_wrap a,
header.inside_page_header .navbar-nav .nav-item .nav-link{
    color: black;
}

/*header.inside_page_header .navbar-light .navbar-brand .logo{*/
/*    filter: grayscale(1) brightness(100);*/
/*}*/

header.inside_page_header .dropdown .dropdown_icon{
    stroke: black;
}


header.inside_page_header .dropdown:hover .dropdown_icon{
    stroke: #e85258;
}

header.inside_page_header.fixed .navbar-light .navbar-brand .logo{
     filter: none;
}

header.inside_page_header.fixed .dropdown .dropdown_icon{
    stroke: black;
}

header.inside_page_header.fixed .phone_wrap a,
header.inside_page_header.fixed .navbar-nav .nav-item .nav-link{
    color: black;
}

.page_content{
    padding: 60px 0;
}

.page_content.blog .item{
    width: 33.33%;
    margin-bottom: 15px;
}

.page_content.services{
    background: white;
}

.page_content.services .services_item{
    background: #f4f4f4;
}

.career-category .career__box__wrapper{
    /*background: #f9f9f9;*/
    box-shadow:rgb(17 17 26 / 5%) 0px 4px 16px, rgb(17 17 26 / 5%) 0px 8px 32px;
    border-radius: 10px;
    padding:40px  12px;
}
.career-category .career__box__wrapper .box-title{
    display: flex;
    align-items: center;
    justify-content: center;

}
.career-category .career__box__wrapper .box-title h2 {
        font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}
.career-category .career__box__wrapper .d-flex{
    flex-direction:row;
    background: #5430190d;
}
  ul li{
        list-style:none;
  }
  .hiring-stuff{
      padding:30px 0; 
     
  }
 .career-category    .email-us-txt{
        margin-top:30px;
    }
.hiring-stuff:first-child{
        width:47%;
}
.hiring-stuff:last-child{
        border-left:1px solid #2f98c1;
        padding-left:30px;
}
     .hiring-stuff h3{
         font-weight:bold;
         margin-bottom:15px;
     }
          .hiring-stuff p{
       line-height:28px;
     }
     
.career-hr{
    display:flex;
    flex-direction:row;
    justify-content:flex-start;
}

.career-hr>ul:first-child{
    margin-right:40px;
}
.ul-description li{
    font-weight:bold;
}
/* ============================== Contact =========================== */

.contact .contact_info .icon{
    width: 8px;
    height: 8px;
    background: #e85258;
    border-radius: 50%;
    margin-right: 11px;
    margin-top: 7px;
    min-width: 8px;
}

.contact .contact_info{
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
}

.contact .contact_info h6{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.contact .contact_info a{
    display: block;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: black;
    font-weight: 300;
}
.contact .contact_info a span , .top__list a span{
    margin-right:10px;
}
.contact .contact_info a span  >svg, .top__list a span >svg{
    width:16px; 
    fill: #2f98c1;
}
.map_wrapper{
    margin: 80px 0;
}

#map{
    height: 450px;
}    

.contact .map_bottom {
    margin-top: 38px;
}

.contact .map_bottom div{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #87c540;
    font-size: 30px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .map_bottom p{
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.71;
    color: #333;
}

.contact .social_media{
    background-color: #f5f7fa;
    padding: 75px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .social_media h4{
    font-size: 35px;
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
}

  .social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    margin-top: 54px;
}

  .social-icons li{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #656d78;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    transition: all .15s ease;
}
header .top__list{
    justify-content:center;
    margin-bottom:10px !important;
}
header .social-icons li{
     width: 30px;
    height: 30px;
    margin: 0 14px 0 0;
}
header .social-icons{
    margin-top:0;
}
header .social-icons li a{
    height:13px;
}
  .social-icons li img{
    -webkit-transition: -webkit-filter .15s ease;
    -moz-transition: filter .15s ease;
    -o-transition: filter .15s ease;
    transition: -webkit-filter .15s ease;
    transition: filter .15s ease;
    transition: filter .15s ease,-webkit-filter .15s ease;
    -webkit-filter: invert(60%); 
    filter: invert(60%);
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;

}

  .social-icons li a{
    display: flex;
    height: 24px;
}

  .social-icons li:hover img {
    filter: none;
}

  .social-icons li:hover{
    -webkit-transform: scale(1.45);
    -moz-transform: scale(1.45);
    -ms-transform: scale(1.45);
    -o-transform: scale(1.45);
    transform: scale(1.45);
}

  .social-icons li.instagram:hover {
    background-color: #f15274;
    border-color: #f15274;
    outline: 0;
    -webkit-box-shadow: 0 7px 14px 0 rgba(227, 97, 131, 0.79);
    box-shadow: 0 7px 14px 0 rgba(227, 97, 131, 0.79);
}

 .social-icons li.facebook:hover {
    background-color: #6389c8;
    border-color: #6389c8;
    -webkit-box-shadow: 0 7px 14px 0 rgba(99, 137, 200, 0.80);
    box-shadow: 0 7px 14px 0 rgba(99, 137, 200, 0.80);
}

  .social-icons li.linkedin:hover {
    background-color: #0e76a8;
    border-color: #0e76a8;
    -webkit-box-shadow: 0 7px 14px 0 rgba(14, 118, 168, 0.80);
    box-shadow: 0 7px 14px 0 rgba(14, 118, 168, 0.80);
}

  .social-icons li.whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
    -webkit-box-shadow: 0 7px 14px 0 rgba(37, 211, 102, 0.80);
    box-shadow: 0 7px 14px 0 rgba(37, 211, 102, 0.80);
}

  .social-icons li.youtube:hover {
    background-color: #ec6060;
    border-color: #ec6060;
    -webkit-box-shadow: 0 7px 14px 0 rgba(236, 96, 96, 0.87);
    box-shadow: 0 7px 14px 0 rgba(236, 96, 96, 0.87);
}

 .social-icons li.telegram:hover {
    background-color: #2ea5e0;
    border-color: #2ea5e0;
    -webkit-box-shadow: 0 7px 14px 0 rgba(46, 165, 224, 0.80);
    box-shadow: 0 7px 14px 0 rgba(46, 165, 224, 0.80);
}

.contact .contact_form{
    border: 1px solid #e3e3e3;
    overflow: hidden;
    border-radius: 10px;
    margin: 80px auto;
    max-width: 830px;
}

.contact .form_head{
    display: flex;
    background: #f8f8f8;
    text-align: center;
}

.contact .form_head_left,
.contact .form_head_right{
    width: 50%;
}

.contact .form_head_left{
    border-radius: 10px 10px 0 0;
    background: #fff;
    padding: 17px 0;
}

.contact .form_head_left h5{
    margin-bottom: 0;
    font-size: 22px;
}
.contact.ru .form_head_left h5{
    font-size: 18px;
}
.contact .form_body{
    padding: 51px 140px 60px;
}

.ymaps-2-1-79-image {
    background-size: contain;
} 

.full_story .content_title{
    text-align: center;
    margin-bottom: 60px;
}
.static_content p{
    padding:0 20px;
    text-align:justify;
}
.static_content .quote,
.full_story .quote{
    float: left;
    width: 45%;
    margin-right: 30px;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.static_content .quote img,
.full_story .quote img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.static_content ul li,
.full_story ul li{
    position: relative;
}

.static_content ul li::before, 
.full_story ul li::before {
    background: url(../img/check-mark.png);
    width: 18px;
    height: 18px;
    content: '';
    background-size: contain !important;
    background-repeat: no-repeat;
    display: inline-block;
    margin: 0 7px -4px 0;
}

.blog_content >.quote{
    width: 100% !important;
    margin-bottom: 0;
}

.blog_content >.quote a{
    width: 30%;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    height: 270px;
    float: right;
    margin-left: 30px;
    clear: both;
}

.blog_content >.quote a:nth-child(1){
    float: left;
    margin-right: 30px;
    margin-left: auto;
}

.blog_content >.quote div {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.blog_content >.quote div a {
    width: calc(33.33% - 30px);
    margin: 15px !important;
    float: none !important;
}

.price_order .form_title {
    margin-bottom: 40px;
}

/*================================Modal=========================*/
.modal{
    z-index: 99999;
}

.modal-content {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    padding-top: 40px;
    position: relative;
    padding: 0 50px 50px;
}

.modal-header {
    padding: 22px 0 15px;
    border-color: #e6edf2;
}

.modal-body {
    padding: 20px 0 0;
}

 .modal-content .close {
    display: block;
    height: 20px;
    opacity: .5;
    position: absolute;
    right: 40px;
    top: 38px;
    width: 20px;
    z-index: 100;
    padding: 0;
    outline: transparent;
    border: none;
    background: transparent;
}

.modal-content .close::before, .modal-content .close::after {
    content: '';
    position: absolute;
    background: #282828;
    width: 100%;
    height: 2px;
    left: 0;
}

.modal-content .close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal-content .close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


@media (max-width:1400px){
    header .navbar .navbar-brand{
        margin-right:31px;
    }
    header.ru .navbar .navbar-brand{
    width:125px;
    margin-right: 24px;
}
header.ru .navbar-nav .nav-item .nav-link{
    font-size:14px;
}
}

@media only screen and (min-width: 991px) {
     header .scroll-drop{
        height:80vh;
        overflow:auto;
    }
    .mobile-karabagh{
        display:none;
    }


    .call-to-action .img_wrap {
        right: 0px;
        bottom: -35px;
        width: 600px;
        max-width: initial;
    }
    
    header .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media only screen and (min-width: 1200px) {

    .about_section .container,
    .advantages .container,
    .references .container {
        width: 996px;
    }

    .call-to-action .img_wrap {
        right: 30px;
        width: 700px;
    }

    .about_section .advantage_box{
        margin-top: 88px;
        max-width: 250px;
        margin-left: auto;
    }

    .blog .owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }

    .blog .owl-carousel .owl-nav button.owl-prev {
        left: -10px;
    }
}

@media only screen and (min-width: 991px) and (max-width: 1199.99px){
    .services .services_item h5 {
        font-size: 19px;
    }
    
    .services_left p{
        margin-right: 15px;
    }
    header .social-icons li{
        margin:0 7px 0 0;
    }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.99px){
    .blog .owl-nav{
        width: 44%;
    }
}

@media only screen and (min-width: 767.99px) and (max-width: 991px){
    main .text_wrapper .title{
        font-size: 32px;
    }
    .career-category .career__box__wrapper .d-flex{
        flex-direction:column;
    }
    .hiring-stuff:last-child{
        padding-left: 0;
        border-left:none;
        border-top:1px solid #2f98c1;
    }
    .career-category .career__box__wrapper .box-title h2{
            font-size: 24px;
    }
    .hiring-stuff h3{
        font-size: 20px;
    }
    main .text_wrapper p{
        font-size: 16px;
    }
    
  
    
}

@media only screen and (min-width: 1400px) {

    .call-to-action .img_wrap {
        max-width: 55%;
        right: 40px;
        bottom: -50px;
        max-height: 749px;
        width: 769px;
    }
}

@media only screen and (max-width: 1199.99px){
    header .navbar .navbar-brand{
        margin-right: 30px;
        width:110px;
    }
    header.en .navbar .navbar-brand{
        width:100px;
    }
    header.en .navbar-nav .nav-item .nav-link{
        font-size:15px;
    }
    header .phone_wrap a{
        padding: 9px 18px;
    }
    
    header .navbar-nav .nav-item {
        margin-right: 14px;
    }
    
    header .order_btn {
        margin-left: 0;
    }
    
    header .phone_wrap{
        margin-right: 15px;
     
    }
    
    main .carousel-item .circle_wrap {
        width: 350px;
        height: 350px;
    }
    
    main .carousel-item .img_wrapper img {
        max-width: 370px;
    }
    main .carousel-item .img_wrapper .plane-img{
        max-width:450px;
    }
    header .menu_wrapper>div a{
        margin-bottom: 15px;
    }
    
    .blog_content >.quote a{
        width: 40%;
    }
}

 header .navbar-nav .nav-item.mobile-lang{
     display:none;
 }
 .header-txt{
     margin-top:1px;
 }
@media (max-width:994px){
    .top__list a span.en{
        display:none;
    }
    
    .top__list a span.ru{
        display:none;
    }
}
@media only screen and (max-width: 991px){
   
    header.inside_page_header .navbar{
        padding:0;
    }
    header .navbar .navbar-brand{
        width:160px;
    }
    
    header.en .navbar .navbar-brand{
        width:160px;
    }
    header.ru .navbar .navbar-brand{
        width:160px;
    }
    header .top__list{
        display:none;
    }
    header .order_btn a{
        padding: 9px 9px;
        font-size:13px;
    }
     header .navbar-nav .dropdown-menu >li{
     margin-bottom:0;
            border:none;
    border-radius: 0;
    padding: 0;
    }
    header.ru .navbar-nav .nav-item .nav-link{
    font-size:16px;
}
    .resp_dropdown .services__drop__desc,  .resp_dropdown .services__drop__desc + hr{
        display:none;
    }
    
    footer{
        position:relative;
    }
    footer .footer_bottom{
        flex-wrap:wrap;
    }
    .career-category .career__box__wrapper .d-flex{
        flex-direction:column;
    }
      .hiring-stuff:first-child{
    width:100%;
        }
        .hiring-stuff:last-child{
            width:100%;
              border-top:1px solid #2f98c1;
                border-left:unset;
        }
    header .navbar-nav .nav-item.languages{
        display:none;
    }
    header .navbar-nav .nav-item.mobile-lang{
        display:flex !important;
        justify-content: flex-start;
        align-items: center;
        border:none;
    }
        header .navbar-nav .nav-item.mobile-lang a{
            color:black;
            padding: 20px 0;
              margin: 10px 20px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #0000003b;
    border-radius: 50%;
        }
         header .navbar-nav .nav-item.mobile-lang a.active{
             color:#e43038;
             font-weight: 700;
         }
    /*header.fixed .navbar-nav .nav-item .nav-link{*/
    /*    color:white;*/
    /*}*/
    /*header.fixed .dropdown .dropdown_icon{*/
    /*        stroke: white;*/
    /*}*/
    
    header.fixed .menu_wrapper .languages span{
        color:white;
    }
    /*header.fixed .phone_wrap a{*/
    /*    color:white;*/
    /*}*/
    .header-txt{
        display:none;
        margin-right:50px;
    }
    .bg_color {
        background: rgba(0, 0, 0, 0.6);
    }

    header .collapse {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100vh;
    }
    
    header .collapse .menu_wrapper {
        position: fixed;
        top: 0;
        bottom: 0;
        width: 90%;
        right: -100%;
        background: white;
        padding: 18px 50px;
        height: 100vh;
    }
    
    header .navbar-nav .nav-item{
        width: 100%;
        /*border-bottom: 1px solid rgba(255, 255, 255, 0.13);*/
        transition: .3s ease;
        margin-right: 0;
        
    border: 1px solid #0000003b;
    padding: 12px;
    margin-bottom: 5px;
    overflow:hidden;
    }
    
    header .navbar-nav .dropdown-menu{
        width: 100%;
        background: none;
        box-shadow: none;
        border-radius: 0;
    }
    
   
    /*header .navbar-nav .nav-item .nav-link,*/
    /*header .dropdown-menu .dropdown-item{*/
    /*    color: white !important;*/
    /*}*/
    
    header .navbar-nav .nav-item .nav-link{
        font-weight: 600;
        text-align:center;
    }
    
    header .dropdown .dropdown_desc{
        color: black;
    }   
    
    header .dropdown-menu::before{
        content: none;
    }
    
    /*header .dropdown .dropdown_icon{*/
    /*    stroke: white !important;*/
    /*}*/
    
    /*header .navbar-nav .nav-item:hover {*/
    /*    border-bottom-color: #e85258;*/
    /*}*/
    
    /*header .navbar-nav .nav-item:hover .nav-link{*/
    /*    color: #fff !important;*/
    /*}*/
    
    header .phone_wrap a,
    header .order_btn a{
        display: block;
        width: max-content;
    }
    
    header .phone_wrap a{
        /*color: white !important;*/
        border:1px solid #0000003b;
    }
    
    header .menu_wrapper>div{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 0px;
        justify-content: space-between;
        /*margin-right:46px;*/
    }
    
    .resp_dropdown{
        display: block !important;
    }
    
    header .navbar-nav{
        width: 100%;
        margin-top: 20px;
    }
    
    .menu_wrapper{
        overflow-y: scroll;
    }
    
    header .navbar-toggler{
        z-index: 9;
        border: none;
    }
    
    header .navbar-toggler:focus{
        box-shadow: none;
    }

    header .navbar-toggler .overlay {
      width: 40px;
      height: 40px;
      transition: 0.4s linear;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: row;
      flex-wrap: wrap;
    }
    header .navbar-toggler .overlay:hover {
      border-color: #D7263D;
      cursor: pointer;
    }
    
    header .navbar-toggler .button {
      width: 35px;
      height: 2px;
      background: #1e3465;
      transition: 900ms 175ms cubic-bezier(0.6, -0.46, 0.21, 1.3);
    }
    
    header .navbar-toggler .button:before, 
    header .navbar-toggler .button:after {
      content: "";
      transition: 400ms cubic-bezier(1, -0.81, 0.17, 1.2);
      width: 35px;
      height: 2px;
      display: flex;
      background: #1e3465;
      position: relative;
    }
    
    header .navbar-toggler .button:before {
      transform-origin: right;
      top: -10px;
    }
    
    header .navbar-toggler .button:after {
      bottom: -8px;
      transform-origin: left;
      float: right;
    }
    
    header .navbar-toggler .active {
      background: #e85258;
      border-color: #e85258;
      transform: rotate(270deg);
    }
    
    header .navbar-toggler .active .button {
      transform: rotate(-45deg);
    }
    
    header .navbar-toggler .active .button:before, 
    header .navbar-toggler .active .button:after {
      width: 17px;
      transform: rotate(-92deg);
    }
    
    header .navbar-toggler .active .button:before{
        top: -18px;
    }
    
    header .navbar-toggler .active .button:after{
        bottom: -15px;
    }
    
    header .navbar-toggler .active .button,
    header .navbar-toggler .active .button:before, 
    header .navbar-toggler .active .button:after{
        background: #fff;
    }
    
    header.inside_page_header .navbar-toggler .button:before, 
    header.inside_page_header .navbar-toggler .button:after,
    header.inside_page_header .navbar-toggler .button{
        background: black;
    }
    
    header.inside_page_header.fixed .navbar{
        padding: 0;
    }
    
    header.inside_page_header.fixed .navbar-toggler .button:before, 
    header.inside_page_header.fixed .navbar-toggler .button:after, 
    header.inside_page_header.fixed .navbar-toggler .button{
        background: #1e3465;
    }
    
    /*header.inside_page_header.fixed .phone_wrap a, */
    /*header.inside_page_header.fixed .navbar-nav .nav-item .nav-link{*/
    /*    color: white;*/
    /*}*/
    
    header.inside_page_header.fixed .navbar-toggler .active .button:before, 
    header.inside_page_header.fixed .navbar-toggler .active .button:after, 
    header.inside_page_header.fixed .navbar-toggler .active .button{
        background: white;
    }
    
    header.inside_page_header.fixed .dropdown:hover .dropdown_icon{
        stroke: #e85258;
    }
    
    /*header.inside_page_header.fixed .dropdown .dropdown_icon{*/
    /*    stroke: white;*/
    /*}*/
    
    main .carousel-item .circle_wrap {
        width: 300px;
        height: 300px;
    }
    
    main .carousel-item .img_wrapper img {
        max-width: 310px;
    }
    
    main .text_wrapper .btn_wrap a {
        min-width: 190px;
        padding: 12px 0 !important;
        margin: 15px 10px 0 !important;
    }
    
    main .text_wrapper .btn_wrap{
        margin-top: 40px;
    }
    
    main .text_wrapper .btn_wrap a{
        margin-top: 15px;
    }
    
    .about_section .about_title h1{
        font-size: 25px;
    }
    
    .about_section .about_title p{
        font-size: 16px;
    }
    
    .services_left p{
        margin-right: 25px;
    }
    
    #main {
        margin-bottom: 0;
        margin-top:85px;
    }
    
    footer .footer_top .row>div{
        margin-bottom: 24px;
    }
    
    footer .footer_top .footer_menu a{
        margin-bottom: 10px;
    }
    
    .contact .form_body{
        padding: 51px 80px 60px;
    }
    
    .page_content.blog .item{
        width: 50%;
    }
    
    .blog_content >.quote div a {
        width: calc(50% - 30px);
    }
    
}


@media only screen and (max-width: 767.99px){
    .services_left p{
        
      -webkit-animation: MoveUpDown2 2s linear infinite;
          animation: MoveUpDown2 2s linear infinite;
}
    .fixed-wp {
        display:flex !important;
    }
    .services_left p{
        margin-top:40px;
        border-radius: 54px;
    border: 1px solid #a59696;
    padding: 15px 9px;
    margin-right: 5px;
    }
    header .collapse .menu_wrapper{
        padding:18px 20px;
        padding-top:18px;
    }
    main .text_wrapper{
        text-align: center;
        margin: auto;
        margin-top: 40px;
    }
    
    main .text_wrapper .btn_wrap{
        justify-content: center;
    }
    
    main .text_wrapper .title{
        font-size: 35px;
        line-height: 1.3;
    }
    
    main .text_wrapper .btn_wrap {
        margin-top: 20px;
    }
    
    main .text_wrapper p{
        font-size: 16px;
        margin: 15px 0 0;
    }
    
    main .carousel-item .circle_wrap {
        width: 250px;
        height: 250px;
    }
    
    main .carousel-item .img_wrapper img {
        max-width: 255px;
    }
    
    main .carousel-item .img_wrapper{
        margin-top: 55px;
    }
    
    .about_section .about_title h1{
        font-size: 22px;
    }
    
    .about_section .advantage_box{
        margin: 25px auto;
    }
    
    .about_section .advantage_box .img_wrap,
    .about_section .advantage_box .box_title{
        text-align: center;
    }
    
    .about_section .about_title p{
        margin: 16px 0;
    }
    
    .about_section .advantage_box .box_title{
        margin-top: 20px;
    }
    
    .about_section {
        padding: 4rem 0 3.4rem;
    }  
    
    .services_left{
        align-items: flex-start;
    }
    
    .services_left p{
        margin-right: 12px;
    }
    
    .blog .owl-nav{
        width: 75%;
    }
    
    #main {
        margin-bottom: 0;
    }
    
    footer{
        position: relative;
    }
    
    footer .copyright{
        margin-bottom: 20px;
    }
    
    .contact .form_body {
        padding: 51px 50px 60px;
    }
    
    .static_content .quote,
    .full_story .quote{
        float: none;
        width: 100%;
    }
    
    .page_content.blog .item {
        width: 100%;
    }
    
    .blog_content .quote a{
        float: none;
        margin-right: 0;
        width: 100%;
        height: 250px;
        display: block;
        margin-left: 0;
    }
    main .carousel-item .img_wrapper .plane-img{
        max-width:225px;
    }
    .hiring-stuff:last-child{
        padding-left:0px;
    }
}

@media only screen and (max-width: 567px){
    .contact .form_body {
        padding: 51px 20px 60px;
    }
    .page_content .col-12{
        padding:0 32px;
    }
    .section-content p{
        font-size:22px;
    }
}

@media only screen and (max-width: 476px){
    main .carousel-inner .carousel-item {
        height:400px;
    }
    main .text_wrapper .title{
        font-size: 28px;
    }
    
    main .text_wrapper p{
        line-height: 1.5;
    }
    
    main .text_wrapper .btn_wrap {
        margin-top: 12px;
    }
    
    main .text_wrapper .btn_wrap div:first-child a {
        margin-right: 0;
    }
    
    main .carousel-control-prev{
        left: 0;
    }

    .blog .owl-nav{
        width: 90%;
    }
    
    .contact .social-icons li{
        width: 50px;
        height: 50px;
        margin: 15px;
    }
    
    .contact .social-icons li a{
        height: 18px;
    }
    
    .contact .social-icons{
        margin-top: 30px;
    }
    
    .blog_content >.quote div a {
        width: calc(100% - 30px);
    }
}

@media only screen and (max-width: 367px){
    footer .footer_top .row>div{
        width: 100%;
    }
    
    .contact .social_media h4{
        font-size: 25px;
    }
    
    .contact .social-icons li{
        margin: 10px;
    }
}
