/* Global Tag Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: .2s ease-in;
}

body>main>section {
    overflow-x: hidden;
}

body {
    position: relative;
}

a {
    text-decoration: none;
    color: unset;
    cursor: pointer;
}

p {
    text-align: center;
}

h1 {
    font-size: 60px;
    text-align: center;
    margin-top: 100px;
    line-height: 70px;
    font-family: 'Bree Serif', 'serif';
}

h3 {
    font-size: 30px;
    line-height: 34px;
    text-align: center;
}

/* Navigation Rules */
nav {
    top: 0;
    width: 100%;
    z-index: 99;
    color: var(--font-color);
}

nav:after {
    content: "";
    display: table;
    clear: both;
}

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

.dropbtn {
    border: none;
    color: white;
    padding: 0 10px;
    user-select: none;
}

#drop-btn:checked~.dropdown-content {
    display: block !important;
}

.dropdown-nav {
    display: inline-block;
}

.dropdown-content {
    display: none;
    min-width: 160px;
    z-index: 1;
    background-color: white;
    position: absolute;
}

.dropdown-content a {
    color: var(--accent-color);
    text-decoration: none;
    display: block;
    padding: 2.5px 10px !important;
}

.dropdown-nav:hover .dropdown-content {
    display: block;
}

.menu {
    clear: both;
    max-height: 0;
    transition: unset;
    column-gap: 15px;
}

.menu label {
    font-size: 1rem;
    text-decoration: none;
    font-family: var(--primary-font);
    color: #fff;
}

/*
nav ul li {
    display: inline-block;
    color: var(--font-color);
}
*/

nav a {
    font-size: 1rem;
    text-decoration: none;
    font-family: var(--primary-font);
    color: #fff;
}

nav a:hover,
nav label:hover {
    color: #ff0202;
    cursor: pointer;
}

nav ul ul {
    display: none;
    position: absolute;
    top: 60px;
    background-color: white;
}

nav ul li:hover>ul {
    display: inherit;
}

nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}

li>a:only-child:after {
    content: '';
}

.body-nav {
    position: relative;
    font-size: 12px;
    color: var(--primary-color);
    margin: 0;
    word-wrap: break-word !important;
    display: flex;
    flex-direction: column;
}

.nav-contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding-left: 1%;
}

.nav-contact-section i {
    color: var(--primary-color);
}

.nav-contact-section p,
.nav-contact-section a {
    color: black;
}

.nav-contact-socials li {
    float: none;
    display: flex;
    margin: 0;
    column-gap: 10px;
}

.nav-contact-socials li a {
    display: inline;
}

.nav-contact-span {
    font-weight: 800;
}

.nav-logo-section {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
}

.nav-logo-section>div,
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/*
.nav-logo-section .menu {
    float: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1.5rem;
    flex-wrap: wrap;
}
*/
.menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    user-select: none;
}

.menu-icon .navicon {
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    width: 18px;
}

.menu-icon .navicon::before,
.menu-icon .navicon::after {
    background: #fff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
}

.menu-icon .navicon::before {
    top: 5px;
}

.menu-icon .navicon::after {
    top: -5px;
}

.menu-btn {
    display: none;
}

.menu-btn:checked~.menu {
    max-height: 240px;
    overflow: visible;
}

.menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.menu-btn:checked~.menu-icon .navicon::before {
    transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon::after {
    transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon::before,
.menu-btn:checked~.menu-icon:not(.steps) .navicon::after {
    top: 0;
}

.nav-item {
    font-size: 14px;
    margin: 0px 12px;
}

.active-nav {
    font-weight: 700;
}

.body-nav-row {
    background-color: white;
    padding: 1vw 7vw;
}

.body-nav .body-nav-row:nth-child(2) {
    background-color: unset;
    padding: 10px 7vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-dots-container {
    display: flex;
    justify-content: center;
    position: relative;
    column-gap: 5px;
    bottom: 45vw;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    z-index: 99;
}

.carousel-dot {
    border-radius: 50%;
    height: 12px;
    width: 12px;
    background-color: #D9D9D9;
}

.active-carousel {
    background-color: var(--primary-color);
}

.fadein {
    animation: fadein 2s;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.div-hero-cards-container {
    display: flex;
    column-gap: 1.67vw;
    justify-content: center;
    position: relative;
    bottom: 43vw;
    width: 100%;
    flex-wrap: wrap;
}

.div-hero-card {
    width: 20.138vw;
    background-color: white;
    padding: 0.5% 1%;
    box-shadow: 0 4px 8px #2E2E2E55;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: 20.138vw;
    flex-shrink: 0.5;
}

.mt-45 {
    margin-top: -45vw;
}

.div-hero-card-description p,
.div-hero-card-title h3 {
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: left;
}

.div-hero-card-title h3 {
    font-weight: 600;
}

.div-hero-card-description p {
    font-weight: 400;
}

/* End Navigation Rules */
.section-hero {
    position: relative;
    top: -91.4px;
    padding: 0;
    overflow: unset;
}

.div-hero-img {
    width: 100%;
}

.div-hero-img img {
    width: 100%;
    max-height: 697px;
    object-fit: cover;
}

.div-hero-content {
    position: relative;
    color: white;
    padding: 5.5% 7%;
    width: 54vw;
    bottom: 42vw;
}

.red {
    color: var(--accent-color);
}

.div-hero-content h2 {
    font-weight: 400;
    font-size: 2.5rem;
    padding: 2% 0;
    line-height: 1;
}

.div-hero-content span {
    font-weight: 600;
    font-size: 3.375rem;

}

.div-hero-content p {
    font-size: 0.875rem;
    line-height: 1.313;
}

.div-hero-content p:nth-child(1) {
    text-transform: uppercase;
    font-weight: 600;
}

.div-hero-content p:nth-child(3) {
    padding-right: 3%;
    font-weight: 400;
    margin-bottom: 3%;
    line-height: 1.313rem;
}

.div-hero-content>* {
    text-align: left;
}

/* Assist Section  */
.assist {
    background-color: #E7EDF4;
}

.assist-area {
    column-gap: 34px;
    color: black;
    height: max-content;
}

.assist-area-title {
    width: 100%;
}

.assist-area-title h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
}

.assist-area .title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2.25rem;
    padding-right: 18%;
    text-align: left;
}

.assist-area .text-area {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 68%;
}

.assist-area-btn {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    background-color: unset !important;
}

.figure-image-area {}

.figure-president {
    display: block;
}

figcaption.contact-btn {
    border-radius: unset;
    color: white;
    flex-direction: column;
    width: 100% !important;
}

figcaption h3.name {
    font-size: 1.5rem;
    line-height: 30px;
}

figcaption p.designation {
    text-transform: uppercase;
    font-weight: 600;
}

.section-president {
    background-color: white;
}

.div-president {
    flex-direction: column;
    row-gap: 24px;
}

.div-president-content-area {
    display: flex;
    align-items: center;
    column-gap: 91px;
    flex-wrap: wrap;
}

.div-president .text-area .title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 2rem;
}

/* Events Section */
.section-events .assist-area {
    row-gap: 25px;
    padding: 5% 0;
}

.events-title a {
    font-size: 1.5rem;
}

.cards-container {
    display: flex;
    gap: 2rem;
}

.events-title {
    color: white;
}

.events-title .line {
    background-color: white;
}

.row {
    display: flex;
    justify-content: space-between;
}

.section-events {
    background-color: var(--primary-color);
    color: white;
}

.card {
    border-radius: 7px;
    background-color: white;
    max-width: 27.56vw;
    overflow: hidden;
    flex-basis: 27.56vw;
    flex-shrink: 2;
    flex-flow: 2;
}

.card figure>img {
    width: 27.56vw;
}

.figcaption-body {
    padding: 3% 5%;
    row-gap: 10px;
}

.card .figcaption-body>*,
.card .event-description p {
    text-align: left !important;
}

.card .figcaption-body h3 {
    font-size: 1.313rem;
    font-weight: 600;
    color: var(--primary-color);
}

.card .row {
    font-size: 0.875rem;
}

.event-meta .column {
    align-items: center;
    display: flex;
    column-gap: 5px;
}

.event-meta .row:nth-child(2) .column {
    align-items: center;
}

.event-meta .row:nth-child(2) .column img {
    margin-left: -2px;
}

.event-meta .row:nth-child(1) {
    padding-right: 11%;
}

.event-meta .column i {
    color: var(--primary-color);
}

.members-container {
    width: 100%;
}

.members-container figcaption {
    text-align: center;
}

.members-container .members-title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.members-container>div:nth-child(2) {
    padding: 5% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
}

.members-container .time {
    text-transform: none;
}

.members-container .members-all-link {
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.members-container .row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 2rem;
    margin: 0 auto;
}

.members-container .row>.column figure {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    align-items: center;
    justify-content: center;
    width: 19.09vw;
}

.members-container .row>.column figure img {
    height: 14vw;
    width: 14vw;
    border-radius: 50%;
    background-color: #DFDEE0;
}

.members-container figcaption h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.members-container figcaption span {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
}

.color-primary-background {
    background-color: var(--primary-color);
}

.div-gallery-container {
    padding: 3% 0;
}

.section-gallery .div-images {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1.52vw;
    gap: 1.52vw;
}

.div-gallery-head {
    display: flex;
    flex-direction: row;
    color: white;
    justify-content: space-between;
    padding: 3% 0;
    align-items: center;
}

.flex-1 {
    flex: 1
}

.div-gallery-head .line {
    background-color: white;
    width: auto;
    height: 2px;
}

.div-gallery-head h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 2.5;
    font-weight: 600;
}

.div-gallery-head a {
    font-size: 1.5rem;
}



.section-gallery .div-images>div {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.section-gallery .div-images>div img {
    height: 18vw;
    width: 27.7vw;
    object-fit: cover;
}

/* Footer Rules */
.footer {
    color: var(--light-color);
    background-color: var(--primary-color);
}

.footer-logo {
    max-width: 143px;
}

.footer-logo img {
    max-width: 143px;
}

.footer-content {
    align-content: flex-end;
}

.footer-content .description {
    font-size: 0.938rem;
}

.footer-content .touch {
    align-items: flex-start;
}

.footer-content .touch .sub-contact {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.media-icons {
    justify-content: center;
    align-items: center;
    width: 100%;
}

.media-icons .social-media {
    background-color: unset;
}

.media-icons .social-media a {
    color: white;
}

.pa-sm {
    padding: 0 !important;
}

.footer-designed {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footerimg {
    width: 100%;
}

.touch .title {
    color: var(--accent-color2);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5rem;
}


.social-media {
    font-size: 30px;
    color: var(--primary-color);
    background-color: var(--light-color);
    height: 40px;
    width: 40px;
    margin-right: 10px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.search-input-box-group i {
    position: absolute;
    top: 15px;
    right: 0;
    color: var(--gray-color);
    font-size: 16px;
}

.contact-img {
    width: 50%;
    z-index: -99;
    position: absolute;
    top: 550px;
}

.line {
    background-color: var(--primary-color);
    width: 200px;
    height: 4px;
    border-radius: 50px;
}

.line2 {
    background-color: var(--accent-color2);
    width: 200px;
    height: 4px;
    border-radius: 50px;
}

.line3 {
    background-color: var(--accent-color);
    width: 200px;
    height: 4px;
    border-radius: 50px;
}

.g-image {
    height: 300px;
    width: 300px;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-color2);
    margin-right: 10px;
    margin-bottom: 10px;
}

.g-image img {
    border-radius: var(--border-radius);
}


.footer .title {
    font-size: 24px;
}




#container {
    margin: 0 auto;
    max-width: 890px;
}


.toggle,
[id^=drop] {
    display: none;
}

.small-nav {
    display: none !important;
}

#logo {
    display: block;
    float: left;
}

#logo img {
    /*
    height: 100px;
    width: 100px;
    */
}

.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    padding: 10px 30px !important;
    border-radius: var(--border-radius);
    font-family: var(--primary-font);
    cursor: pointer;
    width: fit-content !important;
}

.contact-btn2 {
    background-color: var(--accent-color);
    border-radius: 4px;
}

.contact-link {
    padding: unset !important;
    color: var(--light-color) !important;
}

.gallery-container {
    float: left;
    overflow: hidden;
}

.gallery-container .title {
    color: #1a1a1a;
    text-align: center;
}

.content {
    position: relative;
    margin: auto;
    overflow: hidden;
    height: 100%;
}

.content .content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.content-non-rotation .content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 180%;
    width: 150%;
    opacity: 0;
    object-position: left;
    left: -30%;
}

.content:hover .content-overlay {
    opacity: 1;
}

.content-image {
    width: 100%;
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-details h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.content-details p {
    color: #fff;
    font-size: 0.8em;
}

.fadeIn-top {
    top: 20%;
}

.blog-date {
    font-size: 12px;
    opacity: 75%;
}

.blog-title {
    font-size: 18px;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog {
    height: max-content;
    width: 350px;
    margin-bottom: 10%;
}

.blog>.description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 23px;
    font-size: 14px;
}

.blog>.img-area>img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog:nth-child(odd)>.img-area>img {
    border: 1px solid var(--primary-color);
}

.blog:nth-child(even)>.img-area>img {
    border: 1px solid var(--accent-color2);
}

.blog:nth-child(even) .blog-title {
    color: var(--accent-color2);
}

.blog:nth-child(even) .btn {
    background-color: var(--accent-color2);
}

.blog-area .img-area {
    width: 100% !important;
}

.blog-area .description {
    text-align: justify;
}

.news {
    display: flex;
    flex-wrap: wrap;
    height: 600px;
    overflow-y: scroll;
    justify-content: space-between;
}

.news-area .date {
    opacity: 0.7;
    font-size: 13px;
}

.news-area {
    flex: 0 45%;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.news-area:nth-of-type(odd) {
    border-bottom: 1px solid var(--primary-color);
}

.news-area:nth-of-type(even) {
    border-bottom: 1px solid var(--accent-color2);
}

.news-area .title {
    font-size: 18px;
    font-weight: bold;
}

.news-area .description {
    font-size: 14px;
    line-height: 22px;
    text-align: justify;
}

.head .title {
    font-size: 30px;
    opacity: 80%;
}

.many-blogs {
    padding-top: 3%;
    margin: unset;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-row-gap: 50px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}


.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    height: 100%;
}

.close {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background-color: red;
    padding: 10px;
}

.hide {
    display: none !important;
}

.map-container {
    text-align: center;
}

.map-point-sm {
    cursor: pointer;
}

.division-map {
    transform: rotate(-45deg) scale(0.7);
}


.gallery-container .content {
    top: unset;
    left: unset;
    width: unset;
    transform: unset;
    object-fit: cover;
    object-position: unset;
    height: 100%;
}

.content-non-rotation {
    display: flex;
    transform: rotate(45deg);
    justify-content: center;
    align-items: baseline;
    height: 140%;
    width: 140%;
    object-fit: cover;
    object-position: center;
}

.content-non-rotation img {
    height: 150%;
    width: 150%;
}

.content-non-rotation .content-details h3 {
    margin-right: 180px;
}

.shape {
    position: absolute;
    height: 400px;
    width: 400px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-area .text-area {
    width: 60%;
}


.app-ad {
    background-repeat: repeat-x;
    color: black;
    background-color: white;
}

.app-area {
    display: grid;
    grid-template-columns: 47% 43%;
    column-gap: 10%;
    align-items: center;
}

.app-area .phone-app {
    display: flex;
    justify-content: center;
}

.app-area .text-area .title {
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 66px;
}

.app-area .text-area .description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 22px;
}

.app-area .text-area .title span {
    font-weight: 600;
}

.store {
    column-gap: 15px;
}

.store .btn {
    border-radius: 2px;
    padding: 10.5px 12px;
    font-size: 0.875rem;
    font-weight: 400;
}

.store .btn-primary {
    background-color: var(--primary-color);
    column-gap: 10px;
}

.store .btn-outline {
    background-color: white;
    border-width: 2px;
}

.board-members {
    background-image: url("../images/board-bg.svg");
}

.testimonials {
    position: relative;
}

.inner-testimonials .owl-dots {
    display: none;
}

.custome_slide.owl-carousel .owl-item.active.center .main-reviewimage {
    border: 2px solid #fff;
}

.main-reviewimage {
    border-radius: 50%;
    height: 310px;
    width: 100%;
    background: #000;
}

.main-reviewimage img {
    opacity: 0.3;
}

#slide-testimonal .active.center .main-reviewimage img {
    opacity: 1;
}

.test_img {
    position: relative;
    opacity: 1;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    margin: 0 -48px;
    margin-top: 40px;
}

.inner-testimonials {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

#slide-testimonal .center .test_img:before {
    content: none;
    transition: 0.7s ease-in-out;
}

.test_img img {
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
}

.custome_slide.owl-carousel .owl-item.active.center {
    transform: scale(1.3);
    margin-top: 0 !important;
    position: relative;
    z-index: 999;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.custome_slide.owl-carousel .owl-item {
    transform: scale(0.7);
    padding: 10px 0px;
    transition: all 0.5s;
}

.testimonial_detail {
    text-align: center;
}

.testimonial_detail {
    transform: scale(0.7) !important;
    width: 447px;
    position: relative;
    left: -71px;
}

.testimonial_detail h4 {
    font-size: 38px;
    margin: 0;
}

.testimonial_detail p {
    color: #ccc;
    font-size: 26px;
}

.custome_slide.owl-carousel .active .testimonial_detail {
    display: none;
}

.custome_slide.owl-carousel .active.center .testimonial_detail {
    display: block !important;
}

.main-reviewimage {
    border-radius: unset;
    height: 400px;
    width: 300px;
    background: #000;
}

.test_img img {
    border-radius: unset;
    object-position: top;
    border: 1px solid var(--primary-color);
}

.custome_slide.owl-carousel .owl-item.active.center .main-reviewimage {
    border: unset;
}

.member-slider-title {
    font-size: 24px;
    color: var(--light-color);
}

.member-slider-position {
    font-size: 14px;
    margin: unset;
}

.member {
    border-left: 5px solid var(--accent-color);
    border-bottom: 5px solid var(--accent-color);
    padding-left: 20px;
    padding-bottom: 20px;
    width: 80%;
    cursor: pointer;
}

.member:nth-child(even) {
    border-color: var(--primary-color);
}

.member .img-area {
    height: 200px;
    border: 1px solid var(--primary-color);
    background-color: #aaaaaa;
}

.num .title {
    font-size: 12px !important;
    font-weight: lighter;
    opacity: 0.5;
}

.member .title {
    font-size: 18px;
}

.member .num .number,
.member .address {
    font-size: 14px;
}

.executive-member {
    cursor: pointer;
}

.executive-members {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.executive-member .img {
    height: 260px;
    width: 250px;
    border: 1px solid var(--primary-color);
}

.executive-member .title {
    font-weight: lighter;
    font-size: 18px;
}

.executive-member .designation {
    font-size: 14px;
}

.few-words .words {
    font-size: 14px;
    line-height: 22px;
    text-align: justify;
}

.image-consultancy .img-area {
    width: 30%;
    border: 1px solid var(--primary-color);
    margin-bottom: 10px;
}

.right-sq>.title {
    font-size: 18px;
    color: var(--accent-color2);
}

.right-sq>.title.secondary {
    color: var(--primary-color);
}

.square {
    height: 20px;
    width: 20px;
    background-color: var(--accent-color);
}

.square.secondary {
    background-color: var(--primary-color);
}

.sqline {
    height: 100%;
    width: 2px;
    background-color: var(--accent-color);
}

.sqline.secondary {
    background-color: var(--primary-color);
}

.code-of-conduct-area .number {
    font-size: 14px;
}

.code-of-conduct-area>.right-sq:nth-child(even) .title {
    color: var(--primary-color);
}

.code-of-conduct-area>.right-sq:nth-child(even) .square,
.code-of-conduct-area>.right-sq:nth-child(even) .sqline {
    background-color: var(--primary-color);
}


.contact-area {
    height: max-content;
}

.contact-details .fa {
    font-size: 25px;
    opacity: 0.5;
}

.basic-home .title {
    font-size: 22px;
    text-transform: unset;
    color: var(--primary-color);
    text-align: left;
}

.bullet-number {
    font-size: 48px;
    opacity: 0.1;
}

.form-custom-checkbox {
    display: block;
    margin-bottom: 15px;
}

.form-custom-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-custom-checkbox label {
    position: relative;
    cursor: pointer;
}

.form-custom-checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid var(--accent-color2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.form-custom-checkbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid var(--accent-color2);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.news-overlay {
    background-color: #FBFBFB;
    padding: 20px;
    width: 400px;
    position: absolute;
    top: 0;
    right: var(--wrapper-padding);
}

.news-overlay .news-area {
    padding-bottom: 15px;
    margin-bottom: 15px;
    padding-right: 20px;
    cursor: pointer;
}

.news-overlay .head .title {
    font-size: 18px;
}

.news-overlay .news-area .title {
    font-size: 14px;
}

.news-overlay .news-area .date {
    font-size: 12px;
}

.news-overlay .news-area .description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-section {
    height: 300px;
    overflow-y: scroll;
}

.blog-overlay-image {
    width: 300px;
    margin-right: 10px;
    height: 70px;
}

.blog-overlay-image img {
    border: 1px solid var(--primary-color);
}

.no-overlay-nav {
    display: none;
}

.recognition {
    justify-content: space-between;
}

.recognition .text-area {
    width: 20vw;
}

.recognition .images-area {
    justify-content: center;
    width: 50%;
}

.recog-image {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recog-image img {
    max-width: 291px;
    padding: 20px;
}


.contact-one {
    padding: 10px 20px;
}

.contact-columns .column-one:first-child {
    border-right: 0.5px solid gray;
}

.contact-columns .column-one .contact-one:first-child {
    border-bottom: 0.5px solid gray;
}

.map-location-box {
    width: 40vw;
    height: 400px;
    border: 1px solid orange;
    border-radius: 10px;
}

.map-location-box iframe {
    border-radius: 10px;
}

.branches-section .one-branch {
    height: 220px;
    width: 220px;
    padding: 10px;
    background-image: url('../images/logo.svg');
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color);
    background-blend-mode: multiply;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    border-radius: var(--border-radius);
    margin-right: 20px;
    cursor: pointer;
    margin-top: 30px;
}

.branch-description .image-area {
    height: 300px;
    width: 40vw;
    margin-right: 30px;
    margin-top: 30px;
}

.branch-description .members {
    width: 50vw;
}

.member.desc {
    width: unset;
}

@media screen and (max-width: 767px) {
    .dropdown-nav {
        position: relative;
    }

    .dropdown-content {
        display: absolute;
        top: 25px;
    }

    .shape .video-thumb {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }

    .recognition .images-area {
        width: 100%;
    }

    .recognition .images-area .recog-image {
        width: 50%;
        max-width: 50%;
    }

    .recognition .images-area .recog-image img {
        width: 100px;
        height: 100px;
        object-fit: contain;
    }

    .title {
        font-size: 24px !important;
    }

    .member-header {
        padding-top: 0px !important;
        flex-direction: column;
        align-items: flex-start !important;
    }

    .member-header>*+* {
        margin-top: 20px;
    }

    .main-reviewimage {
        width: 200px !important;
        height: 200px !important;
        background-color: #fff !important;
        display: block;
        margin: 0 auto 10px !important;
        position: relative;
        border-radius: 10px;
    }

    #slide-testimonal .active.center .main-reviewimage img {
        width: 180px;
        height: 180px;
        object-fit: cover;
        margin: 0 auto;
        display: block;

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .mt-xl {
        margin-top: 10px !important;
    }

    .gallery-header {
        margin-bottom: 30px;
    }


    .executive-members.many-blogs {
        justify-content: center;
    }

    .contact-columns>* {
        width: 100%;
    }

    .contact-columns>*>* {
        border-bottom: none !important;
        padding: 12px 15px;
        margin-bottom: 20px !important;
        border: 1px solid #ddd !important;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        border-radius: 10px;

        display: flex;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: row !important;
        justify-content: flex-start;
    }

    .contact-columns>*>*>* {
        flex: 1;
    }

    .contact-columns>*>*>*:first-child {
        flex-basis: 30px;
        max-width: 30px;
    }

    .div-hero-card {
        width: 79.64vw;
        flex-shrink: 1;
        flex-basis: 79.64vw;
        flex-grow: 0.5;
    }
}

#recognition {
    flex-direction: column !important;
    background-color: #E7EDF4;
    padding: 5% 7.5vw;
}

#recognition>* {
    width: 100% !important;
}

#recognition>.images-area {
    flex-direction: row;
    justify-content: space-between;
}

#recognition>.images-area>* {
    width: auto;
}

#recognition .text-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#recognition .text-area .title {
    color: black;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 3.375rem;
}


.link-class {
    text-decoration: underline;
    color: #0000FF;
}

.arrow-btn {
    display: none;
}

.section-events .carousel-dots-container {
    display: none;
}

@media screen and (max-width: 1920px) {
    .section-gallery .div-images {
        justify-content: center !important;
        gap: 0.5vw;
    }

    .div-hero-content {
        bottom: 32vw;
    }

    .carousel-dots-container {
        bottom: 35vw;
    }

    .div-hero-cards-container {
        bottom: 32vw;
    }

    .mt-35p-neg {
        margin-top: -35%;
    }
}


@media screen and (max-width: 1439px) {
    .cards-container {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .section-gallery .div-images {
        justify-content: center !important;
        gap: 0.5vw;
    }
}

@media screen and (max-width: 1180px) {
    .div-hero-content {
        width: 100%;
        top: 7%;
    }

    .carousel-dots-container {}


    section.assist .text-area {
        align-items: center;
        justify-content: center;
    }


    section.assist .text-area .title {
        text-align: center;
        padding: unset;
    }

    section.assist .text-area .line {
        margin: 0 auto;
    }

    section.assist .description {
        text-align: center;
    }

    .menu {
        position: unset;
        background-color: unset;
    }

}

@media (min-width : 768px) {

    .menu {
        clear: none;
        float: right;
        max-height: none;
    }

    .menu-icon {
        display: none;
    }

    .div-president-content-area {
        flex-wrap: unset;
    }
}

@media screen and (max-width: 767px) {
    .div-hero-cards-container {
        bottom: 285px;
    }

    .section-gallery .div-images>div img {
        height: 272px;
        width: 399px;
    }

    .menu {
        margin: unset;
        position: absolute;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        bottom: -83px;
        background-color: var(--primary-color);
        padding: 0 10px;
        width: 100%;
    }

    .dropbtn {
        padding: unset;
    }

    .menu label {
        font-size: unset;
    }

    .menu-icon {
        position: absolute;
        right: 0;
    }

    body-nav .body-nav-row:nth-child(2) {
        display: unset !important;
    }

    #logo a {
        padding: 0 !important;
    }

    .section-hero {
        top: -75px;
        margin: 0;
    }

    section.assist:nth-child(3) {
        margin-top: -300px;
    }

    section.app-ad .app-area {
        grid-template-columns: unset;
        row-gap: 15px;
    }

    section.app-ad .app-area img {
        width: 75.5%;
    }

    section.app-ad .app-area>* {
        text-align: center;
    }

    .store .btn-primary {}


    .app-area .store.flex {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .app-area .btn-outline {
        margin-top: 0;
    }

    .app-area .store a {
        font-size: 0.75rem;
        width: 100%;
    }

    .app-area .store a:nth-child(2) {
        padding: 7.5px 12px;
        column-gap: 5px;
    }

    .app-area .store a span {
        width: 100%;
    }

    .app-area .btn-outline img {
        height: 20px;
        width: 20px;
    }

    .app-area .text-area .title {
        line-height: 2rem;
    }

    .app-area .text-area .description {
        font-size: 0.75rem;
        line-height: 1.125rem;
    }

    section.assist .text-area {
        align-items: center;
        width: 100%;
    }

    section.assist .text-area .title {
        padding: 0;
        text-align: center;
        font-size: 1rem !important;
        line-height: 1.5rem;
        margin-bottom: 5px;
    }

    section.assist .assist-area {
        row-gap: 2rem;
    }

    section.assist .image-area figure {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    section.assist .image-area figure img {
        width: 343px;
    }

    section.assist .text-area .description {
        line-height: 1.125rem;
        font-weight: 400;
        font-size: 0.75rem;
    }

    section.assist .text-area .line {
        margin: 0 auto;
    }

    section.assist .text-area>* {
        text-align: center;
    }

    .section-president {
        display: block !important;
    }

    .section-gallery {
        display: block !important;
    }

    .section-president .assist-area {
        row-gap: 0 !important;
    }

    .section-president .assist-area-title h2 {
        text-align: center;
        font-size: 1rem;
    }

    .section-president .assist-area-title .line {
        margin: 0 auto;
        margin-top: 5px;
        width: 35%;
    }

    figcaption.contact-btn {
        margin: 0 !important;
    }

    .div-president-content-area {
        padding: 1.5rem 0;
        column-gap: 0;
        row-gap: 1rem;
        justify-content: center;
    }

    .div-president-content-area .figure-image-area {
        width: 300px;
    }

    .div-president-content-area .name {
        font-size: 1rem;
    }

    .div-president-content-area .designation {
        font-size: 0.75rem;
    }

    .div-president-content-area .text-area h3.title {
        margin: 0;
    }

    .toggle {
        padding: 0 !important;
    }

    label.toggle-main {
        padding: 15px 0 !important;
    }


    .div-hero-content .contact-btn {
        width: unset !important;
        margin: 0;
        display: inline-block;
        padding: 7px 10px !important;
        border-radius: 2px;
    }

    .div-hero-content p:nth-child(3) {
        padding: 0;
        margin: 0;
        line-height: 1rem;
    }

    .div-hero-img img {
        height: 390px;
        object-fit: cover;
    }

    .carousel-dots-container {
        display: none;
    }

    .div-hero-content {
        width: 100%;
        padding: 0 6%;
        display: flex;
        flex-direction: column;
        row-gap: 1.5vw;
        bottom: 300px;
    }

    .div-hero-content>* {
        text-align: center;
    }

    .div-hero-content p {
        font-size: 0.75rem !important;
    }

    .div-hero-content h2 {
        font-size: 1.5rem;
        padding: 0;
    }

    .div-hero-content span {
        font-size: 2rem;
        display: block;
    }

    .body-nav {
        margin-bottom: 0 !important;
        row-gap: 0;
    }


    .nav-contact-section {
        flex-direction: column;
        row-gap: 10px;
    }

    .nav-contact-section p {
        font-size: 0.75rem;
    }

    .nav-contact-section p span {
        font-weight: 1.125rem;
    }

    .nav-contact-socials li {
        display: flex;
        justify-content: center;
        column-gap: 20px;
    }

    .nav-contact-socials li a {
        padding: 0 !important;
    }

    .nav-logo-section {
        border: 0;
        padding-bottom: 0;
        position: relative !important;
    }

    .nav-logo-section>div {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #logo-small img {
        height: 35px !important;
        margin: 0;
    }

    .toggle {
        justify-content: space-between;
        width: 100%;
    }

    #footer {
        text-align: center !important;
    }

    .touch {
        align-items: center !important;
    }

    nav {
        background-color: unset !important;
    }

    .arrow-btn,
    .arrow-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: var(--primary-color);
        position: relative;
    }

    .arrow-btn-left {
        left: 10px;
    }

    .arrow-btn-right {
        right: 10px;
    }

    .div-hero-cards-container {
        align-items: center;
        column-gap: 0;
    }

    .div-hero-card:nth-child(n+1):not(:nth-child(2)) {
        display: none;
    }

    .div-hero-card {
        align-items: center;
        padding: 4.5% 2%;
        height: 100%;
    }

    .div-hero-card-img img {
        width: 32px;
        height: 32px;
    }

    .div-hero-card p {
        text-align: center;
        font-size: 0.75rem;
        line-height: 1.125rem;
    }

    .section-events .cards-container {
        column-gap: 0;
    }

    .section-events .cards-container .card:nth-child(n+1):not(:first-child) {
        display: none;
    }

    .section-events .cards-container figure {
        width: 342px;
    }

    .section-events .cards-container figure figcaption img {
        width: unset !important;
    }

    .section-events .cards-container figure>img {
        height: 169px;
        width: 100%;
        object-fit: cover;
    }

    .section-events .event-description p,
    .section-events .event-meta div {
        font-size: 0.75rem;
    }

    .events-title h2,
    .events-title a {
        font-size: 1rem;
    }

    .events-title .line {
        width: 75%;
    }

    .section-events .cards-container .card {
        width: 342px;
        flex-basis: 342px;
        max-width: unset;
    }

    .section-events .cards-container .card .figcaption-body {
        padding: 1% 5%;
    }

    .section-events .cards-container .card .figcaption-body h3 {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .members-container .row>.column figure {
        width: 142px;
    }

    .members-container .row>.column figure img {
        height: 80px;
        width: 80px;
    }

    .members-container figcaption h3 {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .members-container figcaption span {
        font-size: 0.75rem;
        font-weight: 600;
        line-height: 1.125rem;
    }

    .members-container div>.row:nth-child(1) {
        padding: 0;
    }

    .members-container .row {
        gap: 15px;
        justify-content: center !important;
    }

    .members-container .members-title h2 {
        font-size: 1rem;
        text-align: center;
    }

    .members-container .members-title .line {
        width: 40%;
        margin: 0 auto;
    }

    .members-container a {
        font-size: 1rem;
    }

    .div-gallery-container .div-images div:nth-child(n+1):not(:first-child) {
        display: none;
    }

    section.recognition {
        display: block !important;
    }

    #recognition .text-area .title {
        text-align: center;
        line-height: 2rem;
        margin-bottom: 14px;
    }

    #recognition .images-area {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #recognition .images-area img {
        height: unset;
        width: unset;
    }

    section.footer {
        display: block !important;
    }

    .active-hero-card {
        display: flex;
    }


    .section-events .carousel-dots-container {
        display: flex;
        position: unset;
    }

    .active-carousel {
        background-color: var(--accent-color);
    }

}

@media screen and (max-width: 410px) {
    #logo img {
        max-width: 250px;
        object-fit: cover;
    }
}


@media screen and (max-width: 410px) {
    .div-hero-content {
        top: 15%;
    }
}
