@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Work+Sans: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,700;1,800;1,900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary: #036189;
    --secondary: #FDBC4E;
    --white: #fff;
    --primaryfont: 'Work Sans', sans-serif;
    --titlefont: 'Cormorant Garamond', serif;
    --font-color: #262626;
    --grey: #F9F9F9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primaryfont);
    color: var(--font-color);
    background: var(--grey);
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--titlefont);
}
p{
    font-family: var(--primaryfont);
    color: var(--font-color);
}


.section-padding{
    padding: 120px 0;
}

a.mainbtn{
    border-radius: 5px 25px;
    background: linear-gradient(94deg, v 0%, #2A244E 100%);
    color: var(--white);
    padding: 15px 30px;
    display: inline-table;
}
a.mainbtn:hover{
    background: linear-gradient(94deg, #2A244E 0%, #312484 100%);
}

.title-section h6{
    color: var(--primary);
    font-family: var(--primaryfont);
    font-size: 18px;
    font-weight: 400;
}
.title-section h3{
    color: var(--secondary);
    font-family: var(--titlefont);
    font-size: 60px;
    font-weight: 700;
}

/* Preloader
-------------------------------------------------------*/

.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--primary);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.lead{
  font-size:13px;
}
.loader div {
    background-color: var(--secondary);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary);
    width: 40px;
    height: 40px;
    transition: all 0.4s;
    border-bottom: 5px solid var(--secondary);
}

.back-to-top i {
    font-size: 28px;
    color: var(--secondary);
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: var(--secondary);
    font-size: 15px;
    height: 40px;
    padding: 0;
    font-family: var(--primaryfont);
    color: var(--font-color);
    font-weight: 500;
}

#topbar .contact-info a {
    line-height: 0;
    color: var(--white);
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #fff;
}

#topbar .contact-info i {
    color: var(--primary);
    line-height: 0;
    margin-right: 5px;
}

#topbar .contact-info .phone-icon {
    margin-left: 15px;
}

#topbar .social-links a {
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #fff;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: var(--grey);
    transition: all 0.5s;
    z-index: 997;
    height: 100px;
}

#header.fixed-top {
    background: var(--white);
}
#header .header-nav{
    display: flex;
    justify-content: space-between;
}
#header .logo img{
    width: 180px;
    padding: 10px;
    z-index: 1;
    background: var(--primary);
    position: absolute;
    height: 155px;
    bottom: -25px;
    object-fit: contain;
    border-bottom: 4px solid var(--secondary);
    box-shadow: 0px 4px 21px 0px rgba(0, 0, 0, 0.27);
    transition: all ease-in;
    transition: 0.6s;
}
#header.fixed-top .logo img{
    height: 115px;
}
#header .logo a {
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: flex-start;
}


.scrolled-offset {
    margin-top: 100px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}


.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px 24px 15px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--primaryfont);
    color: var(--primary);
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--secondary);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #191919;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: white;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #fff;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
.support {
    border-radius: 40px 30px 10px 40px;
    background: var(--white);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
    padding: 10px;
}
.support h5 a{
    font-size: 20px;
    font-weight: 600;
}
.support h6{
    font-size: 10px;
    font-weight: 400;
    font-family: var(--primaryfont);
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: var(--secondary);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: var(--primary);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    padding: 10px 0;
    width: 80%;
    background-color: var(--white);
    overflow-y: auto;
    transition: 0.3s;
}
ul.sub-ul {
    position: relative;
    padding: 0;
}
.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #191919;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--secondary);
    background: none;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #191919;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: var(--primary);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}
@media only screen and (max-width: 600px) {
    .navbar{
        justify-content: flex-end;
    }
    
}


/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
.carousel-caption.carousel-caption-one {
    height: 100%;
    display: flex;
    align-items: center;
    right: 10%;
    justify-content: flex-end;
}
.carousel-item{
    height: 80vh;
}
.carousel-content{
    text-align: right;
    width: 50%;
}
.carousel-inner h6 {
    font-family: var(--primaryfont);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    font-size: 26px;
    font-weight: 500;
}
.carousel-inner h2{
    font-family: var(--titlefont);
    color: var(--white);
    font-size: 90px;
    font-weight: 700;
}
.carousel-inner h3 {
    font-size: 34px;
    font-weight: 700;
}
.carousel-inner p{
    font-size: 18px;
    color: var(--grey);
    font-weight: 400;
    line-height: 31px;
}

.category{
    background: var(--grey);
}
.title h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    font-family: var(--primaryfont);
}
.title h4{
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}
.category img {
    width: 100%;
    border-radius: 60px 10px;
    border: 6px solid #FFF;
    height: 200px;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.10);
    object-fit: cover;
    transition: 0.3s;
}
.category-box:hover img{
    transform: scale(1.15);
    transition: 0.3s; 
}
.category h5 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.72px;
    margin-top: 10px;
}


.parallax {
    min-height: 290px;
    
}

.parallax.parallax-one{
    background-image: url("../img/banner/bg-one.webp");
    background-color: #00000066;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.parallax.parallax-three{
    background-image: url("../img/banner/bg-three.png");
    background-color: #00000066;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.parallax h6 {
    font-size: 24px;
    font-weight: 700;
    line-height: 46px;
    padding: 20px;
    letter-spacing: 2.04px;
    color: var(--white);
    text-align: center;
    background: rgb(0 0 0 / 35%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.parallax-two{
    min-height: auto;
    background-image: url("../img/banner/bg-two.png");
    background-color: #00000066;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.parallax-box {
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.09);
    z-index: 2;
}
.parallax-section {
    height: 150px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey);
    border: 4px solid var(--primary);
    border-radius: 300px;
    margin-bottom: 10px
}
.parallax-section img{
    width: 80px;
}
.parallax-box h5{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.72px;
}
.bg-grey {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 37%;
    background: var(--grey);
    width: 100%;
    z-index: 1;
}

.product-box img{
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 7px solid var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.3s; 
    margin-bottom: 15px;
}
.product-box:hover img{
    transform: scale(1.02);
    border-radius: 30px 5px;
    transition: 0.3s; 
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.product-box h5{
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.72px;
    color: var(--primary);
}
a.mehar-btn, button.mehar-btn {
    border-radius: 20px;
    border: 3px solid var(--secondary);
    background: var(--primary);
    color: var(--grey);
    padding: 5px 25px;
    font-size: 16px;
    font-weight: 500;
}
a.mehar-btn:hover, button.mehar-btn:hover{
    background: var(--secondary);
    color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.gallery img{
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.g-2 img {
    height: 250px;
}
.g-3 img, .g-4 img {
    height: 250px;
}

footer.section-one {
    border-bottom: 2px solid #FDBC4E;
    background: #036189;
}
footer.section-one h5{
    font-size: 16px;
    font-weight: 500;
    font-family: var(--primaryfont);
    color: var(--white);
}
footer.section-one h6{
    font-size: 14px;
    font-weight: 400;
    font-family: var(--primaryfont);
    color: var(--white);
}
footer.section-two {
    background: linear-gradient(180deg, #036189 0%, #073F57 100%);
}
footer.section-two p, footer.section-two a{
    color: var(--grey);
    font-size: 14px;
    font-weight: 400;
}
footer.section-two a:hover{
    color: var(--secondary);
    text-decoration: underline;
}
footer.section-two h6 {
    font-size: 16px;
    color: var(--secondary);
    font-family: var(--primaryfont);
    font-weight: 700;
}
footer.section-two li{
    color: var(--grey);
}
footer.section-three{
    background: var(--secondary);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}


.highlights-box {
    padding: 20px;
    background: var(--white);
    border: 3px solid #ededed;
    height: 100%;
    border-radius: 25px;
    text-align: center;
}
.highlights-box:hover{
    border: 3px solid var(--primary);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.highlights-box img{
    border-radius: 25px;
    object-fit: cover;
}
.highlights-box h6 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
}

.breadcrumb {
    background: linear-gradient(180deg, #036189 0%, #073F57 100%);
}
.contact-box-icon {
    background: var(--white);
    border: 4px solid var(--secondary);
    height: 150px;
    display: flex;
    width: 150px;
    align-items: center;
    justify-content: center;
    border-radius: 200px;
    margin-bottom: 15px ;
}
.contact-box-icon img{
    width: 80px;
}
.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}
.contact-box h6 {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
}
.contact-form-card{
    background: var(--white);
    border-bottom: 8px solid var(--secondary);
}
.contact-form-card img{
    height: 100%;
    object-fit: cover;
}
.gallery-img img{
    object-fit: cover;
    transition: 0.3s;
    border: 5px solid var(--white);
    border-radius: 10px;
}
.gallery-img:hover img{
    transform: scale(1.07);
    transition: 0.3s; 
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

a.whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    animation: shake-animation 4.72s ease infinite;
    transform-origin: 50% 50%;
    z-index: 999;
}
@keyframes shake-animation {
    0% { transform:translate(0,0) }
   1.78571% { transform:translate(5px,0) }
   3.57143% { transform:translate(0,0) }
   5.35714% { transform:translate(5px,0) }
   7.14286% { transform:translate(0,0) }
   8.92857% { transform:translate(5px,0) }
   10.71429% { transform:translate(0,0) }
   100% { transform:translate(0,0) }
 }

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media only screen and (max-width: 1000px) {
    #header .logo img {
        width: 160px;
        height: 130px;
        bottom: -65px;
    }
    #header.fixed-top .logo img {
        height: 110px;
        bottom: -45px;
    }
    .product-box img {
        height: 260px;
    }
    .parallax h6 {
        font-size: 18px;
    }
    .carousel-inner h2 {
        font-size: 60px;
    }
}

@media only screen and (max-width: 600px) {
    #header .logo img {
        width: 100px;
        height: 85px;
        bottom: 27px;
        padding: 5px;
    }
    #header .logo {
        top: 65px;
    }
    #header.fixed-top .logo img {
        height: 85px;
        top: -90px;
    }
    #header {
        height: 65px;
    }
    .carousel-content {
        text-align: right;
        width: 100%;
    }
    .carousel-inner h2 {
        font-size: 54px;
    }
    .carousel-inner h3 {
        font-size: 21px;
    }
    .carousel-inner h6 {
        font-size: 18px;
    }
    .carousel-inner p {
        font-size: 16px;
        line-height: 20px;
    }
    .carousel-item {
        height: 50vh;
    }
    .title h4 {
        font-size: 30px;
    }
    .title h6 {
        font-size: 14px;
    }
    .category img {
        border-radius: 30px 5px;
        height: 110px;
    }
    .category h5 {
        font-size: 16px;
        margin-top: 6px;
        margin-bottom: 10px;
    }
    .parallax h6 {
        font-size: 18px;
        line-height: 27px;
    }
    .parallax {
        min-height: 400px;
    }
    .product-box img {
        height: 235px;
        border-radius: 10px;
        border: 4px solid var(--white);
    }
    .scrolled-offset {
        margin-top: 65px;
    }    
    .contact-form-card{
        border: 0px;
    }
    .section-padding{
        padding: 60px 0;
    }
}

@media only screen and (max-width: 350px){
    .carousel-item {
        height: 60vh;
    }
    .carousel-inner h2 {
        font-size: 30px;
    }
    .carousel-inner h3 {
        font-size: 18px;
    }
    .carousel-inner h3 {
        font-size: 18px;
    }
    .carousel-inner p {
        font-size: 13px;
        line-height: 20px;
    }
    .title h4 {
        font-size: 24px;
    }
    .category img {
        border-radius: 20px 5px;
        height: 85px;
        border: 3px solid #FFF;
    }
    .parallax h6 {
        font-size: 14px;
        line-height: 24px;
    }
    .product-box img {
        height: 150px;
        border-radius: 10px;
        border: 2px solid var(--white);
    }
}