/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #BF1C1D;
    --secondary: #333333;

    /* Font Variable */
    --font-text: "Poppins", sans-serif;
    --font-heading: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Jost", sans-serif;
}

section {
    position: relative;
    padding: 4rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3 {
    font-family: "Oswald", sans-serif;
}

h4,
h5,
h6 {
    color: #000;

}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11113;
}

.preLoader .counter {
    color: var(--secondary);
    font-size: 4rem;
    font-weight: 700;
    position: absolute;
    inset: 0;
    margin: auto;
    text-align: center;
    line-height: 1.3;
    mix-blend-mode: difference;
}

.preLoader .bars-wrapper {
    display: flex;
    align-items: end;
    justify-content: start;
    transform: scale(1.5);
}

.preLoader .bar {
    width: calc(100% / 5);
    height: 100vh;
    background-color: var(--primary);
    scale: 1.1;
}

.preLoader .progress {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    max-width: 300px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3);
    transform-origin: right;
}

.preLoader .progress .progressInner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: left;
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.25rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
    display: inline-block;
    padding: 0.8em 1.3em;
    border-radius: 10px;
    line-height: normal;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.themeBtn:before {
    content: "";
    background: var(--black);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    transform: scale(0);
    transition: 0.5s ease;
    z-index: -1;
}

.themeBtn:hover:before {
    transform: scale(1);
}

.themeBtn:hover {
    color: var(--white);
}




/* !GLOBAL CSS */




/* NAV HEADER CSS */

header {
    position: relative;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
}

.navbar-nav .nav-item .nav-link.centerLogo {
    margin: -61px 0 -50px;
    position: relative;
    z-index: 11;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
}

.callTops ul {
    display: flex;
    align-items: center;
    gap: 9px;
}

.callTop.account {
    text-align: right;
}

.topBar {
    background: #000;
    padding: 1rem 0;
}

.callTops ul li {
    background: #BF1C1D;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    transition: 0.5s ease;
}

.callTops ul li i {
    color: #fff;
}

.callTop.account ul li a {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
}

.callTop.account ul li a i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down>a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 5px;
    color: var(--primary);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

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

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: #fff;
}

/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 880px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: end;
}

.main-slider h1 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 120px;
    line-height: 1;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
}


.slideOne {
    text-align: center;
    padding-bottom: 4rem;
}

/* !MAIN HERO SLIDER CSS */


.mainHead {
    font-size: 3.75rem;
    font-weight: 500;
}



/* patner-section */
.prtnercntnt p {
    font-size: 1.125rem;
    color: #727272;
}

figure.redbdr {
    position: relative;
}

figure.redbdr::before {
    position: absolute;
    content: "";
    border: 5px solid #FF3131;
    width: 550px;
    height: 614px;
    border-radius: 50px;
    z-index: -1;
    right: -1rem;
    top: 1rem;
}

.patner-section {
    padding-bottom: 4rem;
}

/* patner-section */



/* mission-section */
.missionbox {
    padding: 0;
}

section.missionbox {
    padding: 0;
}

.missioncntnt h2 {
    font-size: 2.25rem;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

.missioncntnt p {
    color: #fff;
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.5;
    width: 73%;
}

.missionwrap {
    position: relative;
}

.missioncntnt {
    position: absolute;
    bottom: 1.125rem;
    left: 2rem;
}

.missionwrap figure {
    position: relative;
    transition: 0.5s ease;
}

.missionwrap figure::before {
    content: "";
    position: absolute;
    left: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 9%), #000);
    height: 200px;
    bottom: 0;
    right: 0;
    border-radius: 15px;
    transition: 0.5s ease;
}

.missionwrap:hover figure::before {
    background: linear-gradient(180deg, rgb(0 0 0 / 9%), #BF1C1D);
}

/* mission-section */


/* delta-section */
img.img-fluid.delta2 {
    position: absolute;
    bottom: -46px;
    border: 4px solid #BF1C1D;
    border-radius: 50%;
    left: -68px;
}

figure.deltafigure {
    position: relative;
}

figure.deltafigure::before {
    position: absolute;
    content: "";
    border: 3px dashed #BF1C1D;
    width: 666px;
    height: 660px;
    border-radius: 50%;
    left: -1rem;
    top: -1rem;
    z-index: -1;
}

.deltacntnt h4 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #BF1C1D;
    text-transform: uppercase;
}

.deltacntnt p {
    font-size: 1.125rem;
    color: #727272;
}

.greyhead {
    margin-top: 4rem;
    text-align: center;
}

.greyhead h2 {
    font-size: 4.125rem;
    font-weight: bold;
    color: rgb(0 0 0 / 20%);
}

/* delta-section */


/* packeg-section */
.packegcntnt h5 {
    font-size: 1.25rem;
    font-weight: 400;
    color: #BF1C1D;
}

.packegcntnt {
    margin-top: 10px;
}

.packegwrap {
    text-align: center;
    border: 1px solid #fff;
    border-radius: 20px;
    box-shadow: 0 7px 10px rgb(0 0 0 / 16%);
    padding: 56px 21px;
    height: 326px;
    background: #fff;
    transition: 0.5s ease;
}

.packegwrap:hover {
    background: #BF1C1D;
}

.packegwrap:hover .mainHead {
    color: #fff;
}

.packegwrap:hover .packegcntnt h5 {
    color: #fff;
}

.packegwrap:hover img {
    filter: brightness(0) invert(1);
}

.packegwrap.packegup {
    margin-top: 4rem;
}

/* packeg-section */



/* newssection css start */
.bloghead h2 {
    font-size: 3.75rem;
    font-weight: 400;
}

.bloghead {
    margin-bottom: 2rem;
    text-align: center;
}

.blogcntnt h4 {
    font-size: 1.25rem;
    color: #BF1C1D;
}

.blogcntnt h3 {
    font-size: 1.875rem;
    font-weight: 500;
}

.blogcntnt p {
    color: #000;
    margin: 0;
    font-size: 15px;
}

.blogcntnt a {
    font-size: 1.25rem;
    text-transform: capitalize;
    color: #000;
    text-decoration: underline !important;
    font-weight: bold;
}

.blogwrap {
    box-shadow: 0 3px 6px rgb(0 0 0 / 24%);
    border-radius: 10px;
}

.blogwrap figure {
    border-radius: 10px 10px 10px 10px;
}

.propertieSlider .swiper-pagination {
    bottom: 1.5rem;
    top: auto;
    background: none;
    left: 1rem;
}

.propertieSlider .swiper-pagination:before {
    content: "";
    position: absolute;
    background: #0E5293;
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.propertieSlider {
    padding-bottom: 5rem;
    margin-right: -30rem;
}

/* .propertieSlider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: #0E5293;
} */

.swiper-controls {
    position: relative;
    max-width: 140px;
}

.blogwrap figure img {
    width: 100%;
}

.blogwrap figure img {
    border-radius: 10px 10px 0 0;
}

.blogcntnt {
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    border: 1px solid #fff;
    background: #fff;
}

.propertieSec {
    background: #1F1F1F;
}


.bloghead .mainHead {
    color: #fff;
}

.bloghead p {
    color: #fff;
    width: 62%;
    margin: auto;
}

.latest-news {
    padding-top: unset;
}

.propertieSec .swiper-button-next:after,
.propertieSec .swiper-button-prev:after {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.propertieSec .swiper-button-next,
.propertieSec .swiper-button-prev {
    border: 2px solid var(--white);
    background: transparent;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    top: initial;
    bottom: 0;
}

.propertieSec .swiper-button-next:hover,
.propertieSec .swiper-button-prev:hover {
    background: var(--primary);
    transition: 0.5s ease;
}

.propertieSec .swiper-button-next:hover:after,
.propertieSec .swiper-button-prev:hover:after {
    color: var(--white);
}

.propertieSec .swiper-button-prev {
    left: inherit;
    right: 5rem;
}

.propertieSlider {
    padding-bottom: 5rem;
}

.propertieSec .swiper-pagination {
    bottom: 1.5rem;
    top: auto;
    background: none;
    left: 1rem;
    height: 8px;
    width: 65%;
}

.propertieSec .swiper-pagination:before {
    content: "";
    position: absolute;
    background: var(--white);
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.propertieSec .swiper-pagination:before {
    background: var(--white);
}

.propertieSec .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: var(--white);
}

/* newssection css end */


/* service-section */
.service-section {
    background: #E5E5E5;
}

.service-section .swiper-button-next:after,
.service-section .swiper-button-prev:after {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.service-section .swiper-button-next,
.service-section .swiper-button-prev {
    border: 2px solid var(--primary);
    background: transparent;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    top: initial;
    bottom: 0;
}

.service-section .swiper-button-next:hover,
.service-section .swiper-button-prev:hover {
    background: var(--primary);
    transition: 0.5s ease;
}

.service-section .swiper-button-next:hover:after,
.service-section .swiper-button-prev:hover:after {
    color: var(--white);
}

.service-section .swiper-button-prev {
    left: inherit;
    right: 5rem;
}



.serviceSlider .swiper-pagination {
    bottom: 1.5rem;
    top: auto;
    background: none;
    left: 1rem;
    height: 8px;
    width: 88%;
}

.serviceSlider .swiper-pagination:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.serviceSlider .swiper-pagination:before {
    background: var(--primary);
}

.serviceSlider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: var(--primary);
}

.service-section .bloghead .mainHead {
    color: #000;
}

.service-section .bloghead p {
    color: #000;
}

.service-section .blogcntnt p {
    font-size: 15px;
}

.swiper.serviceSlider.swiper-initialized.swiper-horizontal.swiper-pointer-events {
    padding-bottom: 6rem;
}

/* service-section */


/* leader-section */
section.propertieSec.service-section.leader-section .blogwrap {
    background: #ECECEC;
    padding: 30px 30px 0 30px;
    box-shadow: unset;
}

section.propertieSec.service-section.leader-section {
    background: #fff;
}

section.propertieSec.service-section.leader-section .bloghead p {
    width: 77%;
}

.blogcntnt.leadercntnt {
    background: unset;
    border: unset;
    text-align: center;
    padding: 0;
}

.blogcntnt.leadercntnt h3 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-top: 1rem;
}

.blogcntnt.leadercntnt h5 {
    font-size: 1rem;
    color: #BF1C1D;
    font-weight: 400;
    margin: 1rem 0;
}

.blogcntnt.leadercntnt p {
    font-size: 14px;
    margin-bottom: 10px;
}

.blogcntnt.leadercntnt .themeBtn {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    text-decoration: none !important;
    margin-bottom: -2rem;
}

/* leader-section */



/* company-logo */
section.partner-logo {
    padding: 0 0 4rem 0;
}

.companySlider {
    margin-top: 2rem;
}

.companywrap {
    text-align: center;
}

.companywrap figure img {
    width: 200px;
    height: 120px;
    object-fit: contain;
}

/* company-logo */

/* Footer Css Start */

footer {
    background: #1F1F1F;
    padding-top: 5rem;
}

footer h3 {
    font-size: 2.25rem;
    color: var(--white);
    padding-bottom: 0.75rem;
    text-transform: capitalize;
}

footer ul li a {
    color: var(--white);
    transition: 0.5s ease;
    font-size: 1rem;
}

footer ul li a:hover {
    color: var(--primary);
}

.links {
    display: flex;
    flex-flow: column wrap;
    max-height: 205px;
    gap: 1rem 3rem;
}

.links li a {
    text-transform: capitalize;
    font-family: 'Jost';
}


.contactLinks li a span {
    font-weight: 500;
    display: grid;
}

.contactLinks li a span small {
    font-size: 0.875rem;
}

.contactLinks li a {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.contactLinks li+li {
    padding-top: 1.5rem;
}


.copyRight {
    border-top: 1px solid rgb(238 232 227 / 21%);
    padding: 1.5rem 0;
    margin-top: 1rem;
}


ul.latest-list li a {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
}

ul.latest-list li {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    display: inline-flex;
    gap: 11px;
    width: 90%;
}

ul.latest-list li+li {
    margin-top: 10px;
}

/* Footer Css End */
.callTops ul li:hover {
    background: #fff;
}

.callTops ul li:hover a i {
    color: var(--primary);
}



.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: end;
}

.innerBan h2 {
    font-size: 80px;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    text-align: center;
    margin-top: -15rem;
}

.innerBan {
    position: relative;
}

.about-page figure.redbdr::before {
    width: 550px;
    height: 560px;
}

.about-page h4 {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: #BF1C1D;
}

.mission-main {
    text-align: center;
    background: #F6F6F6;
    padding: 40px 110px;
    border-radius: 40px;
}

.mission-main h2 {
    font-size: 60px;
    font-family: 'Oswald';
}

.mission-main p {
    font-size: 1.125rem;
    color: #727272;
}

.partner-logo.patner-page {
    padding: 5rem 0;
}


.service-section.public-serv-page .blogcntnt {
    background: #F5F1F1;
    border-color: transparent;
}

.service-section.public-serv-page {
    background: #fff;
    padding-bottom: 2rem;
}

.service-section.public-serv-page .blogwrap {
    box-shadow: unset;
    margin-bottom: 5rem;
}


.latest-news-page .blogcntnt {
    background: #F5F1F1;
}

.latest-news-page {
    background: unset;
}

.latest-news-page .blogwrap {
    box-shadow: unset;
    border-color: transparent;
    margin-bottom: 3rem;
}

.latest-news-page .bloghead .mainHead {
    color: #000;
}

.latest-news-page .bloghead p {
    color: #000;
}

.member-cntnt {
    text-align: center;
}

.member-cntnt h3 {
    font-size: 60px;
    font-weight: 500;
}

.member-cntnt p {
    font-size: 1.125rem;
    color: #727272;
}

.member-cntnt+.member-cntnt {
    margin-top: 3rem;
}

.membershipwraps h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 22px;
}

.membershipwraps {
    margin-bottom: 2rem;
}


.contact-info {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.contact-info__img {
    width: 218px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #FF3131;
    box-shadow: rgb(0 0 0 / 6%) 0px 3px 15px;
    margin: 0 auto 1.24rem;
    transition: all 0.5s ease;
}

.contact-info li a:hover .contact-info__img {
    box-shadow: rgb(36 36 36 / 22%) 0px 3px 32px;
}

.contact-info__content h5 {
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--black);
}

.contact-info__content p {
    font-size: 20px;
    color: #727272;
    margin: 0;
}

.contact-title .heading {
    font-size: 52px;
    font-weight: 500;
}

.contact-title p {
    font-size: 1.125rem;
    color: var(--black);
    line-height: 1.5;
}

.contactForm :is(input,
    textarea) {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    padding: 1rem;
    color: #000;
    border: 1px solid #EFEFEF;
    margin-bottom: 1.25rem;
    resize: none;
    background: #EFEFEF;
    border-radius: 20px;
    box-shadow: unset !important;
    outline: unset !important;
}

.contactForm :is(input,
    textarea)::placeholder {
    color: #757275;
}

.contatc-shadow {
    box-shadow: 0 4px 16px rgb(0 0 0 / 16%);
    padding: 1rem 2rem;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
    background: #fff;
}

section.map-sec iframe {
    filter: grayscale(1);
    display: block;
}

section.map-sec {
    padding: 0;
    margin-top: -26rem;
}


.contactForm select {
    width: 100%;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    padding: 1rem;
    color: #757275;
    border: 1px solid #EFEFEF;
    margin-bottom: 1.25rem;
    resize: none;
    background: #EFEFEF;
    border-radius: 20px;
    box-shadow: unset !important;
    outline: unset !important;
}


.member-detail h4 {
    font-size: 20px;
    color: #BF1C1D;
    margin: 2rem 0;
}

section.contact-section.memberlogin p {
    text-align: center;
    color: #707070;
    font-size: 1.125rem;
}


.memberlogin .contactForm :is(input, textarea) {
    height: 82px;
}

.memberlogin .contactForm input#exampleCheck5 {
    height: unset;
    width: unset;
    display: unset;
}

.memberlogin .contactForm label {
    color: #707070;
    margin-bottom: 2rem;
}

.memberlogin button.themeBtn.border-0 {
    padding: 1rem 3rem;
}



/* Our Services Section */

.servicesSection .servicesbg {
    position: absolute;
    top: 5rem;
    left: 0;
}


.servicesOptions .nav {
    gap: 4rem;
    padding: 2rem 0;
    border: 0;
    justify-content: center;
}

.servicesOptions .nav-item {
    font-size: 30px;
    color: #7D7979;
    padding: 0;
    border: 0;
    background-color: transparent;
    opacity: 0.7;
    font-weight: 500;
    transition: 0.5s ease;
}

.servicesOptions .nav-item.active {
    color: var(--black);
    background-color: transparent;
    opacity: 1;
}

.polices-wrap p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.founder-wrap {
    background: #ECECEC;
    border-radius: 15px;
    text-align: center;
    padding: 30px;
    margin-bottom: 40px;
}

.founder-wrap h3 {
    font-size: 32px;
    font-weight: bold;
    font-family: 'Oswald';
    margin-top: 23px;
}


.persdent-wrap figure {
    position: relative;
    transition: 0.5s ease;
}

.president-cnnt {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.president-cnnt h3 {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    transition: 0.5s ease;
    opacity: 0;
}

.president-cnnt h5 {
    font-size: 1.125rem;
    color: #fff;
    opacity: 0;
    transition: 0.5s ease;
    font-weight: 500;
}

.persdent-wrap:hover figure::before {
    content: "";
    background: rgb(0 0 0 / 50%);
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}


.persdent-wrap:hover .president-cnnt h3 {
    opacity: 1;
    transition: 0.5s ease;
}

.persdent-wrap:hover .president-cnnt h5 {
    opacity: 1;
    transition: 0;
}

.persdent-wrap {
    margin-bottom: 52px;
}


.deltawrpa h2 {
    font-size: 60px;
    font-weight: 500;
}

.deltawrpa {
    background: #F6F6F6;
    padding: 1rem;
    border-radius: 40px;
    text-align: center;
    padding: 42px 85px 32px 85px;
}

.deltawrpa h4 {
    font-size: 30px;
    font-weight: bold;
    color: #BF1C1D;
}

.deltawrpa p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #727272;
    width: 90%;
    margin: auto;
}

section.national-page h2 {
    font-size: 60px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
}

section.delta-national {
    padding-bottom: 0;
}

.national-cntnt p {
    font-size: 1.125rem;
    color: #fff;
    margin: 0;
}

.national-cntnt h3 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.national-wrap figure {
    position: relative;
}

.national-cntnt {
    position: absolute;
    bottom: 3.5rem;
    left: 2rem;
}

.national-wrap {
    margin-bottom: 40px;
}


.quarter-cntnt p {
    font-size: 1.215rem;
    color: #727272;
    line-height: 1.8;
    font-family: 'Jost';
}

.quarter-cntnt h2 {
    font-size: 60px;
    font-weight: 500;
}

.quarter-cntnt h4 {
    font-size: 30px;
    font-weight: bold;
    color: #BF1C1D;
}

figure.quarterimg1 {
    position: relative;
}

figure.quarterimg1::before {
    position: absolute;
    content: "";
    border: 5px solid #F52F2F;
    width: 660px;
    height: 670px;
    border-radius: 50px;
    z-index: -1;
    left: 10px;
    top: 1.125rem;
}

figure.play-head {
    position: relative;
}

figure.play-head a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BF1C1D;
    font-size: 1.5rem;
}

figure.play-head a i {
    background: #fff;
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

section.notable-page h3 {
    font-size: 60px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
}

.notable-wrap figure {
    position: relative;
}

.notablecntnt {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.notablecntnt h2 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

.notable-wrap {
    margin-bottom: 40px;
}



.notable-page .nav {
    gap: 3rem;
    padding: 2rem 0;
    border: 0;
    justify-content: center;
}

.notable-page .nav-item {
    font-size: 1.125rem;
    color: var(--black);
    padding: 0;
    border-radius: 10px;
    background-color: transparent;
    opacity: 0.7;
    border: 2px solid #2F184C;
    padding: 9px 18px;
}

.notable-page .nav-item.active {
    color: #fff;
    background-color: #BF1C1D;
    /* opacity: 1; */
}

figure.holmesimg {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 30px;
}

figure.holmessecond {
    display: flex;
    align-items: center;
    gap: 25px;
}

h4.redHead {
    font-size: 27px;
    font-weight: 500;
    color: #BF1C1D;
    margin-bottom: 2rem;
}

.request-fromsec {
    background: #BF1C1D;
}

.request-fromsec .mainHead {
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2rem;
}

.greaycntnt {
    text-align: center;
}

section.grey-presdeitn {
    background: #5D5D5D;
}

.greaycntnt p {
    font-size: 30px;
    color: #fff;
}

.greaycntnt .btn-group {
    gap: 2rem;
}

.greaycntnt .btn-group a.themeBtn.seondbtn {
    background: #000;
}

.regionalwrap h2 {
    font-size: 50px;
    font-weight: 500;
}

.regionalwrap p {
    font-size: 1.125rem;
    color: #727272;
    line-height: 1.7;
    margin: 0;
}

.regionalwrap a {
    font-size: 20px;
    font-weight: 500;
    color: #BF1C1D;
}

.regionalwrap {
    margin-top: 40px;
}


.international-section {
    background: #BF1C1D;
}

section.international-section .mainHead {
    color: #fff;
    text-align: center;
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.international-wrap h2 {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
}

ul.international-list li {
    font-size: 1rem;
    color: #fff;
    line-height: 1.9;
}

.backscreen-wrap {
    text-align: center;
}

.backscreen-wrap h2 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.backscreen-wrap .themeBtn {
    background: #000;
}


ul.top-borad {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #BF1C1D;
    padding: 25px 20px;
}

ul.top-borad li {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
}

.board-chart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #707070;
    padding: 1.125rem;
}

.board-chart h3 {
    font-size: 30px;
    font-weight: 400;
    color: #636363;
    margin: 0;
}

.board-chart p {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    line-height: 1.7;
}

.board-chart a i {
    font-size: 1.5rem;
    color: #BF1C1D;
}

.ancor {
    display: flex;
    align-items: center;
    gap: 1rem;
}



.board-director .nav {
    gap: 3rem;
    padding: 2rem 0;
    border: 0;
    justify-content: center;
}

.board-director .nav-item {
    font-size: 1.125rem;
    color: var(--black);
    padding: 0;
    border-radius: 10px;
    background-color: transparent;
    opacity: 0.7;
    border: 2px solid #2F184C;
    padding: 9px 18px;
}

.board-director .nav-item.active {
    color: #fff;
    background-color: #BF1C1D;
    /* opacity: 1; */
}


.historicalwrap h2 {
    font-size: 60px;
    font-weight: 500;
}

.historicalwrap h4 {
    font-size: 30px;
    font-weight: bold;
    color: #BF1C1D;
    margin: 0;
}

.historicalwrap p {
    font-size: 1.125rem;
    color: #727272;
    line-height: 1.8;
}


.historical-section::before {
    position: absolute;
    content: "";
    background: #BF1C1D;
    width: 2px;
    height: 97%;
    left: 50%;
}


.circle11 {
    position: absolute;
    left: 49%;
    top: 5rem;
}

.circle22 {
    position: absolute;
}

.circle33 {
    position: absolute;
    left: 49%;
    bottom: 22rem;
}

.circle44 {
    position: absolute;
}

.circle55 {
    position: absolute;
    left: 49%;
    top: 49rem;
}

.circle66 {
    position: absolute;
    left: 49%;
    bottom: 50rem;
}

.circle22 {
    left: 49%;
    top: 35rem;
}

.contactForm :is(input,
    textarea) {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    padding: 1rem;
    color: #000;
    border: 1px solid #EFEFEF;
    margin-bottom: 1.25rem;
    resize: none;
    background: #EFEFEF;
    border-radius: 20px;
    box-shadow: unset !important;
    outline: unset !important;
}

.contactForm :is(input,
    textarea)::placeholder {
    color: #757275;
}

section.contact-section .callTops ul {
    justify-content: center;
}




.licensing-sec .nav {
    gap: 3rem;
    padding: 2rem 0;
    border: 0;
    justify-content: center;
}

.licensing-sec .nav-item {
    font-size: 1.125rem;
    color: var(--black);
    padding: 0;
    border-radius: 10px;
    background-color: transparent;
    opacity: 0.7;
    border: 2px solid #2F184C;
    padding: 9px 18px;
}

.licensing-sec .nav-item.active {
    color: #fff;
    background-color: #BF1C1D;
    /* opacity: 1; */
}

/* Faq Sec Css Start */

.faqSec {
    margin-top: -5rem;
    padding: 8rem 0 8rem 0;
}

.faqSec #accordion .card {
    border: none;
    padding: 0rem 1rem;
    background: transparent;
    margin-bottom: 1.5rem;
    border-radius: unset;
}

.faqSec #accordion .card .btn-link {
    --height: 3.5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: #1a1a1a;
    padding: 0;
    border: 0;
    font-size: 40px;
    border-radius: unset;
    text-decoration: none;
    overflow: hidden;
    border-bottom-left-radius: 0;
    text-align: left;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.faqSec #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    width: var(--width);
    height: var(--height);
    margin-left: auto;
    border-radius: 50%;
    background: 000;
    font-size: 1rem;
    height: 2rem;
    width: 2rem;
}

.faqSec #accordion .card .btn-link i::before {
    content: "\f068";
}

.faqSec #accordion .card .btn-link.collapsed i::before {
    content: "\f067";
}

.faqSec #accordion .card .btn-link.collapsed i {
    color: #225743;
    height: 2rem;
    width: 2rem;
    font-size: 1rem;
}

.faqSec #accordion .card .btn-link {
    border-bottom: 3px solid #707070;
}

.faqSec #accordion .card .btn-link i {
    color: #707070;
}

.faqSec #accordion .card .btn-link.collapsed {
    border-bottom: 3px solid #707070;
}

.faqSec #accordion .card .btn-link.collapsed i {
    color: #707070;
}

.faqSec #accordion .card+.card {
    margin-top: 0;
}

.faqSec #accordion .card .card-body {
    padding: 0rem 4rem 0.5rem 0rem;
}

.faqSec #accordion .card .card-body p {
    color: #707070;
    font-size: 1rem;
    margin: 0;
    line-height: 33px;
}


/* Faq Sec Css Start */

.mempolicecntnt ul {
    display: flex;
    flex-flow: column wrap;
    gap: 1rem 1rem;
    max-height: 120px;
}

.mempolicecntnt ul li {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
}

.mempolicecntnt p {
    font-size: 1.125rem;
    font-weight: 400;
}

.mempolicecntnt h2 {
    font-size: 60px;
    font-weight: 500;
}