* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
::placeholder {
    font-style: italic;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
body {
    font-family: "Roboto", sans-serif;
}
ul {
    list-style: none;
}
.btn {
    outline: 0;
    border: 1px solid;
    display: block;
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
}
.btn.primary {
    background-color: #134a84;
    color: #fff;
    border-color: #134a84;
}
.btn.primary:hover {
    background-color: #fff;
    color: #134a84;
}
.btn.secondry {
    border-color: #134a84;
    background-color: #fff;
    color: #134a84;
}
.btn.secondry:hover {
    background-color: #134a84;
    color: #fff;
}
.btn.ternary {
    background-color: #823095;
    color: #fff;
}
.btn.ternary:hover {
    background-color: #fff;
    color: #823095;
}
.w-100 {
    width: 100%;
}
.mntContainer {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 15px;
    width: 80%;
}
.pt-60 {
    padding-top: 60px;
}
.pt-80 {
    padding-top: 80px;
}
.subHeading {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 35px;
}
.playIcon {
    position: relative;
}
.playIcon:after {
    position: absolute;
    content: "";
    height: 38px;
    width: 38px;
    display: block;
    background-image: url(../images/playIcon.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.btnWrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 15px;
}
.btnWrap .btn {
    min-width: 28%;
    padding: 18px 50px;
    font-size: 24px;
}
@media (max-width: 1400px) {
    .subHeading {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .mntContainer {
        width: 90%;
    }
    .btnWrap .btn {
        min-width: 22%;
        padding: 10px 50px;
        font-size: 18px;
    }
}
@media (max-width: 1200px) {
    .subHeading {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .pt-60 {
        padding-top: 30px;
    }
    .pt-80 {
        padding-top: 40px;
    }
    .mntContainer {
        width: 100%;
    }
}
header {
    max-width: 1450px;
    margin: 0 auto;
    padding: 11px 20px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #c4c4c4;
}
header .mainMenu {
    display: flex;
    margin: 0 auto;
    gap: 25px;
}
header .mainMenu .menuItem > a {
    color: #134a84;
    text-decoration: none;
    font-size: 20px;
}
header .mainMenu .menuItem.active a {
    color: #eb983e;
}
header .mainMenu .menuItem:hover a {
    text-decoration: underline;
}
header .secondryMenu {
    display: flex;
    align-items: center;
    position: relative;
}
header .secondryMenu .notificationWrapper {
    position: relative;
    margin-right: 50px;
}
header .secondryMenu .notificationWrapper .notiIcon {
    cursor: pointer;
}
header .secondryMenu .notificationWrapper .notifications {
    position: absolute;
    width: 90vw;
    max-width: 33.33vw;
    background: #fff;
    padding: 27px 37px;
    top: 57px;
    transform: translateX(-50%);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border-radius: 0px 0px 15px 15px;
    display: none;
    z-index: 9;
}
header .secondryMenu .notificationWrapper .notifications .notiList li {
    padding: 20px 0;
    border-bottom: 1px solid #c4c4c4;
}
header .secondryMenu .notificationWrapper .notifications .notiList li a {
    color: #1f1f1f;
}
header
    .secondryMenu
    .notificationWrapper
    .notifications
    .notiList
    li:first-child {
    padding-top: 0;
}
header
    .secondryMenu
    .notificationWrapper
    .notifications
    .notiList
    li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
header .secondryMenu .notificationWrapper .notifications .notiList li.unread a {
    color: #134a84;
}
header .secondryMenu .notificationWrapper .notifications .notiList li:hover a {
    text-decoration: underline;
}
header .secondryMenu .profileInfo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
header .secondryMenu .profileInfo .profileImg {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-block;
}
header .secondryMenu .profileInfo .userName {
    font-size: 20px;
    color: #134a84;
}
header .secondryMenu .profileInfo .userName img {
    margin-left: 5px;
}
header .profDropDown {
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 20px 20px 20px 10px;
    text-align: right;
    width: 100%;
    max-width: 411px;
    min-width: 320px;
    right: -10px;
    border-radius: 0 0 15px 15px;
    z-index: 2;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    display: none;
}
header .profDropDown .profDdWrap > span,
header .profDropDown .profDdWrap a,
header .profDropDown .profDdWrap button {
    display: block;
    margin-bottom: 5px;
}
header .profDropDown .profDdWrap .name {
    font-size: 28px;
    font-weight: 700;
}
header .profDropDown .profDdWrap .email,
header .profDropDown .profDdWrap .points {
    font-size: 18px;
}
header .profDropDown .profDdWrap .points {
    padding: 1px 10px;
    background-color: #fbf2fd;
    color: #823095;
    display: inline-block;
    margin-bottom: 20px;
}
header .profDropDown .profDdWrap .points span,
header .profDropDown .profDdWrap .points sup {
    font-weight: 600;
}
header .profDropDown .profDdWrap .btn {
    width: 300px;
    max-width: 85%;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}
header .profDropDown .profDdWrap a:not(.btn) {
    color: #134a84;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}
.mobileMenu,
.mobileScrollable {
    display: none;
}
.loggedOutMenu {
    margin-left: auto;
    display: flex;
}
.loggedOutMenu .aboutMenuWrap {
    position: relative;
    margin-right: 50px;
    display: flex;
    align-items: center;
}
.loggedOutMenu .aboutMenuWrap .aboutOpener {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}
.loggedOutMenu .aboutMenuWrap .aboutOpener:after {
    position: absolute;
    content: "";
    height: 6px;
    width: 6px;
    border: 1px solid #134a84;
    transform: rotate(45deg);
    right: 2px;
    border-top: 0;
    border-left: 0;
    top: 5px;
    transition: transform 0.5s;
}
.loggedOutMenu .aboutMenuWrap .aboutOpener.active:after {
    top: 9px;
    transform: rotate(-135deg);
}
.loggedOutMenu .aboutMenuWrap .aboutSubMenu {
    position: absolute;
    display: none;
    z-index: 9;
    top: 57px;
    right: 0;
    width: 300px;
    background: #fff;
    padding: 5px 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border-radius: 0px 0px 15px 15px;
}
.loggedOutMenu .aboutMenuWrap .aboutSubMenu > *:not(:last-child) {
    margin-bottom: 5px;
    display: block;
    padding-bottom: 5px;
    border-bottom: 1px solid #c4c4c4;
}
.loggedOutMenu .aboutMenuWrap .aboutSubMenu > span a {
    color: #134a84;
}
.loggedOutMenu .aboutMenuWrap .aboutSubMenu > span a:hover {
    text-decoration: underline;
}
@media (max-width: 1400px) {
    header .mainMenu {
        gap: 15px;
    }
    header .mainMenu .menuItem > a {
        font-size: 18px;
    }
    header .secondryMenu .profileInfo .profileImg {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        border: 0;
    }
    header .secondryMenu .profileInfo .userName {
        font-size: 16px;
    }
    header .secondryMenu .notificationWrapper {
        margin-right: 20px;
    }
    header .secondryMenu .notificationWrapper .notiIcon img {
        max-width: 22px;
    }
}
@media (max-width: 1200px) {
    body {
        padding-bottom: 65px;
    }
    header .mainMenu {
        display: none;
    }
    header .secondryMenu {
        margin-left: auto;
    }
    .mobileMenu {
        display: flex;
        border-top: 1px solid #c4c4c4;
        position: fixed;
        width: 100%;
        background: #fff;
        bottom: 0;
        z-index: 2;
    }
    .mobileMenu ul {
        width: 100%;
        display: flex;
        padding: 10px 20px;
        justify-content: space-between;
    }
    .mobileMenu ul li {
        display: flex;
    }
    .mobileMenu ul li a {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mobileMenu ul li a svg {
        width: 25px;
        display: block;
        margin-bottom: 7px;
        max-height: 25px;
    }
    .mobileMenu ul li a svg path {
        fill: #134a84;
    }
    .mobileMenu ul li.active a {
        color: #eb983e;
    }
    .mobileMenu ul li.active svg path {
        fill: #eb983e;
    }
    .mobileScrollable {
        display: flex;
        position: relative;
    }
    .mobileScrollable .scrollmenu {
        background: #fff;
        display: flex;
        justify-content: space-between;
        padding: 10px;
        width: 100%;
        box-shadow: 0 8px 6px -6px #ddd;
    }
    .mobileScrollable .scrollmenu.active > img {
        transform: rotate(180deg);
    }
    .mobileScrollable ul {
        position: absolute;
        display: none;
        width: 100%;
        top: 100%;
        background: #fff;
        z-index: 2;
        padding: 10px;
    }
    .mobileScrollable ul li {
        padding: 8px 0;
        border-bottom: 1px solid #c4c4c4;
    }
    .mobileScrollable ul li:last-child {
        border-bottom: 0;
    }
    .expertMentors .expertsWrap {
        padding: 35px 0 30px;
        margin-bottom: 30px;
    }
}
@media (max-width: 600px) {
    .mobileMenu ul {
        padding: 10px 5px;
    }
    .mobileMenu ul li a {
        font-size: 12px;
    }

    header .secondryMenu .profileInfo .userName {
        display: flex;
    }
    header .secondryMenu .notificationWrapper .notifications {
        max-width: 90vw;
        top: 44px;
        transform: translateX(-56%);
    }
    header .secondryMenu .notificationWrapper .notiIcon img {
        max-width: 18px;
    }
    .loggedOutMenu .aboutMenuWrap {
        margin-right: 20px;
    }
}
footer .btnWrap {
    margin-bottom: 60px;
}
footer .btnWrap .btn {
    border-radius: 0;
    width: 100%;
}
footer .logosFooter .mntContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .logosFooter .mntContainer .smallLogos {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .btnWrap {
    padding: 0;
}
@media (max-width: 1400px) {
    footer .logosFooter .mntContainer .smallLogos {
        margin-bottom: 10px;
    }
    footer .logosFooter .mntContainer .smallLogos img {
        max-width: 180px;
    }
}
@media (max-width: 600px) {
    footer .logosFooter .mntContainer .smallLogos {
        margin-top: 15px;
    }
    footer .logosFooter .mntContainer .smallLogos img {
        max-width: 120px;
    }
    footer .btnWrap {
        margin-bottom: 30px;
    }
}
.poweredBy {
    background-color: #2491bf;
    padding: 15px;
}
.poweredBy .mntContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.poweredBy .mntContainer > div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.certificatePage h1 {
    font-size: 36px;
    margin-bottom: 5px;
}
.certificatePage .mainDesc {
    font-size: 20px;
    padding-bottom: 45px;
}
.certificatePage .certificateWrap {
    display: flex;
    gap: 45px;
    margin-bottom: 45px;
}
.certificatePage .certificateWrap .certificateImage {
    width: 60%;
}
.certificatePage .certificateWrap .staticCard {
    width: 40%;
    border-radius: 10px;
    border: 1px solid #bdedfc;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
}
.certificatePage .certificateWrap .staticCard .cardContent {
    padding: 30px 20px 20px;
}
.certificatePage .certificateWrap .staticCard .cardContent > p {
    color: #004d8d;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}
.certificatePage .certificateWrap .staticCard .cardContent .listHeading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}
.certificatePage .certificateWrap .staticCard .cardContent ul {
    margin-bottom: 30px;
}
.certificatePage .certificateWrap .staticCard .cardContent ul li {
    margin-bottom: 10px;
    font-size: 20px;
    position: relative;
    padding-left: 23px;
}
.certificatePage .certificateWrap .staticCard .cardContent ul li:after {
    content: "";
    height: 10px;
    width: 10px;
    display: block;
    background-color: #004d8d;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}
.certificatePage .certificateWrap .staticCard .cardContent .btn {
    font-size: 24px;
    font-weight: bold;
    padding: 15px 10px;
}
.lowerInfoCertificate {
    border: 1px solid #bdedfc;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    padding: 23px 0;
}
.lowerInfoCertificate .infoHolder {
    display: flex;
}
.lowerInfoCertificate .infoHolder > div {
    border-right: 1px solid #b6e4f8;
    padding: 0 23px;
    justify-content: center;
    display: flex;
    align-items: center;
}
.lowerInfoCertificate .infoHolder > div:last-child {
    border: 0;
}
.lowerInfoCertificate .infoHolder > div:last-child p {
    font-size: 23px;
    font-weight: bold;
    color: #134a84;
}
.lowerInfoCertificate .infoHolder > div:last-child p a {
    color: inherit;
    text-decoration: underline;
}
.lowerInfoCertificate .infoHolder .dateName {
    display: flex;
    width: 30%;
    align-items: center;
    gap: 15px;
}
.lowerInfoCertificate .infoHolder .dateName .nameText .name {
    font-size: 20px;
    font-weight: bold;
    color: #134a84;
}
.lowerInfoCertificate .infoHolder .dateName .nameText .dateValue {
    font-size: 20px;
    margin-top: 5px;
    font-weight: bold;
}
.lowerInfoCertificate .infoHolder .lastAction {
    width: 30%;
}
.lowerInfoCertificate .infoHolder .infoMiddle {
    width: 40%;
}
.lowerInfoCertificate .infoHolder .infoMiddle p {
    font-size: 20px;
    font-weight: bold;
    color: #134a84;
}
@media (max-width: 1600px) {
    .certificatePage .certificateWrap {
        gap: 20px;
    }
    .certificatePage .certificateWrap .staticCard .cardContent > p {
        font-size: 16px;
    }
    .certificatePage .certificateWrap .staticCard .cardContent .listHeading {
        font-size: 16px;
    }
    .certificatePage .certificateWrap .staticCard .cardContent ul li {
        font-size: 16px;
    }
    .certificatePage .certificateWrap .staticCard .cardContent .btn {
        font-size: 18px;
    }
    .lowerInfoCertificate .infoHolder .infoMiddle p {
        font-size: 16px;
    }
    .lowerInfoCertificate .infoHolder .lastAction p {
        display: flex;
        gap: 10px;
        align-items: center;
        font-size: 18px !important;
    }
    .lowerInfoCertificate .infoHolder .dateName .nameText .dateValue,
    .lowerInfoCertificate .infoHolder .dateName .nameText .name {
        font-size: 16px;
    }
}
@media (max-width: 1045px) {
    .certificatePage .certificateWrap {
        gap: 15px;
    }
    .certificatePage .certificateWrap .staticCard .cardContent {
        padding: 20px 10px 10px;
    }
    .certificatePage .certificateWrap .staticCard .cardContent > p,
    .certificatePage .certificateWrap .staticCard .cardContent ul {
        margin-bottom: 15px;
    }
    .lowerInfoCertificate .infoHolder .dateName img {
        max-width: 65px;
    }
    .lowerInfoCertificate .infoHolder > div {
        padding: 0 15px;
    }
}
@media (max-width: 900px) {
    .certificatePage .certificateWrap {
        flex-direction: column;
    }
    .certificatePage .certificateWrap > div {
        width: 100% !important;
    }
    .certificatePage .certificateWrap .staticCard {
        width: 70% !important;
        margin: 0 auto;
    }
    .lowerInfoCertificate {
        padding: 0;
    }
    .lowerInfoCertificate .infoHolder {
        flex-direction: column;
    }
    .lowerInfoCertificate .infoHolder > div {
        width: 100% !important;
        border-bottom: 1px solid #b6e4f8;
        border-right: 0;
        padding: 15px 10px;
        justify-content: flex-start;
    }
}
@media (max-width: 600px) {
    .certificatePage .certificateWrap .staticCard {
        width: 100% !important;
    }

    .loggedOutMenu {
        font-size: 14px;
    }
    .loggedOutMenu.btn {
        padding: 8px;
    }
    .certificatePage h1 {
        font-size: 22px;
    }
    .certificatePage.mainDesc {
        font-size: 16 px;
        padding-bottom: 30px;
        padding-top: 20px;
    }
    header {
        padding: 11px 10px;
    }
    header a img.logo {
        max-width: 140px;
    }
    .certificatePage .certificateWrap .staticCard .cardContent .btn {
        font-size: 16px;
    }
    .lowerInfoCertificate .infoHolder > div:last-child p a {
        font-size: 16px;
    }
} /*# sourceMappingURL=master.css.map */
