@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

.redBtn {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    background-color: #A53336;
    border-radius: 33px;
    -webkit-box-shadow: -5px 4px 15px rgba(165, 51, 54, 0.2);
    box-shadow: -5px 4px 15px rgba(165, 51, 54, 0.2);
    border: none;
    font-family: "MuseoAZ";
    height: 72px;
    padding: 0 55px;
}

.redBtn:hover {
    background-color: #7E2729;
}

.darkBlueBtn {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    background-color: #17365E;
    border-radius: 33px;
    -webkit-box-shadow: -5px 4px 15px rgba(13, 30, 52, 0.2);
    box-shadow: -5px 4px 15px rgba(13, 30, 52, 0.2);
    border: none;
    font-family: "MuseoAZ";
    height: 72px;
    padding: 0 55px;
}

.darkBlueBtn:hover {
    background-color: #2C66AE;
}

.whiteBlueBtn {
    color: #17365E;
    font-weight: 600;
    font-size: 15px;
    background-color: #fff;
    border-radius: 33px;
    border: none;
    height: 39px;
    padding: 0 39px;
    line-height: 24px;
    text-transform: uppercase;
}

.whiteBlueBtn:hover {
    color: #A53336;
}

.transparentBlueBtn {
    color: #17365E;
    font-weight: 600;
    font-size: 15px;
    background-color: transparent;
    border-radius: 33px;
    border: 1px solid #17365E;
    height: 39px;
    padding: 0 39px;
    line-height: 24px;
    text-transform: uppercase;
}

.transparentBlueBtn:hover {
    background-color: #17365E;
    color: #fff;
}

header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    background-color: rgba(23, 54, 94, 0.9);
    width: 100%;
    padding: 0 100px;
    height: 124px;
    z-index: 9999;
}

header .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header figure {
    width: 234px;
    height: 65px;
}

header figure a {
    height: 100%;
}

header figure img {
    height: 100%;
    image-rendering: -webkit-optimize-contrast;
}

header nav {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

header nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 124px;
}

header nav ul li:not(:first-child) {
    margin-left: 32px;
}

header nav ul li:last-child {
    margin-left: 24px;
}

header nav ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.03em;
}

header nav ul li.search {
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
    margin-left: 29px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

header nav ul li.search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    width: 100%;
    height: 31px;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
    margin-left: 41px;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

header nav ul li.search form input {
    position: absolute;
    border-radius: 140px;
    outline: none;
    border: none;
    height: 100%;
    padding-left: 20px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(45px);
    backdrop-filter: blur(45px);
    width: 0;
    opacity: 0;
    -webkit-transition: width 0.5s, opacity 0.5s;
    transition: width 0.5s, opacity 0.5s;
}

header nav ul li.search form input::-webkit-input-placeholder {
    color: #fff;
}

header nav ul li.search form input:-ms-input-placeholder {
    color: #fff;
}

header nav ul li.search form input::-ms-input-placeholder {
    color: #fff;
}

header nav ul li.search form input::placeholder {
    color: #fff;
}

header nav ul li.search form .show-input {
    width: 377px;
    opacity: 1;
}

header nav ul li.search form button {
    width: 41px;
    height: 31px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: 140px;
    border: none;
    position: absolute;
    right: 0;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header nav ul li.search form .show-button {
    background: transparent;
}

header nav ul li.search:hover::after {
    content: none;
}

header nav ul li.search .search-result {
    width: 100%;
    padding-top: 13px;
    padding-left: 20px;
    padding-bottom: 20px;
    position: absolute;
    top: 84px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(45px);
    backdrop-filter: blur(45px);
    display: none;
}

header nav ul li.search .search-result a {
    padding-bottom: 13px;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #17365E;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-transform: none;
}

header nav ul li.search .search-result a:hover {
    color: #A53336;
}

header nav ul li.search .search-result a:last-child {
    padding-bottom: 19px;
}

header nav ul li.search .search-result h5 a {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    letter-spacing: 0.03em;
    text-transform: none;
}

header nav ul li.search .show-search-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

header nav ul li.lang {
    color: #fff;
}

header nav ul li.lang:hover a {
    color: unset;
}

header nav ul li.lang:hover span:hover a {
    color: #CD4F52;
}

header nav ul li.lang:hover::after {
    content: none;
}

header nav ul li.lang span:not(:last-child) {
    position: relative;
}

header nav ul li.lang span:not(:last-child)::after {
    content: "";
    height: 16px;
    width: 2px;
    position: absolute;
    background-color: #fff;
    bottom: 0;
    margin-left: 5px;
}

header nav ul li.lang span:first-child {
    margin-right: 5px;
}

header nav ul li.lang span:last-child {
    margin-left: 7px;
}

header nav ul li.lang span a {
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    line-height: 17px;
}

header nav ul li:hover a {
    color: #CD4F52;
}

header nav ul li:hover::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: #CD4F52;
    width: 12px;
    height: 12px;
    top: 85px;
}

header nav ul .scroll-li {
    height: 70px;
}

header nav ul .scroll-li::after {
    content: none !important;
}

header nav ul .scroll-li.learning ul {
    top: 70px;
}

header nav ul .hidden-li {
    display: none;
}

header nav ul .width-li {
    width: 377px !important;
}

header nav .learning {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

header nav .learning ul {
    display: none;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fcf8f9;
    -webkit-box-shadow: 4px 4px 15px rgba(29, 55, 90, 0.2);
    box-shadow: 4px 4px 15px rgba(29, 55, 90, 0.2);
    top: 124px;
    padding: 27px 0 20px 30px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    left: -20px;
}

header nav .learning ul li {
    display: block;
    margin-left: 0;
    width: 265px;
    height: auto;
    margin-bottom: 14px;
}

header nav .learning ul li.active::before {
    content: url("/assets/icons/sub-menu-hover.svg");
    position: absolute;
    right: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

header nav .learning ul li a {
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: #1d4271;
    display: block;
    max-width: 90%;
}

header nav .learning ul li:hover a {
    color: #A53336;
}

header nav .learning ul li:hover::after {
    content: none;
}

header nav .learning ul li:hover::before {
    content: url("/assets/icons/sub-menu-hover.svg");
    position: absolute;
    right: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

header nav .learning ul li div {
    display: none;
    position: absolute;
    right: -20px;
    top: -151px;
}

header nav .learning ul li div ul li a {
    color: #1d4271 !important;
}

header nav .learning ul li div ul li:hover a {
    color: #A53336 !important;
}

header nav .learning:hover ul {
    display: block;
}

header nav .learning:hover ul li:hover div {
    display: block;
}

header nav .learning:hover ul li:hover div ul {
    top: 124px;
}

header .mobile-nav {
    display: none;
}

header .mobile-nav-list {
    display: none;
}

@media (max-width: 1200px) {
    header {
        opacity: 1 !important;
        background-color: #17365e;
    }
    header .desktop-nav {
        display: none;
    }
    header .mobile-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    header .mobile-nav-list {
        display: block;
        background-color: #17365e;
        position: absolute;
        width: 100%;
        height: calc(100vh - 124px);
        top: 123px;
        right: 100%;
        -webkit-transition: right 0.5s;
        transition: right 0.5s;
    }
    header .mobile-nav-list .mobile-nav-list-body {
        /* width */
        height: 80%;
        overflow-x: hidden !important;
        overflow: scroll;
        /* Track */
        /* Handle */
    }
    header .mobile-nav-list .mobile-nav-list-body::-webkit-scrollbar {
        width: 5px;
        left: -20px;
    }
    header .mobile-nav-list .mobile-nav-list-body::-webkit-scrollbar-track {
        background: #6894ca;
        border-radius: 10px;
    }
    header .mobile-nav-list .mobile-nav-list-body::-webkit-scrollbar-thumb {
        background: #A53336;
        border-radius: 10px;
        width: 3px;
    }
    header .mobile-nav-list .mobile-nav-list-body ul li.sub-menu figure {
        margin-left: 13px;
        height: 10px;
        width: 10px;
        display: inline-block;
    }
    header .mobile-nav-list .mobile-nav-list-body ul li.sub-menu figure img {
        height: 100%;
    }
    header .mobile-nav-list .mobile-nav-list-body ul li.sub-menu .mobile-sub-list {
        padding-top: 25px;
        display: none;
    }
    header .mobile-nav-list .mobile-nav-list-body ul li.sub-menu .mobile-sub-list h4 {
        font-weight: 600;
        font-size: 17px;
        line-height: 20px;
        color: #fff;
    }
    header .mobile-nav-list .mobile-nav-list-body ul li.sub-menu .mobile-sub-list li {
        margin-bottom: 0 !important;
        margin-left: 0 !important;
    }
    header .mobile-nav-list .mobile-nav-list-body ul li.sub-menu .mobile-sub-list li a {
        font-weight: normal;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.03em;
        color: #fff;
        text-transform: unset;
    }
    header .mobile-nav-list .mobile-nav-list-body ul li.sub-menu .mobile-sub-list li:first-child {
        margin-top: 9px;
    }
    header .mobile-nav-list .mobile-nav-list-body ul li.sub-menu .mobile-sub-list li:not(:first-child) {
        margin-top: 20px;
    }
    header .mobile-nav-list .mobile-nav-list-body ul li.sub-menu .show-mobile-sub-list {
        display: block;
    }
    header .mobile-nav-list .mobile-nav-list-footer {
        padding-top: 20px;
    }
    header .mobile-nav-list .mobile-nav-list-footer ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    header .mobile-nav-list .mobile-nav-list-footer ul li {
        margin-bottom: 0 !important;
    }
    header .mobile-nav-list .mobile-nav-list-footer ul li:first-child {
        margin-left: 0 !important;
    }
    header .mobile-nav-list .mobile-nav-list-footer ul li:not(:first-child) {
        margin-left: 50px !important;
    }
    header .mobile-nav-list .mobile-nav-list-footer ul li figure {
        width: 26px;
        height: 26px;
    }
    header .mobile-nav-list .mobile-nav-list-footer .lang {
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 23px;
    }
    header .mobile-nav-list .mobile-nav-list-footer .lang span a {
        font-weight: normal;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 0.05em;
        color: #fff;
    }
    header .mobile-nav-list .mobile-nav-list-footer .lang span:first-child {
        margin-right: 10px;
    }
    header .mobile-nav-list .mobile-nav-list-footer .lang span:last-child {
        margin-left: 10px;
    }
    header .mobile-nav-list ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    header .mobile-nav-list ul .mobile-search {
        width: 100%;
        padding-right: 52px;
        margin-bottom: 27px !important;
    }
    header .mobile-nav-list ul .mobile-search form {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
    header .mobile-nav-list ul .mobile-search form input {
        background: rgba(255, 255, 255, 0.3);
        -webkit-backdrop-filter: blur(30px);
        backdrop-filter: blur(30px);
        border-radius: 140px;
        border: none;
        outline: none;
        width: 100%;
        height: 50px;
        padding-left: 20px;
        color: #fff;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        padding-right: 35px;
    }
    header .mobile-nav-list ul .mobile-search form button {
        position: absolute;
        right: 16px;
        background: none;
        border: none;
        outline: none;
    }
    header .mobile-nav-list ul .mobile-search-result {
        width: 100%;
        margin-top: 6px;
        padding-left: 20px;
        padding-bottom: 11px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 15px;
        -webkit-backdrop-filter: blur(45px);
        backdrop-filter: blur(45px);
        display: none;
    }
    header .mobile-nav-list ul .mobile-search-result h4 {
        padding-bottom: 13px;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        color: #17365E;
        letter-spacing: 0.03em;
    }
    header .mobile-nav-list ul .mobile-search-result h4:last-child {
        padding-bottom: 19px;
    }
    header .mobile-nav-list ul .mobile-search-result h5 a {
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        color: #fff;
        letter-spacing: 0.03em;
        text-transform: none;
    }
    header .mobile-nav-list ul .mobile-show-search-result {
        display: block;
    }
    header .mobile-nav-list ul li {
        height: auto;
        display: block;
        margin-left: 26px !important;
    }
    header .mobile-nav-list ul li::after {
        content: none !important;
    }
    header .mobile-nav-list ul li:not(:last-child) {
        height: auto;
        margin-bottom: 50px;
    }
    header .mobile-nav-list-show {
        right: 0;
    }
}

header li.active li {
    position: relative;
}

header li.active li:hover::after {
    content: "" !important;
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #a53336;
    border-radius: 50%;
    top: 8px;
    left: -16px;
}

header li.active li::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #a53336;
    border-radius: 50%;
    top: 8px;
    left: -16px;
}

@media (max-width: 480px) {
    header figure {
        -webkit-box-flex: 2;
        -ms-flex: 2;
        flex: 2;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 25px;
    }
    header figure {
        height: 43px;
    }
    header figure img {
        height: 100%;
    }
}

footer {
    background-color: #17365E;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .container {
    padding-top: 72px;
    padding-bottom: 18px;
}

footer .container .footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 47px;
}

footer .container .footer-top figure {
    height: 65px;
}

footer .container .footer-top figure img {
    height: 100%;
    image-rendering: -webkit-optimize-contrast;
}

footer .container .footer-top form label {
    display: block;
    font-size: 17px;
    line-height: 21px;
    color: #fff;
    margin-bottom: 10px;
}

footer .container .footer-top form div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

footer .container .footer-top form div input {
    height: 43px;
    width: 360px;
    background: #F6F8FB;
    -webkit-box-shadow: -5px 4px 20px rgba(13, 30, 52, 0.3);
    box-shadow: -5px 4px 20px rgba(13, 30, 52, 0.3);
    box-shadow: -5px 4px 20px rgba(13, 30, 52, 0.3);
    border-radius: 15px;
    border: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #0D1E34;
    padding-left: 22px;
    outline: none;
}

footer .container .footer-top form div button {
    background-color: #2C66AE;
    border: none;
    border-radius: 50%;
    width: 43px;
    height: 43px;
    margin-left: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .container .footer-body .footer-quick-link-mob {
    display: none;
}

footer .container .footer-body .footer-quick-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .container .footer-body .footer-quick-links .footer-quick-link {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 18%;
    flex: 1 1 18%;
}

footer .container .footer-body .footer-quick-links .footer-quick-link:nth-child(4) {
    margin-left: 35px;
}

footer .container .footer-body .footer-quick-links .footer-quick-link:last-child h4 {
    margin-left: 15px;
}

footer .container .footer-body .footer-quick-links .footer-quick-link h4 {
    margin-bottom: 18px;
}

footer .container .footer-body .footer-quick-links .footer-quick-link h4 a {
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
}

footer .container .footer-body .footer-quick-links .footer-quick-link ul li {
    line-height: 25px;
    margin-bottom: 10px;
}

footer .container .footer-body .footer-quick-links .footer-quick-link ul li a {
    font-size: 14px;
    color: #FFFFFF;
}

footer .container .footer-body .footer-quick-links .footer-quick-link a:hover {
    color: #CD4F52;
}

footer .container .footer-body .footer-quick-links .footer-quick-link .phone-list,
footer .container .footer-body .footer-quick-links .footer-quick-link .head-office,
footer .container .footer-body .footer-quick-links .footer-quick-link .guzdak,
footer .container .footer-body .footer-quick-links .footer-quick-link .email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

footer .container .footer-body .footer-quick-links .footer-quick-link .phone-list figure,
footer .container .footer-body .footer-quick-links .footer-quick-link .head-office figure,
footer .container .footer-body .footer-quick-links .footer-quick-link .guzdak figure,
footer .container .footer-body .footer-quick-links .footer-quick-link .email figure {
    margin-right: 5px;
}

footer .container .footer-body .footer-quick-links .footer-quick-link .phone-list ul li,
footer .container .footer-body .footer-quick-links .footer-quick-link .head-office ul li,
footer .container .footer-body .footer-quick-links .footer-quick-link .guzdak ul li,
footer .container .footer-body .footer-quick-links .footer-quick-link .email ul li {
    margin-bottom: 5px;
}

footer .container .footer-body .footer-quick-links .footer-quick-link .phone-list ul li span,
footer .container .footer-body .footer-quick-links .footer-quick-link .head-office ul li span,
footer .container .footer-body .footer-quick-links .footer-quick-link .guzdak ul li span,
footer .container .footer-body .footer-quick-links .footer-quick-link .email ul li span {
    font-weight: 600;
}

footer .container .footer-body .footer-quick-links .footer-quick-link .guzdak {
    margin-left: 15px;
}

footer .container .footer-body .footer-quick-links .footer-quick-link .social {
    margin-left: 15px;
}

footer .container .footer-body .footer-quick-links .footer-quick-link .social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .container .footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer .container .footer-bottom figure {
    display: none;
}

footer .container .footer-bottom p {
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
}

footer .container .footer-bottom p:last-child:hover {
    color: #CD4F52 !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

footer .container .footer-bottom p:last-child:hover span a {
    color: #CD4F52;
}

footer .container .footer-bottom span a {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    footer .container {
        padding-bottom: 44px;
    }
    footer .container .footer-top figure {
        display: none;
    }
    footer .container .footer-top form {
        width: 100%;
    }
    footer .container .footer-top form > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    footer .container .footer-top form > div input {
        width: 87% !important;
    }
    footer .container .footer-body .footer-quick-links {
        display: none !important;
    }
    footer .container .footer-body .footer-quick-link-mob {
        display: block !important;
        width: 100%;
    }
    footer .container .footer-body .footer-quick-link-mob .quick-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    footer .container .footer-body .footer-quick-link-mob .quick-links ul {
        width: 50%;
    }
    footer .container .footer-body .footer-quick-link-mob .quick-links ul li {
        margin-bottom: 25px;
    }
    footer .container .footer-body .footer-quick-link-mob .quick-links ul li a {
        font-size: 15px;
        line-height: 18px;
        color: #FFFFFF;
        font-weight: 700;
    }
    footer .container .footer-body .footer-quick-link-mob .social {
        margin-top: 24px;
    }
    footer .container .footer-body .footer-quick-link-mob .social ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    footer .container .footer-bottom {
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    footer .container .footer-bottom figure {
        display: block !important;
        margin-top: 59px;
        height: 65px;
    }
    footer .container .footer-bottom figure img {
        height: 100%;
    }
    footer .container .footer-bottom .copyright {
        margin-top: 19px;
        margin-bottom: 40px;
    }
}

.breadcrumb {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: calc(124px + 37px);
    padding-bottom: 43px;
}

.breadcrumb h4 a {
    font-weight: bold;
    font-size: 12px;
    line-height: 15px;
    color: #17365E;
}

.breadcrumb h4 a:hover {
    color: #2C66AE;
}

.breadcrumb span {
    border-radius: 50%;
    background-color: #A53336;
    width: 4px;
    height: 4px;
    margin: 0 10px;
}

.breadcrumb span:not(:nth-child(2)) {
    margin-top: 1.5px;
}

.breadcrumb p a {
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
    color: #2C66AE;
}

.success {
    position: fixed;
    top: 0;
    background: rgba(7, 18, 39, 0.8);
    background-blend-mode: multiply;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 99999;
    width: 100%;
    height: 100%;
    display: none;
}

.success .success-content {
    padding: 51px 48px 44px 48px;
    background: #EAF0F7;
    border-radius: 30px;
    height: 288px;
    width: 430px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.success .success-content h4 {
    font-weight: 600;
    font-size: 30px;
    line-height: 33px;
    text-align: center;
    font-family: "MuseoAZ";
    color: #1D4271;
    margin-bottom: 11px;
}

.success .success-content p {
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    color: #1D4271;
    text-align: center;
    width: 90%;
}

.success .success-content .success-img {
    margin-bottom: 11px;
}

.success .success-content .success-close {
    position: absolute;
    top: 0;
    right: -30px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.success .success-content .success-close img {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .success-content {
        width: 80% !important;
    }
}

@font-face {
    font-family: "MuseoAZ";
    src: url("/assets/fonts/MuseoAZ-100.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "MuseoAZ";
    src: url("/assets/fonts/MuseoAZ-300.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "MuseoAZ";
    src: url("/assets/fonts/MuseoAZ-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "MuseoAZ";
    src: url("/assets/fonts/MuseoAZ-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "MuseoAZ";
    src: url("/assets/fonts/MuseoAZ-900.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

* {
    font-family: 'Montserrat', sans-serif;
}

.container {
    padding: 0 100px;
    margin: 0 auto;
    max-width: 1366px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
}

#accreditation .container {
    padding-top: 100px;
    padding-bottom: 23px;
}

#accreditation .container h4 {
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    color: #A53336;
    margin-bottom: 36px;
}

#accreditation .container p {
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    color: #17365E;
    margin-bottom: 30px;
}

#accreditation .container .acreditation-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#accreditation .container .acreditation-boxes .acreditation-box {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(11% - 30px);
    flex: 0 1 calc(11% - 30px);
    margin-bottom: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#accreditation .container .acreditation-boxes .acreditation-box figure {
    width: 100%;
}

#accreditation .container .acreditation-boxes .acreditation-box figure img {
    width: 100%;
}

#accreditation .container .acreditation-boxes .acreditation-box:not(:first-child) {
    margin-left: 30px;
}

@media (max-width: 480px) {
    #accreditation .acreditation-box {
        margin-left: 0 !important;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 25% !important;
        flex: 0 1 25% !important;
    }
}

header {
    background-color: #17365e;
}

#engineering .container h4 {
    color: #1D4271;
    font-family: "MuseoAZ";
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 20px;
}

#engineering .container .engineering-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#engineering .container .engineering-boxes .engineering-box {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(32% - 10px);
    flex: 0 1 calc(32% - 10px);
    background-color: rgba(44, 102, 174, 0.03);
    border-radius: 30px;
    height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

#engineering .container .engineering-boxes .engineering-box:nth-child(3n+1) {
    margin-right: 10px;
}

#engineering .container .engineering-boxes .engineering-box:nth-child(3n) {
    margin-left: 10px;
}

#engineering .container .engineering-boxes .engineering-box:nth-child(3n+2) {
    margin: 0 10px;
}

#engineering .container .engineering-boxes .engineering-box figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 57px;
    height: 120px;
    width: 120px;
}

#engineering .container .engineering-boxes .engineering-box figure img {
    height: 100%;
    width: 100%;
}

#engineering .container .engineering-boxes .engineering-box h5 {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #17365E;
    letter-spacing: 0.03em;
    position: absolute;
    bottom: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 40px;
}

#engineering .container .engineering-boxes .engineering-box:hover {
    background-color: #F0F2F9;
    -webkit-box-shadow: -8px 8px 25px rgba(232, 234, 239, 0.5);
    box-shadow: -8px 8px 25px rgba(232, 234, 239, 0.5);
}

#engineering .container .engineering-boxes .engineering-box:hover h5 {
    font-weight: 700;
}

@media (max-width: 480px) {
    #engineering .engineering-boxes .engineering-box {
        margin: 0 0 20px 0 !important;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 100% !important;
        flex: 0 1 100% !important;
    }
}
/*# sourceMappingURL=engineering.css.map */
