body{
    overflow-x: hidden;
}
body,
html {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    margin: 0;
}

h1, h2, h3, h4, h5, h6{
    color: #2b1d6a;
    font-family: "Rajdhani", sans-serif;
}

ul, 
ol, 
table {
    margin: 0;
    padding: 0;
}

img{
    max-width: 100%;
}

.dm-sans {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

.rajdhani {
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
}

.Lato{
    font-family: "Lato", sans-serif;
}



.banner{
    height: 95rem;
    background: url(../images/banner/bg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 9rem;
}

.banner .container-lg{
    position: relative;
    z-index: 1;
}

.banner::before {
    content: "";
    inset: 0;
    position: absolute;
    background: linear-gradient(180deg, 
                rgba(18, 34, 35, 0.9) 0%, 
                rgba(18, 34, 35, 0.5) 64.9%, 
                rgba(18, 34, 35, 0) 100%);
    z-index: 1;
}

.bannercontent{
    padding-top: 20rem;
}

.wemoveamerica {
    width: 25rem;
    height: 4rem;
    border-radius: 4rem;
    background: rgb(101, 126, 139, .4);
    font-size: 1.8rem;
    color: #fff;
    margin: 0 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    font-family: "Rajdhani", sans-serif;
}

.wemoveamerica:before,
.wemoveamerica:after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translatey(-50%);
    left: 1.4rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 100px;
    background-color: #fff;
    animation: dsl 2s infinite;
}

.wemoveamerica:after{
    left: inherit;
    right: 1.4rem;
}

@keyframes dsl{
    0% {
        opacity: .2;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: .2;
    }
}

.bannercontentTitle{
    width: 76rem;
}

.bannercontent h1.title {
    color: #fff;
    line-height: 6rem;
    letter-spacing: 0;
    font-weight: 700;
    font-size: 6rem;
    text-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    padding: 4rem 0 4rem 5rem;
    margin: 0;
    text-transform: uppercase;
}

.bannercontent h1.title span{
    position: relative;
    color: #febe42;
    z-index: 1;
}

.bannercontent h1.title span svg{
    height: calc(100% + 20px);
    left: 50%;
    overflow: visible;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 20px);
    z-index: -1;
}

.bannercontent h1.title span svg path{
    stroke: #febe42;
    stroke-width: 9;
    fill: none;
    stroke-dasharray: 1500 1500;
    transition: .3s;
}

.bannercontentborder{
    width: 13.2rem;
    height: 26.4rem;
    position: absolute;
}

.bannercontentborder:before{
    content: '';
    background: url(../images/banner/border.png);
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
}

.bannerbtm{
    position: absolute;
    bottom: -14rem;
    left: -18.3rem;
    height: 29rem;
    right: 0;
}

.bannerbtm:before{
    content: '';
    background: url(../images/banner/bottom.png);
    width: 100%;
    height: 29rem;
    display: block;
}

.truckImg{
    bottom: -3.8rem;
    right: 0;
    position: absolute;
    width: 58rem;
    /* height: 67.6rem; */
    z-index: 1;
}


.quoteform{
    margin: 6.4rem 0 0;
}

.quoteform h4{
    font-size: 2.2rem;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 1.6rem;
}

.quoteformbox{
    display: table;
}

.quoteformbox form{
    display: grid;
    grid-template-columns: repeat(4, 16rem);
    gap: 1rem;
    background: rgb(26, 43, 45, .5);
    padding: 2.6rem;
}

.flieds{
    width: 100%;
}

.flieds input,
.flieds button{
    width: 100%;
    height: 5rem;
    background: #f3f3f3;
    border-radius: 0;
    padding: 1.4rem;
    font-size: 1.5rem;
    outline: none;
    box-shadow: none;
}

.flieds button{
    background: #CA1F26;
    color: #fff;
    font-weight: bold;
    border: 0;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}

.flieds button span {
    display: block;
    position: relative;
    z-index: 10;
}

.flieds button::before {
    content: '';
    background: #012768;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
    position: absolute;
}

.flieds button::after {
    content: '';
    background: #012768;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flieds button:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial{
    100% {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd{
    0% {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.flieds button:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.flieds button:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

.headigstyle{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.headigstyle h3{
    font-size: 4.4rem;
    text-align: right;
    font-weight: bold;
    width: 50rem;
    line-height: 1;
}

.headigstyle p{
    font-size: 1.5rem;
    color: #7a7a7a;
    margin: 0;
    padding: 0 0 0 2rem;
    border-left: 3px solid #ca353b;
    width: 51rem;
}

.service_carousel{
    margin-top: 8rem;
}

.service_carousel:after{
    content: '';
    bottom: 65px;
    left: 212px;
    width: 1200px;
    height: 201px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background: url(../images/why/shape.png);
    background-size: cover;
    z-index: -1;
}

.inner-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 300ms linear;
}

.inner-box .image {
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    margin-bottom: 0px;
    background-image: url(../images/servicebg.jpg);
}

.inner-box .image:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-bottom: 4px solid #ca1f26;
    z-index: 2;
    content: "";
    transition: all 300ms linear;
}

.inner-box:hover .image::before {
    visibility: hidden;
    height: 0;
}

.inner-box .image img {
    position: relative;
    width: 100%;
    opacity: 0.3;
    height: 290px;
    object-fit: cover;
}

.inner-box .content-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 0 60px 20px;
}

.inner-box .content-box .count {
    position: absolute;
    right: 50px;
    top: 30px;
    font-size: 90px;
    line-height: 1em;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.2);
}

.inner-box:hover .content-box .count {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
}

.inner-box .icon-box {
    position: relative;
    z-index: 0;
    transition: all 0.4s ease;
}

.inner-box .content-box .icon {
    position: relative;
    left: -32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 88px;
    width: 111px;
    color: #ca1f26;
    background-color: #f9f9f9;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    z-index: 2;
    margin-bottom: 45px;
    transition: all 200ms ease;
}

.inner-box:hover .icon {
    background-color: #ca353b;
    color: #181818;
}

.inner-box .content-box .icon i {
    font-size: 54px;
    line-height: 1em;
}

.inner-box .content-box .icon img {
    height: 5.4rem;
    line-height: 1em;
    filter: invert(16%) sepia(100%) saturate(2854%) hue-rotate(346deg) brightness(93%) contrast(95%);
}

.inner-box .title {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #181818;
    font-family: "Poppins", sans-serif;
}

.inner-box .title a{
    color: #181818;
    text-decoration: none;
}

.inner-box .service-details {
    position: relative;
    z-index: 2;
    transition: all 300ms linear;
    font-size: 1.5rem;
    color: #7a7a7a;
    line-height: 1.8;
    margin: 1rem 0 0 0;
}

.inner-box:hover .content-box .service-details, 
.inner-box:hover .content-box .title,
.inner-box:hover .content-box .title a {
    color: #fff;
}

.service_carousel .owl-dots,
.sparkreviews .owl-dots {
    margin: 3rem 0 0;
    text-align: center;
}

.service_carousel .owl-dots .owl-dot span,
.sparkreviews .owl-dots .owl-dot span {
    width: 1rem;
    height: 1rem;
    margin: 0 .8rem;
    border-radius: .5rem;
    background: #ca1f26;
    border: .1rem solid #ca1f26;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.service_carousel  .owl-dots .owl-dot.active span,
.sparkreviews .owl-dots .owl-dot.active span {
    width: 3.5rem;
}

.inner-box:hover .icon img{
    filter: invert(92%) sepia(0%) saturate(7500%) hue-rotate(64deg) brightness(115%) contrast(107%);
}

.HeadingSect{
    width: 63.6rem;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;
    text-align: center;
}

.HeadingSect h5 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: .8rem;
}

.HeadingSect h2 {
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 2rem;
}

.HeadingSect p{
    color: #505D7B;
}

.HeadingSect .divder {
    margin: 1.6rem auto;
    border-top: .2rem solid #e11c09;
    width: 10rem;
    height: .5rem;
    display: flex;
    position: relative;
}

.HeadingSect .divder:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 40px;
    border-bottom: .2rem solid #fff;
    line-height: 2rem;
    font-weight: 600;
    text-align: center;
}

.HeadingSect .divder i {
    position: absolute;
    left: 0;
    top: -1rem;
    font-size: 2.2rem;
    height: 2.2rem;
    width: 4rem;
    text-align: center;
    color: #e11c09;
    line-height: 2.2rem;
}

.HeadingSect .divder i, 
.HeadingSect .divder:before {
    -webkit-animation: truck-move 7s infinite linear;
    animation: truck-move 7s infinite linear;
}

@keyframes truck-move{
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(-1px);
    }
}

.sparkreviews{
    background: url(../images/customers/bg.webp);
    overflow: hidden;
}

.sparkreviews .container-lg{
    position: relative;
    z-index: 1;
}

.leftshapes{
    width: 82.8rem;
    position: absolute;
    left: -14.4rem;
    top: 0;
    bottom: 0;
}

.shapesInner{
    position: absolute;
    left: 7rem;
    bottom: -11rem;
    right: 0;
}

.shapesInner .arrowup{
    left: -3.5rem;
    bottom: 3rem;
    position: relative;
    transform-origin: center bottom;
    animation-fill-mode: both;
    animation-name: bounce;
    animation-timing-function: ease-out;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

.shapesInner .arrowupB{
    left: -2.5rem;
    bottom: 0;
    position: relative;
    transform-origin: center bottom;
    animation-fill-mode: both;
    animation-name: bounce;
    animation-timing-function: ease-out;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

.rightshapes{
    position: absolute;
    right: -15rem;
    top: 3rem;
    width: 36rem;
    transform: rotate(180deg);
}

.rightshapes .shapesInner{
   bottom: 0; 
}

.sparkreviews .HeadingSect{
    margin-bottom: 4rem;
}


.silderB .item{
    padding: 2rem 2rem 3rem;
}

.review_box {
    padding: 3rem;
    background-color: #fff;
    border-radius: 8px;
    border: 0;
    box-shadow: 0 10px 20px rgba(137, 151, 186, .55);
}

.review_box h4.label{
    font-size: 1.6rem;
    color: #505d7b;
    margin: 0 0 .5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.rating_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.rating_wrap .stars{
    display: flex;
    align-items: center;
    gap: .5rem;
}

.rating_wrap .stars i{
    font-size: 1.4rem;
    color: #F7C201;
    line-height: 1rem;
}

.rating_wrap .rating{
    font-size: 1.6rem;
    margin: 0 0 0 1rem;
    font-weight: 500;
    color: #F7C201;
}

.rating_wrap span.date {
    font-size: 1.2rem;
    color: #9ba3af;
}


.review_box p {
    font-size: 1.3rem;
    line-height: 1.8rem;
    color: #232b36;
    margin: 2rem 0 1rem 0;
    font-weight: 500;
}

.review_btm{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review_btm span{
    font-size: 1.2rem;
    color: #9ba3af;
}

.owl-carousel .owl-item .review_btm img {
    width: auto;
    height: 30px;
}

.silderB .owl-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.silderB.owl-carousel .owl-nav button{
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: .2rem solid #003e92;
    color: #003e92;
    font-size: 0;
    transition: all .25s cubic-bezier(.645,.045,.355,1);
}

.silderB.owl-carousel .owl-nav button:before{
    font-size: 1rem;
    line-height: initial;
}

.silderB.owl-carousel .owl-nav button.owl-prev:before {
    content: "\f104"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.silderB.owl-carousel .owl-nav button.owl-next:before {
    content: "\f105"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.silderB.owl-carousel .owl-nav button:hover{
    background: #fff;
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 62, 146, .14);
}





.CompetitiveSect{
    display: grid;
    grid-template-columns: repeat(2, 50%);
    /*align-items: center;*/
    margin: 10rem 0 0;
    gap: 5rem;
}

.Competitiveimg{
    position: relative;
}

/*.Competitiveimg:before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50rem;
    height: 50rem;
    border: 5px solid red;
    border-radius: 50rem;
}*/

.CompetitiveImgb{
    position: absolute;
    right: 0;
    bottom: -8.8rem;
    width: 76rem;
}

.CompetitiveContent{
    display: flex;
    flex-flow: column;
    row-gap: 4rem;
    max-width: 58rem;
    margin-top: 4rem;
}

.CompetitiveContent_item {
    display: flex;
    align-items: center;
    column-gap: 3rem;
    position: relative;
}

.CompetitiveContent_item .icon {
    padding: 1.4rem;
    border-radius: 1e3px;
    box-shadow: 0 20px 50px rgba(150, 157, 176, .25);
    width: 10.5rem;
    min-width: 10.5rem;
    height: 10.5rem;
    background-color: #fff;
}

.CompetitiveContent_item .icon .icon_circle {
    z-index: 2;
    position: relative;
    background-color: rgb(238 244 255);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 7.8rem;
    min-width: 7.8rem;
    height: 7.8rem;
    border-radius: 7.8rem;
    /*border: .1rem dashed #073684;*/
}

.CompetitiveContent_item .icon .icon_circle img{
    height: 4.8rem;
}

.CompetitiveContent_item h4 {
    font-family: "Poppins", sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 3rem;
}

.CompetitiveContent_item p {
    font-size: 1.8rem;
}

.shipcost{
    /* box-shadow: 0px 3px 6px rgba(0 0 0 / 16%); */
    border-radius: 2rem;
    background-color: #ca1f27;
    margin-top: 0rem;
    position: relative;
    /* background-image: linear-gradient(290deg, #FFFFFF00 10%, #ca1f27 0%); */
    margin: -8rem 0 10rem 5rem;
    display: table;
    /* width: 80rem; */
    padding: 1.4rem;
    width: 100%;
    overflow: hidden;
}

.shipcostinner{
    border: .2rem dashed rgba(255, 255, 255, .5);
    border-radius: 2rem;
    /* margin: 0% -4% 0% 0; */
    padding: 5rem 7rem;
    position: relative;
    z-index: 1;
}

.shipcostinner .HeadingSect{
    margin: 0;
    text-align: left;
    width: 56rem;
}

.shipcostinner .HeadingSect h2{
    color: #fff;
    font-size: 3.4rem;
    margin: 0;
}

.shipcostinner .HeadingSect .divder{
    margin: 1.6rem 0;
    border-color: rgba(255, 255, 255, .8);
}

.shipcostinner .HeadingSect .divder:before{
    top: -3px;
    border-bottom-color: #ca1f27;
}

.shipcostinner .HeadingSect .divder i{
    color: #fff;
}

.shipcostinner .HeadingSect p{
    color: #fff;
    line-height: 2.2rem;
    font-size: 1.4rem;
}


.shipcostImg{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55rem;
}

.shipcostImg img{
    position: absolute;
    inset: 0;
    margin: auto;
}

.carcall{
    padding: .5rem;
    height: 5rem;
    background: #fff;
    border-radius: 4.4rem;
    position: absolute;
    right: 33rem;
    bottom: 3.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgb(83 86 96 / 50%);
}

.carcall i{
    width: 4rem;
    height: 4rem;
    background: #ca1f27;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    border-radius: 4rem;
    transform: rotate(90deg);
}

.carcall .talkexpert{
    padding: 0 2.5rem 0 1.5rem;
    display: flex;
    flex-flow: column;
    font-size: 1.1rem;
    line-height: 1.7rem;
}


.grey_bg {
    background-color: #f9f9f9;
}

.popular_route{
    background-image: url(../images/customers/bg.webp);
    overflow: hidden;
}

.popular_routebox {
    /*background-image: linear-gradient(
    to bottom right in oklab,
    #f4f4f6 0%,
    #fefeff 50%,
    #0000 100%
    );
    padding: 6.4rem;*/
    width: 100%;
    /*border-radius: 3rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -4px rgb(0 0 0 / 10%);*/
    position: relative;
    z-index: 1;
}

/*.popular_routebox:before{
    content: '';
    border: .3rem solid #febe42;
    border-radius: 2rem;
    display: block;
    inset: 1.4rem;
    position: absolute;
}
*/
.popular_routeboxInner {
    background-image: linear-gradient(
    to bottom right in oklab,
    #f4f4f6 0%,
    #fefeff 50%,
    #ffffff 100%
    );

    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -4px rgb(0 0 0 / 10%);
    border: .1rem solid #c4c4c4;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.popular_routeboxInner table{
    width: 100%;
    text-align: center;
}

.popular_routeboxInner table tr{
    border-bottom: 1px solid #dadada;  
}

.popular_routeboxInner table tr th,
.popular_routeboxInner table tr td{
    color: #1e1e1e;
    border-right: 1px solid #dadada;
    height: 6.4rem;
    font-weight: bold;
    font-size: 1.6rem;
}

.popular_routeboxInner table tr th{
    background: #012768;
    color: #fff;
    border-right-color: #7e8ba1;
}

.popular_routeboxInner table tr td{
    font-weight: 400;
    color: #7d7d7d;
}

.popular_routeboxInner table tbody tr:nth-child(even){
    background: rgb(1 39 104 / 5%);
}

.popular_routeboxInner table tbody tr td:first-child{
    text-transform: uppercase;
    color: #1e1e1e;
}

.popular_routeboxInner table thead tr th:last-child,
.popular_routeboxInner table tbody tr:last-child,
.popular_routeboxInner table tbody tr td:last-child{
    border: 0;
}

.popular_routeImg{
    position: absolute;
    bottom: -10.8rem;
    right: -28rem;
    z-index: 0;
}

.CustomBtn button,
.CustomBtn a.custbtn {
    width: 100%;
    height: 5rem;
    background: #CA1F26;
    border-radius: 0;
    padding: 0 5rem;
    font-size: 1.5rem;
    outline: none;
    box-shadow: none;
    color: #fff;
    font-weight: bold;
    border: 0;
    text-transform: uppercase;
    text-decoration: none;
    display: table;
    line-height: 5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}


.CustomBtn button:hover,
.CustomBtn a.custbtn:hover{
    background: #012768;
}

/*.CustomBtn button span,
.CustomBtn a.custbtn span {
    display: block;
    position: relative;
    z-index: 10;
}

.CustomBtn button::before,
.CustomBtn a.custbtn::before {
    content: '';
    background: #012768;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
    position: absolute;
}

.CustomBtn button::after,
.CustomBtn a.custbtn::after {
    content: '';
    background: #012768;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.CustomBtn button:hover span,
.CustomBtn a.custbtn:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial{
    100% {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd{
    0% {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.CustomBtn button:hover::before,
.CustomBtn a.custbtn:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.CustomBtn button:hover::after,
.CustomBtn a.custbtn:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}
*/
.btnCenter{
    display: table;
    margin: 5rem auto 0;
    position: relative;
    z-index: 1;
}




.silderC{
    margin-top: 8rem;
}


.costship {
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
}

.costship img {
    -webkit-transition-duration: 2s;
    -moz-transition-duration: 2s;
    -ms-transition-duration: 2s;
    transition-duration: 2s;
}

.costshipbg {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.4;
    top: 0;
    left: 0;
    background-color: #1c1c1c;
}

.costshipoverlay {
    opacity: 0;
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    background-color: rgba(37, 46, 56, 0.8);
}

.costshipcontent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.costshipcontent .costcontent_top, 
.costshipcontent .costcontent_btm {
    padding: 6rem 5.2rem;
}

.costshipcontent .costcontent_top span {
    opacity: .6;
    z-index: 1;
    color: #fff;
    margin: 0 0 .8rem;
    font-size: 1.6rem;
}

.costshipcontent .costcontent_top h4{
    margin: 0;
}

.costshipcontent .costcontent_top h4 a{
    font-size: 3.2rem;
    z-index: 1;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    color: #fff;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    position: relative;
}

.costshipcontent .icon {
    position: absolute;
    left: 60px;
    bottom: 60px;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
}

.costshipcontent .icon img{
    width: 6.5rem;
}

.costshipcontent .costcontent_card {
    opacity: 0;
    position: absolute;
    bottom: -25px;
    height: 100%;
    width: 100%;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    display: flex;
    align-items: flex-end;
}

.costshipcontent .costcontent_card p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    min-height: 75px;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    color: #fff;
    opacity: 0.6;
    margin-bottom: 0;
    /* width: 80%; */
    font-size: 1.4rem;
    line-height: 2.6rem;
}

.costshipcontent .costcontent_card a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 7px 0 2px;
    margin-top: 20px;
    position: relative;
    text-decoration: none;
    border: 0;
    border-bottom: 2px solid #fff;
    background-color: transparent;
    border-radius: 0;
    color: #fff;
    display: table;
}

.costship:hover img {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -moz-transform: scale(1.4);
    transform: scale(1.4);
    -o-transform: scale(1.4);
    -webkit-transition-duration: 4s;
    transition-duration: 4s;
}

.costship:hover .costshipoverlay {
    opacity: 1;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
}

.costshipcontent .costcontent_top h4 a:hover{
    color: #febe42;
}

.costship .costshipcontent:hover .icon {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
}

.costship .costshipcontent:hover .costcontent_card {
    opacity: 1;
    bottom: 0;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
}

.costshipcontent .costcontent_card a:hover {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

.silderC .owl-nav{
    display: flex;
    justify-content: center;
    /* align-items: center; */
    gap: 1rem;
    position: absolute;
    top: 0;
    right: -7rem;
    bottom: 0;
    margin: auto;
    flex-flow: column;
}

.silderC.owl-carousel .owl-nav button{
    width: 5rem;
    height: 5rem;
    border-radius: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: .2rem solid #003e92;
    color: #003e92;
    font-size: 0;
    transition: all .25s cubic-bezier(.645,.045,.355,1);
}

.silderC.owl-carousel .owl-nav button:before{
    font-size: 1.4rem;
    line-height: initial;
}

.silderC.owl-carousel .owl-nav button.owl-prev:before {
    content: "\f104"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.silderC.owl-carousel .owl-nav button.owl-next:before {
    content: "\f105"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.silderC.owl-carousel .owl-nav button:hover{
    background: #fff;
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 62, 146, .14);
}



.industrywork{
    background: url(../images/industrywork/bg.jpg);
    background-position: center;
    background-size: cover;
}

.industrywork:before{   
    content: '';
    position: absolute;
    inset: 0;
    background: #1c1c1c;
    opacity: .8;
}

.industrywork .container-lg{
    position: relative;
}

.industrywork .HeadingSect {
    width: 77rem;
}

.industrywork .HeadingSect h2{
    color: #fff;
}

.industrywork .HeadingSect p{
    color: #fff;
    opacity: .8;
}


.industrywork .HeadingSect .divder{
    border-color: rgba(255, 255, 255, .8);
}

.industrywork .HeadingSect .divder:before{
    top: -3px;
    border-bottom-color: #203440;
}

.industrywork .HeadingSect .divder i{
    color: #fff;
}

.steps{
    display: grid;
    grid-template-columns: repeat(3, 32.7rem);
    justify-content: space-between;
}

/*.steps:before{
    content: '';
    width: 60rem;
    margin: auto;
    left: 0;
    right: 0;
    height: .3rem;
    background: yellow;
}*/

.stepsInner{
    position: relative;
}

.stepsInner .imgwrap {
    position: relative;
    margin: 0 auto;
    max-width: 23rem;
    margin-bottom: 8rem;
}

.stepsInner .imgwrap .dotshape{
    position: absolute;
    right: -2rem;
    top: -2rem;
    transform: rotate(45deg);
}

.stepsInner .imgwrap .dotshape img{
    border-radius: 0;
}

.stepsInner .imgwrap img {
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.stepsInner .imgwrap .stepsicon {
    position: absolute;
    z-index: 1;
    bottom: -26px;
    left: -26px;
    font-size: 26px;
    font-weight: 600;
    display: block;
    color: #fff;
    width: 54px;
    min-width: 54px;
    text-align: center;
    height: 54px;
    border-radius: 500px;
    background-color: #ff4444;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepsInner .imgwrap .stepsicon img{
     border-radius: 0;
     height: 2.6rem;
}

.stepsInner h4 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-align: center;
}

.stepsInner .count {
    color: rgb(255, 68, 68, .15);
    font-size: 17.8rem;
    font-weight: 700;
    line-height: 13.5rem;
    position: absolute;
    right: 0;
    top: 16rem;
    font-family: "Rajdhani", sans-serif;
}


.imagebgword {
    background: url(../images/word_img/bg.jpg);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /*-webkit-background-clip: text;*/
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 200px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 200px;
    text-align: center;
    
}

.cardistance{
    display: grid;
    grid-template-columns: 51rem auto;
    align-items: center;
}

.cardistance .HeadingSect {
    width: 32rem;
    text-align: left;
    margin: 0 auto 0 0;
}

.cardistance .HeadingSect h2 {
    line-height: 1;
    margin-bottom: 1rem;
}

.cardistance .btnCenter{
    margin: 4rem 0 0;
}



.savecost{}

.savecost .HeadingSect {
    width: auto;
    text-align: left;
    margin: 0 auto 0 0;
}

.savecost .HeadingSect h2 {
    line-height: 1;
    margin-bottom: 5rem;
}

.savecostlist{
    width: 70rem;
    display: grid;
    grid-template-columns: auto auto;
    gap: 5rem;
}

.savecostlist h5 {
    padding: 0 0 .5rem;
    margin: 0;
    font-size: 2rem;
    color: #2b1d6a;
    font-weight: 700;
    display: flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
}

.savecostlist h5 i {
    width: 3.6rem;
    height: 3.6rem;
    background: #ca1f27;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    border-radius: 3.6rem;
    margin: 0 1.4rem 0 0;
}

.savecostlist p{
    padding-left: 5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.savecostimg{
    width: 30%;
    right: 0;
    top:0;
    position: absolute;
}




.faq_quest{
    background-color: #012768;
    /*background: url(../images/faq/bg.jpg);
    background-position: center;
    background-size: cover;*/
}

.faq_quest .container-lg{
    position: relative;
}

/*.faq_quest:before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1c1c1c;
    opacity: .8;
}*/

.faq_questInner{
    display: grid;
    grid-template-columns: 51rem auto;
    align-items: flex-start;
}

.faq_questInner .HeadingSect {
    width: 35rem;
    text-align: left;
    margin: 0 auto 0 0;
}

.faq_questInner .HeadingSect h2 {
    line-height: 1;
    margin-bottom: 2rem;
    color: #fff;
}

.faq_questInner .HeadingSect p {
    color: #fff;
}

.faqleftbtm{
    display: flex;
    align-items: center;
    margin: 4rem 0 0;
}

.faq_questInner .btnCenter{
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    width: 21rem;
}

.faq_questInner .btnCenter a{
    padding: 0 3rem;
    width: auto;
    background: #dd3737;
}

.faq_questInner .CustomBtn button:hover,
.faq_questInner .CustomBtn a.custbtn:hover{
    background: #fff;
    color: #000;
}


/*.faqleftbtm .CustomBtn button::before,
.faqleftbtm .CustomBtn a.custbtn::before,
.faqleftbtm .CustomBtn button::after,
.faqleftbtm .CustomBtn a.custbtn::after {
    background: #fff;
}

.faqleftbtm .CustomBtn button:hover span,
.faqleftbtm .CustomBtn a.custbtn:hover span{
    color: #000;
}*/

.playbtn {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8;
    opacity: 1;
    color: #fff;
    font-size: 16px;
    transition: all 0.4s ease 0s;
    background: #dd3737;
    margin: 0 0 0 5rem;
    text-decoration: none;
}

.playbtn:before {
    content: " ";
    display: block;
    position: absolute;
    border-radius: 100%;
    z-index: -1;
    opacity: 0.3;
    width: 110px;
    height: 110px;
    transition: all 0.4s ease 0s;
}

.playbtn i {
    font-size: 23px;
    color: #fff;
    transition: all 0.3s ease 0s;
}

.playbtn:after {
    content: " ";
    background-color: #dd3737;
    display: block;
    position: absolute;
    border-radius: 100%;
    z-index: -1;
    transition: all 0.4s ease 0s;
    animation: playbutton 1.2s ease-in infinite forwards;
}


@keyframes playbutton{
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    100% {
        width: 160px;
        height: 160px;
        opacity: 0;
    }
}

.accordion{}

.accordion .accordion-item{
    border: 0;
    background: none;
}

.accordion .accordion-item+.accordion-item {
    margin-top: 17px;
}

.accordion .accordion-button {
    padding: 13px 15px 13px 35px;
    box-shadow: 0 4px 20px rgba(180, 193, 208, .25);
    color: #2b1d6a;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    -webkit-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -khtml-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -moz-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -ms-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -o-transition: all .25s cubic-bezier(.3,.3,0,.8);
    transition: all .25s cubic-bezier(.3,.3,0,.8);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    background-color: #FFFFFF;
    border-radius: 50rem;
}

.accordion .accordion-button::after{
    display: none;
}

.accordion .accordion-button .floaticon {
    position: relative;
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 1e3px;
    background-color: rgb(221 232 251);
    -webkit-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -khtml-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -moz-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -ms-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -o-transition: all .25s cubic-bezier(.3,.3,0,.8);
    transition: all .25s cubic-bezier(.3,.3,0,.8);
}

.accordion .accordion-button .floaticon:before, 
.accordion .accordion-button .floaticon:after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -khtml-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -moz-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -ms-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -o-transition: all .25s cubic-bezier(.3,.3,0,.8);
    transition: all .25s cubic-bezier(.3,.3,0,.8);
    background-color: #07295d;
}

.accordion .accordion-button .floaticon:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion .accordion-body {
    padding: 22px 35px 13px 35px;
    color: #FFFFFF;
    font-size: 1.5rem;
    line-height: 2.6rem;
    opacity: .85;
}

.accordion .accordion-button[aria-expanded="true"] {
    /*background-color: #07847f;*/
    color: #ca1f27;
}

.accordion .accordion-button[aria-expanded="true"] .floaticon {
    background-color: rgb(251 221 221);
}

.accordion .accordion-button[aria-expanded="true"] .floaticon:after {
    transform: translate(-50%, -50%) rotate(0);
}

.accordion .accordion-button[aria-expanded="true"] .floaticon:before, 
.accordion .accordion-button[aria-expanded="true"] .floaticon:after {
    background-color: #ca1f27;
}



.videomodal .modal-dialog{
    max-width: 70rem;
    background: none;
}

.videomodal .modal-content {
    background: none;
    border: 0;
}

.videomodal .btn-close{
    border-radius: 5rem;
    position: absolute;
    border: 0;
    right: -1.5rem;
    top: -1.5rem;
    z-index: 9;
    opacity: 1;
    width: 3rem;
    height: 3rem;
    padding: 0;
    background-color: #fff;
}

.videomodal .modal-body{
    padding: 0;
    border-radius: 2rem;
    overflow: hidden;
}

.videomodal video{
    display: table;
    width: 100%;
}

.shipcostB{
    margin: 10rem 0;
}

.contact_footer {
    position: relative;
    border-bottom: 1px solid #cee1eb;
    background: #f1f7fa;
    padding: 3rem 0;
}

.contact_footerinner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact_footerContent {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}


.contact_footerContent .ficon {
    height: 8.6rem;
    width: 8.6rem;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.4rem;
    border-radius: 8px;
    transition: all 300ms ease;
    color: #012768;
    box-shadow: 0 10px 20px rgba(137, 151, 186, .25);
}

.contact_footerContent .ficon i{
    height: 5rem;
}

.contact_footerContent h4 {
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    color: #2b1d6a;
    margin-top: 6px;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
    margin: 0;
}

.contact_footerContent p {
    line-height: 2.4rem;
    color: #505d7b;
}

.contact_footerContent:hover .ficon {
    background-color: #ca1f27;
    color: #ffffff;
}





.section_padd.footer {
    padding: 5rem 0;
}

.footerSection{
    display: grid;
    grid-template-columns: 30% 20% 15% 15%;
    justify-content: space-between;
}

.footerInner{}

/*.footerlogo img {
    width: 16rem;
}*/

.footerInner p {
    margin: 4rem 0 0;
}

.footerInner h4 {
    color: #2b1d6a;
    margin: 1.6rem 0;
    font-size: 2rem;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}

.footerInner.ulList{}

.footerInner.ulList h4{
    margin: 0;
}

.footerInner.ulList h4::after {
    content: '';
    background: #dd3737;
    width: 5rem;
    height: .4rem;
    display: table;
    margin: 1rem 0 0;
}

.footerInner.ulList ul {
    margin: 4rem 0 0;
    padding: 0;
}

.footerInner.ulList ul li {
    list-style-type: none;
}

.footerInner.ulList ul li a {
    color: #6b6f92;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footerInner.ulList ul li a:hover {
    color: #ca1f27;
    padding-left: .4rem;
}

.footerInnerImg{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 4rem 0 0;
}

.footer_boottom{
    padding: 3rem 0;
    /* background: #f1f1f1; */
    border-top: 1px solid #cee1eb;
}

.footer_boottomInner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_boottom p,
.footer_boottom p a {
    color: #2b1d6a;
}

.footer_boottom p a{
    font-weight: bold;
}

.footerbottomright{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.footerbottomright li {
    display: inline-block;
    margin-right: 1rem;
}

.footerbottomright li a {
    width: 3.6rem;
    height: 3.6rem;
    line-height: 3.6rem;
    font-size: 1.5rem;
    text-align: center;
    background: #d63535;
    color: #fff;
    display: flex;
    border-radius: 5rem;
    transition: all .3s;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footerbottomright li i{
    height: 3.2rem;
}

.footerbottomright li a:hover {
    background: #012768;
    color: #fff;
}





#backtotop {
    position: fixed;
    cursor: pointer;
    right: 3%;
    top: 85%;
    background-color: #fe5f5b;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    z-index: 4;
    width: 50px;
    text-align: center;
    height: 50px;
    line-height: 42px;
    border-radius: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    -webkit-transition: .9s;
    transition: .9s;
}

#backtotop i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: .5s;
    transition: .5s;
    font-size: 20px;
    color: #fff;
}

#backtotop:hover {
    cursor: pointer;
    background: #1abc9c;
}

#backtotop.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}














.fixed_top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.header_top{
    background: #2b1d6a;
}

.header_info_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.6rem;   
}

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

.header_info_text{
    margin-right: 2rem;
}

.header_info_text a{
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    transition: all 0.3s ease-out;
    font-weight: 500;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header_info_text a i {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 1rem;
    transition: all 0.3s ease-out;
}

.header_info_text a:hover{
    color: #fff;
}

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

.header_info_social a {
    font-size: 1.6rem;
    margin-right: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease-out;
}


.header_menu{
    height: 10rem;
    padding: 0;
}

.header_menu .navbar-brand{
    margin: 0;
    padding: 0;
}

.header_menu .container-lg{
    background: #fff;
    border-radius: 50rem;
    padding: .5rem 3rem;
}

.header_menu .navbar-brand img {
    height: 6rem;
}

.header_menu .navbar-nav .nav-item{
    margin: 0 1.5rem;
}

.header_menu .navbar-nav .nav-item a {
    position: relative;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    color: #2b1d6a;
    transition: all 0.3s ease-out;
    padding: 0;
    text-transform: uppercase;
}

.header_menu .navbar-nav .nav-item a:hover{
    color: #db0532;
}

.talkexpert{
    font-size: 1.4rem;
}

.talkexpert a{
    font-size: 1.5rem;
    font-weight: 600;
    color: #2b1d6a;
    text-decoration: none;
}

.header_menu .searchIcon {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    border-radius: .4rem;
    font-size: 1.6rem;
    background: #fe5f5b;
    color: #fff;
    text-align: center;
    padding: 0;
    transition: all 0.3s ease-out;
    margin-right: 1.5rem;
}

.themebtn {
    color: #fff;
    background: #fe5f5b;
    border-radius: .4rem;
    padding: 0 2.4rem;
    height: 5rem;
    font-size: 1.5rem;
    font-weight: 500;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out 0s;
    text-transform: capitalize;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.themebtn:hover{
    color: #fff;
    background: #2b1d6a;
}

/*.banner{
    height: 70rem;
    overflow: hidden;
}*/

.banner .carousel-item{
    height: 100vh;
}

.banner .carousel-item img{
    height: 100%;
    display: block;
    position: absolute;
    width: 100%;
    inset: 0
}

.silderImg {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 100%;
    display: inline-block;
    height: 100%;
}

.banner .carousel-item .silderImg::before {
    content: "";
    inset: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.sildercontent{
    width: 75rem;
    margin: auto;
    padding-top: 26rem;
    padding-bottom: 22rem;
    text-align: center;
    position: absolute;
    inset: 0;
    z-index: 1;
}


.sildercontent h1.title {
    color: #fff;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}

.sildercontent p.description {
    color: #fff;
    font-size: 1.8rem;
    margin: 2rem 0 3rem;
}

.sildercontent .themebtn {
    display: inline-flex;
}

.sildercontent .btn:hover{
    color: #fff;
    background: #2b1d6a;
}


.bannercontent h1.title {
    -webkit-animation: 0.5s 0.5s fadeInUp both;
    animation: 0.5s 0.5s fadeInUp both;
}

.banner .carousel-item.active .description {
    -webkit-animation: 0.5s 0.7s fadeInUp both;
    animation: 0.5s 0.7s fadeInUp both;
}

.banner .carousel-item.active .btn {
    -webkit-animation: 0.5s .9s fadeInUp both;
    animation: 0.5s 0.9s fadeInUp both;
}

@keyframes fadeInUp{
    0%{
        opacity:0;
        transform:translateY(2rem)
    }

    100%{
        opacity:1;
        transform:translateY(0)
    }
}

.carousel-control-next, 
.carousel-control-prev{
    opacity: 0;
    width: auto;
    transition: all 0.5s ease-in-out 0s;
}

.carousel-control-next i, 
.carousel-control-prev i{
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
    border: .1rem solid #fe5f5b;
    color: #fe5f5b;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.5s ease-in-out 0s;
}

.banner:hover .carousel-control-next, 
.banner:hover .carousel-control-prev{
    opacity: 1;
}

.banner:hover .carousel-control-next{
    right: 2.5rem;
}

.banner:hover .carousel-control-prev{
    left: 2.5rem;
}

.carousel-control-next i:hover, 
.carousel-control-prev i:hover{
    color: #fff;
    background: #fe5f5b;
}

.fixed_topMove{}

.fixed_topMove .header_menu{
    background: #fff;
    backdrop-filter: blur(1.6rem);
    box-shadow: rgba(149, 157, 165, 0.2) 0 .8rem 2.4rem;
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 7.2rem;
}


@keyframes headerSlideDown{
    0% {
        margin-top: -15rem;
    }

    100% {
        margin-top: 0;
    }
}

.book_now {
    margin: -5.4rem auto 0;
    padding: 3.4rem 3.6rem;
    background: #2b1d6a;
    border-radius: 1rem;
    position: relative;
    display: table;
    z-index: 1;
}

.book_now .book_now_form{
    display: grid;
    grid-template-columns: 23.8rem 23.8rem 15rem 15rem 15rem;
    gap: 2rem;
}

.book_now .book_now_form .form-control {
    height: auto;
    padding: .8rem 1.2rem;
    border-radius: .1rem;
    border-color: #fff;
    color: #fff;
    box-shadow: none;
    background-color: transparent;
    margin-bottom: 0;
    font-size: 1.6rem;
    height: 4.2rem;
}

.book_now .book_now_form .form-control::-webkit-input-placeholder {
  color: #fff;
}

.book_now .book_now_form .form-control::-moz-placeholder { 
  color: #fff;
}

.book_now .book_now_form .form-control:-ms-input-placeholder { 
  color: #fff;
}

.book_now .book_now_form .form-control:-moz-placeholder { 
  color: #fff;
}

.book_now .book_now_form .input-group-text{
    padding: 0 1.2rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-align: center;
    border: .1rem solid #fff;
    border-left: 0;
    border-radius: 0 .1rem .1rem 0;
    display: flex;
    align-items: center;
    background-color: transparent;
    height: 4.2rem;
}

.form-select{
    border-radius: .1rem;
    padding: .8rem 1.2rem;
    height: 4.2rem;
    background: none;
    border: .1rem solid #fff;
    color: #fff;
    font-size: 1.4rem;
    width: 100%;
    background-color: #2b1d6a;
    background-image: url(../images/arrow-down.png);
    background-repeat: no-repeat;
    background-position: 12.4rem center;
    background-size: 1.2rem;
}

.book_now .book_now_form .themebtn{
    height: 4.2rem;
    font-size: 1.4rem;
    margin: 0;
}

.book_now .book_now_form .themebtn:hover{
    color: #2b1d6a;
    background: #fff;
}

.datepicker{
    font-size: 1.2rem;
    padding: .75rem;
    border: 0;
    box-shadow: 0px 48px 88px rgba(23, 9, 54, 0.08);
    border-radius: 8px;
    width: 238px;
}

.datepicker tbody, 
.datepicker td, 
.datepicker tfoot, 
.datepicker th, 
.datepicker thead, 
.datepicker tr{
    padding: 0.6rem 0.77rem;
    text-align: center;
    border-radius: .5rem;
}

.datepicker td{
    cursor: pointer;
}

.datepicker thead th.prev,
.datepicker thead th.next{
    width: 3.2rem;
    height: 3.2rem;
    border-radius: .5rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.4rem;
    padding: 0;
    cursor: pointer;
}

.datepicker thead th.prev:hover,
.datepicker thead th.next:hover{
    background: #f3f5fb;
}

.datepicker thead th.datepicker-switch{
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
}

.datepicker thead th.dow{
    font-weight: 500;
    background: #f3f5fb;
    border-radius: 0;
    text-transform: uppercase;
}

.datepicker thead th.dow:first-child {
    border-radius: 20px 0 0 20px;
}

.datepicker thead th.dow:last-child {
    border-radius: 0 20px 20px 0;
}

.datepicker td span.month{
    font-weight: 500;
    padding: 0.6rem 0.77rem;
    text-align: center;
    width: 20%;
    float: left;
    border-radius: .5rem;
}

.datepicker .table-condensed td:hover{
    background: none;
}

.datepicker td.old,
.datepicker td.new{
    color: #999;
}

.datepicker td.today,
.datepicker td span.month.focused,
.datepicker .table-condensed td span.month.focused:hover {
    background-color: #fe5f5b;
    color: #fff;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(23, 9, 54, 0.08);
}

.datepicker td.today:hover,
.datepicker td.today:focus{
    background-color: #2b1d6a;
}

.datepicker td:hover,
.datepicker td.active,
.datepicker .table-condensed td span.month:hover {
    background: #f3f5fb;
}







.section_padd {
    padding: 10rem 0;
}

.relative{
    position: relative;
}

.shape_one {
    position: absolute;
    left: 0;
    z-index: -1;
    top: 0;
    transform-origin: center bottom;
    animation-fill-mode: both;
    animation-name: bounce;
    animation-timing-function: ease-out;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes bounce{
    0%, 100% {
        transform: translateY(5%);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    50% {
        transform: translateY(0);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
}

.services{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.servicesBox{
    position: relative;
}

.servicesBox .services_content h3 {
    padding: 2rem 0 .5rem 0;
    color: #2b1d6a;
    font-weight: 500;
    font-size: 2rem;
}

p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 3rem;
    color: #6b6f92;
}

.servicesBox .services_content .counter {
    opacity: 0;
    visibility: hidden;
    font-size: 10rem;
    position: absolute;
    right: 0;
    top: 0;
    color: #fe5f5b;
    display: block;
    transition: all 0.3s ease-in-out 0s;
}

.servicesBox:hover .services_content .counter {
    opacity: 0.1;
    visibility: visible;
}

.shape_two {
    top: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    transform-origin: center bottom;
    animation-fill-mode: both;
    animation-name: bounce;
    animation-timing-function: ease-out;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}



.about{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.about_img{
    position: relative;
}

.about_img .aboutone {
    padding-left: 3.5rem;
    padding-bottom: 2.5rem;
    width: 100%;
}

.about_img .aboutTwo {
    position: absolute;
    left: 0;
    bottom: 0;
    box-shadow: 0 .3rem 2rem .3rem rgba(0, 0, 0, 0.07);
    border-radius: .5rem;
    border: .7rem solid #ffffff;
}

.waves_box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.waves_box .iq_video {
    background: #fe5f5b;
    display: inline-block;
    width: 7rem;
    height: 7rem;
    text-align: center;
    font-size: 2rem;
    color: #fff;
    border-radius: 100%;
    line-height: 5.3rem;
    z-index: 9;
    position: relative;
    border: .8rem solid #ffffff;
}

.waves_box .iq_video i {
    margin-left: .3rem;
}

.waves_box .iq_waves {
    position: absolute;
    left: -3rem;
    top: -3rem;
    z-index: 2;
}

.waves_box .iq_waves .waves {
    position: absolute;
    width: 13rem;
    height: 13rem;
    background: rgba(246, 31, 31, 0.56);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 50%;
    background-clip: padding-box;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.waves_box .iq_waves .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.waves_box .iq_waves .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.waves_box .iq_waves .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@keyframes waves{
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.about_right{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
}

.about_right_box {
    padding: 2rem;
    box-shadow: 0 0 .6rem rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: all 0.3s ease-in-out 0s;
}

.about_right_boxContent{
    display: flex;
    gap: 2rem;
}

.about_right_boxContent i {
    font-size: 2.5rem;
    color: #fe5f5b;
    margin-top: .8rem;
}

.about_right_boxContent h3 {
    padding: 0 0 .5rem;
    font-size: 2rem;
    font-weight: 700;
}

.about_right_box:hover {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
    transform: translateY(-.6rem);
}

.tour_portfolio .filtering{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7rem;
    gap: 1.5rem;
}

.tour_portfolio .filtering span {
    font-size: 1.5rem;
    background: transparent;
    overflow: hidden;
    text-transform: capitalize;
    display: inline-block;
    padding: .8rem 1.5rem;
    transition: 0.4s;
    outline: none;
    border-radius: .4rem;
    font-weight: 500;
    cursor: pointer;
}

.tour_portfolio .filtering span:hover, 
.tour_portfolio .filtering span.active {
    color: #fff;
    background: #fe5f5b;
}

.gallery{
    
}

.portfolio_box {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.portfolio_img img {
    width: 100%;
    border-radius: .4rem .5rem;
}

.portfolio_content {
    position: absolute;
    width: 100%;
    bottom: 30%;
    left: 0;
    text-align: center;
    z-index: 10;
    padding: 2.5rem;
    opacity: 0;
    -webkit-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
}

.portfolio_content::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: -1;
    -webkit-transition: .25s opacity ease;
    transition: .25s opacity ease;
    opacity: 0.8;
    border-radius: .4rem .5rem;
}

.portfolio_content .p-zoom {
    display: inline-block;
    font-size: 1.4rem;
    color: #fff;
    transition: all 0.3s ease 0s;
    height: 4.6rem;
    line-height: 4.4rem;
    width: 4.6rem;
    border: .1rem solid #fff;
    border-radius: 50%;
    text-align: center;
}

.portfolio_content .p-zoom:hover {
    background: #fff;
    color: #2b1d6a;
}

.portfolio_content h3 {
    font-size: 2rem;
    line-height: normal;
    margin-top: 2.5rem;
    color: #fff;
    margin-bottom: 0;
}

.portfolio_content h3 a {
    color: #fff;
    text-decoration: none;
}

.portfolio_box:hover .portfolio_content {
    opacity: 1;
    bottom: 0;
}

.mfp-bottom-bar{
    font-size: 1.4rem;
}

.centerbtn {
    display: flex;
    justify-content: center;
    margin: 7rem 0 0;
}

.centerbtn .themebtn{
    display:inline-flex;
}

.counter{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}

.counterbox {
    padding: 3rem 2rem;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 .6rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out 0s;
}

.counter_icon {}

.counter_icon img {
    width: 5rem;
}

.counterbox .counting{
    color: #fe5f5b;
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin: 2rem 0 0;
}

.counterbox h5 {
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 500;
    margin: 1rem 0;
}

.counterbox:hover {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
    transform: translateY(-.6rem);
}



.tour {
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.07);
    border-radius: .4rem .5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.tour:before {
    position: absolute;
    content: '';
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: 0.3s ease-in-out 0s;
}

.tour .tour_content {
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    width: 100%;
    padding: 2rem;
    text-align: center;
    background: #fe5f5b;
    color: #ffffff;
    z-index: -1;
    transition: 0.3s ease-out 0s;
    transform: translateY(3rem);
}

.tour .tour_content h4 {
    margin-bottom: .7rem;
    font-size: 2rem;
    text-align: center;
    transition: .2s;
    color: #fff;
}

.tour .tour_content p {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: #fff;
}

.tour:hover:before {
    opacity: 1;
}

.tour:hover .tour_content {
    bottom: 0;
    z-index: 1;
    height: 10rem;
    transition: 0.5s ease-out 0.2s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}



.vacation {
    transition: all 0.3s ease-in-out 0s;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    border-radius: .4rem;
    margin-bottom: 2rem;
}

.vacation_Img {
    position: relative;
    transition: .5s;
    overflow: hidden;
    border-radius: .5rem;
}

.vacation_Img:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    opacity: 0;
    transition: .5s;
}

.vacation_Img:hover:before {
    opacity: 1;
}

.vacation_price,
.vacation_off {
    font-weight: 500;
    color: #2b1d6a;
    font-size: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ffffff;
    display: inline-block;
    z-index: 1;
    padding: 1rem 1.4rem 0 1rem;
    letter-spacing: .1rem;
}

.vacation_off{
    opacity: .8;
    width: 5rem;
    height: 5rem;
    left: 1rem;
    top: 1rem;
    bottom: inherit;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5rem;
}

.vacation_Content  {
    padding: 3rem;
    background: v#fff;
}

.vacation_locaton {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.vacation_locaton i {
    color: #fe5f5b;
    margin: 0 .8rem 0 0;
}

.vacation_Content h4 {
    font-size: 2rem;
    line-height: 1.4;
    margin: 1rem 0 2rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out 0s;
}

.vacation_Content h4 a{
    color: #2b1d6a;
    text-decoration: none;
}

.vacation_rating {
    color: #fe5f5b;
    font-size: 1.5rem;
}

.vacation_time {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    margin: 1.5rem 0 0;
    gap: 1.5rem;
}

.vacation_time_zone {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.vacation_time_zone i {
    color: #fe5f5b;
    margin: 0 .8rem 0 0;
}

.vacation_carousel .owl-dots{
    margin: 3rem 0 0;
    text-align: center;
}

.vacation_carousel .owl-dots .owl-dot span {
    width: 1rem;
    height: 1rem;
    margin: 0 .8rem;
    border-radius: .5rem;
    background: #fe5f5b;
    border: .1rem solid #fe5f5b;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.vacation_carousel .owl-dots .owl-dot.active span {
    width: 3.5rem;
}

.blog{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.blogbox{
    position: relative;
    border-radius: .4rem;
    overflow: hidden;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 1rem;
}

.blogbox_content {
    padding: .5rem 1.5rem 3rem 2rem;
    background: #fff;
}

.blogbox_content h4 {
    padding-top: 1rem;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
    transition: all 0.3s ease-in-out 0s;
}

.blogbox_content h4 a{
    color: #2b1d6a;
    text-decoration: none;
}

.blogbox_icon {
    -webkit-transition: all .3s;
    transition: all .3s;
    margin: 1.6rem 0 0;
    display: flex;
    align-items: center;
}

.blogbox_icon a{
    font-size: 1.5rem;
    color: #6b6f92;
    display: flex;
    align-items: center;
    margin: 0 2rem 0 0;
    text-decoration: none;
}

.blogbox_icon i {
    color: #fe5f5b;
    margin: 0 1rem 0 0;
}

.blogbox_content p {
    padding: 1.5rem .5rem 1.5rem 0;
    font-size: 1.4rem;
}

.blogbox_content .readmore{
    margin: .8rem 0 0;
}

.blogbox_content .readmore a{
    text-transform: capitalize;
    font-size: 1.5rem;
    background: transparent;
    color: #fe5f5b;
    box-shadow: none;
    padding: 0;
    font-weight: 600;
    transition: 0.5s all ease-in-out 0s;
    transform: translateY(-0);
    letter-spacing: 0;
    text-decoration: none;
}

.blogbox_content .readmore a i {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-1.5rem);
    transition: all 0.3s ease-in-out 0s;
}

.blogbox_content .readmore a:hover {
    color: #2b1d6a;
    text-decoration: underline;
}

.blogbox_content .readmore a:hover i {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out 0s;
}

.blogbox_img{
    position: relative;
}

.blogbox_img img {
    width: 100%;
}

.blogbox_img .blogbox_date{
    position: absolute;
    bottom: 1.8rem;
    right: 1.8rem;
}

.blogbox_img .blogbox_date a {
    color: #ffffff;
    font-size: 1.4rem;
    background: #fe5f5b;
    padding: .5rem 1.5rem;
    border-radius: .3rem;
    text-decoration: none;
}

.blog .blogbox:nth-child(2){
    display: flex;
    flex-direction: column-reverse;
}

.black_bg{
    background: #000;
}

.partner_icon {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 100%;
    border-radius: .4rem;
    background: #fff;
}

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

.testimonial_Img{
    width: 28%;
}

.testimonial_Silder{
    width: 44%;
}

.testimonial_Slide{
    text-align: center;
    padding: 0 5rem;
}

.testimonial_img a {
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    width: 12rem;
    height: 12rem;
    box-shadow: 0 .6rem 1.5rem rgba(0, 0, 0, 0.3);
    border: .5rem solid #fe5f5b;
}

.testimonial_img a img{
    width: 100%;
}

.testimonial_Content p {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 0;
    color: #6b6f92;
    display: block;
    padding: 2rem 0;
    font-style: italic;
}

.testimonial_info{}

.testimonial_info h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.testimonial_info span {
    font-style: italic;
    font-size: 1.3rem;
    font-weight: normal;
    margin: 1rem 0 0;
    display: block;
}

.testimonial_star{
    font-size: 1.5rem;
    margin-top: .7rem;
}

.testimonial_star i {
    cursor: pointer;
    color: #2b1d6a;
}

.testimonial_star i.fa-star {
    color: #fe5f5b;
}

.testimonial_Silder .carousel-control-prev, 
.testimonial_Silder .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #ffffff;
    opacity: 1;
    font-size: 2rem;
    transition: all 0.4s ease-out;
    width: 5rem;
    height: 5rem;
    line-height: 4.8rem;
    background: #fe5f5b;
    border-radius: 50%;
}

.testimonial_Silder .carousel-control-prev{
    left: -2.5rem;
} 

.testimonial_Silder .carousel-control-next {
    right: -2.5rem
}

.contact{
    background: url(../images/contact/bg.jpg);
    background-size: cover;
    background-position: center color;
}

.contact::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
}

.contact .container-lg{
    position: relative;
    z-index: 1;
}

.contact .HeadingSect h5,
.contact .HeadingSect h2,
.contact .HeadingSect p{
    color: #fff;
}

.contact_section {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    padding: 4.5rem;
    background: #fff;
    border-radius: 1.2rem;
}

.contact_sectionInner{
    display: grid;
    grid-template-columns: 58% 36%;
    justify-content: space-between;
}

.contact_form h3 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    font-weight: bold;
}

.contact_form .form-group {
    margin-bottom: 2.5rem;
}

.contact_form input, 
.contact_form textarea {
    width: 100%;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border: 0;
    background-color: #f6f6f6;
    font-weight: 400;
    color: #2b1d6a;
    border: .1rem solid #ddd;
    border-radius: .8rem;
    outline: none;
}

.contact_form textarea {
    max-height: 12rem;
    max-width: 100%;
    color: #2b1d6a;
}

.contact_form input::-webkit-input-placeholder,
.contact_form textarea::-webkit-input-placeholder {
    color: #2b1d6a;
}

.contact_form input::-moz-placeholder,
.contact_form textarea::-moz-placeholder {
    color: #2b1d6a;
}

.contact_form input:-ms-input-placeholder,
.contact_form textarea:-ms-input-placeholder {
    color: #2b1d6a;
}

.contact_form input:-moz-placeholder,
.contact_form textarea:-moz-placeholder { 
    color: #2b1d6a;
}

.contact_form .btn[type="submit"] {
    width: 100%;
    color: #fff;
    background: #fe5f5b;
    border-radius: .4rem;
    padding: 1.5rem 2.3rem;
    font-weight: 500;
    font-size: 1.6rem;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    display: inline-block;
    transition: all 0.5s ease-in-out 0s;
    text-transform: capitalize;
    letter-spacing: 0.08em;
}

.contact_info{
    margin: 6.5rem 0 0;
}

.contact_info_details {
    border-bottom: .1rem solid #ddd;
    padding-bottom: 1.7rem;
    margin-bottom: 2rem;
    display: block;
}

.contact_info_details h4 {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: .8rem;
}

.contact_info_details p {
    color: #2b1d6a;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact_info_details p i {
    font-size: 2rem;
    color: #fe5f5b;
}

.contact_info_details:last-child{
    border-bottom: 0;
}

.map{}

.map iframe {
    width: 100%;
    height: 50rem;
    display: block;
}

