* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #F5F5F7;
    font-family: "Roboto", sans-serif;
    padding-top: 88px;
}
.img-object {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
a:hover{
    color: #E12325;
}
img{
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.bg-white {
    background-color: #FFF;
}
.bg-light-red{
    background-color: #E12325;
}
.red-color{
    color: #E12325;
}
.list-style {
    list-style: none;
}
h2{
    font-size: 42px;
    font-weight: bold;
}
h2 span {
    display: block;
}
h3{
    font-size: 40px;
}
h5{
    font-size: 28px;
    font-weight: bold;
}
h6{
    font-size: 22px;
}
.fs-48{
    font-size: 48px;
}
.fs-26{
    font-size: 26px;
}
.fs-20 {
    font-size: 20px;
}
.fs-14 {
    font-size: 14px;
}
.fs-12 {
    font-size: 12px;
}
.fw-medium{
    font-weight: 600;
}
.panel-space {
    padding: 70px 0;
}
.w-90{
    width: 90%;
}
/* header style css */
.movemyload-header {
    background-color: #FFF;
    height: 88px;
}
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background-color: #fff;
}
.nav-item .nav-link {
    color: #000000;
    font-weight: 600;
}
.navbar-nav .nav-link.active, 
.navbar-nav .show > .nav-link,
.nav-link:focus, 
.nav-link:hover{
    color: #E12325;
}
.nav-item:not(:first-child) {
    margin-left: 30px;
}
.nav-item.get-a-quote .nav-link {
    background-color: #E12325;
    color: #fff;
    padding: 11px 12px;
}
.nav-dropdown {
    position: relative;
}
.drop-down {
    padding: 25px 0 0 0;
    position: absolute;
    top: 28px;
    left: 0;
    width: 200px;
    perspective: 1000px;
    display: none;
    animation: rotateMenu 800ms ease-in-out forwards;
    transform-origin: top center;
}
.nav-dropdown:hover .drop-down {
    display: block;
}
button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

@-moz-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@-webkit-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@-o-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}


/* banner css */
.banner-section {
    /* padding: 14rem 0 35rem; */
    /* padding: 7rem 0 12rem; */
    padding: 7rem 0 10rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 825px;
}
.banner-heading {
    font-size: 62px;
    font-weight: 700;
}
.inner-banner-heading {
    font-size: 80px;
    font-weight: bold;
}
.book-now {
    padding: 10px 15px;
    line-height: 1.5;
    display: inline-block;
}

.innerpage-banner-section {
    background-repeat: no-repeat;
    background-position: center top;
    /* min-height: 376px; */
    background-size: cover;
}
.innerpage-banner-section .banner-content {
    padding: 80px 0;
}

/* counter section */
.counter-section {
    padding: 35px 0;
}
.counter-count {
    font-size: 34px;
    font-weight: 900;
    line-height: .8;
    position: relative;
}
.counter-count:before {
    content: "+";
    position: absolute;
    right: -20px;
    top: 6px;
}

/* service section css */
.our-services ul li{
    display: inline-block;
    color: #E12325;
    font-weight: 500;
    position: relative;
}
.our-services ul li:not(:last-child):after {
    content: "";
    position: absolute;
    background: #E12325;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 80%;
    top: 50%;
    transform: translate(-80%, -50%);
}
.our-services ul li:not(:last-child){
    padding-right: 30px;
}
.card-box{
    background: url('../images/bg-card.png') no-repeat center bottom;
    padding-left: 35px;
    padding-right: 30px;
    padding-bottom: 20px;
    /* background-color: #fff;
    box-shadow: 7px 14px 34px 0 rgba(0, 0, 0, 0.03);
    padding: 20px; */
}
.card-box figure {
    overflow: hidden;
    position: relative;
    margin: 0;
}
.card-box figure:before {
    content: "";
    background: #fff;
    border-top: 4px solid #E12325;
    width: 102%;
    position: absolute;
    bottom: 0px;
    transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
    height: 30px;
    left: -1px;
    z-index: 1;
}
.card-box:hover figure:before {
    bottom: 0px;
    transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
    height: 30px;
    left: 0px;
}
.card-box:hover img {
    transform: scale(1.2);
}
.card-box h4{
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* trip css */
.trip-content-wrap {
    position: relative;
    overflow: hidden;
}
.trip-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-bottom: 1px solid #fff;
    cursor: pointer;
}
.trip-content-wrap img {
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
}
.trip-content-wrap:hover img {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
}

/* testimonial css */

.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.testimonial-slider .owl-nav div {
    border: 2px solid #000000;
    border-radius: 50%;
    width: 32px !important;
    height: 32px !important;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}
.testimonial-slider .owl-nav div::before {
    color: #000000;
    font-size: 14px;
}
.testimonial-slider .owl-nav {
    position: absolute;
    left: 0;
    bottom: 20px;
}
.testimonial-slider .owl-prev:before {
    content: "\f060";
}
.testimonial-slider .owl-next:before {
    content: "\f061";
}
.owl-theme .owl-controls .owl-nav div:hover {
    border-color: #E12325;
}
.owl-theme .owl-controls .owl-nav div:hover:before {
    color: #E12325;
}

/* footer css */

.footer-panel .form-control {
    padding: 0.875rem .75rem;
    background: #ffffff8a !important;
    margin-bottom: 19px;
    border: 1px solid #000000;
    font-size: 16px !important;
}
.submit-btn {
    background-color: #E12325;
    border: 0;
    display: block;
    width: 100%;
    color: #fff;
    padding: 14px;
    line-height: 27px;
    border-radius: 5px;
}
.footer-logo img {
    max-height: 150px;
}

/* about page css  */
.banner-bottom{
    background-color: #D9D9D9;
}
.content-pan {
    background: #fff;
    padding: 20px 35px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    max-width: 510px;
}
.our-value-img {
    position: relative;
    overflow: hidden;
    margin: 0;
    display: flex;
    width: 100%;
}
.our-value-img img {
    width: 100%;
}
.our-value-img:hover img {
    scale: 1.2;
}
.our-value-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.top-five-content .row > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.value-content-box {
    padding: 25px 30px;
    display: flex;
    align-items: center;
}
.value-content-box .left-content {
    width: 33%;
}
.value-content-box .right-content {
    border-left: 1px solid #8d9297;
    padding-left: 30px;
}
.our-value-title h2 {
    font-size: 130px;
    line-height: 1;
}
.our-value-title .text-indent {
    text-indent: 7rem;
    display: inline-block;
}
.circle-box {
    width: 246px;
    height: 246px;
    overflow: hidden;
    border-radius: 50%;
}

/* service page css */
.send-btn {
    background-color: #E12325;
    color: #fff !important;
    padding: 12px 20px;
    display: inline-block;
    border: none !important
}
.send-btn:hover{
    background-color: #E12325;
    color: #fff !important;
}
.bottom-links {
    border-top: 1px solid rgba(0, 0, 0, .3);
    padding-top: 20px;
    margin-top: 20px;
}
.bottom-links {
    border-top: 1px solid rgba(0, 0, 0, .3);
    padding-top: 30px;
    margin-top: 20px;
}
.bottom-links ul{
    column-count: 2;
}
.bottom-links ul li {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    background: url(../images/check1.png) no-repeat left center;
    margin: 0px 0 20px;
    padding-left: 25px;
    background-size: 20px;
}
.service2 ul li {
    padding: 0 0 15px 15px;
    font-weight: 600;
    position: relative;
}
.service2 ul li:before {
    content: "";
    position: absolute;
    background: #00BA00;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 0;
    top: 10px;
}
.accordion-button{
    position: relative;
    box-shadow: none;
    border-bottom: 1px solid #EAECF0;
}
.accordion-button:not(.collapsed)::after{
    content: '-';
    background: none;
}
.accordion-button::after {
    content: '+';
    background: none;
    color: #E12325;
    border: 2px solid #E12325;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.accordion-button:not(.collapsed) {
    color: var(--black) !important;
    background-color: var(--white) !important;
    box-shadow: none;
}

/* contact page css */
.contact-info .info i {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 54px;
    height: 54px;
    background: #E12325;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}
.info > div {
    border: 2px solid #E12325;
    border-radius: 20px;
    padding: 30px 74px 20px;
    margin-bottom: 30px;
    max-width: 410px;
}
.form-control,
.form-control:focus {
    border: 1px solid rgba(0, 0, 0, 0.4);
    padding: 0.875rem .75rem;
    background: transparent;
}

/* new css */
/* .logo-img{
    width: 180px;
    text-align: center;
} */
.logo-img img{
    max-height: 72px;
}

.bg-box {
    display: flex;
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    color: #000;
}

.bg-box figure img {
    width: 70%;
    height: 100%;
    object-fit: cover;
}

.business-experience{
    background-color: #1f55a6;
    background-image: linear-gradient(136deg, #1f55a6 0%, #0c387b 50%);
    clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
}
.full-width-wrapper{
    padding: 50px 40px 40px;
    display: flex;
    color: #fff;
    text-align: center;
}
.gb-inside-container {
    padding: 50px 10px 20px;
}


.partner-item {
    width: 240px;
    margin: 20px 15px;
}
.bordered {
    border: 1px solid #dedede;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    position: relative;
    display: inline-block;
    width: 240px;
    height: 130px;
    display: inline-block;
    background: #fff;
}
.partner-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 100%;
    max-width: 100%;
}