@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,800;1,900&family=Mulish:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

p {
    font-family: 'Rubik', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Jost', sans-serif;
}

nav ul {
    margin: auto;
}

nav ul li {
    font-size: 17px;
    font-weight: bold;
    padding: 12px;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 600ms;
    transition-property: color;
}

nav ul li:focus:after,
nav ul li:hover:after {
    width: 85%;
    left: 8%;
}

nav ul li:after {
    content: "";
    pointer-events: none;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 1.5px;
    background-color: #33C3DD;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 600ms;
    transition-property: width, left;
}

nav ul li:hover {
    color: #33C3DD;
}

.navbar-toggler {
    padding: 1px 5px;
    font-size: 18px;
    line-height: 0.3;
    border: #fff;
}

.carousel img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 80vh;
}


/* .btnn */
.btnn {
    padding: 15px 38px;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #548DD4;
    overflow: hidden;
    border: none;
}

.btnn:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #031e3f;
    color: #fff;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.btnn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btnn span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    color: #ffffff;
    font-size: 1.125em;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.btnn:hover span {
    animation: scaleUp 0.3s ease-in-out;
    color: #ffffff;
}

.btnn:hover {
    animation: scaleUp 0.3s ease-in-out;
}

.carousel .carousel-caption {
    position: absolute;
    text-align: left;
    top: 0;
    margin-top: 150px;
}

.carousel .carousel-caption h3 {
    font-size: 36px;
}

.carousel .carousel-caption p {
    font-size: 17px;
    font-weight: 400;
    line-height: 32px;
}

@media only screen and (max-width: 767px) {
    .navbar-nav {
        text-align: center;
    }

    .carousel .carousel-caption br {
        display: none;
    }

    .carousel .carousel-caption p {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
    }

    .contact-us h1 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 880px) {
    .carousel .carousel-caption {
        width: 80%;
        margin-top: 50px;
    }

    .email-contact .vertical {
        display: flex;
        flex-direction: column;
    }
}

.box .container {
    background-color: #091D3E;
}

.box-card {
    padding: 20px 0px 70px 0px;
}

.img-heading {
    background-color: #548DD4;
}

.img-heading h5 {
    font-size: 40px;
    color: #fff;
}

/* .box .card {
    background-color: #12274A;
    border-bottom: 2px solid #33C3DD;
} */

.box .col .card {
    position: relative;
    background-color: #12274A;
    border-radius: 0px;
    cursor: pointer;
    transition: width 0.8s;
}

.box .col .card::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 80%;
    height: 2px;
    background-color: #33C3DD;
}

.box .col .card:hover img {
    transform: rotateX(360deg);
    animation-duration: 1s;
}

.box .col .card:hover {
    width: 100%;
}

/* .box .col .card:hover {
    width: 100%;
} */

.box .col .card {
    padding: 40px 30px;
}

.box .col .card img {
    width: 60px;
    height: auto;
}

.box .col .card-flip {
    perspective: 1000px;
    position: relative;
}

.box .col .card img {
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

.box .col .card-flip:hover img {
    transform: rotateY(360deg);
}

.box .card h1,
.box .card p {
    color: #fff;
}

.box .card h1 {
    font-size: 45px;
}

.box .card p {
    font-size: 18px;
    font-weight: 500;
}

/* company logo */


/* why us */
.why-us h1 {
    font-size: 50px;
}

.why-us p {
    font-size: 16px;
}

.why-us iframe {
    background-position: center;
    background-repeat: no-repeat;
    width: 90%;
    height: 30vh;
}

/* what we do */
.what-we-do {
    border: none;
    outline: none;
}

.what-we-do img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}


.what-we-do .card-img-overlay {
    background: #0101013a;
}

.front-cards {
    margin-top: 50px;
    background-color: #fff;
}

.heading-btn {
    margin-bottom: 70px;
}

.heading-btn h3 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
}

.front-cards h3 {
    font-size: 25px;
    margin: 14px 0px;
}

.front-cards p {
    font-size: 17px;
    line-height: 36px;
}

.line {
    border-right: 1px solid #e1e1e1;
    height: 100%;
}

/* contact us */
.contact-us h1 {
    font-size: 38px;
}

@media only screen and (max-width: 767px) {
    .contact-us h1 {
        font-size: 32px;
    }
}


/* date picker */
.wrapper {
    width: 400px;
    background: #fff;
    border-radius: 10px;
}

.wrapper header {
    display: flex;
    padding: 25px 20px 10px;
    justify-content: space-between;
}

header .icons {
    display: flex;
}

header .icons span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    color: #878787;
    text-align: center;
    line-height: 38px;
    font-size: 1.9rem;
    user-select: none;
    border-radius: 50%;
}

.icons span:last-child {
    margin-right: -10px;
}

header .icons span:hover {
    background: #f2f2f2;
}

header .current-date {
    font-size: 1.45rem;
    font-weight: 500;
}

.calendar {
    padding: 20px 0px;
}

@media only screen and (max-width: 567px) {
    .wrapper {
        width: 300px;
    }
}

.calendar ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
}

.calendar .days {
    margin-bottom: 20px;
}

.calendar li {
    color: #333;
    width: calc(100% / 7);
    font-size: 1.07rem;
}

.calendar .weeks li {
    font-weight: 500;
    cursor: default;
}

.calendar .days li {
    z-index: 1;
    cursor: pointer;
    position: relative;
    margin-top: 30px;
}

.days li.inactive {
    color: #aaa;
}

.days li.active {
    color: #fff;
}

.days li::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.days li.active::before {
    background: rgb(65, 168, 219);
}

.days li:not(.active):hover::before {
    background: #f2f2f2;
}

/* contact us responsive */

.contact-us .contact-align {
    display: flex;
    justify-content: end;
}

@media only screen and (max-width: 990px) {
    .contact-us .contact-align {
        display: flex;
        justify-content: flex-start;
    }
}

/* flip image */

/* badge */
.ribben {
    z-index: 99;
    position: absolute;
    right: 0px;
}

/* logos slider */
#ourclients {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 80px;
}

#ourclients .clients-wrap {
    overflow: hidden;
}

#ourclients .clients-wrap ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    /* Prevent wrapping of logos */
    margin: 0;
    padding: 0;
}

#ourclients .clients-wrap ul li {
    flex: 0 0 220px;
    /* Set a fixed width for logos */
    text-align: center;
    margin-right: 10px;
    /* Adjust the spacing between logos */
}

#ourclients .clients-wrap ul li img {
    max-width: 100%;
    max-height: 100%;
}

#ourclients h3 {
    font-weight: bold;
    padding: 30px;
    text-align: center;
}


/* footer */

.footer {
    background-color: #031e3f;
}

.footer h5,
.footer ul li a {
    color: #fff;
}

.email-contact {
    margin: 60px 0px;
    padding: 40px 0px;
    background-color: #082C57;
}

.email-contact h3,
.email-contact p {
    color: #fff;
}

.vertical-line {
    border-right: 2px solid #006678;
    height: 100%;
}


/* emeded video */
.embeded-video iframe {
    margin-top: 60px;
    background-position: center;
    background-repeat: no-repeat;
    width: 85%;
    height: 60vh;
}

/* .btnn to top */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #1A3761;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #548DD4;
}

/* product page */
.product-page img {
    /* height: 30vh; */
    background-color: #006678;
}

.product-gallery .card {
    border: none;
    outline: none;
}

.product-gallery h3 {
    font-size: 23px;
    text-align: center;
    margin-top: 20px;
}

.product-gallery .card img {
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    cursor: pointer;
}

.detail {
    margin-top: 70px;
}

.detail h3,
.detail h5 {
    font-weight: bold;
}

.detail h5 {
    text-decoration: underline;
}

.detail p {
    text-align: justify;
    line-height: 32px;
    font-weight: 400;
    font-size: 17px;
}

.detail ul li a {
    color: inherit;
    text-decoration: none;
}

/* accordian */
.accordian-QnA ul li a {
    text-decoration: none;
    color: inherit;
}

.accordian-QnA i {
    font-size: 70px;
}

.accordian-QnA {
    margin-top: 70px;
    margin-bottom: 120px;
}

.accordian-QnA h1 {
    font-size: 50px;
    font-weight: bold;
}

.accordian-QnA .faq-heading {
    margin-bottom: 25px;
}

.accordian-QnA .accordion h2 button {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
}

.accordion-header {
    border: 1px solid #d7d7d7;
    padding: 10px;
    margin: 14px 6px;
    border-radius: 5px;
}

/* testimonial */
.testimonials .testi-headings p {
    font-size: 18px;
    color: #33B9CB;
    letter-spacing: 4px;
    font-weight: 500;
}

.testimonials .testimonial-heading {
    font-size: 21px;
    font-weight: bold;
}

.testimonials .fa-quote-left {
    font-size: 40px;
    color: #33B9CB;
}

.testimonials .margtop {
    margin-top: 50px;
}

.testimonials .testimonial-paragraph {
    color: #707070;
}


/* about us page */
.about-video iframe {
    background-position: center;
    background-repeat: no-repeat;
    width: 82%;
    height: 64vh;
}

.about-gallery .card img {
    border-radius: 0px;
    cursor: pointer;
}

.about-detail .about-heading {
    font-size: 45px;
}

.about-detail .about-text p {
    margin-top: -20px;
    color: #5f5f5f;
    line-height: 32px;
}

.about-map {
    margin-top: -70px;
}

.about-map .content {
    text-align: left;
    margin-left: 90px;
}

.about-map .content p {
    line-height: 32px;
    color: #5f5f5f;
}

@media only screen and (max-width: 1000px) {
    .about-map .content {
        margin-left: 30px;
    }
}

.about-detail .box-on-image {
    background-color: #fff;
    color: #5f5f5f;
    margin-left: 60px;
    padding: 20px 50px;
    animation: updown 4s ease-in-out infinite;
}

.about-detail .dots {
    z-index: -1;
    margin-top: -65px;
    animation: updown 4s ease-in-out infinite;
}

@keyframes updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

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

/* contact us page*/
.contact-us-section {
    margin-top: 100px;
}

.calender-boxx {
    padding: 30px 150px;
}

.call-use {
    background-color: #548DD4;
    color: #fff;
    padding: 30px 55px;
}

@media only screen and (max-width: 767px) {
    .calender-boxx {
        padding: 0px;
    }
}

/* openaccount page */
.box-shad {
    cursor: pointer;
    text-align: center;
    box-shadow: 0 0 20px 2px rgba(218, 218, 218, 0.59);
}

/* ship cases */
.ship-cases {
    margin-top: 80px;
}

/* .ship-cases .ship-pad {
    padding: 0px 100px;
} */

/* about (image flip on hover) */
.flip-box {
    background-color: transparent;
    width: 300px;
    height: 200px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    /* Add display: flex to center the content */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateX(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center vertically */
    align-items: center;
    /* Center horizontally */
    text-align: center;
}


.flip-box-front {
    background-color: #bbb;
    color: black;
}

.flip-box-back {
    background-color: #548DD4;
    color: white;
    transform: rotateX(180deg);
}


/* loader */
/* .loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.loading {
    --uib-size: 40px;
    --uib-speed: 0.9s;
    --uib-color: rgb(45, 133, 174);
    position: relative;
    height: var(--uib-size);
    width: var(--uib-size);
}

.loading::before,
.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: var(--uib-color);
    animation: pulse9173412 var(--uib-speed) ease-in-out infinite;
    transform: scale(0);
}

.loading::after {
    animation-delay: calc(var(--uib-speed) / -2);
}

@keyframes pulse9173412 {

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

    50% {
        transform: scale(1);
        opacity: 0.25;
    }
}

#content {
    display: none;
} */



/* animation */
.slide-top {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: translateY(100px);
}

.slide-top.active {
    opacity: 1;
    transform: translateY(0px);
}