@import url('https://fonts.googleapis.com/css2?family=Newsreader:wght@400;500;700;900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
    --primary-clr: #b22222;
    --secondary-clr: rgb(0, 175, 185, 20%);
    --title-clr: #4c5d67;
    --sub-title: #1d1b20;
    --text-clr: #4a5764;
    --bg-clr: #fff;
    --white: #fff;
    --heading-primary: #636363;
    --text-body: #727272;
    --shadow-primary: 0px 30px 60px 0px rgba(0, 15, 32, 0.1);
    --background-gray: #f1f5eb;
    --background-dark-green: #636363;
    --border-primary: 1px solid #e3dbd8;
    --ff: "Newsreader", sans-serif;
}

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    color: var(--sub-title);
    background-color: var(--white);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    letter-spacing: -0.3px;
    font-family: var(--ff);
}


/* width */


/* ::-webkit-scrollbar {
    width: 0;   
    display: none;
} */


/* Track */


/* ::-webkit-scrollbar-track {
    display: none;
} */


/* Handle */


/* ::-webkit-scrollbar-thumb {
    display: none;
} */


/* Handle on hover */


/* ::-webkit-scrollbar-thumb:hover {
    display: none;
} */

a {
    transition: all 0.3s;
    text-decoration: none;
}

a:hover {
    color: var(--primary-clr);
}

p {
    font-weight: 500;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    line-height: 1.5;
    /* text-align: justify; */
}

.description {
    text-align: justify;
}

ul,
ol,
li {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.nav-link {
    position: relative;
    text-decoration: none;
    transition-duration: 2s;
    transition-property: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.nav-link .active {
    color: var(--primary-clr);
}

.nav-link ol.dropdown {
    position: absolute;
    left: 0;
    top: 50px;
    right: 0;
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #f5f5f5;
    -webkit-box-shadow: 7px 10px 40px rgba(13, 52, 79, 0.1);
    box-shadow: 7px 10px 40px rgba(13, 52, 79, 0.1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.nav-link ol.dropdown li {
    margin-bottom: 10px;
}

.nav-link span {
    color: var(--sub-title);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    color: #68666a;
}

.nav-link ol.dropdown li a {
    font-size: calc(12px + 2 * (100vw - 320px) / 1600) !important;
}

.nav-link:hover ol.dropdown {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.nav-link:hover span {
    transform: rotate(180deg);
    color: var(--primary-clr);
}

.btn {
    border-radius: 10px;
    display: inline-block;
    font-style: normal;
    font-weight: bold;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: var(--white);
    padding: 15px 15px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 0;
}

.btn:hover {
    color: #fff;
}

.btn:hover::before {
    width: 100%;
}

.btn.btn-hrrd-2 {
    background: var(--primary-clr);
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    border-radius: 4px;
    color: var(--white);
}

.btn.btn-hrrd-2:hover {
    color: var();
}

.btn.btn-hrrd-1 {
    background: var(--heading-primary);
    border-radius: 4px;
}

.btn::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0 auto;
    width: 0;
    height: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: -1;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border: 0;
}

.btn.btn-style-2::before {
    background: var(--primary-clr);
}

.btn.btn-hrrd-2 {
    background: var(--heading-primary);
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    border-radius: 5px;
    color: var(--white);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.btn.btn-hrrd-2:hover {
    color: var(--white);
}

.btn.btn-hrrd-2::before {
    background: var(--primary-clr);
}

.btn.btn-hrrd-1 {
    background: var(--primary-clr);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.btn.btn-hrrd-1:hover {
    color: var(--white);
}

.btn.btn-hrrd-1::before {
    background: var(--heading-primary);
}

.btn:active {
    color: var(--white) !important;
    background-color: var(--primary-clr) !important;
    border-color: var(--primary-clr) !important;
}

.btn:focus,
button:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.sub-Title {
    color: var(--sub-title);
    font-size: calc(20px + 10 * (100vw - 320px) / 1600);
    padding-bottom: 0.875rem;
    transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.section-title {
    color: var(--text-clr);
    font-size: calc(35px + 5 * (100vw - 320px) / 1600);
    text-align: center;
    /* padding-bottom: calc(30px + 5 * (100vw - 320px) / 1600); */
    transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

input {
    width: 100%;
}

.form-check-input:checked {
    background-color: var(--primary-clr);
    border-color: var(--primary-clr);
}

.form-check-input:focus {
    outline: 0;
    box-shadow: none;
}

.form-control {
    border-color: #efefef;
    padding: calc(10px + 5 * (100vw - 320px) / 1600);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    color: var(--text-clr);
    border-radius: 10px;
}

.form-control:focus {
    outline: 0;
    border-color: var(--primary-clr);
    box-shadow: none;
}


/* =========header====start */

header {
    top: 0;
    background: transparent;
    z-index: 250;
    position: sticky;
    top: 0;
    left: 0;
    padding-block: 15px;
}

.rs-sticky {
    background-color: var(--bg-clr);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding-block: 15px;
}

.header {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: transparent;
}

.header .logo {
    padding-left: 0px;
    font-size: calc(28px + 10 * (100vw - 320px) / 1600);
}

.header .logo a {
    color: #636363;
}

.header .nav .drawer {
    display: flex;
}

.header .nav .drawer a {
    text-transform: capitalize;
    transition: all 0.1s linear;
    display: flex;
    align-items: center;
    color: #828083;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 600;
    line-height: normal;
}

.header .nav .drawer a:hover {
    color: var(--primary-clr);
}

.header .nav .drawer a.active {
    color: var(--primary-clr);
}

.header .nav .drawer ul {
    display: flex;
}

.drawer-btn,
.close-btn {
    background: transparent;
    border: none;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    right: 10px;
    top: 20px;
    display: none;
    cursor: pointer;
    font-size: 30px;
    line-height: normal;
}

.drawer-btn i {
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn {
    color: var(--white);
    position: absolute;
}

.drawer-btn {
    right: 3px;
}

.close-btn:active,
.drawer-btn:active {
    background: #f3f3f3;
}

.userLogin a i {
    font-size: 30px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========footer== */

.footer-section {
    background: var(--background-dark-green);
    padding-block: 100px;
    background-image: url();
}

.footer-section .footer_mail_info {
    display: flex;
    gap: 20px;
    color: var(--white);
}

.footer-section .footer_mail_info:hover {
    color: var(--primary-clr);
}

.footer-section .f_socials_link li {
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #ffffff1f;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
}

.footer-section .f_socials_link li a i {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-section .f_socials_link li:hover {
    color: var(--white);
    background-color: var(--primary-clr);
}

.footer-section .footer_ul_link li {
    margin-bottom: 10px;
}

.footer-section .footer_ul_link li a {
    color: var(--white);
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}

.footer-section .footer_ul_link li a:hover {
    color: var(--primary-clr);
}


/* ======common--section=== */

.section-space-top {
    padding-top: 50px;
}

.section-space-bottom {
    padding-bottom: 80px;
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.368);
    width: 35px;
    border-radius: 50%;
    height: 35px;
    border: 1px solid var(--primary-clr);
    top: 55%;
    transform: translateY(50%, 50%);
    -webkit-transform: translateY(50%, 50%);
    -moz-transform: translateY(50%, 50%);
    -ms-transform: translateY(50%, 50%);
    -o-transform: translateY(50%, 50%);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    color: var(--primary-clr);
    font-size: 18px;
    font-weight: 600;
}

.common-section {
    margin-block: 30px;
}

.common-section .contact_Wrapper {
    background-color: #e0f5fd4f;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 30px 30px;
    text-align: center;
    border-radius: 10px;
    /* padding-inline: 50px; */
    color: var(--heading-primary);
    border: 2px solid #e0f5fd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-filter: drop-shadow(2px 12px 70px rgba(0, 0, 0, 0.08));
    filter: drop-shadow(2px 12px 70px rgba(0, 0, 0, 0.08));
    position: relative;
}


/* .common-section .contact_Wrapper::before {
    width: 50px;
    height: 2px;
    position: absolute;
    content: "";
    background: var(--heading-primary);
    bottom: -2px;
    -webkit-animation: cart-anm-t-b 4s alternate linear infinite;
    animation: cart-anm-t-b 4s alternate linear infinite;
} */

@-webkit-keyframes cart-anm-t-b {
    0% {
        left: 18px;
    }
    100% {
        left: calc(100% - 50px);
    }
}

@keyframes cart-anm-t-b {
    0% {
        left: 18px;
    }
    100% {
        left: calc(100% - 50px);
    }
}

.contact_Wrapper h3 {
    font-size: calc(20px + 2 * (100vw - 320px) / 1600);
    font-weight: 700;
}

.contact_Wrapper p {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    text-align: start;
    margin: 0 !important;
}


/* ==================header===css=== */