:root {
    --black: #000000;
    --white: #FFFFFF;
    --blue: #003853;
    --orange: #D94E09;
    --orange-hover: #cc4400;
    --lightgray: lightgray;
    --gray: gray;
    --darkgray: darkgray;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Mukta", sans-serif;
}

/* ========== typography ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: unset;
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
}

p {
    font-weight: unset;
}

/* ========== common style ========== */
.fw-semibold {
    font-weight: 600;
}

.rounded-12 {
    border-radius: 12px;
}

.btn-primary {
    border: 0;
    background-color: var(--orange);
    font-weight: 500;
    padding: 6px 16px;
}

.btn-primary:hover {
    border: 0;
    background-color: var(--orange-hover);
}

/* ========== navbar ========== */
header {
    box-shadow: 0px 0px 1px 1px rgb(0, 0, 0, 0.25);
    height: 60px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    background-color: var(--white);
}

.logo img {
    width: 160px;
}

/* ========== preloader ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .preloader {
    width: 200px;
    height: 50px;
    display: inline-block;
    padding: 0px;
    text-align: left;
    box-sizing: border-box;
  }

  .preloader img {
    width: 100%;
  }
  
  /* ========== scroll to top button ========== */
  .scroll-top {
    width: 5px;
    height: 5px;
    line-height: 50px;
    position: fixed;
    bottom: -6%;
    right: -6%;
    font-size: 1px;
    border-radius: 50%;
    z-index: 6;
    color: var(--white);
    text-align: center;
    cursor: pointer;
    background: var(--orange);
    transition: 0.5s ease-in;
    border: none;
  }
  
  .scroll-top.open {
    bottom: 15px;
    right: 25px;
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  
  

/* ========== top section (banner) ========== */
.top-section {
    margin-top: 60px;
    max-height: calc(100vh - 60px);
    min-height: 500px;
    overflow: hidden;
}

.top-section .carousel-inner,
.top-section .carousel-inner .carousel-item {
    max-height: calc(100vh - 60px);
    min-height: 500px;
}

.top-section .carousel-inner .carousel-item {
    position: relative;
}

.top-section .carousel-inner .carousel-caption {
    right: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: start;
    background: linear-gradient(0.25turn, #000000, rgba(235, 248, 225, 0));
}

.top-section .carousel-inner .carousel-caption .sf-top-contain {
    width: 50%;
}

.top-section .carousel-inner .carousel-caption h1 {
    font-weight: 700;
    font-size: 45px;
}

.top-section .carousel-inner .carousel-caption h1 span {
    color: var(--orange);
}

.top-section .carousel-inner img {
    object-fit: contain;
    width: 100%;
    margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
    background: rgb(0, 0, 0, 1);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    top: calc(50% - 0.75rem);
}

.carousel-control-prev {
    left: -6px;
}

.carousel-control-next {
    right: -6px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 1.5rem;
    height: 1.5rem;
}


@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {
    .top-section .carousel-inner .carousel-caption {
        text-align: center;
        background: linear-gradient(0.25turn, #000000, rgba(0, 0, 0, 0.5));
    }

    .top-section .carousel-inner .carousel-caption .sf-top-contain {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .top-section {
        max-height: 500px;
        height: 500px;
    }

    .top-section .carousel-inner .carousel-caption {
        padding: 20px;
    }

    .top-section .carousel-inner .carousel-caption h1 {
        font-size: 30px;
    }

    .top-section .carousel {
        height: 100%;
    }

    .top-section .carousel-inner,
    .top-section .carousel-inner .carousel-item {
        height: 100%;
    }

    .top-section .carousel-inner .carousel-item {
        height: 100%;
    }

    .top-section .carousel-inner img {
        object-fit: cover;
        width: auto;
        margin: 0 auto;
        height: 100%;
    }
}

@media (max-width: 575.98px) {}


/* ========== about ========== */
.sf-about {
    padding: 60px 0;
}

.sf-about .sf-about-contain {
    padding: 30px;
}

.sf-about .sf-about-contain h2 {
    font-weight: 700;
    font-size: 30px;
    color: var(--blue);
}

.sf-about .sf-about-contain p {
    font-weight: 400;
    font-size: 18px;
}

@media (max-width: 767.98px) {
    .sf-about .sf-about-contain {
        padding: 0;
    }
}

/* ========== comming soon ========== */
.sf-comming-soon .sf-comming-soon-inner {
    padding: 20px;
    border-radius: 10px;
    background-image: linear-gradient(rgba(211, 211, 211, 0.25), rgba(211, 211, 211, 0.25)), url(../assets/images/sf_bg.png);
}

.sf-comming-soon .sf-comming-soon-inner img {
    max-width: 250px;
}

.sf-comming-soon .comming-soon-contain {
    padding: 10px 30px;
}

.sf-comming-soon .comming-soon-contain h2 {
    font-weight: 700;
    font-size: 30px;
    color: var(--blue);
}

.sf-comming-soon .comming-soon-contain p {
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .sf-comming-soon .comming-soon-contain {
        padding: 0;
    }
}

/* ========== features and how-it-work ========== */
.sf-how-it-works,
.sf-features {
    padding: 60px 0;
}

.sf-how-it-works,
h2,
.sf-features h2 {
    color: var(--blue);
    font-size: 30px;
}

.sf-how-it-works img,
.sf-features img {
    width: 450px;
    border-radius: 12px;
}

.sf-how-it-works .sf-how-it-works-contain>div,
.sf-features .sf-features-contain>div {
    margin-bottom: 20px;
}

.sf-how-it-works .sf-how-it-works-contain .sf-icon,
.sf-features .sf-features-contain .sf-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.sf-how-it-works .sf-how-it-works-contain .sf-icon i,
.sf-features .sf-features-contain .sf-icon i {
    font-size: 40px;
    color: var(--orange);
}

.sf-how-it-works .sf-how-it-works-contain h4,
.sf-features .sf-features-contain h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
    color: var(--blue);
}

.sf-how-it-works .sf-how-it-works-contain p,
.sf-features .sf-features-contain p {
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 767.98px) {

    .sf-how-it-works img,
    .sf-features img {
        width: 100%;
    }
}

/* ========== contact ========== */
.sf-contact {
    padding: 60px 0;
}

.sf-contact h2 {
    font-weight: 700;
    font-size: 30px;
    color: var(--blue);
}

.sf-contact img {
    width: 120px;
    margin-bottom: 20px;
}

.sf-contact p {
    font-weight: 400;
}

.sf-contact .sf-contact-form {
    max-width: 550px;
}

.sf-contact .sf-contact-form label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.form-control {
    padding: 8px 16px;
    border-color: rgb(255, 148, 94);
}

.form-control:focus {
    border-color: var(--blue);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(255, 85, 0, 0.25);
}

@media (max-width: 767.98px) {
    .sf-contact .sf-contact-form {
        max-width: 100%;
        width: 100%;
    }
}

/* ========== footer ========== */
footer {

    margin-top: 60px;
    background-color: var(--blue);
}

footer .footer-top {
    padding: 60px 0;
}

footer .footer-top p {
    font-weight: 500;
}

footer .footer-top img.logo {
    width: 220px;
}

footer .footer-bottom {
    border-top: 1px solid #005f8e;
}

footer .social-media {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

footer .social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--white);
    margin: 0 10px;
    color: var(--white);
    border-radius: 12px;
    font-size: 20px;
    text-decoration: none;
}


/* ========== responsive ========== */
@media (max-width: 991.98px) {

    .sf-about,
    .sf-how-it-works,
    .sf-features,
    .sf-contact {
        padding: 30px 0;
    }
}


















/* ========== owl ========== */
.owl-theme .item {
    width: 100%;
    height: 100px;
    background-color: bisque;
    color: red;
    display: flex;
    justify-content: center;
    align-items: center;
}

#confirmation {
    display: none; /* Hide by default */
    margin-top: 6px;
}
