:root {
    --color-primary: #2E3090;
    --color-secondary: #F15C26;
    --color-white: #fff;
    --color-black: #000;
}

@font-face {
    font-family: 'Loos';
    src: url('../fonts/fonnts.com-Loos_Wide_Bold.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Loos';
    src: url('../fonts/fonnts.com-Loos_Normal_Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Lucida Unicode Calligraphy';
    src: url('../fonts/LucidaUnicodeCalligraphy.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Lucida Unicode Calligraphy';
    src: url('../fonts/LucidaUnicodeCalligraphyBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    position: relative;
    font-size: 16px;
    color: #424243;
    background-color: var(--color-white);
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

h1,
h2,
h3,
h4,
h5 {
      font-family: "Roboto", sans-serif;
}

p {
    font-size: 16px;
      font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
    color: var(--color-black);
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

.container, 
.container-fluid, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl, 
.container-xxl {
	--bs-gutter-x: 2.2rem;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-80 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-50 {
    padding-top: 50px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
}

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

.section-title {
    margin-bottom: 30px;
}

.section-title .main-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--color-black);
}

.section-title .main-title.text-md {
	font-size: 38px;
}

.section-sub-title {
    margin-bottom: 20px;
}

.section-sub-title span {
    font-size: 24px;
    color: #2E3090;
    font-weight: 600;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .section-title .main-title {
        font-size: 32px;
        font-weight: 700;
    }
}

.primary-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 15px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    z-index: 1;
    transition: all 0.5s ease 0s;
    overflow: hidden;
}

.primary-btn i {
    transform: rotate(-45deg);
}

.primary-btn::before {
    content: '';
    position: absolute;
    background-color: var(--color-secondary);
    width: 0%;
    height: 100%;
    right: 0;
    left: auto;
    top: 0;
    -webkit-transition: .4s all ease-in-out;
    -o-transition: .4s all ease-in-out;
    transition: .4s all ease-in-out;
    z-index: -1;
}

.primary-btn:hover::before {
    right: auto;
    left: 0;
    width: 100%;
    background-color: var(--color-secondary);
}

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

.btn-secondary {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    z-index: 1;
    transition: all 0.5s ease 0s;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    background-color: var(--color-secondary);
    width: 0%;
    height: 100%;
    right: 0;
    left: auto;
    top: 0;
    -webkit-transition: .4s all ease-in-out;
    -o-transition: .4s all ease-in-out;
    transition: .4s all ease-in-out;
    z-index: -1;
}

.btn-secondary:hover::before {
    right: auto;
    left: 0;
    width: 100%;
    background-color: var(--color-secondary);
}

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

.aside-sidebar {
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    padding: 40px 30px;
    width: 20%;
    height: 100vh;
    overflow-x: hidden;
    z-index: 9999;
    background: #050C26;
    transition: transform 0.5s ease-in-out;
    scrollbar-width: none;
    text-align: center;
}

.main {
    width: 80%;
    float: right;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

/* -----------------------------
           Header menu
------------------------------ */

.toggle-btn {
    position: fixed;
    left: 15px;
    top: 15px;
    width: 48px;
    height: 48px;
    line-height: 45px;
    border: none;
    color: var(--color-white);
    background: var(--color-secondary);
    font-size: 22px;
    border-radius: 2px;
    opacity: 1;
    visibility: hidden;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

.aside-sidebar .vertical-nav .navbar-brand img {
    margin-bottom: 20px;
}
.aside-sidebar .vertical-nav .menu-scroll .nav .nav-item {
    position: relative;
    display: inline-block;
    color: var(--color-white);
    border: 1px solid #3f42c3;
    margin-bottom: 6px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.aside-sidebar .vertical-nav .menu-scroll .nav .nav-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #3f42c3;
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
    z-index: -1;
}
.aside-sidebar .vertical-nav .menu-scroll .nav .nav-item.active::before,
.aside-sidebar .vertical-nav .menu-scroll .nav .nav-item:hover::before {
    transform: scale(1);
}
.aside-sidebar .vertical-nav .menu-scroll .nav .nav-item.active,
.aside-sidebar .vertical-nav .menu-scroll .nav .nav-item:hover {
    background-color: #3f42c3;
}
.aside-sidebar .vertical-nav .menu-scroll .nav .nav-item .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
	text-transform: capitalize;
}

.aside-sidebar .vertical-nav .menu-scroll .nav .nav-item.active .nav-link,
.aside-sidebar .vertical-nav .menu-scroll .nav .nav-item:hover .nav-link {
    color: #ffc7b3;
}

.aside-sidebar .vertical-nav .menu-scroll .contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.aside-sidebar .vertical-nav .menu-scroll .contact-info .contact-box span {
    color: var(--color-white);
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.15);
    line-height: 42px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.aside-sidebar .vertical-nav .menu-scroll .contact-info .contact-box a {
    color: var(--color-white);
    font-size: 14px;
}

.aside-sidebar .vertical-nav .menu-scroll .contact-info .contact-box:hover a {
    color: var(--color-secondary);
}

.aside-sidebar .vertical-nav .menu-scroll .social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    transition: 0.3s ease-in-out;
}

.aside-sidebar .vertical-nav .menu-scroll .social-media a:hover {
    color: var(--color-white);
    background-color: var(--color-secondary);
    border: 1px solid var(--color-white);
}

.aside-sidebar .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    display: none;
}

.aside-sidebar.show .close-btn {
    display: block;
}

@media (max-width: 768px) {

    .toggle-btn {
        visibility: visible;
    }

    .aside-sidebar {
        width: 280px;
        padding: 40px 15px;
        -moz-transform: translateX(-280px);
        -webkit-transform: translateX(-280px);
        -ms-transform: translateX(-280px);
        -o-transform: translateX(-280px);
        transform: translateX(-280px);
    }

    .aside-sidebar.show {
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    .aside-sidebar .vertical-nav .menu-scroll .contact-info {
        padding: 20px 10px;
    }

    .main {
        width: 100%;
    }
}


/* ------------------------
   Banner Section 
------------------------- */

.banner-section .banner-carousel .banner-item {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    height: 100vh;
    z-index: 1;
}

.banner-section .banner-carousel .banner-item:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    opacity: 0.5;
    z-index: -1;
}

.banner-section .banner-carousel .banner-item .banner-content {
    padding: 40px 40px;
}

.banner-section .banner-carousel .banner-item .banner-content h6 {
    position: relative;
    color: var(--color-secondary);
    font-size: 22px;
    font-weight: 600;
    padding-left: 45px;
    margin-bottom: 20px;
}

.banner-section .banner-carousel .banner-item .banner-content h6:before {
    position: absolute;
    content: "";
    width: 35px;
    height: 6px;
    background-color: var(--color-secondary);
    left: 0;
    top: 8px;
    border-radius: 5px;
}

.banner-section .banner-carousel .banner-item .banner-content h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-section .banner-carousel .banner-item .banner-content p {
    color: var(--color-white);
    font-size: 16px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .main-section {
        width: 100%;
    }

    .banner-section .banner-carousel .banner-item .banner-content {
        padding: 40px 20px;
        text-align: center;
    }
}
/* ------------------------
   Marquee Section 
------------------------- */
.marquee-section {
    position: relative;
    padding: 15px 20px;
    background-color: var(--color-secondary);
}

.marquee-section .marquee {
    overflow: hidden;
    color: var(--color-white);
    position: relative;
    font-size: 16px;
    line-height: 1.5em;
}

.marquee-section .marquee ul {
    visibility: hidden;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    white-space: nowrap;
    display: inline;

}

.marquee-section .marquee li {
    padding-left: 1em;
    text-indent: -1em;
    display: inline;
}

.marquee-section .marquee li i {
    font-size: 12px;
    margin-right: 3px;
}

.marquee-section .marquee li:before {
    content: "";
    padding-right: 5px;
    display: inline-block;
    width: 15px;
}
/* ------------------------
   About Section 
------------------------- */
.about-section {
    position: relative;
}

.about-section .what-we-do {
    margin-top: 20px;
}

.about-section .what-we-do .what-we-do-wrapper {
    position: relative;
    padding: 30px 40px;
    color: var(--color-white);
    display: inline-block;
    height: 100%;
    z-index: 1;
}

.about-section .what-we-do .what-we-do-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s ease-in-out;
    opacity: 1;
}

.about-section .what-we-do [class*="col-"]:nth-child(odd) .what-we-do-wrapper::before {
    background-color: var(--color-secondary);
}

.about-section .what-we-do [class*="col-"]:nth-child(even) .what-we-do-wrapper::before {
    background-color: var(--color-primary);
}

.about-section .what-we-do [class*="col-"] .what-we-do-wrapper:hover::before {
    opacity: 0.85;
}

.about-section .what-we-do .what-we-do-wrapper h4 {
    font-family: 'Lucida Unicode Calligraphy', serif;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-section .what-we-do .what-we-do-wrapper p {
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .about-section .about-description p {
        text-align: justify;
    }
}

/* ------------------------
   Impact Section 
------------------------- */

.process-section {
    position: relative;
    background-color: #F8F8F8;
}

.process-section .impact-wrapper {
    position: relative;
    background-color: var(--color-white);
    padding: 30px 20px 20px;
    height: 100%;
    box-shadow: 30px -30px 70px 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.process-section .impact-wrapper .impact-content {
    display: flex;
}

.process-section .impact-wrapper .impact-content .icon {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: var(--color-white);
    border-right: 10px solid #F8F8F8;
    border-bottom: 10px solid #F8F8F8;
    top: -60px;
    left: -22px;
    flex-shrink: 0;
    text-align: center;
    z-index: 1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.process-section .impact-wrapper .impact-content .icon img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.process-section .impact-wrapper:hover .impact-content .icon {
    background-color: var(--color-secondary);
}

.process-section .impact-wrapper:hover .impact-content .icon img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.process-section .impact-wrapper .impact-content h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 0;
}

.process-section .impact-wrapper p {
	text-align: justify;
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .process-section .impact-wrapper {
        height: inherit;
        margin-bottom: 30px;
    }
}

/* ------------------------
  Join Us Section 
------------------------- */

.join-us-section {
    position: relative;
    background-color: #EBEBEB;
}

@media (max-width: 768px) {

    .join-us-section .join-us-description p {
        text-align: justify;
    }
}

/* ------------------------
   Contact Us Section
------------------------- */

.footer-section {
    position: relative;
}

.footer-section .footer-widget .footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section .footer-widget .footer-links ul li {
    margin-bottom: 5px;
}

.footer-section .footer-widget .footer-links ul li i {
    margin-right: 10px;
    font-size: 8px;
}

.footer-section .footer-widget .footer-links ul li a {
    font-size: 14px;
    font-weight: 500;
}

.footer-section .footer-widget .footer-links ul li a:hover {
    color: var(--color-secondary);
}

.footer-section .footer-widget .second-links {
    margin-top: 38px;
}

.footer-section .footer-widget .second-links ul li {
    margin-bottom: 5px;
}

.footer-section .footer-widget .second-links ul li i {
    margin-right: 10px;
    font-size: 8px;
}

.footer-section .footer-widget .second-links ul li a {
    font-size: 14px;
    font-weight: 500;
}

.footer-section .footer-widget .second-links ul li a:hover {
    color: var(--color-secondary);
}

.footer-section .footer-widget .contact-detail .contact-list {
    display: flex;
    margin-top: 10px;
    align-items: center;
}

.footer-section .footer-widget .contact-detail .contact-list .icon {
    margin-right: 15px;
    flex-shrink: 0;
}

.footer-section .footer-widget .contact-detail .contact-list .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--color-primary);
    text-align: center;
    color: var(--color-white);
    border-radius: 50%;
    font-size: 15px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.footer-section .footer-widget .contact-detail .contact-list:hover .icon,
.footer-section .footer-widget .contact-detail .contact-list:focus .icon {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.footer-section .footer-widget .contact-detail .contact-list p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}

.footer-section .footer-widget .contact-detail .contact-list:hover a,
.footer-section .footer-widget .contact-detail .contact-list:focus a {
    color: var(--color-secondary);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (max-width: 768px) {
    .footer-section .footer-widget .second-links {
        margin-top: 0;
    }
}

/* ------------------------
  Copyright Section
------------------------- */

.copyright-section {
    position: relative;
    background-color: #F8F8F8;
    padding: 20px 30px;
}

.copyright-section .copyright-content p {
    margin-bottom: 0;
}

.copyright-section .copyright-content p a {
    color: #A50C33;
}

@media (max-width: 768px) {

    .copyright-section {
        text-align: center;
    }
}

/* ------------------------
  Breadcrumbs Section
------------------------- */

.breadcrumbs-section .breadcrumbs {
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.breadcrumbs-section .breadcrumbs:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.83);
    opacity: 0.7;
    z-index: -1;
}

.breadcrumbs-section .breadcrumbs .breadcrumb-content .breadcrumb-title {
    font-size: 42px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: capitalize;
    text-align: center;
}

/* ------------------------
  Who Can Apply Section
------------------------- */

.who-can-apply-section {
    position: relative;
}

.who-can-apply-section .profile-content {
    padding: 20px 20px;
}

.who-can-apply-section .profile-content .image-box {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 8px solid #e5e5e5;
    overflow: hidden;
}

.who-can-apply-section .profile-content .image-box img {
    display: block;
    border-radius: 50%;
    transition: transform 0.5s ease-in-out;
}

.who-can-apply-section .profile-content .image-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);

}

.who-can-apply-section .profile-content .content-box h4 {
    font-weight: 600;
    font-size: 16px;
}

.who-can-apply-section .profile-content:hover .content-box h4 {
    color: var(--color-primary);
}

/* ------------------------
  Award Section -- One
------------------------- */

.award-section-1 {
    position: relative;
}

.award-section-1 .award-name-list {
    padding: 40px 0;
}

.award-section-1 .award-name-list span {
    display: inline-block;
    color: var(--color-primary);
    padding: 10px 20px;
    border: 2px dashed var(--color-primary);
    border-radius: 10px;
    margin-right: 15px;
    margin-bottom: 20px;
    background-color: rgb(46 48 144 / 10%);
    position: relative;
    font-weight: 500;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.award-section-1 .award-name-list span:hover {
    color: var(--color-white);
}

.award-section-1 .award-name-list span::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    transform: scale(0);
    border-radius: 8px;
    z-index: -1;
    transition: transform 0.5s ease-in-out;
}

.award-section-1 .award-name-list span:hover::before {
    transform: scale(1);
}

/* ------------------------
  Award Section -- Two
------------------------- */

.award-section-2 {
    position: relative;
    background-color: rgb(238 124 82 / 70%);
}

.award-section-2 .award-name-list span {
    display: inline-block;
    color: var(--color-white);
    padding: 10px 20px;
    border: 2px solid #F15C26;
    border-radius: 10px;
    margin-right: 15px;
    margin-bottom: 20px;
    background-color: #F15C26;
    position: relative;
    font-weight: 500;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.award-section-2 .award-name-list span::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #ee7c52b6;
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
    z-index: -1;
    border-radius: 8px;
}

.award-section-2 .award-name-list span:hover::before {
    transform: scale(1);
}

.award-section-2 .award-name-list span:hover {
    background-color: #ee7c52b6;
}

/* ------------------------
  Award Section -- Three
------------------------- */

.award-section-3 {
    position: relative;
}

.award-section-3 .content-box .image-box {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.award-section-3 .content-box .image-box img {
    display: block;
    width: 100%;
    height: auto;
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}

.award-section-3 .content-box .image-box:hover img {
    transform: scale(1.1);
}

.award-section-3 .details h5 {
    color: var(--color-black);
    font-weight: 600;
    margin-bottom: 15px;
}

.award-section-3 .details .list ul li {
    position: relative;
    font-size: 14px;
    padding-left: 22px;
    margin-bottom: 5px;
}

.award-section-3 .details .list ul li::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    color: #F15C26;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
}

/* ------------------------
  Award Section -- Two
------------------------- */

.process-section {
    position: relative;
    background-color: var(--color-white);
}

.process-section .step-process {
    position: relative;
    padding-left: 45px;
    list-style: none;
}

.process-section .step-process::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    left: 21px;
    width: 10px;
    height: 100%;
    border-left: 2px solid #2E3090;
}

.process-section .step-process .step-process-item {
    position: relative;
    counter-increment: list;
}

.process-section .step-process .step-process-item:not(:last-child) {
    padding-bottom: 30px;
}

.process-section .step-process .step-process-item::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: -36px;
    width: 25px;
    height: 25px;
    border: 2px solid #2E3090;
    border-radius: 50%;
    background-color: var(--color-white);
    transition: all 0.3s ease-in-out;
}

.process-section .step-process .step-process-item .step-process-box {
    position: relative;
    margin-left: 20px;
    background-color: #2E3090;
    padding: 20px;
    color: var(--color-white);
    transition: all 0.3s ease-in-out;
}

.process-section .step-process .step-process-item:hover .step-process-box {
    background-color: var(--color-secondary);
}

.process-section .step-process .step-process-item:hover::after {
    border-color: var(--color-secondary);
    background-color: #fff5e1;
}

.process-section .content-container .content-box {
    padding: 15px 0;
    text-align: justify;
}

.process-section .content-container .content-box h5 {
    color: var(--color-black);
    margin-bottom: 12px;
    font-weight: 600;
}

.process-section .content-container .content-box p {
    margin-bottom: 0;
}

/* ------------------------
  Deliverables Section
------------------------- */

.deliverable-section {
    position: relative;
    background-color: var(--color-white);
}

.deliverable-section .deliverable-item {
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    height: 100%;
}

.deliverable-section .deliverable-item .image-box {
    position: relative;
    overflow: hidden;
}

.deliverable-section .deliverable-item .image-box img {
    position: relative;
    width: 100%;
    height: auto;
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

.deliverable-section .deliverable-item:hover .image-box img {
    transform: scale(1.1);
}

.deliverable-section .deliverable-item .deliverable-content {
    position: relative;
    padding: 15px 0;
}

.deliverable-section .deliverable-item .deliverable-content h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.deliverable-section .deliverable-item .deliverable-content p {
    text-align: justify;
}

.deliverable-section .description {
    margin-top: 30px;
    background-color: #DBDDFF;
    color: #2E3090;
    padding: 25px 20px;
    text-align: center;
	
}
.deliverable-section .description p{
	font-family: 'Alata', serif;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
}

/* ------------------------
  Benefits Section
------------------------- */

.benefit-section {
    position: relative;
    background-color: #f9f9f9;
}

.benefit-section .content-container {
    position: relative;
    text-align: justify;
}

.benefit-section .content-container h4 {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 20px;
}

.benefit-section .content-container h5 {
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.benefit-section .content-container ul {
    padding: 10px 15px;
}

.benefit-section .content-container ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.benefit-section .content-container ul li::before {
    content: "\f1ce";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #F15C26;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 12px;
}

/* Why IFA */
.why-ifa {
    position: relative;
    background-color: #f9f9f9;
}

.why-ifa .content-box .inner-title {
    padding: 0;
    margin-bottom: 20px;
}

.why-ifa .content-box .inner-title span {
    padding: 0;
}



/* Faq Section */
.faq-section {
    position: relative;
    background-color: #f9f9f9;
}

.faq-section {
    position: relative;
    background-color: #f9f9f9;
    padding-bottom: 100px;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: none;
}

.faq-section .accordion-button {
    font-size: 18px;
    font-weight: 600;
}

.faq-section .accordion-button:hover {
    color: var(--color-primary);
    background-color: var(--color-white);
}

.faq-section .accordion-item {
    margin-bottom: 10px;
    border: 0;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;

}

.faq-section .accordion-button:not(.collapsed)::after {
    color: var(--color-primary);
    background-image: none;
    content: '\f068';
    font-family: 'FontAwesome';
    font-size: 20px;
}

.faq-section .accordion-button.collapsed::after {
    color: var(--color-primary);
    background-image: none;
    content: '\2b';
    font-family: 'FontAwesome';
    font-size: 20px;
}

.faq-section .accordion-body {
    padding: 15px 20px;
    font-size: 16px;
    color: #6E6E6E;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    position: relative;
    background-color: var(--color-white);
}

.contact-section .contact-box {
    padding: 20px 20px;
    background-color: #f2f2ff;
    border: 1px solid #ccccf6;
    color: #2E3090;
    text-align: center;
    height: 100%;
}

.contact-section .contact-box .contact-icon i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 1px solid var(--color-primary);
    text-align: center;
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 18px;
}

.contact-section .contact-box .contact-content {
    padding: 20px 10px;
}

.contact-section .contact-box .contact-content p {
    font-size: 18px;
	font-weight: 500;
    margin-bottom: 0;
}

.contact-section .contact-box .contact-content p a {
    transition: color 0.3s ease-in-out, letter-spacing 0.3s ease-in-out;
}

.contact-section .contact-box .contact-content p a:hover {
    color: var(--color-primary);
    letter-spacing: 0.3px;
}

.contact-section .full-width-map {
    position: relative;
    height: 400px;
}

.contact-section .full-width-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-section .enquiry-form {
    padding: 20px;
}

.contact-section .enquiry-form h4 {
    font-weight: 600;
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.contact-section .enquiry-form .form-control {
    border-radius: 0;
    padding: 20px;
    margin-bottom: 10px;
}

/* Apply Form Section */
.apply-form-section {
    position: relative;
}

.apply-form-section .form-container .form-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.apply-form-section .form-container .form-control,
.apply-form-section .form-container .form-select{
    padding: 12px;
    border-radius: 0;
    margin-bottom: 5px;
}

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

.apply-form-section .agreement-container .checkbox-list li {
    padding: 10px 0;
    font-size: 16px;
}

.apply-form-section .agreement-container .checkbox-list li .custom-checkbox {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    cursor: pointer;
}

/* News Events Section */
.news-events-section {
    position: relative;
}

.news-events-section .news-events-item {
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    height: 100%;
}

.news-events-section .news-events-item .image-box {
    position: relative;
    overflow: hidden;
	margin-bottom: 20px;
}

.news-events-section .news-events-item .image-box img {
    position: relative;
    width: 100%;
    height: 250px;
	object-fit: cover;
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

.news-events-section .news-events-item:hover .image-box img {
    transform: scale(1.1);
}

.news-events-section .news-events-item .news-events-content {
    position: relative;
}

.news-events-section .news-events-item .news-events-content h5 {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--color-primary);
}

.news-events-section .news-events-item .news-events-content p {
    text-align: justify;
}

.news-events-section .news-events-item .news-events-content a {
    color: var(--color-primary);
	font-weight: 500;
}

.news-events-section .news-events-item .news-events-content a:hover {
    color: var(--color-secondary);
}

/* news-event Detail Section */
.news-event-detail-section {
    position: relative;
}

.news-event-detail-section .news-event-content {
    margin-bottom: 40px;
}

.news-event-detail-section .news-event-content .news-event-poster {
    position: relative;
    overflow: hidden;
}

.news-event-detail-section .news-event-content .news-event-poster img {
    width: 100%;
}

.news-event-detail-section .news-event-content .news-event-detail {
    position: relative;
    background-color: var(--color-white);
    padding: 30px;
    margin-top: -30px;
    margin-right: 30px;
    box-shadow: 0 0 7px 0 rgba(43, 52, 59, .08);
}


.news-event-detail-section .news-event-content .news-event-detail p {
    text-align: justify;
}

.news-event-detail-section .widget {
    position: relative;
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 25px;
}

.news-event-detail-section .widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    vertical-align: middle;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase
}

.news-event-detail-section .widget .widget-title:after {
    content: "";
    width: 50px;
    background: var(--color-primary);
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.news-event-detail-section .widget.recent-post .post-item {
    background-color: var(--color-white);
    display: flex;
    padding: 15px 10px;
    margin-bottom: 10px;
}

.news-event-detail-section .widget.recent-post .post-item .post-media {
    margin-right: 15px;
}

.news-event-detail-section .widget.recent-post .post-item .post-media img {
    border-radius: 3px;
}

.news-event-detail-section .widget.recent-post .post-item h6 {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
}

.news-event-detail-section .widget.recent-post .post-item h6:hover {
    color: var(--color-secondary);
}

.news-event-detail-section .widget.tagcloud .tags-list {
    position: relative;
}

.news-event-detail-section .widget.tagcloud .tags-list a {
    display: inline-block;
    padding: 8px 20px;
    margin: 0 5px 8px 0;
    border: 1px solid #eee;
    border-radius: 0;
    color: var(--black);
    background-color: var(--color-white);
    font-weight: 500;
}

.news-event-detail-section .widget.tagcloud .tags-list a:hover {
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
    cursor: pointer;
}

/* ------------------------
Preloader
------------------------- */
.handle-preloader {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background: var(--color-primary);
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    animation: spinner 5s infinite linear;
    margin: 0 auto 30px auto;
    border-top-color: rgba(255, 255, 255, 0.5);
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 60px;
        width: 60px;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 30px;
        letter-spacing: 5px;
    }
}

/* ------------------------
  Back to Top
------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 0;
    font-size: 15px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
    z-index: 9999;
}

.back-to-top:hover {
    background-color: var(--color-secondary);
}

.back-to-top i {
    font-size: 24px;
}

/* CF7 */

.screen-reader-response{
	display: none;
}

.wpcf7-not-valid-tip{
	color: #dc3545;
}