@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --FontFamily_Inter: "Inter", sans-serif;
    --FontFamily_Roboto: "Roboto", sans-serif;

    --primaryColor: #075f8a;
    --secondaryColor: #3bbbc3;
    --whiteColor: #ffffff;
    --blackColor: #000000;
    --pragraphColor: #505050;
}    

.FontFamilyInter {
    font-family: var(--FontFamily_Inter);
}

.FontFamilyRoboto {
    font-family: var(--FontFamily_Roboto);
}

.primaryColorText {
    color: var(--primaryColor) !important;
}

.primaryColorBG {
    background-color: var(--primaryColor) !important;
}

.secondaryColorBG {
    background-color: var(--secondaryColor) !important;
}

.secondaryColorText {
    color: var(--secondaryColor) !important;
}

.blackColorBG {
    background-color: var(--blackColor) !important;
}

.blackColorText {
    color: var(--blackColor) !important;
}

.whiteColorBG {
    background-color: var(--whiteColor) !important;
}

.whiteColorText {
    color: var(--whiteColor);
}

.primaryColorBG {
    background-color: var(--primaryColor) !important;
}

body {
    background-color: var(--whiteColor);
}

.font_family_Inter,
body,
p {
    font-family: var(--FontFamily_Roboto);
}

.stella-banner__btn,
a {
    text-decoration: none;
}

/* general styling */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.transformNone {
    transform: none !important
}

p {
    font-size: 1rem;
    line-height: 24px;
    color: var(--paragraphColor);
}

.btn:hover.filter,
.btn:focus.filter {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.btn-outline-white {
    --bs-btn-color: var(--whiteColor);
    --bs-btn-border-color: var(--whiteColor);
    --bs-btn-hover-color: var(--primaryColor);
    --bs-btn-hover-bg: var(--whiteColor);
    --bs-btn-hover-border-color: var(--whiteColor);
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: var(--primaryColor);
    --bs-btn-active-bg: var(--whiteColor);
    --bs-btn-active-border-color: var(--whiteColor);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--whiteColor);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--whiteColor);
    --bs-gradient: none;
}

.btn-outline-black {
    --bs-btn-color: var(--blackColor);
    --bs-btn-border-color: var(--blackColor);
    --bs-btn-hover-color: var(--whiteColor);
    --bs-btn-hover-bg: var(--primaryColor);
    --bs-btn-hover-border-color: var(--primaryColor);
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: var(--whiteColor);
    --bs-btn-active-bg: var(--primaryColor);
    --bs-btn-active-border-color: var(--primaryColor);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--whiteColor);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--whiteColor);
    --bs-gradient: none;
}

/* =======Header======= */
/* upperBar */
.upperBar {
    height: 90px;
    font-size: 12px;
}

/* End */
.navigationBar {
    margin-top: -35px;
    position: relative;
    z-index: 2;
}

.scrollUp.header {
    top: 0;
    /* background-color: #E6F6FE; */
    position: fixed !important;
    top: 0;
    left: 0;
    border-radius: 0;
    padding-top: 0 !important;
}


header.header {
    padding: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.6s;
    border-radius: 10px;
}
header.header .cart{
    color: var(--paragraphColory);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    width: 47px;
    border-radius: 50%;
    border: 1px solid #E0E5EB;
}
header.header .cart .number{
    background-color: var(--bs-red);
    color: var(--whiteColor);
    font-size: 12px;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 0;
    right: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    z-index: 1;
}
header.header .navigation.navbar {
    padding: 17px;
    background-color: var(--whiteColor);
    border-radius: 10px;
    position: relative;
}

header.header .navigation.navbar .navbar-nav .nav-link {
    padding: 10px;
    font-size: 14px;
    color: var(--secondaryColor);
    font-weight: 600;
    position: relative;
    font-family: var(--font-family-Inter);
}

header.header .navigation.navbar .navbar-nav .nav-link:hover {
    color: var(--primaryColor);
}

header.header .navigation.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    right: 0;
    width: 0;
    height: 2px;
    transition: all .6s;
    background-color: var(--primaryColor);
}

header.header .navigation.navbar .navbar-nav .nav-link:hover::after {
    width: 50%;
}

header.header .navigation.navbar .navbar-nav .nav-link.cart span.counter {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 100px;
    width: 20px;
    height: 20px;
    background-color: red;
    color: var(--whiteColor);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header.header .navigation.navbar .navbar-nav .nav-link.cart::after {
    display: none;
}

header.header .navbar-expand-lg .navbar-nav {
    flex-direction: row
}

header.header .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    display: block
}

header.header .navbar .navbar-nav .nav-item .dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: var(--whiteColor);
}

header.header .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 500;
    transition: .6s
}

header.header .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
header.header .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

header.header .icon-box-title h3 a {
    color: var(--black);
    text-decoration: none
}

@media(width >=786px) {}

@media(width <=786px) {
    .upperBar {
        font-size: 8px;
    }

    header.header .navigation.navbar .navbar-nav .nav-link {
        padding: 5px;
    }
}

.card {
    border-radius: 10px;
}


/* offcanvas */
.offcanvas {
    width: 250px !important;
    border: none;
    background-color: var(--secondaryColor);
}

/* mainTitle */
.mainTitle h6 {
    font-size: 30px;
    line-height: 1.3em;
    font-weight: 900;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: var(--FontFamily_Roboto);
}

.mainTitle h6 span::after {
    position: absolute;
    content: '';
    background-image: url(../images/vectorstle.svg);
    background-repeat: no-repeat;
    background-position: center right;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 15px;
    z-index: 0;
}

.mainTitle h3.subtitle {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3em
}

@media(max-width:1199px) {
    .mainTitle h6 {
        font-size: 38px;
        line-height: 40px
    }

    .mainTitle h3.subtitle {
        font-size: 22px
    }
}

@media(max-width:991px) {
    .mainTitle h6 {
        font-size: 32px;
        line-height: 34px
    }
}

@media(max-width:768px) {
    .mainTitle h6 {
        font-size: 24px;
        line-height: 24px
    }
}

@media(max-width:575px) {
    .mainTitle h6 span::after {
        display: none;
    }
}

/*latestnews  */
.latestnews{
    padding: 35px 0;
    background:linear-gradient(135deg,
    #f6faf9 0%,
    #f1f7f6 45%,
    #e2f2f1 70%,
    #cfeeee 100%
  );
}
/*owl  */
.owl-carousel .owl-nav {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    top: -63px;
    position: absolute;
    right: 157px;
}

.owl-carousel .owl-dots {
    display: block;
    margin-top: 20px;
    text-align: center;
}

.owl-carousel .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    margin-right: 5px;
    background-color: var(--paragraphColor) !important;
}

/* .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{ display: block;} */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    margin: 0px;
    font-size: 18px !important;
    color: #202020 !important;
    background: var(--whiteColor);
    border-radius: 100px;
    transition: all .6s;
    width: 40px;
    height: 40px;
    border: solid 1px var(--blackColor) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}


.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-dots button.owl-dot:hover {
    background-color: var(--primaryColor) !important;
    border-color: var(--primaryColor) !important;
}

.owl-carousel button.owl-dot.active {
    background-color: var(--primaryColor) !important;
}

.owl-carousel .owl-nav button.owl-next .fas {
    transition: .8s;
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    left: auto;
    right: 0;
    /* background-image: url(../images/next_circle_fill_icon.svg) !important; */
    background-position: center center;
    background-size: 50%;
    background-repeat: no-repeat;
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: auto;
    right: 45px;
    /* background-image: url(../images/prev_circle_fill_icon.svg) !important; */
    background-position: center center;
    background-size: 50%;
    background-repeat: no-repeat;
}

.owl-carousel .owl-nav button.owl-prev .fas {
    transition: .8s;
}

.owl-carousel .owl-nav button.owl-prev:hover .fas {
    color: #fff;
}

.owl-carousel .owl-nav button.owl-next:hover .fas {
    color: #fff;
}

.owl-carousel button.owl-next.active {
    background: var(--whiteColor) !important;
}

.owl-carousel {
    text-align: center;
}

@media(width <=786px) {
    .owl-carousel .owl-nav {
        position: relative;
        top: 0;
        right: 0;
    }

    .owl-carousel .owl-nav button.owl-prev {
        position: relative;
        left: 0;
    }

    .owl-carousel .owl-nav button.owl-next {
        position: relative;
        right: 0;
    }
}

/* bottomUL */
.bottomUL a.nav-link {
    line-height: 28px;
    font-size: 13px;
    font-weight: 400;
    color: var(--whiteColor);
    position: relative
}

.bottomUL a.nav-link:hover {
    color: var(--primaryColor);
}

.bottomUL a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    margin: 0 auto;
    height: 2px;
    transition: .6s;
    width: 100%;
    background: var(--mainPrimaryColor)
}

/* catlogrow */
.catlogrow .ctlog:hover {
    cursor: pointer;
}

.catlogrow .ctlog:hover::before {
    box-shadow: rgba(208, 0, 0, 0.35) 0px -90px 36px -28px inset;
}

.catlogrow .card h5.title {
    font-size: 34px;
}

.catlogrow .ctlog::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 3s;
    height: 40%;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px -90px 36px -28px inset;
}

@media(width <=991px) {
    .catlogrow .ctlog img {
        width: 100%;
    }

    .catlogrow .card-body {
        padding: 40px 20px;
    }

    .catlogrow .card h5.title {
        font-size: 26px;
    }
}

/*--------------------------------------------------------------------
                        mainSlidee
--------------------------------------------------------------------*/
.mainSlidee .carousel.slide::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(267deg, var(--primaryColor) 31%, #052F2B00 70%);
}
/*--------------------------------------------------------------------
                        Go To Top Button
--------------------------------------------------------------------*/
.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    width: 38px;
    height: 38px;
    line-height: 38px;
    right: 30px;
    bottom: -40px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-transition: all 0.9s ease-in-out;
    -moz-transition: all 0.9s ease-in-out;
    -ms-transition: all 0.9s ease-in-out;
    -o-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.scroll-top-wrapper:hover {
    background-color: var(--blackColor);
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1.0;
    bottom: 40px !important;
}

.scroll-top-wrapper i.fa {
    line-height: inherit;
    font-size: 16px;
}

/* zoom effet */
.zoom img {
    transition: all .6s;
}

.zoom img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------------
                        Start mostaskquestion section
--------------------------------------------------------------------*/
.mostaskquestion .accordion .accordion-item .accordion-button{
    background-color: transparent;
}
/*--------------------------------------------------------------------
                        Start social-footer section
--------------------------------------------------------------------*/
footer.footer{
    background: linear-gradient(
    135deg,
    #0f2a28 0%,
    #163836 25%,
    #0e2624 50%,
    #163836 75%,
    #0f2a28 100%
    );
}
ul.social-footer li {
    display: inline-block;
    transition: .8s;
}

ul.social-footer li a {
    color: var(--secondaryColor);
    text-decoration: none;
    font-size: 16px;
    border-radius: 100px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .8s;
    background-color: var(--secondaryColor);
}

ul.social-footer li a:hover {
    background-color: var(--mainPrimaryColor);
}

ul.social-footer li a .fa {
    font-size: 16px;
    color: var(--whiteColor);
}

.carousel-control-prev-icon {
    background-image: url(../images/prev-icon.svg);
}

.carousel-control-next-icon {
    background-image: url(../images/next-icon.svg);
}