@import url('./branding.css?v=0.1');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition: all 0.35s ease;
    background-color: #fff;
    padding: 0 35px;
    height: 95px;
}
.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1.25rem;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    padding: 0;
}
.brand {
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -1px;
    color: #fff;
    text-transform: uppercase;
    width: 302px;
    height: 70px;
}
.menu {
    position: fixed;
    top: -200%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 4rem 0 3rem;
    transition: all 0.4s ease-in-out;
}
.menu.is-active {
    top: 92px;
    width: 100%;
    height: calc(100% - 92px);
    background-color: #fff;
}
.menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.25rem;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
.menu-inner .menu_item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    transition: all 0.3s ease;
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    transition: all 0.3s ease;
}
.menu-inner .menu_item:hover {
    background-color: #dbdbdb;
}
.menu_item:hover,
.menu_item:focus {
    color: var(--theme-color) !important;
}
.menu_item.active {
    background-color: #dbdbdb;
}
.menu-inner .menu_item:hover .dropdown-toggle::after {
    filter: invert(1);
}
.menu-inner .menu-item:last-child {
    background-color: var(--theme-color);
    padding: 0;
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    order: -1;
    z-index: 10;
    width: 1.6rem;
    height: 1.15rem;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
}
.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: #000;
    transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
    top: 0px;
}
.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}
.burger-line:nth-child(3) {
    top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}
.banner-column {
    position: relative;
    display: grid;
    align-items: center;
    row-gap: 3rem;
}
.header-theme-btn {
    color: #fff;
    font-size: 18px;
    line-height: 19px;
    display: inline-block;
    padding: 13px 20px;
    height: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: 600;
}
.header-theme-btn:hover {
    background-color: var(--theme-secondary);
    color: #000 !important;
}
.header-theme-btn img {
    height: 16px;
    transition: all 0.3s ease;
    margin-left: 3px;
}
.header-theme-btn:hover img {
    filter: invert(1);
}
.dropdown-menu {
    background: #fff;
    border: 0;
    border-radius: 20px;
    min-width: 278px;
    top: 97px !important;
    left: -81px !important;
    padding: 25px 20px;
    font-weight: 500;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.dropdown-toggle::after {
    border: 0;
    background-image: url(../img/dropdown.svg);
    width: 12px;
    height: 12px !important;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    top: 3px;
}
.dropdown-item:active {
    color: var(--theme-color);
}
.dropdown-menu a {
    color: var(--theme-color);
    font-size: 15px;
    padding: 10px 0px;
    white-space: break-spaces;
    padding-left: 15px !important;
    margin-bottom: 3px;
    border-radius: 8px;
}
.dropdown-menu a:hover {
    background-color: #f4f4f4;
}
.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}
section{
    overflow-x: hidden;
}
/* Banner */
.home-banner{
    background-color: var(--theme-color);
}
.home-banner .content_box_wrapper {
    position: relative;
    max-width: 717px;
    z-index: 111;
}
/* .home-banner .carousel-caption {
    padding: 75px 0 15px 0 !important;
} */
.home-banner .carousel-item::after{
    background-color: transparent;
}
.content_box_wrapper h1 {
    color: #fff;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    font-family: var(--theme-title-family);
    margin-bottom: 0px;
    position: relative;
    max-width: 594px;
}
.content_box_wrapper p {
    font-size: 22px;
    line-height: 34px;
    color: var(--theme-text-light);
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 620px;
}
.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 0;
}
.no-after.carousel-inner::after {
    display: none;
}
.carousel-control-next,
.carousel-control-prev {
    opacity: 1;
    border: 0;
    position: unset;
    width: unset;
}
.carousel_overlay-btn {
    position: absolute;
    right: 100px;
    z-index: 199;
    bottom: 0;
    display: flex;
    gap: 10px;
    bottom: 30px;
}
.carousel-control-prev-icon {
    background-image: url(../img/slider-low.svg);
}
.carousel-control-next-icon {
    background-image: url(../img/slider-high.svg);
}
/* .carousel-inner .carousel-item.half_overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background-color: var(--theme-color);
} */

.hero-banner-img {
    height: 300px;
    position: relative;
}
.hero-banner-img::after {
    position: absolute;
    width: 100%;
    top: 0;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.banner_content h1 {
    font-weight: 800;
    color: #000000;
    font-size: 55px;
    background-color: white;
    display: inline-block;
    padding: 10px;
    border-radius: 2px;
}
/* content */
.section-about .about-content {
    padding: 15px 70px 0 50px;
}
.section-about .about-content p {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
}
.flex {
    display: flex;
    justify-content: center;
}
.squar-img {
    width: 100%;
    height: 100%;
}
.h2 {
    color: #2b2b2b;
    font-size: 50px;
    line-height: 1.3;
    font-family: var(--theme-title-family);
    font-weight: 800;
    position: relative;
}
.h3 {
    color: #2b2b2b;
    font-size: 25px;
    line-height: 1.5;
    font-family: var(--theme-theme-family);
    font-weight: 500;
}
.after::after {
    content: '';
    position: absolute;
    width: 51px;
    height: 5px;
    background-color: var(--theme-color);
    top: -20px;
    left: 0;
}
.center.after::after {
    content: '';
    position: absolute;
    width: 51px;
    height: 5px;
    background-color: var(--theme-color);
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* section-tabs */
.section-tabs .content {
    padding: 25px 30px;
}
.section-tabs .content ul li {
    font-size: 18px;
    line-height: 32px;
    font-weight: 300;
    margin-bottom: 4px;
}
.location-bottom {
    background-color: #f4f4f4;
    padding: 30px;
}
/*  */
.info-card .theme_btn {
    width: 230px;
    padding: 0;
}
.info-card .card-left {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.section-top-hunger h5 {
    font-size: 18px;
    line-height: 22px;
    color: var(--theme-secondary);
    font-weight: 500;
}
.info-card_content {
    background-color: var(--theme-color);
    padding: 25px 40px;
}
.info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.info-card_content h2 {
    font-size: 34px;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
    font-family: var(--theme-theme-family);
    max-width: 400px;
}
.info-inner > div {
    text-align: end;
}
.info-card:hover {
    transition: all 250ms ease-out 0s;
}
.info-card .theme_btn.btn_secondary:hover {
    background-color: #fff;
    color: var(--theme-color);
}

/* section-sucess */
.sideby-card_img {
    width: 100%;
    height: 329px;
}
.sideby-card_content {
    background: #fff;
    padding: 25px;
    transition: all 250ms ease-out 0s;
}
.sideby-card_content .d-flex a {
    width: 50%;
}
.sideby-card_content h5 {
    font-size: 26px;
    line-height: 30px;
    color: var(--theme-color);
    font-weight: 600;
    min-height: 60px;
    margin-bottom: 15px;
}
.sideby-card_content p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0;
    min-height: 183px;
    color: var(--theme-color);
}
.btn-sm-white {
    background-color: #fff;
    color: var(--theme-color);
    border-radius: 30px;
    padding: 15px 20px;
    font-weight: 500;
}
.btn-sm-white:hover {
    background: #2b2b2b;
    color: #fff !important;
}
.theme_btn.bg-white {
    color: var(--theme-color);
}
.theme_btn.bg-white:hover {
    background-color: #2b2b2b !important;
    color: #fff;
}
.sideby-card:hover .sideby-card_content {
    background-color: var(--theme-color);
}
.sideby-card:hover .sideby-card_content h5,
.sideby-card:hover .sideby-card_content p {
    color: #fff;
}
.sideby-card:hover .sideby-card_content .theme_btn {
    background-color: var(--theme-secondary);
    color: #000;
}
.sideby-card:hover .read-more-btn {
    color: #fff;
}
/* theme-card */
.theme-card {
    position: relative;
}
.theme-card-img {
    width: 100%;
    height: 400px;
}
.theme-card_content {
    min-height: 152px;
    padding: 20px;
    background-color: var(--theme-color);
    transition: all 0.3s ease;
}
.theme-card:hover .theme-card_content {
    background-color: var(--theme-secondary);
}
.theme-card:hover .theme-card_content h6,
.theme-card:hover .theme-card_content p a {
    color: #2b2b2b;
}
.section-news .theme-card_content a {
    color: #fff;
}
.section-news .theme-card-img {
    position: relative;
}
.section-news .theme-card .thumbnail{
    transition: all .3s ease;
}
.section-news .theme-card:hover .thumbnail{
    transform: scale(1.2);
}
.section-news .theme-card-img .company-logo {
    position: absolute;
    left: 0;
    width: 200px;
    height: 80px;
    z-index: 2;
}
.section-news .theme-card-img .company-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.section-gallery .theme-card_content {
    min-height: 105px;
}
.theme-card_content h6 {
    font-size: 18px;
    line-height: 22px;
    font-family: var(--theme-theme-family);
    color: #fff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.theme-card_content p a {
    font-size: 22px;
    line-height: 27px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-donate h6 {
    font-size: 25px;
    line-height: 35px;
    color: #fff;
}
.section-donate p {
    font-size: 16px;
    line-height: 26px;
    color: var(--theme-color);
}
.price {
    display: flex;
    align-items: center;
    gap: 10px;
}
.price h2 {
    background-color: #f0ede1;
    color: #343434;
    display: inline-block;
    line-height: 54px;
    font-size: 45px;
    border-radius: 14px;
    font-weight: 600;
    padding: 10px 15px;
    font-family: var(--theme-theme-family);
}
.price input {
    background-color: #f0ede1;
    color: #343434;
    display: inline-block;
    line-height: 54px;
    font-size: 45px;
    border-radius: 14px;
    font-weight: 600;
    padding: 10px 5px;
    font-family: var(--theme-theme-family);
    width: 90px;
    text-align: center;
    height: 70px;
}
.price p {
    font-size: 18px;
    font-weight: 600;
    color: #f0ede1;
    margin-bottom: 0;
}
.donate-btns {
    max-width: 452px;
}
.video-shaped-iframe {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* TESTIMONAIL */
.testimmonails-item {
    color: #fff;
    padding: 30px;
}
.testimmonails-item_message {
    position: relative;
    padding-top: 70px;
}
.testimmonails-item_message::after {
    content: '';
    position: absolute;
    background-image: url(../img/quote.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 31px;
    height: 25px;
    left: 0;
    top: 15px;
    z-index: 58;
}
.testimmonails-slider {
    padding: 20px;
}
.true_review-review-item-card {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 14px 13px 19px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}
.true_review-review-item-card-img {
    width: 55px;
    height: 55px;
}
.true_review-review-item-card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.true_review-review-item-content {
    width: 100%;
}
.true_review-review-item-content-date {
    margin-left: auto;
    display: none;
}
.true_review-review-item-name {
    color: var(--gray-1, #333);
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.true_review-review-date {
    color: var(--gray-3, #828282);
    text-align: right;
    font-size: 12px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
}
.true_review-review-item-review p {
    color: var(--333333, #1d1639);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
    min-height: 105px;
}
.true_review-review-item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.true_review-stars-img {
    height: 17px;
    object-fit: cover;
    width: 105px !important;
}
.true_review-review-item-review {
    margin-top: 14px;
}

/* PARTNER */
.partner-img {
    height: 120px;
    padding: 0 20px;
}
.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.partner-slider img {
    height: 110px;
    object-fit: contain;
}

.contact-tabs .nav-item {
    width: 100%;
}
.contact-tabs.nav-pills .nav-link {
    padding: 0;
    height: 100%;
}
.section-location .partner-card i {
}
.section-location .nav-link.active .partner-card i,
.section-location .nav-link.active .partner-card h3 {
    color: #fff;
}
.section-location .nav-link:hover .partner-card i,
.section-location .nav-link:hover .partner-card h3 {
    color: #fff;
}
.section-location .nav-link:hover {
    background-color: var(--theme-color);
}

/* FOOTER */
.footer {
    background-color: #2b557f;
}
.footer .container,
.copyright_sec .container {
    max-width: 1435px;
}
.footer-bottom-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.footer-bottom-link a {
    font-size: 15px;
    font-weight: 400;
}
.footer li {
    list-style: none;
}
.footer a {
    text-align: left;
    font-size: 16px;
    letter-spacing: 0px;
    color: #fff;
    font-family: var(--theme-theme-family);
}
.footer a:hover {
    color: var(--theme-secondary);
}
.footer_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}
.footer-wrap2 {
    display: flex;
    justify-content: end;
    gap: 15px;
    padding: 0px 0 40px 0;
    flex-wrap: wrap;
}
.partner_wrap {
    display: flex;
    gap: 25px;
}
.footer_col {
    padding-top: 70px;
    padding-bottom: 70px;
}
.footer_col {
    width: 21%;
    flex-grow: 1;
}
.footer-logo {
    padding-bottom: 20px;
}
.useful_inner {
    display: flex;
}
.useful_inner p {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.useful_inner h4,
.contact_inner h4 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 33px;
    color: var(--theme-secondary);
}
.contact_inner p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    font-family: var(--theme-theme-family);
    font-size: 16px;
}
.contact_inner p img {
    width: 17px;
    margin-top: 3px;
}
.useful_link-inner {
    display: flex;
    flex-direction: column;
}
.useful_points {
    display: flex;
    gap: 25px;
}
.useful_link_bottom {
    margin-top: 25px;
}
.useful_link_bottom h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}
.socail_link {
    display: flex;
    gap: 10px;
}
#shadow-host-companion {
    display: none;
}
.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: left !important;
}
.owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
    margin: 5px 2px !important;
    background: #e0c900 !important;
}
.owl-dots .owl-dot.active span {
    background-color: #dbdbdb !important;
}
.owl-nav.disabled + .owl-dots {
    padding-left: 30px;
}
.copyright_sec p {
    color: #2b2b2b;
    font-size: 14px;
    line-height: 30px;
}
.row.heading h2 {
    color: #fff;
    font-size: 52.52px;
    line-height: 95px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 0px;
    padding-bottom: 20px;
    text-transform: uppercase;
}
.heading.heading-icon {
    display: block;
}
.practice-area .inner {
    border: 1px solid #999999;
    text-align: center;
    margin-bottom: 28px;
    padding: 40px 25px;
}
.practice-area .inner h3 {
    color: #3c3c3c;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 10px 0;
}
.practice-area .inner p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}
.practice-area .inner img {
    display: inline-block;
}
.our-webcoderskull .cnt-block {
    float: left;
    width: 100%;
    background: #f4f4f4;
    padding: 30px 20px;
    text-align: center;
    margin: 0 0 28px;
}
.our-webcoderskull .cnt-block figure {
    width: 148px;
    height: 148px;
    border-radius: 100%;
    display: inline-block;
    margin-bottom: 15px;
}
.our-webcoderskull .cnt-block img {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background-color: var(--theme-color);
}
.our-webcoderskull .cnt-block h3 {
    color: #2a2a2a;
    font-size: 20px;
    font-weight: 500;
    padding: 6px 0;
    text-transform: uppercase;
}
.our-webcoderskull .cnt-block h3 a {
    text-decoration: none;
    color: #2a2a2a;
}
.our-webcoderskull .cnt-block h3 a:hover {
    color: #337ab7;
}
.our-webcoderskull .cnt-block p {
    color: #2a2a2a;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
}
.our-webcoderskull .cnt-block .follow-us {
    margin: 20px 0 0;
    padding-left: 0;
}
.our-webcoderskull .cnt-block .follow-us li {
    display: inline-block;
    width: auto;
    margin: 0 5px;
}
.our-webcoderskull .cnt-block .follow-us li .fa {
    font-size: 24px;
    color: var(--theme-color);
}
.our-webcoderskull .cnt-block .follow-us li .fa:hover {
    color: #025a8e;
}
.partner-card {
    padding: 30px;
    height: 300px;
    border: 1px solid #dcc2c2b5;
}
.partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.text-theme {
    color: var(--theme-color);
}
.form-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    padding-left: 10px;
}
.form-control,
.form-select {
    background: #f9f7f6;
    border: 0;
    height: 60px;
    border-radius: 15px;
    padding-left: 30px;
}

.form-select {
    padding-left: 30px;
}
.form-control:focus,
.form-select:focus {
    background-color: #f4f4f4;
    outline: 1px solid var(--theme-color) !important;
    box-shadow: none;
}
textarea.form-control {
    padding-top: 20px;
}
.section-gallery .theme-card .theme-card_title {
    font-size: 20px;
    font-weight: 500;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    color: #fff;
}
.section-gallery .theme-card .theme-card-img {
    height: 317px;
}

.section-contact .container .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-contact .container .content .left-side {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
}
.section-contact .content .left-side::before {
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
}
.section-contact .content .left-side .details {
    margin: 14px;
    text-align: center;
}
.section-contact .content .left-side .details i {
    font-size: 30px;
    color: var(--theme-color);
    margin-bottom: 10px;
}
.section-contact .content .left-side .details .topic {
    font-size: 18px;
    font-weight: 500;
}
.section-contact .content .left-side .details .text-one,
.section-contact .content .left-side .details .text-two {
    font-size: 15px;
    color: #2b2b2b;
}
.details a {
    color: #2b2b2b;
}
.section-contact .content .right-side {
    width: 75%;
    margin-left: 75px;
}
.section-contact .content .right-side .topic-text {
    font-size: 23px;
    font-weight: 600;
    color: var(--theme-color);
}
.right-side .input-box {
    height: 50px;
    width: 100%;
    margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #f0f1f8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
}
.right-side .message-box {
    min-height: 110px;
}
.right-side .input-box textarea {
    padding-top: 6px;
}
.right-side .button {
    display: inline-block;
    margin-top: 12px;
}
.right-side .button input[type='button'] {
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: var(--theme-color);
    cursor: pointer;
    transition: all 0.3s ease;
}
.button input[type='button']:hover {
    background: #ffd140;
}

.section-location .partner-card {
    text-align: center;
    border-color: var(--theme-color);
    border: 0;
    height: auto;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.section-location .partner-card i {
    font-size: 35px;
    color: var(--theme-color);
}
.section-location .partner-card h3 {
    font-size: 18px;
    color: var(--theme-color);
    font-weight: 500;
    text-align: start;
    line-height: 1.3;
    font-family: var(--theme-theme-family);
}

/* vacancies_card_sec */
.vacancies_card_sec .vacancies-btn {
    width: 100%;
    background-color: #000;
    color: #fff;
    height: 45px;
    text-align: left;
    display: flex;
    gap: 4px;
    font-size: 16px;
    align-items: center;
    border-radius: 0;
    justify-content: space-between;
    font-weight: 300;
}
.vacancies_card_sec .card-body {
    border-radius: 0;
    border: 1px solid #000;
}
.vacancies_card_sec .btn:active {
    background-color: #000;
    color: #fff;
}
.vacancies_card_sec .multi-collapse {
    position: absolute;
    width: 100%;
    z-index: 1;
}
.vacancies_card_sec .form-control {
    height: 45px;
    border-radius: 0;
    border: 1px solid var(--theme-color);
}
.checkbox-wrapper-18 .round {
    position: relative;
    display: flex;
    gap: 7px;
    align-items: center;
    font-size: 13px;
}
.checkbox-wrapper-18 .round label {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 0%;
    cursor: pointer;
    height: 20px;
    width: 20px;
    display: block;
}
.checkbox-wrapper-18 .round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: '';
    height: 6px;
    left: 4px;
    opacity: 0;
    position: absolute;
    top: 5px;
    transform: rotate(-45deg);
    width: 12px;
}
.checkbox-wrapper-18 .round input[type='checkbox'] {
    visibility: hidden;
    display: none;
    opacity: 0;
}
.checkbox-wrapper-18 .round input[type='checkbox']:checked + label {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.checkbox-wrapper-18 .round input[type='checkbox']:checked + label:after {
    opacity: 1;
}
.vacancies_card_sec {
    background: #ebecec;
}
.vacancies_card_sec ul {
    list-style: none;
    padding: 0;
}
.vacancies_card {
    position: relative;
    min-height: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.vacancies_card h2 {
    font-size: 26px;
    color: #000;
    font-weight: 500;
    overflow: hidden;
    min-height: 50px;
    display: flex;
    margin-bottom: 10px;
    align-content: center;
    flex-wrap: wrap;
    min-height: 65px;
}
.vacancies_card .job_details_listing {
    display: flex;
    flex-wrap: wrap;
    border-top: solid 1px #f2f2f2;
    padding-top: 15px;
    min-height: 476px;
    list-style: none;
}
.job_details_listing li {
    width: 100%;
    margin-bottom: 20px;
}
.job_details_listing li .job_detail_title {
    font-size: 16px;
}
.job_details_listing li .job_detail_desc {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: capitalize;
}
.job_action_list {
    width: 100%;
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}
.job_action_list li {
    width: 50%;
}
.job_action_list .theme_btn {
    width: 100%;
    font-size: 14px;
    text-transform: none;
    border-radius: 5px;
}
.job_application_form,
.job_description {
    padding: 20px;
    background: #fff;
}
.job_application_form label {
    font-size: 17px;
    padding-bottom: 5px;
}

.drop-container {
    border: 2px dashed #ccc;
    border-radius: 5px;
    text-align: center;
    padding: 20px;
    margin: 20px;
}
.drop-message {
    font-size: 16px;
    color: #777;
}
.drop-message p {
    margin: 0;
}
#file-input {
    display: none;
}
.file_uploader label {
    display: inline-block;
    background-color: var(--theme-color);
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
}

.file-list ul {
    list-style: none;
    padding: 0;
}
.file-list li {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delete-file {
    color: red;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
}
.main_filter_area .bg-theme:hover {
    background-color: #000;
}

.job_description h3 {
    font-size: 22px;
    font-weight: 500;
}
.job_description p,
.job_description li {
    font-size: 17px;
}
.job_description ul {
    list-style: circle;
    padding-left: 18px;
}

.filters_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background: #ebecec;
    padding-top: 10px;
    gap: 13px;
}
.sss_filter_item,
.search_box {
    width: calc(20% - 13px);
    position: relative;
}
.search_box input {
    padding-left: 10px;
}
.policy-section .h2 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 600;
}
.policy-section .theme_btn {
    height: 120px;
    font-weight: 700;
    width: 100%;
    border: none;
    font-size: 24px;
}
.policy-section .theme_btn:hover {
    background-color: #fff !important;
    color: var(--theme-color) !important;
}

.team_card img {
    width: 100%;
    border-top: 5px solid #e71919;
}
.team_content {
    position: relative;
    min-height: 180px;
    background-color: #f4f4f4;
    padding: 20px 24px;
}
.team_content h4 {
    color: #3b3b3b;
    font-size: 21px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    min-height: 63px;
}
.team_card-bottom-content {
    display: flex;
    align-items: end;
}
.team_content h5 {
    max-width: 100%;
    color: #e71919;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    width: calc(100% - 25px);
}
.team_card a {
    text-decoration: none;
}
.linkedin_icon {
    font-size: 30px;
    color: #0077b5;
}
.badge_bg {
    padding: 15px;
    background-color: #ffd600;
    z-index: 100;
    display: inline-block;
    margin: 0;
}
.article-card {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all .3s ease;
}

.article-card:hover img {
    transform: scale(1.2);
}

.article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.article-card .content {
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    padding: 30px 20px 20px 20px;
    height: auto;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    z-index: 3;
}

.article-card .date,
.article-card .title {
    margin: 0;
}

.article-card .date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

.article-card .title {
    font-size: 15px;
    color: #fff;
    background: #ff863d;
    border-radius: 17px 17px 17px 0px;
    padding: 8px 16px;
    line-height: 1.3;
    font-weight: 600;
    width: fit-content;
    max-width: 314px;
}
.section-awards{
    background: #eac6c6;
}
.award-card{
    display: block;
}
.main-thumb img{
    object-position: 80%;
}
.article-card.sss .title{
    background-color: #bf0600;
}
.article-card.feedo-needo .title{
    background-color: #2B557F;
}
.fn-color{
    color: #2B557F;
}
@media only screen and (max-width:992px){
    .award-card .article-card{
        height: 100% !important;
    }
}
@media only screen and (max-width:575px){
    .article-card .content {
        padding: 0px 8px 8px 8px;
    }
    .article-card .title {
        font-size: 13px;
    }
}
.theme_card-award{
    position: relative;
    display: block;
}
.theme_card-award .theme_card-award-img{
    height: 450px;
    border-radius: 20px 20px 0 0;
    width: 100%;
    overflow: hidden;
}
.theme_card-award .theme_card-award-img img{
    object-fit: cover;
    transition: all .3s ease;
    height: 100%;
}
.theme_card-award-content{
    position: absolute;
    z-index: 2;
    bottom: -38px;
    height: max-content;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 23px 35px;
    border-radius: 20px 20px 0px 0px;
    border-bottom: 10px solid #fff;
}
.theme_card-award-content .title{
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    text-align: center;
}
.theme_card-award.sss .theme_card-award-content{
    background: #bf0600;
}
.theme_card-award.feedo-needo .theme_card-award-content{
    background: #2b557f;
    border-color: #FFD600;
}
.theme_card-award:hover .theme_card-award-img img{
    transform: scale(1.2);
    filter: contrast(0.6);
}
@media only screen and (max-width:1200px){
    .theme_card-award-content .title {
        font-size: 27px;
        font-weight: 600;
    }
}
@media only screen and (max-width: 767px){
    .theme_card-award-content {
        position: unset;
        transform: translate(0);
        width: 100%;
        padding-left:10px;
        padding-right: 10px;
        border-radius: 0;
    }
    .theme_card-award-content .title {
        font-size: 22px;
    }
    .theme_card-award .theme_card-award-img{
        height: auto;
    }
}
.location-img-wrap {
    position: relative;
    width: 100%;
    height: 530px;
    cursor: pointer;
    overflow: hidden;
}
.location-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.location-img-overlay {
    background: rgb(0, 0, 0);
    padding: 30px 90px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location-img-overlay h3 {
    font-size: 66px;
    color: #fff;
    line-height: 50px;
    position: relative;
    font-weight: 700;
}
.location-img-overlay p {
    padding-top: 50px;
    color: #ffffff;
    font-size: 20px;
    line-height: 33px;
}
.get-location {
    border: 2px solid #fff;
    border-radius: 30px;
    display: block;
    font-size: 16px;
    color: #fff;
    width: fit-content;
    padding: 0 15px;
    height: 40px;
    display: flex;
    align-items: center;
    margin-top: 25px;
    font-weight: 500;
}
.get-location:hover{
    color: #2B557F !important;
    background-color: #fff;
}
.bg_feedo {
    background-color:  #2B557F !important;
}
.location-img-overlay.bg_feedo h3 {
    line-height: 62px;
}
@media only screen and (max-width:768px){
    .location-img-overlay{
        padding: 40px 40px 20px 40px;
    }
    .location-img-overlay h3 {
        font-size: 40px;
    }
    .location-img-overlay.bg_feedo h3 {
        line-height: 39px;
    }
}
.visit-section{
    position: relative;
}
.visit-container {
    background: var(--theme-color);
    overflow: hidden;
    position: relative;
}
.visit-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f7d000, #ffd700);
}
.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px;
    align-items: center;
    min-height: 673px;
}
.content-left {
    color: white;
}
.visit-container .badge {
    display: inline-block;
    background: #f7d000;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.visit-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}
.visit-title span{
    color: #333;
    padding: 3px 11px;
}
.visit-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}
.highlight {
    color: #f7d000;
    font-weight: 600;
}
.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: #000;
    aspect-ratio: 9/16;
    max-width: 400px;
    margin: 0 auto;
}
.video-container.xl{
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 100%;
}
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.decorative-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgb(247 208 0 / 75%);
    top: -213px;
    right: -220px;
    z-index: 0;
}
.decorative-circle-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgb(247 208 0 / 75%);
    bottom: -138px;
    left: -138px;
    z-index: 0;
}
.content-left, .video-container {
    position: relative;
    z-index: 1;
}
@media (max-width: 968px) {
    .visit-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    .visit-title {
        font-size: 28px;
    }
    .video-container {
        max-width: 100%;
    }
}
@media (max-width: 640px) {
    .visit-section {
        padding: 20px 15px;
    }
    .visit-section .container{
        padding: 0;
    }
    .visit-content {
        padding: 30px 20px;
    }
    .visit-title {
        font-size: 24px;
    }
    .visit-description {
        font-size: 15px;
    }
    .visit-container .badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    .visit-content{
        min-height: unset;
    }
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item {
    flex: 1;
}
.stat-icon {
    font-size: 28px;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video__slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.video__slider .owl-nav button {
    background: none !important;
    pointer-events: auto;
}

.video__slider .owl-nav img {
    width: 32px;
    height: 31px !important;
    background: #ffd600;
    padding: 0 3px;
    border-radius: 50%;
}

.video__slider .owl-prev {
    margin-left: -60px;
}

.video__slider .owl-next {
    margin-right: -60px;
}
.video__slider .owl-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.video__slider .owl-dots .owl-dot.active span, 
.video__slider .owl-dots .owl-dot:hover span{
    background-color: var(--theme-color) !important;
}

.weather-modal {
    border-radius: 16px;
    overflow: hidden;
    background: var(--theme-color);
    color: #fff;
}
.weather-modal .modal-title {
    font-weight: 600;
    font-size: 18px;
}
.weather-modal .modal-body {
    padding: 40px 30px;
}
.weather-modal .btn-close{
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 15px;
    opacity: 1;
    z-index: 1;
    background-color: #fff;
    background-size: 13px;
}
}
.weather-modal .btn-close i{
    color: #fff;
}
.weather-modal .alert-icon {
    width: 70px;
    height: 70px;
    background: yellowgreen;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto;
}
.weather-modal .alert-icon svg{
    color: #000;
    width: 33px;
}
.weather-modal p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}