* body{
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    text-decoration: none;
}

li{
    list-style: none;
}

.request_resp{
    color: #62ff00;
    margin-top: 22px;
    font-weight: bold;
}

.mob_v{
    display: none;
}

.web_v{
    display: block;
}

.bg-load{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;

}

.img-load{
    width: 200px;
    height: 200px;
    display: flex;
    background-size: contain !important;
    flex-direction: column;
    background: url(../img/loader2.gif);
    justify-content: center;
    align-items: center;
}

.img-load .logo{
    width: 80%;
    background: url(../img/logo.webp); height: 160px;
    background-size: contain;
}

.serviceInfo{
    background-size: cover !important;
    height: 200px;
    color: #fff;
    display: flex;
    align-items: center;
}

.carousel-wrapper{
    overflow: hidden;
}

.cr-wrp-slide{
    height: 600px;
}

.cr-wrp{
    margin-bottom: 50px !important;
}

.top-header{
    margin-top: 15px;
    position: relative;
}

.top-left p{
    font-size: 17px;
    font-weight: 400;
    color: #00233C;
    /*text-align: right;*/
    margin-left: 44%;
}

.language ul{
    display: flex;
    list-style-type: none;
    float: right;
}

.language ul li a{
    text-decoration: none;
    color: #002948;
    font-weight: 700;
    font-size: 17px;
    padding-left: 5px;
}

.language ul li:first-child{
    border-right: 1px solid black;
    padding-right: 5px;
}

.img-logo{
    position: relative;
    left: 0;
    top: -52px;
    width: 165px;
}

.img-logo a img{
    background: #FFFFFF;
    border: 3px solid #00233C;
    border-radius: 100px;
    width: 100%;
    height: 160px;
}

.center-header{
    background: #00233C;
    border-radius: 12px;
    height: 70px;
}

.nav-bar{
    margin-top: 18px;
    margin-left: 1.5%;
}

.nav-bar ul{
    list-style-type: none;
    display: flex;
    padding-left: 0;
    max-width: 780px;
    justify-content: space-between;
}

.nav-bar ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 19px;
}

.navbar-list li{
    /*margin-right: 55px;*/
}

.navbar-list li a:hover{
    color: #8ed0ff;
    transition: 0.2s;
}

.navbar-price{
    margin-top: 17px;
}

.navbar-price button{
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9em;
    text-decoration: none;
    background: #487BFF;
    border-radius: 10px;
    display: block;
    height: 37px;
    width: 172px;
    float: right;
    text-align: center;
    animation: shiny-btn1 3s ease-in-out infinite;
}

.animated-button1 {
  background: linear-gradient(-30deg, #3d0b0b 50%, #2b0808 50%);
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7d4d4;

  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button1::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button1:hover::before {
  opacity: 0.2;
}

.animated-button1 span {
  position: absolute;
}

.animated-button1 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#ffffff));
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #ffffff);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button1 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#ffffff));
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #ffffff);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button1 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#ffffff));
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #ffffff);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button1 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#ffffff));
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #ffffff);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}


.bottom-header-list{
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    /*margin-right: 54px;*/
    margin-left: 15.4%;
    flex-wrap: wrap;
}

.bottom-header-item ul li{
    list-style-type: none;
    margin-top: 14px;
    font-weight: 400;
    font-size: 16px;
    color: #002948;
    margin-right: 46px;
    /*padding-left: 60px;*/
}

.bottom-header-item ul li i{
    margin-right: 12px;
}

.about-content{
    margin-top: 40px;
}


.about-item {
    margin-top: 20px;
}

.about-item h1{
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 80px;
    color: #00233C;
}

.about-left{
    float: left;
    margin-top: 20px;
    margin-bottom: 50px;
}

.about-left p{
    font-size: 25px;
    font-weight: bold;

}

.about-left a{
    float: right;
    /*margin-top: 20px;*/
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

.about-right{
    margin-top: 20px;
    margin-right: 20px;
    width: 80%;
    height: 447px;
    background: #00233C;
    float: right;
}

.about-right-img{
    margin-top: -20px;
    margin-right: -20px;
    width: 100%;
    float:right;
    height: 447px;
    overflow: hidden;
}

.about-right-img img{
    float: right;
    /*width: 100%;*/
    /*height: 100%;*/
}

.services{
    background: #00233C;
    width: 100%;
    min-height: 1282px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-top: 80px;
    border-radius: 50px;
}

.services-item{
    text-align: center;
}

.services-item-title{
    padding-top: 40px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 59px;
    color: #FFFFFF;
}

.services-item-title i{
    font-size: 21px;
    padding: 8px;
    color: #5CDCFE;
}

.services-content{
    background: #002948;
    border-radius: 12px;
    width: 370px;
    height: 520px;
    cursor: pointer;
}

.services-content-img{
    border-radius: 78px;
    background-color: #001C30;;
    width: 150px;
    height: 145px;
    display: inline-block;
}

.services-content-img img{
    margin-top: 30px;
}

.services-content-item{
    text-align: center;
    padding-top: 20px;
}

.services-content-item h1{
    font-size: 21px;
    color: #FFFFFF;
    padding-top: 35px;
}

.services-content-item ul{
    list-style-type: none;
}

.services-content-item ul li{
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: #FFFFFF;
    margin-right: 30px;
}

.services-part{
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.service-col{
    text-decoration: none;
}

.service-col:hover .service-hover-bg{
    opacity: 1;
    transition: 0.2s;
}

.service-col:hover .services-content{
    background: #001C30;
    transition: 0.2s;
}

.service-col:hover .services-content-img{
    background: #5CDCFE;
    transition: 0.2s;
}

.service-col:hover .services-content-img .icon-service{
    filter: brightness(0) saturate(100%) invert(9%) sepia(28%) hue-rotate(178deg) brightness(94%) contrast(103%);
    transition: 0.2s;
}

.icon-service{
    background-size: cover;
    margin-top: 30px;
    display: inline-block;
}

.service-hover-bg{
    display: flex;
    justify-content: center;
    margin-top: -9px;
    opacity: 0;

}

.service-hover-bg .service-hover{
    background: linear-gradient(90deg, #487BFF -9.38%, #63FDFD 100%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    width: 370px;
    height: 9px;
    position: relative;
    z-index: 1;
}


.item {
    background-image: url("../img/1.jpg");
    height: 720px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    color: white;
}

.carousel-text {
    width: 60%;
    padding-top: 150px;
}

.slick-dots {
    bottom: 14px !important;
}

.slick-dots li button:before {
    font-size: 16px !important;
    color: white !important;
}

.cr-wrp .slick-dots{
    display: none;
}

.slick-dotted.slick-slider{
    margin-bottom: 0;
}

.carousel-text p{
    font-size: 22px;
    padding-top: 28px;
}

.rounded-pill{
    width: 210px;
    height: 49px;
    font-size: 19px;
    font-weight: 600;
    padding-top: 8px;
}

.rounded-pill:focus{
    border: none!important;
    outline: none;
}

.partners-part-title{
    margin-top: 40px;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #002948;
}

.partners-part-left h1{
    font-weight: 700;
    width: 337px;
    font-size: 32px;
    line-height: 59px;
    text-align: center;
    color: #002948;
}

.partners-part-top{
    background: linear-gradient(90deg, #487BFF -9.38%, #63FDFD 100%);
    border-radius: 12px;
    width: 200px;
    height: 9px;
    margin-left: 70px;
}

.partners-part-rectangle{
    background-color: #002948;
    width: 70%;
    height: 225px;
    top: 23px;
}

.partners-right-title{
    color: #FFFFFF;
    text-align: center;
    font-size: 24px;
    margin-top: 30px;
}

.partners-right-text{
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
    margin-top: 30px;
    width: 211px;
    margin-left: 16px;
}

.partners-part-bottom{
    background: #487BFF;
    border-radius: 0px 0px 16px 16px;
    width: 100%;
    height: 50px;
    /*margin-top: 40px;*/
    position: absolute;
    bottom: -15px;
    padding-top: 2px;
}

.partners-right-img img{
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 1px solid #487BFF;
}

#slick-slide-control20{
    display: none;
}
.carousel-wrapper .carousel .carousel-cell.is-selected{
    transform: scale(1.2);
    z-index: 1;
    transition: 0.2s;
}

.flickity-viewport{
    min-height: 323px !important;
}

.input-group{
    margin-bottom: 10px;
}

.partners-right-img{
    float: right;
    position: relative;
    bottom: 210px;
    right: 50px;
    border: 6px solid white;
    border-radius: 50%;
}

.partners-part-bottom h2{
    font-size: 18px;
    line-height: 44px;
    margin-left: 45px;
    color: #FFFFFF;
}

.partners-part-right{
    margin-left: 120px;
}

.footer-part{
    background: #002948;
    width: 100%;
    padding-bottom: 30px;
}

.footer-left{
    color: #FFFFFF;
    padding-top: 48px;
}

.footer-left h1{
    font-weight: 600;
    font-size: 30px;
    line-height: 60px;
}

.footer-left p{
    font-weight: 600;
    font-size: 20px;
    line-height: 37px;
    width: 100%;
}

.footer-left-linear{
    background: linear-gradient(90deg, #487BFF -9.38%, #63FDFD 100%);
    border-radius: 12px;
    width: 200px;
    height: 9px;
}

.footer-right{
    padding-top: 84px;
    float: right;
}

.input-group{
    width: 230px;
}

.input-group input{
    margin-left: 20px;
}

.form-control{
    background: #F2F0F0;
    border-radius: 5px;
    width: 250px;
    height: 42px;
}

.form-control::placeholder{
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
    color: #002948;
}

.top-button{
    margin-top: 25px;
}

.input-send a{
    width: 270px;
    height: 42px;
    font-size: 17px;
    font-weight: 500;
}

.input-send{
    margin-left: 20px;
}

.input-group{
    width: 290px;
}

.footer-down{
    text-align: center;
    margin-top: 9px;
    font-size: 17px;
}

.footer-down p span{
    font-weight: 700;
    color: #525252;
}

.modal-header a{
    float: right;
    font-size: 22px;
    color: #FFFFFF;
}

.modal-content{
    height: 100%;
    background: #002948;
    border-radius: 15px;
}

.modal-title{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: 1px solid white;
    width: 100%;
    line-height: 38px;
}

.modal-body{
    padding-top: 0;
}

.modal-body-title{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #FFFFFF;
}

.modal-body-input{
    width: 100%;
    height: 40px;
}

.apply-form{
    margin-top: 15px;
}

.form-label{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

.apply-input{
    padding: 12px;
}



.input-name{
    width: 100%;
    height: 40px;
    background: #F2F0F0;
    border: 1px solid #AAAAAA;
    border-radius: 5px;
}

.input-name::placeholder{
    padding-left: 7px;
    color: #585858;
}

.modal-send button{
    color: #FFFFFF;
    width: 170px;
    float: right;
    margin-top: 40px;
    margin-bottom: 37px;
}

.input-note{
    width: 100%;
    height: 40px;
    background: #F2F0F0;
    border: 1px solid #AAAAAA;
    border-radius: 5px;
}

#respCallyou{
    width: 80%;
    margin-left: 10%;
    text-align: center;
    font-size: 12px;
}

.contact-content{
    width: 100% ;
    margin-left: 0 ;
    text-align: left ;
    margin-bottom: 70px ;
    font-weight: bold;
}

.contacts {
    width: 100%;
    margin-left: 0;
    padding: 0;
}

.contacts li{
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
.contacts img{
    float: left;
}

.contacts span a{
    float: left;
    margin-left: 15px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    line-height: 35px;
    color: #002948;
}

#map{
    width: 80%;
    height: 300px;
    float: right;
}


/*------responsive-start----------*/
@media (max-width: 576px){
    .responsive-img-logo{
        width: 50px;
    }
    .contact-content{
        margin-bottom: 40px ;
    }
}

@media (max-width: 991px){

    .about-item{
        margin-top: 120px;
    }

    .about-left{
        margin-top: 0px;
    }

    .about-left p{
        font-size: 1.5em;
    }


    .about-right{
        margin-top: 10px;
        width: 90%;
        margin-right: 5%;
        float: right;
    }

    .carousel-wrapper{
        height: auto;
    }

    .mob_v{
        display: block;
    }

    .web_v{
        display: none;
    }

    .center-header{
        background: none;
        position: relative;
        z-index: 1;
    }

    .img-logo{
        position: relative;
        left: 0;
        top: 15px;
        width: 25%;
        float: left;
    }

    .img-logo a img {
        height: auto;
    }

    .lang_list{
        float: right;
        margin-top: 15px;
        margin-right: 10px;
    }

    .language ul li:first-child{
        border-color: #ffffff;
    }

    .lang_list li a{
        color: #ffffff !important;
    }

    .slick-dotted.slick-slider{
        position: relative;
        /*top: -70px;*/
    }

    .mob_slide{
        top: -70px;
    }

    .img-nav{
        float: right;
        margin-top: 8px;
    }

    .carousel-text {
        width: 96%;
        padding-top: 40%;
        margin-left: 2%;
    }

    .rounded-pill {
        height: 40px;
        padding-top: 4px;
    }

    .nav-slick{
        position: relative;
        margin-top: -258px;
        justify-content: center;
        display: flex;
    }


    .nav-slick-center{
        display: flex;
        font-size: 62px;
        font-family: 'FontAwesome';
        color: #5CDCFE;
    }

    .nav-slick-next{
        margin-left: 40px;
    }

    .footer-right{
        padding-top: 20px;
        width: 100%;
    }





}


@media  (max-width: 425px){
    
    .navbar-price button{
        font-size: 0.75em;
    }

    .input-group{
        width: 100%;
    }
    .inp_grps{
        flex-direction: column;
    }


}

@media (min-width: 992px) and (max-width: 1200px){

    .top-left p{
        font-size: 14px;
        margin-left: 47%;
    }

    .nav-bar {
        margin-top: 21px;
        margin-left: 3.5%;
    }

    .nav-bar ul li a {
        font-size: 15px;
    }

    .bottom-header-list {
        margin-left: 16.4%;
    }

    .bottom-header-item ul li {
        font-size: 13px;
    }

    .services-content{
        width: 100%;
    }




}


@media (min-width: 1200px) and (max-width: 1400px){

    .partners-right-img img{
        width: 150px;
        height: 150px;
    }
    .partners-right-img{
        bottom: 200px;
        right: 20px;
    }
    .bottom-header-item ul li{
        font-size: 13px;
    }

}


@media (max-width: 1200px){
    #map{
        margin-top: 50px;
        width: 100%;
      }

    .right-nav{
        position: fixed;
        top: 0;
        right: -80%;
        width: 80%;
        height: 100%;
        background: #00233C;
        z-index: 2;
        transition: 0.2s;
    }

    .right-nav a.close{
        float: right;
        margin-right: 16px;
        margin-top: 10px;
        color: #ffffff;
        font-size: 26px;
        text-decoration: none;
        font-family: 'FontAwesome';
    }

    .right-navbar-list{
        margin: 8px;
        margin-top: 130px;
    }
    .right-navbar-list li{
        margin-bottom: 20px;
    }

    .right-navbar-list li a{
        color: #ffffff;
        text-decoration: none;
        font-size: 1.7em;
    }

    .right-navbar-list li .partners-part-top{
        width: 90%;
        height: 5px;
        margin-left: 0;
    }

    #layerslider_3_1oizcq4isjz7k{
        width: 960px;
        min-width: 960px;
        max-width: 960px;
    }

    .partners-right-img img{
        width: 90px;
        height: 90px;

    }

    .partners-right-img{
        bottom: 185px;
        right: 24px;
    }

    .partners-right-text{
        margin-left: 0px;
        font-size: 13px;
        margin-top: 24px;
    }

    .partners-part-bottom{
        margin-top: 20px;
    }

    .partners-part-rectangle{
        height: 210px;
        width: 55%;
    }

    .partners-part-left h1{
        width: 100%;

    }

    .partners-part-right{
        margin-left: 0px;

    }

    .partners-part-top{
        width: 70%;
        margin-left: 15%;
    }

    .slick-track{
        display: flex;
        justify-content: center;
    }

    .partners-right-title{
        text-indent: 55px;
        text-align: left;
    }

}


@media (max-width: 768px){

    .input-send a{
        width: 207px;
    }

    .input-send{
        margin-left: 0;
    }

    .input-group input{
        margin-left: 0;
        margin-right: 20px;
    }



    .carousel-wrapper .carousel .carousel-cell.is-selected{
        transform: initial;
        z-index: 1;
    }
     .partners-part-rectangle{
        width: 100%;
        height: 381px;
        border-radius: 0px 0px 16px 16px;
    }

    .partners-right-text{
        margin-left: 10%;
        font-size: 17px;
        margin-top: 24px;
        text-align: center;
        width: 80%;
    }
    .partners-right-title{
        width: 100%;
        text-indent: 0;
        text-align: center;
    }

    .img1{
        float: left;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .img1 .partners-right-img{
        bottom: 0;
        right: 0;
        display: block !important;
    }

    .img1 .partners-right-img img{
        width: 150px;
        height: 150px;
    }

    .img2{
        display: none;
    }

    .flickity-viewport{
        min-height: 450px !important;
    }
}



@media (min-width: 768px){

    .flickity-viewport{
        min-height: 323px !important;
    }

}



@media (max-width: 1400px){

    .navbar-list li{
        margin-right: 33px;
    }

    #layerslider_3_1oizcq4isjz7k{
        width: 1120px;
    }

}


@media (min-width: 1400px){

    .about-left p{
        font-size: 30px;
    }

    #layerslider_3_1oizcq4isjz7k{
        width:1280px;
    }

}

/*------responsive-end------------*/
