/* General Style */
* {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "Poppins-Regular";
    color: black;
}
@font-face {
    font-family: "Inter";
    src: url(../fonts/inter/Inter.ttf);
}
@font-face {
    font-family: "Poppins-Regular";
    src: url(../fonts/poppins/Poppins-Regular.ttf);
}
@font-face {
    font-family: "Poppins-Light";
    src: url(../fonts/poppins/Poppins-Light.ttf);
}
@font-face {
    font-family: "Clash-Display";
    src: url(../fonts/clash_display/ClashDisplay-Variable.ttf);
}

:root {
    --main_color: #2a4e8c;
    --second_color: #ada2ff;
}

a {
    text-decoration: none !important;
}
html {
    overflow-x: hidden;
}
.slick-slider {
    overflow: hidden;
}

.header {
    padding: 25px 0;
    background-color: var(--main_color);
}
.header .navbar {
    gap: 20px;
}
.header .navbarItem {
    color: white;
    position: relative;
    display: flex;
    justify-content: center;
}
.header .navbarItem .dot {
    width: 80%;
    height: 1px;
    border-radius: 12px;
    background-color: #f5f5f5;
    position: absolute;
    bottom: -5px;
    display: none;
}
.header .navbarItem:hover {
    color: #ededed;
    transition: 0.3s ease;
}
.header .navbarItemActive .dot,
.header .navbarItem:hover .dot {
    display: block;
}
.header .registerBtn {
    padding: 8px 22px;
    background-color: #f5f5f5;
    color: var(--main_color);
    border-radius: 7px;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.homepage .heroArea {
    padding: 45px 0;
}
.homepage .heroImage {
    width: max-content;
    height: 350px;
    animation: fly 6s;
}
.homepage .heroImage img {
    height: 100%;
    object-fit: contain;
}
@keyframes fly {
    0% {
        transform: rotateZ(280deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}
.homepage .heroArea h1 {
    letter-spacing: 2px;
    font-family: "Clash-Display";
    font-weight: 700;
    text-transform: uppercase;
    font-size: 46px;
    color: var(--main_color);
    word-spacing: 10px;
}
.homepage .heroArea .subtitle {
    color: gray;
}
.primaryBtn {
    padding: 10px 20px;
    background-color: var(--main_color);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
}
.secondaryBtn {
    padding: 10px 20px;
    color: var(--main_color);
    background-color: white;
    border: 1px solid var(--main_color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
}
.heroBtnsArea {
    gap: 15px;
}
.secondLine {
    padding: 45px 0;
    background-color: #f7f7f7;
}
.secondLine .title {
    font-family: "Clash-Display";
    font-size: 32px;
    font-weight: 600;
    color: var(--main_color);
}
.secondLine .subContent p {
    font-family: "Poppins-Light";
    width: 75%;
    color: gray;
}
.packageBox .boxImage {
    height: 175px;
    position: relative;
}
.packageBox .boxImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    user-select: none;
}
.packageBox .boxBody {
    padding: 15px;
}
.packageBox .boxTitle {
    font-size: 16px;
    font-weight: 600;
}
.packageBox .boxItem {
    font-size: 13px;
    font-family: "Poppins-light";
}
.boxItem .icon img {
    width: 14px;
    height: 14px;
    user-select: none;
}
.boxItem {
    display: flex;
    align-items: start;
    gap: 5px;
}
.packageBox {
    background-color: #fff;
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
        rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
        rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    cursor: pointer;
    margin-bottom: 25px;
}
.packageBox:hover {
    transform: scale(1.1);
    transition: 0.5s ease;
}
.certificateImage {
    width: 100%;
    height: 275px;
}
.certificateImage img {
    width: max-content;
    height: 100%;
    object-fit: contain;
    border-radius: 17px;
}
.thirdLine {
    padding: 60px 0;
}
.certificateAreaTitle {
    font-size: 26px;
    font-weight: 600;
    font-family: "Clash-Display";
    color: var(--main_color);
}
.certificateAreaContent {
    color: gray;
    font-family: "Poppins-Light";
}
.footer {
    padding: 45px 0;
    background-color: var(--main_color);
}
.footer .footerLogoContent {
    font-size: 14px;
    color: white;
    font-family: "Clash-Display";
    margin-bottom: 10px;
    width: 90%;
    padding-top: 5px;
}
.footer .footerMenuTitle {
    font-size: 18px;
    color: white;
    font-family: "Clash-Display";
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 5px;
}
.headerWrapper .logoArea,
.footerLogoArea {
    display: flex;
    width: max-content;
    height: 70px;
}
.headerWrapper .logoArea img,
.footerLogoArea img {
    height: 100%;
    object-fit: contain;
}
.footerMenuItem {
    color: white;
    padding: 5px 0;
}
.footerContactItem {
    gap: 10px;
    margin-bottom: 10px;
    color: white;
}
.footerContactItem .icon i {
    color: white;
    font-size: 16px;
}
.socialMedia {
    gap: 15px;
}
.socialMedia a i {
    color: white;
    font-size: 22px;
}
.aboutPageLeftSide .aboutPageImageWrapper {
    width: 100%;
    height: 350px;
}
.aboutPageLeftSide .aboutPageImageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aboutPageWrapper {
    height: 80vh;
    overflow: hidden;
}
.aboutPageImages {
    overflow-y: scroll;
    height: 80vh;
}
.aboutPageImages::-webkit-scrollbar {
    display: none;
}
.aboutPageContentWrapper {
    padding: 30px 15px;
}
.aboutPageTitle {
    font-size: 26px;
    font-weight: 600;
    color: var(--main_color);
    margin-bottom: 20px;
}
.aboutPageContent {
    font-family: "Poppins-Light";
    font-size: 13px;
}
.contactPageBox {
    margin: 60px 0 !important;
    background-color: white;
    border-radius: 17px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.contactPageMap {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contactPageMap .map {
    border-radius: 17px;
}
.contactBoxBg {
    width: 50%;
    height: 100%;
    background-color: var(--main_color);
    position: absolute;
    right: 0;
    top: 0;
    border-top-right-radius: 17px;
    border-bottom-right-radius: 17px;
}
.contactPageFormTitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--main_color);
}
.contactPageSubtext {
    font-family: "Poppins-Light";
    font-size: 13px;
    color: gray;
}
.formBoxWrapper input,
.contactPageInputs input {
    padding: 10px;
    border: none;
    background-color: #f5f5f5;
    margin-bottom: 10px;
    width: 100%;
    border-radius: 7px;
    outline: none;
}
.contactPageInputs textarea {
    padding: 10px;
    border: none;
    background-color: #f5f5f5;
    margin-bottom: 10px;
    width: 100%;
    height: 125px;
    resize: none;
    border-radius: 7px;
    outline: none;
}
.submitBtn {
    padding: 8px 16px;
    background-color: var(--main_color);
    color: white;
    border-radius: 7px;
    user-select: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    border: none;
}
.contactPageForm {
    margin: 25px 0;
}
.CoursesPage,
.faqArea {
    margin: 45px 0;
    min-height: 55vh;
}
.loginTitle,
.coursesTitle,
.faqAreaTitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--main_color);
    margin-bottom: 20px;
}
.accordion-button:not(.collapsed) {
    background-color: var(--main_color) !important;
    color: white !important;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("../images/icons/arrow-down.svg") !important;
}
.accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, 0.125) !important;
}
.playBtn {
    position: absolute;
}
.LoginPage {
    margin: 45px 0;
    min-height: 50vh;
}
.loginSubtext {
    font-family: "Poppins-Light";
    margin-bottom: 20px;
}
.courseTitle {
    gap: 10px;
    font-size: 18px;
}
.courseSideMenu {
    height: 100%;
    background-color: #f5f5f5;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
.courseSideMenu .sideMenuItem {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
    cursor: pointer;
    user-select: none;
    font-size: 15px;
}
.courseSideMenu .sideMenuItemActive {
    background-color: #bdbdbd;
    color: white;
}
.CoursePage {
    background-color: var(--main_color);
}
.ExamPage {
    margin: 45px 0;
    min-height: 50vh;
}
.questionRadioWrapper {
    gap: 5px;
    user-select: none;
}
.questionRadioWrapper input[type="radio"] {
    margin-top: 3px;
}
.examTitle {
    margin-bottom: 45px;
    font-size: 24px;
    font-weight: 600;
}
.questionDetail {
    padding: 15px;
    background-color: #ededed;
    user-select: none;
}
.questionAnswersWrapper {
    padding: 15px;
    gap: 8px;
    background-color: #f7f7f7;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}
.questionCounter span {
    color: gray;
}
.questionCounter {
    padding: 8px 18px;
    background-color: #f7f7f7;
    color: gray;
    user-select: none;
}
.nextBtn {
    padding: 8px 18px;
    background-color: #ededed;
    color: #3e3e3e;
    cursor: pointer;
    user-select: none;
}

#countdown {
    position: relative;
    height: 120px;
    width: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#countdown-number {
    color: var(--main_color);
    display: inline-block;
    font-size: 18px;
    font-family: "Clash-Display";
    font-weight: 500;
}

svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    transform: rotateY(-180deg) rotateZ(-90deg);
}

svg circle {
    stroke-dasharray: 337px;
    stroke-dashoffset: 0px;
    stroke-linecap: round;
    stroke-width: 5px;
    stroke: var(--main_color);
    fill: none;
    animation: countdown 900s linear infinite forwards;
}

@keyframes countdown {
    from {
        stroke-dashoffset: 0px;
    }
    to {
        stroke-dashoffset: 337px;
    }
}

.countDownWrapper {
    background-color: #f7f7f7;
    height: 100%;
}
.cancelBtn {
    padding: 8px 16px;
    color: white;
    border-radius: 5px;
    background-color: crimson;
    cursor: pointer;
    user-select: none;
}
.answerBox {
    width: 36px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ededed;
    border-radius: 3px;
    user-select: none;
}
.examselectedAnswers {
    gap: 5px;
    row-gap: 10px;
}
.answerBoxSelected {
    background-color: var(--main_color);
    color: white;
}
.modalQuestionIcon {
    font-size: 64px;
    color: var(--main_color);
    margin-bottom: 25px;
}
.modalContentWrapper .modalTitle {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}
.modalContentWrapper .modalContent {
    color: gray;
    text-align: center;
}
.userPanelRow {
    padding: 45px 0;
}
.userPanelProfile {
    padding: 15px;
    gap: 10px;
    border-bottom: 1px solid #e1e1e1;
}
.profileName {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 500;
}
.userPanelMenuItem {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--main_color);
}
.userPanelMenuItem .icon {
    width: 24px;
    height: 24px;
}
.userPanelMenuItem .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.userPanelSideMenu {
    min-height: 50vh;
    background-color: #f7f7f7;
    border: 1px solid #e1e1e1;
}
.userPanelTitle {
    padding: 10px 15px 0 0;
    font-size: 20px;
    font-weight: 600;
}
.userPanelFormWrapper .userPanelInputWrapper input {
    width: 100%;
    height: 45px;
    border: none;
    background-color: #f5f5f5;
    border-radius: 7px;
    padding: 10px;
    margin-bottom: 15px;
    outline-color: var(--main_color);
}
.userPanelFormWrapper .userPanelInputWrapper label {
    font-weight: 600;
}
.userPanelMenuItemActive {
    border-left: 3px solid var(--main_color);
}
.tableCustom thead {
    background-color: var(--main_color);
}
.tableCustom th {
    color: white;
}
.takeCertificate {
    color: var(--main_color);
    background-color: transparent;
    border: 1px solid var(--main_color);
    padding: 5px;
    border-radius: 7px;
    cursor: pointer;
    user-select: none;
}
.tableCustom td {
    vertical-align: middle;
}
.headerBtns {
    gap: 10px;
}
.goExamBtn {
    padding: 10px;
    background-color: green;
    color: white;
    cursor: pointer;
    user-select: none;
    text-align: center;
    font-size: 16px;
    border-bottom-right-radius: 7px;
}
.courseBannerArea {
    height: 375px;
}
.courseBannerArea img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) blur(1px);
}
.courseDetailTitle {
    font-size: 32px;
    font-weight: 600;
    color: white;
}
.courseDetailsWrapper {
    position: absolute;
    bottom: 25px;
    left: 25px;
}
.courseDetailContent {
    color: #d5d5d5d5;
}
.courseDetailContentTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
.coursePriceBox{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    z-index: 2;
    margin-top: -125px;
}
.coursePriceBox:hover{
    transform: scale(1.1);
    transition: 0.5s ease;
}
.coursePriceBox .boxImage {
    height: 200px;
}
.coursePriceBox .boxImage img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.coursePriceBox .boxBody {
    padding: 15px;
}
.coursePriceBox .boxBody .price{
    font-size: 18px;
    font-weight: 600;
}
.boxCourseDetails{
    font-size: 13px;
    font-family: "Poppins-light";
}
.courseDetailCustomList .listItem{
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
}
.courseDetailCustomList .listItem .icon{
    width: 18px;
    height: 18px;
}
.courseDetailCustomList .listItem .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.succesModalWrapper .modalIcon{
    width: 64px;
    height: 64px;
}
.succesModalWrapper .modalIcon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.succesModalTitle{
    font-size: 20px;
    font-weight: 600;
}
.succesModalContent{
    font-size: 16px;
}
.succesModalContent span{
    font-weight: 600;
}
.mobileMenuBtn i{
    font-size: 24px;
    color: white;
}
.mobileMenu{
    width: 100%!important;
    background-color: var(--main_color)!important;
}
.mobileMenuItem{
    text-align: center;
    padding: 5px 10px;
    color: white;
    font-size: 18px;
}
.menuCloseBtn i{
    color: white;
    font-size: 24px;
}
.modalIBANWrapper{
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 7px;
    border: 1px solid #c1c1c1;
}
.modalIBANWrapper .iban{
    gap: 5px;
    font-weight: 600;
    font-size: 15px;
}
.modalIBANWrapper .iban .icon{
    cursor: pointer;
}
.bottomFooter{
    padding: 5px 0;
    background-color: #f5f5f5;
}
.bottomFooter .copyright{
    color: var(--main_color);
}
/* Responsive Area */
@media(max-width:991px)
{
    .homepage .heroImage{
        margin-top: 75px;
    }
    .certificateImage {
        margin-bottom: 50px;
    }
    .coursePriceBox{
        margin-top: 25px;
    }
    .courseDetailTitle{
        font-size: 24px;
    }
    .courseDetailContent{
        font-size: 12px;
    }
    .contactPageMap .map,
    .contactBoxBg{
        width: 100%;
    }
    .mapWrapper{
        padding: 25px;
    }
    .countDownWrapper {
        margin-top: 50px;
    }
}

@media(max-width:575px){
    .aboutPageWrapper {
        height: max-content;
    }
}
