/* @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

:root {
    --primary-color: #FFFF00;
    --text-color: #093248;
    --theme-color: #056C95;
}

body {
    font-family: "Poppins", sans-serif;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-family: "poppins", sans-serif;
    /* color: #767676; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans";
    font-weight: 600;
}

a,
a:hover {
    color: #fff;
    text-decoration: none;
}

.sec_pd {
    padding: 70px 0;
}

.bann_pd {
    padding: 200px 0 350px 0;
}

.h_bann_main {
    font-family: "Plus Jakarta Sans";
    font-size: 4rem;
}

.sec_hd {
    font-size: 39px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans";
    text-transform: capitalize;
}

.sec_hd2 {
    font-size: 2.7rem;
}

.theme_btn {
    background-color: var(--theme-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.theme_btn:hover {
    background-color: var(--text-color);
    color: #fff;
}

.theme_btn2 {
    background-color: #000;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    font-weight: 500;
    display: inline-block;
    color: #fff;
}

.theme_btn2:hover {
    background-color: var(--text-color);
    color: #fff;
}

.color {
    color: var(--theme-color);
}

.nav-link [aria-current="page"] {
    height: 2px;
    transform: scale(1.05);
    left: 0;
}

/* ==================================header================================== */
.header_above {
    background-color: #00172E;
    border-bottom: 1px solid #FFFFFF2B;
}

.head_right ul li i {
    height: 30px;
    width: 30px;
    background-color: #FFFFFF2B;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    justify-content: center;
    transition: all 0.3s ease;
}

.head_right ul li i:hover {
    animation-name: animation-pop;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    background-color: var(--theme-color);
    color: #fff;
}

@keyframes animation-pop {
    50% {
        transform: scale(1.2);
    }

}

.head_contact ul li {
    font-size: 15px;
}

.navbar-nav {
    gap: 15px;
}

.navbar {
    background-color: #fff;
    /* position: sticky; */
    /* top: 0; */
    /* z-index: 99999; */
    border-bottom: unset !important;
}

.navbar-brand {
    width: 12%;
}

.navbar-brand img {
    max-width: 100%;
}

.nav-item .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    padding: 20px 15px;
    transition: all 0.4s ease-in-out;
    font-size: 17px;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active:hover {
    color: var(--theme-color) !important;
}

.nav-item .nav-link::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 0%;
    background-color: var(--theme-color);
    top: 0;
    left: -120px;
    transition: all 0.3s ease;
    transform: scale(-1.05);
}

.nav-item .nav-link.active::before {
    height: 3px;
    width: 100%;
    transform: scale(1.05);
    left: 0;
}

.nav-item .nav-link:hover::before {
    height: 3px;
    width: 100%;
    transform: scale(1.05);
    left: 0;
}

.dropdown-toggle::after {
    color: var(--text-color);
}

.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    border-top: 3px solid var(--text-color);
    overflow: hidden;
    width: auto;
}

.dropdown-item {
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 17px;
    font-weight: 500;
    padding: 13px 20px;
}

.dropdown-item:hover {
    background-color: var(--theme-color) !important;
    color: #fff !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    background-color: #fff;
    visibility: visible;
}

/* ========================ModalCSS====================== */

.modal-dialog {
    max-width: 850px;
    margin: 14.75rem auto;
}

.modal-header .btn-close {
    margin-left: auto !important;
    background-color: #fff;
    opacity: 1;
}

.modal-header {
    border: none !important;
}

.modal-body input {
    width: 100%;
    padding: 10px;
}

.modal-backdrop {
    width: 100%;
    height: 100%;
}

.modal-content {
    background-color: var(--theme-color);
    padding: 20px 0;
}

.modal-title {
    color: #FFFF00;
}

.modal-title>img {
    height: 85px;
    transition: all 0.5s ease-in-out;
    animation-name: transf;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 1s;
}

@keyframes transf {
    0% {
        transform: scale(1.08);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }

}

.modal-content label {
    color: #000;
    font-weight: 300 !important;
}

.modal-footer .theme_btn {
    width: 100%;
    border: unset;
    font-size: 16px;
    padding: 10px 20px;
    font-weight: 500;
}

.modal-footer {
    padding-top: 0px !important;
}
.form-floating .form-group label{
    font-weight: 300 !important;
    /* font-weight: normal !important; */
}

/* =============================Home_Banner============================ */
.h_banner {
    /* background: url(../img/h_banners1.jpg)no-repeat center center/cover; */
    transition: all 5.5s ease;
    position: relative;
}

.h_banner2 {
    background: url(../img/h_banners2.jpg)no-repeat center center/cover;
}

.h_banner3 {
    background: url(../img/h_banners3.jpg)no-repeat center center/cover;
}

.h_banner4 {
    background: url(../img/h_banners4.jpg)no-repeat center center/cover;
}

/* alternateoverlay color #01295199 */
.banner_slider {
    overflow: hidden;
}

.banner_slider .slick-active .h_banner {
    transform: scale(1.09);
}

.h_banner::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000F1D80;
    background-image: url(../img/banner/overlay2.png);
    top: 0;
    z-index: -5;
    left: 0;
}

/* =============================Section_1============================ */
.sec_1 {
    background-color: #000f1dcf;
    transform: translateY(-178px);
    position: absolute;
    width: 100%;
}

.s1_box {
    padding: 50px 0px 10px 10px;
}

.s1_box_mid {
    border-left: 1px solid #FFFFFF2B;
    border-right: 1px solid #FFFFFF2B;
}

/* =============================Section_2============================ */
.sec_2 {
    position: relative;
}

.sec_2::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 37%;
    right: 0;
    top: 0;
    background: url(../img/bg_pattern.png)no-repeat right;
    z-index: -5;
}

.s2_box {
    background-color: var(--theme-color);
    padding: 50px 25px;
    height: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.s2_box2 {
    background: #000f1dba url(../img/s2_img1.jpg)no-repeat center center/cover;
    background-blend-mode: overlay;
}

.s2_box3 {
    background: #ffffffb5 url(../img/s6_img2.jpg)no-repeat center center/cover;
    background-blend-mode: overlay;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

.s2_box4 {
    background: #ffffff8f url(../img/s2_img3.jpg)no-repeat center center/cover;
    background-blend-mode: overlay;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
    color: #000;
}

.s2_box .theme_btn2 {
    width: 60%;
    background-color: var(--primary-color);
    color: #000;
}

.s2_box1 .theme_btn2,
.s2_box2 .theme_btn2 {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
}

.s2_box1 .theme_btn2:hover,
.s2_box2 .theme_btn2:hover {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.s2_box3 .theme_btn2:hover,
.s2_box4 .theme_btn2:hover {
    background-color: #000;
    color: #fff;
}

.s2_right p {
    color: #959595;
    font-weight: 500;
}

.btn_brd {
    color: var(--theme-color);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 7px;
    transition: all 0.3s ease;
    border: 1px solid var(--theme-color);
    display: inline-block;
}

.btn_brd:hover {
    background-color: var(--text-color);
    color: #fff;
    border-color: #000;
}

/* =============================Section_3============================ */
.sec_3 {
    background-color: #F5F5F5;
}

.s3_left .line {
    height: 1px;
    width: 35%;
    display: inline-block;
    background-color: #000;
}

.s3_box {
    background-color: #ffff;
    padding: 35px 20px;
    color: #252525;
    transition: all 0.3s ease-in-out;
}

.s3_box:hover {
    transform: scale(1.11);
}

.s3_icon i {
    font-size: 64px;
}

.s3_box h4 {
    font-weight: 300;
}

.s3_box p {
    font-weight: 500;
}

/* =============================Section_4============================ */
.sec_4 {
    background: #00000066 url(../img/s4_bg.jpg)no-repeat center center/cover;
    background-blend-mode: overlay;
}

.s4_heading h2 {
    font-size: 60px;
    font-weight: 600;
}

.dot_bg {
    position: relative;
    z-index: 999;
}

.dot_bg::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000f1d18;
    background-image: url(../img/banner/overlay2.png);
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: -5;
}

/* =============================Section_5============================ */
.s5_left p {
    color: #767676;
}

.s5_icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    font-size: 25px;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
    background-color: var(--theme-color);
    color: #fff;
}

.s5_icon:hover {
    background-color: var(--text-color);
    color: #fff !important;
}

.s5_left ul li {
    padding: 20px 0;
    border-bottom: 1px solid #DCDDE8;
}

.s5_right img {
    height: 650px;
    object-fit: cover;
}

/* =============================Section_6============================ */
.sec_6 {
    background-color: #F5F5F5;
    margin-top: 120px;
    height: 550px;
}

.s6_box_content {
    background-color: #fff;
    padding: 40px 20px;
    position: relative;
}

.s6_icon {
    height: 65px;
    width: 65px;
    background-color: var(--theme-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    border-radius: 100px;
    position: absolute;
    left: 43%;
    bottom: -20px;
    transform: rotate(90deg);
}

.s6_icon:hover {
    animation-name: animation-pop;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    background-color: var(--text-color);
    color: #fff;
}

@keyframes animation-pop {
    50% {
        transform: scale(1.2);
    }
}

.s6_box {
    transform: translateY(-100px);
    margin-top: -80px;
}

.s6_box_img img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}

/* =============================Section_7============================ */
.sec_7 {
    background: #fff;
    position: relative;
    z-index: 55;
}

.sec_7::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 45%;
    background: url(../img/bg_pattern2.png)no-repeat center center/cover;
    right: 35px;
    top: 0;
    opacity: 0.8;
    z-index: -5;
}

.s7_img::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, #000F1D00 0%, #000F1D 100%);
    ;
    bottom: 0;
    left: 0;
}

.pulse:hover {
    color: #000000;
}

.pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    color: #000;
    background-color: #fff;
    text-align: center;
    border-radius: 50px;
    border: 2px solid #ffff;
    animation: shadow-pulse 1.5s infinite;
    font-size: 32px;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 0, 0.4);
    }

    100% {
        box-shadow: 0 0 7px 25px rgba(206, 15, 0, 0);
    }
}

.s7_btn .theme_btn {
    padding: 10px 30px;
    color: #000;
    border-radius: 5px;
    font-weight: 500;
    border: 1px solid #EA6645;
    transition: all 0.4s ease-in-out;
}

.s7_btn .theme_btn:hover {
    border-color: #fff;
    background-color: #fff;
}

.s7_btn .theme_btn2 {
    border: 1px solid #fff;
}

.s7_btn .theme_btn2:hover {
    border-color: var(--primary-color);
}

.play_btns {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =============================Section_8============================ */
.sec_8 {
    background-color: #F5F5F5;
}

.s8_btn .theme_btn:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.sec_8 .row_1 {
    padding: 0 0 30px 0;
    border-bottom: 1px solid #DCDDE8;
}

.s8_icon i {
    font-size: 50px;
}

.s8_box_content p {
    color: #767676;
}

.s8_box {
    margin-bottom: 33px;
    transition: all 0.4s ease-in-out;
}

.s8_box:hover {
    transform: scale(1.05);
}

/* =============================Section_9============================ */
.sec_9 .row_1 {
    border-bottom: 1px solid #DCDDE8;
    padding-bottom: 25px;
}

.s9_box {
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 485px;
    background: url(../img/s9_img1.jpg)no-repeat center center/cover;
    position: relative;
    margin-bottom: 25px;
}

.s9_box2 {
    background: url(../img/s9_img2.jpg)no-repeat center center/cover;
}

.s9_box3 {
    background: url(../img/s9_img3.jpg)no-repeat center center/cover;
}

.s9_box4 {
    background: url(../img/s9_img4.jpg)no-repeat center center/cover;
}

.s9_box5 {
    background: url(../img/s9_img5.jpg)no-repeat center center/cover;
}

.s9_box6 {
    background: url(../img/s9_img6.jpg)no-repeat center center/cover;
}

.s9_box_content {
    background-color: #fff;
    padding: 40px 40px 30px 40px;
    position: absolute;
    bottom: -80px;
    transition: all 0.4s ease-in-out;
}

.s9_icon {
    height: 40px;
    width: 40px;
    background-color: #fff;
    display: inline-flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    top: -19px;
    right: 46%;

}

.s9_box:hover .s9_box_content {
    bottom: 0;
}

/* =============================Section_10============================ */
.sec_10 {
    background: linear-gradient(180deg, #000000 0%, #474042 100%);
    position: relative;
}

.sec_10::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    background: #000F1D80 url(../img/s10_img1.png)no-repeat center center/cover;
    background-blend-mode: overlay;
    right: 0;
    top: 0;
    object-fit: contain;
    object-position: center center;
}

.s10_left p {
    padding-bottom: 30px;
    border-bottom: 1px solid #FFFFFF2B;
}

/* progressbar */

.skill-bars {
    padding: 20px 0;
}

.skill-bars .bar {
    margin: 20px 0;
}

.skill-bars .bar:first-child {
    margin-top: 0px;
}

.skill-bars .bar .info {
    margin-bottom: 5px;
}

.skill-bars .bar .info span {
    font-weight: 500;
    font-size: 14px;
    opacity: 0;
    color: #fff;
    animation: showText 0.5s 1s linear forwards;
}

@keyframes showText {
    100% {
        opacity: 1;
    }
}

.skill-bars .bar .progress-line {
    height: 10px;
    width: 100%;
    background: #f0f0f0;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 10px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05),
        0 1px rgba(255, 255, 255, 0.8);
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}

.bar .progress-line span {
    height: 100%;
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFF00 100%);
    animation: animate 1.5s 1.5s cubic-bezier(1, 0, 0.5, 1) forwards;
}

.bar .progress-line.html span {
    width: 84%;
}

.bar .progress-line.css span {
    width: 61%;
}

.bar .progress-line.jquery span {
    width: 76%;
}


.progress-line span::after {
    position: absolute;
    top: -28px;
    right: 0;
    font-weight: 500;
    color: #fff;
    padding: 1px 8px;
    font-size: 12px;
    border-radius: 3px;
    opacity: 0;
    animation: showText2 0.5s 1.5s linear forwards;
}

@keyframes showText2 {
    100% {
        opacity: 1;
    }
}

.progress-line.html span::after {
    content: "90%";
}

.progress-line.css span::after {
    content: "60%";
}

.progress-line.jquery span::after {
    content: "85%";
}

.progress-line.python span::after {
    content: "50%";
}

.progress-line.mysql span::after {
    content: "75%";
}

.links {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 10px;
    line-height: 1.3;
}

a img.icon {
    display: inline-block;
    width: 1.2em;
    margin-left: .6rem;
}

/* =============================Section_11============================ */
.s11_left ul li span img {
    max-width: 70%;
    display: inline-block;
    margin-bottom: 10px;
}

.s11_left p {
    color: #959595;
}

.s11_signature {
    width: 100%;
}

.play_btn a {
    color: var(--theme-color);
    transition: all 0.5s ease-in-out;
    padding: 20px;
    border-radius: 100px;
    font-size: 30px;
    position: relative;
    z-index: 999;
}

.play_btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    color: #056c95;
    border: 1px solid #ffffff;
    border-radius: 100px;
    transition: all 0.5s ease-in-out;
    background-color: #fff;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.play_btn:hover {
    background-color: #000;
}

.play_btn:hover a {
    color: #fff;
}

.play_btn::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 #fff;
    animation: button-ripple 3s infinite;
    opacity: .6;
    z-index: 3;
    animation-delay: .3s;
}

.play_btn::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(255 255 255);
    animation: button-ripple 3s infinite;
    opacity: .6;
    z-index: 2;
}

@keyframes button-ripple {
    70% {
        box-shadow: 0 0 0 var(--glow-size, 15px) currentColor;
        opacity: 0;
    }

    100% {
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0;
    }

}

/* =============================Section_12============================ */
.sec_12 {
    height: 550px;
}

.s12_box {
    background-color: #F5F5F7;
    color: #252525;
    padding: 35px;
    height: 220px;
    transition: all 0.3s ease-in-out;
}

.s12_box:hover {
    transform: scale(1.10);
}

.s12_icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 70px;
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 100px;
    font-size: 30px;
    margin-bottom: 20px;
}

/* =============================Section_13============================ */
.sec_13 {
    position: relative;
    background-color: #F5F5F5;
    /* padding-bottom: 100px !important; */
}

.s13_left img {
    width: 100%;
    height: 710px;
    object-fit: cover;
}

.sec_form {
    background-color: #fff;
    padding: 60px;
    height: 100%;
}

.form_group label {
    font-weight: 600;
    font-size: 14px;
}

.form_group .form_control:focus-visible {
    outline: none;
    border-color: var(--theme-color);
}

.form_group .form_control {
    padding: 7px 10px;
    background-color: #F5F5F5;
    border: 1px solid #DCDDE8;
    border-radius: 5px;
    width: 100%;
}

.form_group .form_control::placeholder {
    color: #929292c4;
}

.s13_row {
    transform: translateY(-120px);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.sec_13 .row ul li h2 {
    font-weight: 400;
}

.line {
    height: 1px;
    width: 150px;
    background-color: #000;
}

.social_icon a i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    color: var(--theme-color);
    background-color: #fff;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.social_icon a i:hover {
    animation-name: animation-pop;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    background-color: var(--text-color);
    color: #fff;
}

.sign_up_row {
    background-color: #fff;
    border-radius: 7px;
    border-top: 5px solid #000;
    padding: 50px 20px;
    transform: translateY(-130px);
    position: relative;
    z-index: 999;
}

.s13_mid_row {
    margin-bottom: -65px;
}

/* =============================Footer============================ */
footer {
    background-color: #093248;
    padding: 120px 0 12px 0;
}

.foot_box p {
    color: #ffff;
}

.foot_box ul li {
    font-size: 14px;
}

.foot_box ul li span i {
    color: var(--theme-color);
    font-size: 11px;
}

.foot_list {
    gap: 50px;
}

.footer_search input {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: #35424f;
    border: none;
    color: #fff;
    padding: 10px 15px;
}

.footer_search input:focus {
    background-color: #35424f;
    box-shadow: none;
    color: #fff;
}

.footer_search i {
    background-color: #35424f;
    padding: 11px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-left: -2px;
}

.foot_list ul li a {
    transition: all 0.3s ease-in-out;
}

.foot_list ul li a:hover {
    color: var(--theme-color) !important;
}

.foot_list ul li:hover i {
    color: #fff;
}

footer .row {
    padding-bottom: 50px;
    border-bottom: 1px solid #767676;
}

.foot_line {
    height: 2px;
    width: 40%;
    margin: 20px 0;
    background-color: #FFFFFF2B;
}

.foot_box .social_icon {
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
}

.foot_box .social_icon a i {
    background-color: #FFFFFF2B;
    height: 35px;
    width: 35px;
    color: #fff;

}

.foot_box .social_icon a i:hover {
    background-color: var(--theme-color);
    color: #Fff;
}

/* =====================================inner_banner===================================== */
.inner_banner {
    padding: 170px 0;
    z-index: 5;
}

.inner_banner p {
    font-size: 20px;
}

.counter_sec {
    background-color: #000f1dbf;
    margin-top: 150px;
}

.count,
.item span {
    font-size: 3.5rem;
    color: #fff;
}

.s4_box {
    padding: 45px;
}

.s4_box_brd {
    border-right: 1px solid #78757557;
    border-left: 1px solid #78757557;
}

/* =====================================inner_section1===================================== */
.inner_sec_1 {
    background-color: #F5F5F5;
}

.i-s1_box {
    overflow: hidden;
    position: relative;
}

.profile_name {
    background-color: #000f1d8f;
    padding: 15px 15px 10px 10px;
    position: absolute;
    width: 100%;
    bottom: -80px;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.profile_name:hover {
    bottom: 0;
}

.profile_name p {
    font-size: 14px;
}

.profile_name ul li span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 19px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.profile_name ul li span:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.sign_up_sec {
    background-color: transparent;
    /* margin-top: -70px; */
    height: 0;
}

.about_banner {
    background: #000F1D80 url(../img/h_banners2.jpg)no-repeat center center/cover;
}

.course_banner {
    background: #000F1D80 url(../img/bann_2.jpg)no-repeat center center/cover;
}

.academic_banner {
    background: #000F1D80 url(../img/bann_3.jpg)no-repeat top center/cover;
}

.gallery_banner {
    /* background: #000F1D80  url(../img/bann_4.jpg)no-repeat top   center/cover; */
}

.contact_banner {
    background: #000F1D80 url(../img/bann_5.jpg)no-repeat center center/cover;
}

/* =====================================FAQs_section1===================================== */
.accordion-button {
    position: relative;
    padding: 0px 20px 0px 0px;
    box-shadow: none !important;
    color: #001376;
    font-size: 18px;
    font-weight: 700;
}

.accordion-button::after {
    content: none !important;
}

.btn_acrd {
    display: inline-block;
    position: absolute;
}

.accordion-item {
    margin-bottom: 40px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--theme-color);
    color: #fff;
    box-shadow: none;
}

.accordion-button::before {
    content: "\f068" !important;
    font: var(--fa-font-solid) !important;
    background-color: var(--text-color);
    height: 75px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 900 !important;
    margin-right: 20px;
}

.accordion-button.collapsed::before {
    content: '\2b' !important;
    font: var(--fa-font-solid) !important;
}

/* contact_us */
.contact_map iframe {
    width: 100%;
}


/* =====================================Events_section===================================== */
.event_sec {
    background-color: #F5F5F5;
    position: relative;
    overflow: hidden;
}

/* =====================================Events_section2===================================== */

.event_sec2 {
    background-color: #000F1D;
    position: relative;
}

.event_sec2 ul li {
    color: #fff;
}

.list_bg {
    background-color: #FFFF00;
    color: #000 !important;
}

.program_detail li {
    border-bottom: 1px solid #fff;
    gap: 0 !important;
}

.program_detail li p {
    color: #fff;
}

.program_time {
    width: 15%;
}

.program_content {
    width: 85%;
}

/* =====================================Privacy===================================== */
.privacy_content h3 {
    color: var(--theme-color);
    font-size: 40px;
}

.privacy_content p {
    color: var(--text-color) !important;
}

/* Event Celender */

.cal-modal-container {
    /* background: rgba(0, 0, 0, .4); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-modal {
    background: #1D252C;
    color: #fff;
    padding: 40px 60px;
    text-align: center;
}



#calendar {
    display: inline-block;

    .placeholder {
        display: none;
        width: 300px;
    }

    .flatpickr-calendar {
        background: none;
        border: 0;
        border-radius: 0;
        ;
        box-shadow: none;
        color: #fff;
        top: 0;

        .flatpickr-innerContainer {
            overflow: visible;

            .flatpickr-weekdays {
                overflow: visible;
            }
        }

        .flatpickr-months {
            .flatpickr-month {
                color: inherit;
                margin-bottom: 10px;

                .flatpickr-current-month {
                    font-size: 16px;

                    .numInputWrapper {
                        display: none;
                    }
                }
            }

            .flatpickr-prev-month,
            .flatpickr-next-month {
                top: calc(50% - 23px);

                svg {
                    height: 46px;
                    width: 46px;

                    path {
                        fill: #3DAE2B;
                    }
                }
            }

            .flatpickr-prev-month {
                left: -60px;
            }

            .flatpickr-next-month {
                right: -60px;
            }
        }

        .flatpickr-weekdays {
            .flatpickr-weekdaycontainer {
                max-width: 307.875px;
                padding: 0 10px;
                position: relative;

                &::after {
                    content: '';
                    background: #343F48;
                    position: absolute;
                    top: -32px;
                    bottom: -230px;
                    right: 0;
                    width: 1px;
                }

                &:last-child::after {
                    content: none;
                }

                .flatpickr-weekday {
                    color: #fff;
                    font-weight: 700;
                }
            }
        }

        .dayContainer {
            box-shadow: none;
            padding: 0 10px;
            position: static;

            &:last-child::after {
                content: none;
            }
        }

        .flatpickr-day {
            background: #fff;
            border: 0;
            color: #1D252C;
            font-weight: 500;
            transition: color .1s, background .1s;

            &:hover {
                background: #3DAE2B;
                color: #fff;
            }

            &.flatpickr-disabled,
            &.flatpickr-disabled:hover {
                background: none;
                color: #fff;
                cursor: default;
            }

            &.selected:not(.hidden) {

                &,
                &:hover,
                &:focus {
                    background: #37A628;
                    color: #fff;
                }
            }

            &.nextMonthDay,
            &.prevMonthDay {
                background: none;
                color: rgba(#CFD2D3, .1) !important;
                color: #fff;
                cursor: default;
                visibility: visible;
            }
        }
    }

    .calendar-events {
        display: block;
        justify-content: space-around;
        margin-top: 30px;
        min-height: 36px;

        @media screen and (min-width: 992px) {
            display: flex;
            justify-content: space-around;
        }

        .event {
            font-size: 29px;

            .date {
                color: #fff;
                font-weight: 600;
            }

            .location {
                color: #3DAE2B;
                font-weight: 800;
                letter-spacing: -.8px;
            }
        }
    }
}

/* =====================================Donation Section===================================== */
.donate_sec {
    background: linear-gradient(135deg, #212224 0%, #000000 100%);
}

.donate_content .theme_btn {
    background-color: #FFFF00;
    font-weight: 500;
    padding: 7px 10px;
    transition: all 0.5s ease-in-out;
    border: 1px solid transparent;
    border-radius: 7px;
}

.donate_content .theme_btn:hover {
    background-color: transparent;
    border: 1px solid #ccc;
    color: #fff !important;
}

.donate_box .donate_img img {
    transition: all 0.6s ease-in-out;
    opacity: .9;
}

.donate_box .donate_img {
    overflow: hidden;
    margin-bottom: 10px;
}

.donate_box:hover .donate_img img {
    opacity: .8;
    transform: rotate(1deg) scale(1.05);
}

.donate_content p {
    font-size: 14px;
}

.donate_box {
    margin-bottom: 30px;
}

.donate_form input {
    background: transparent;
    color: #fff;
    border: 1px solid #ccc;
}

.donate_form input:focus-visible {
    outline: none;
}

.donate_form input::placeholder {
    font-size: 14px;
    color: #fff;
}


/* tab_section */
.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tab_sec .nav-tabs .nav-item.show .nav-link,
.tab_sec .nav-tabs .nav-link.active {
    border: none;
}

.tab_sec .nav-tabs .nav-link {
    font-weight: 500;
    border: none;
    background-color: #1b1c1d;
    color: #FFFF00;
    padding: 10px 20px;
    position: relative;
    line-height: 15px;
}

.tab_sec .nav-tabs .nav-link.active {
    background-color: #FFFF00;
    color: #000;
}

.tab_sec .nav-tabs .nav-link.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}

.tab_sec .nav-tabs .nav-link small {
    font-size: 10px;
    color: #d1d1d1;
}

.tab_sec .nav-tabs .nav-link.active small {
    color: #000;
}

.star i {
    font-size: 15px;
    color: #fec42d;
}

.service_content p {
    font-size: 14px;
    font-weight: 500;
}

.service_box {
    /* background-color: #fff; */
    padding: 25px 0;
    /* border: 1px solid #ccc; */
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    position: relative;
    /* height: 400px; */
}

.service_box .service_img {
    margin-bottom: 15px;
    max-width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service_box .service_img img {
    max-width: 100% !important;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.card_content {
    position: absolute;
    background-color: #ffff;
    padding: 15px 20px;
    border: 1px solid #000;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    top: -10%;
    right: -50%;
    width: 100%;
    z-index: 5;
    visibility: hidden;
}

.service_box:hover .card_content {
    opacity: 1;
    visibility: visible;
}

.small_text {
    font-size: 11px;
    font-weight: 500;
    color: #EA6645;
}

.card_content p {
    font-size: 13px;
    font-weight: 500;
    padding-top: 5px;
}

.card_content ul li {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.card_content ul {
    padding-left: 15px;
}

.gallery_heading {
    width: 80%;
    margin: auto;
}

.gallery img {
    height: 200px;
    object-fit: cover;
}

.gallery {
    width: 98% !important;
}

.gallery_img {
    width: 100%;
}

.gallery_img img {
    width: 100%;
    height: auto !important;
    border: 3px solid #3c3f3a;
}

/* Donation_section */
.donation-form {
    padding: 35px 30px;
    background: #FEF2F1;
    border-radius: 10px;
}

.donation-form .custom-radio-price .radio-item label {
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s;
    margin-right: 13px;
    padding: 10px 20px;
    border-radius: 3px;
    background: #FFFFFF;
    color: #343434;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.donation-form .custom-radio-price {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    align-items: center;
}

.donation-form .custom-radios {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    align-items: center;
    gap: 20px;
}

.donation-form .custom-radio-price .radio-item input:checked~label {
    color: white;
    background: red;
}

.donation-form .custom-radio-price .radio-item input[type="radio"] {
    display: none;
}

.donation-form .form-group .form-control {
    border: none;
    background: white;
    padding: 18px 30px;
    margin: 10px 0;
}

.donation-form .form-group>label {
    color: black;
    font-size: 15px;
    cursor: pointer;
}

.donation-form h5 {
    font-size: 20px;
    margin-bottom: 15px;
}

.donation-form .total-price .price {
    font-size: 28px;
    font-weight: 800;
    /* font-family: var(--heading-font); */
}

.total-price .theme_btn {
    font-size: 18px;
}

.donation-form .custom-radios .form-check-input {
    width: 15px;
    height: 15px;
    background: transparent;
    border: 4px solid rgba(0, 0, 0, 0.4);
}

.donation-form .custom-radios .form-check-input:focus,
.donation-form .custom-radios .form-check-input:checked {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: red;
}

.partner_content .partner_img img {
    max-width: 50% !important;
}

.partner_detail {
    background-color: #fff;
}

.h_banner .container {
    overflow: hidden !important;
}

.service_content a.theme_btn2:hover {
    position: relative !important;
    z-index: 99999999;

}

.foot_box img {
    max-width: 40% !important;
}


/* ===============================login===================== */
.login_form_sec {
    max-width: 550px;
    padding: 30px;
    margin: auto;
    background-color: var(--text-color);
}

.forget_form {
    background-color: var(--text-color);
    padding: 30px;
}

.login_form_sec .theme_btn1:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.login_form ul input {
    border: 1px solid var(--theme-color);
    padding: 10px;
    font-size: 17px;
    font-weight: 500;
}

.login_form ul input:focus-visible {
    outline: none;
}

.register {
    font-size: 17px;
    font-weight: 500;
    border-bottom: 2px solid var(--theme-color);
    padding-bottom: 5px;
}

.forget_form label {
    font-weight: 600;
    font-size: 18px;
}

.forget_form input {
    width: 50%;
    padding: 10px;
    border: 2px solid #000;
    margin: 10px 0 25px 0;
}

.register_heading h2 {
    font-size: 50px;
    font-weight: 500;
}

.course-price {
    font-size: 25px;
    font-weight: 500;
}

.course-price span {
    display: inline-block;
    font-size: 40px;
    /* margin-bottom: -30px; */
    font-weight: 600;
}

.dollar {
    display: inline-block;
    font-size: 35px;
}

/* .course_sec */
.course_content ul li i {
    font-weight: 900 !important;
    font-size: 17px;
}

.course_package {
    background: linear-gradient(135deg, #01386F 0%, #056C95 100%);
    padding: 50px 40px;
}

.course_package h3 {
    font-weight: 400;
}

.theme_bg {
    background-color: #F5F5F7;
}

.blog_content {
    height: 285px;
    padding: 35px 25px;
    background-color: #fff;
}

.blog_content p {
    font-size: 14px;
}

.blog_content h5 {
    color: #000;
}

.blog_content a {
    font-size: 14px;
    display: inline-block;
}

.blog_content a:hover,
.blog_content h5:hover {
    color: var(--theme-color);
}

.chev_icon {
    font-size: 17px;
}

.blog_date {
    background-color: #fff;
    padding: 10px 25px;
    border-top: 1px solid #ccc;
}

.blog_date p {
    font-size: 13px;
}

.purpose_img img {
    max-width: 70% !important;
}

.foot_logo {
    border-radius: 9px;
}

.enroll_sec .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.enroll_sec {
    background: #000f1d6e url(../img/enroll_bg.jpg)no-repeat;
    background-size: cover;
    background-position: top center;
    background-blend-mode: overlay;
    height: 600px;
}

.enroll_sec .btn_container a {
    font-size: 19px;
    font-weight: 400;
}

.step_sec {
    background: #000F1DB3 url(../img/step_bg.jpg)no-repeat center center/cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.step_icon i {
    background-color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    height: 70px;
    width: 70px;
    font-size: 30px;
    border-radius: 100px;
    justify-content: center;
}

.step_content ul li {
    padding: 10px 0 15px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
}

.step_content ul li p {
    font-size: 13px;
}

.testimonial_box {
    padding: 30px;
    width: 90%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.testi_img img {
    height: 65px;
    width: 65px;
    border-radius: 100px;
}

.testimonial_box p {
    font-size: 15px;
}

.qoute_icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 40px;
    background-color: var(--theme-color);
    height: 100px;
    width: 100px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.certi_sec2::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.2;
    top: 0;
    left: 0;
    background: url(../img/map_bg.png)no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -5;
}

.certi_sec3 {
    background-color: #f5f5f5;
}

.test_content {
    background-color: #F5F5F5;
    padding: 20px 35px;
    border-radius: 7px;
}

.img_box img {
    height: 65px;
    width: 65px;
    border-radius: 100px;
}

.testi_box_slide {
    width: 95% !important;
}

.certificate_img img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.testimonial_slider {
    margin-right: -100px;
}

.testimonial_slider .slick-dots li button:before {
    font-size: 40px;
    opacity: 1;
    color: #ccc;
}

.testimonial_slider .slick-dots li.slick-active button:before {
    color: var(--theme-color);
    opacity: 1;
}

.sign_up_left h2 {
    font-size: 30px;
    font-weight: 300;
}

.blog_img img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}




.what-we-offer {
    background-color: var(--theme-color);
    color: #fff;
}



.step-box p {
    padding: 20px;
}

.step-box img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}


.step-box {
    margin-top: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    max-height: 700px;
    min-height: 700px;
}



.video-sec {

    color: #fff;
    position: relative;
}

.video-sec::before {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;

    top: 0;
    left: 0;
    background-color: var(--theme-color);
    z-index: -5;
}


.why-choose-us {
    background-color: #f5f5f5;
}


.why-choose-us .why-content-box {
    padding: 24px 50px 24px 50px;
    background-color: #fff;
    height: 350px;
    min-height: 350px;
    margin: 10px 0 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.why-choose-us .why-content-box i {
    font-size: 35px;

}

.why-choose-us .why-content-box h4 {
    margin: 21px 0px;
    font-size: 20px;
}







.benefit_box ul {
    list-style-type: none;
}

.benefit_box li {
    font-size: 17px;
    font-weight: 600;
    position: relative;
    padding: 13px 0px 14px 0;
    color: #353535;
}

.benefit_box li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    color: #056c95;
    position: absolute;
    left: -42px;
    font-size: 34px;
    top: 4px;
}


.benefit_box p {
    font-weight: normal;
    margin-top: 5px;
}

.cpt-content {
    background-color: transparent;
    background-image: linear-gradient(135deg, #01386f 0%, #056c95 100%);
    color: #fff;
    padding: 55px 65px 20px 65px;
}

.cpt-content select {
    border: none;
    padding: 9px 13px;
    margin: 0px 0 0 0;
    border-radius: 5px;
    font-size: 14px;
    background-color: #ffffffd1;
}

.cpt-content input {
    border: none;
    padding: 9px 13px;
    margin: 0px 0 0 0;
    border-radius: 5px;
    font-size: 14px;
    background-color: #ffffffd1;
}


.cpt-content form {
    margin: 25px 0px;
}

.cpt-content .form-label {
    margin-bottom: 0;
    font-size: 15px;
}

.cpt-content .form-check-input {
    padding: 0px 0px 0px 0px;
}

/* stepfroms css begin */
.form-container {
    margin-top: 20px;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    flex-direction: row;
    background-color: transparent;
}

.progress-bar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 1;
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.progress-step.active {
    background-color: #17A8E3;
    color: white;
}

.progress-step.completed {
    background-color: #17A8E3;
    color: white;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    background-color: #17A8E3;
    z-index: 0;
    transition: width 0.3s ease;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-prev {
    background-color: #f1f1f1;
    color: #333;
}

.btn-prev:hover {
    background-color: #ddd;
}

.btn-next {
    background-color: #17A8E3;
    color: white;
}

.btn-next:hover {
    background-color: #a4bccb;
}

.btn-submit {
    background-color: #2196F3;
    color: white;
}

.btn-submit:hover {
    background-color: #0b7dda;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* stepfroms cs end */


.cta-1 {
    background-image: url(../img/cta-1.webp);
    background-position: left;
    background-size: contain;
}

.text-white {
    color: #fff !important;
}


/* formcss */


/* .enroll_heading p{
    color: #fff;
} */
.para_color {
    color: #767676;
}
.testimonial_slider .slick-arrow{
    display: none !important;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color:  #d7f4ff;
	border-radius: 10px;
}

::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, #056C95),
									   color-stop(0.72, #01386F),
									   color-stop(0.86, #056C95));
}
