@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rozha+One&display=swap');

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #CF0A0A; 
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b30000; 
}

body {
    font-family: 'Roboto', sans-serif;
}

main {
    height: 100%;
}

/* Remove defualt reveal icon for password input fields from Edge */
input[type="password"]::-ms-reveal {
    display: none;
}


/* About Us */

.banner-heading.dark {
    background-color: #353574;
    color: #F0ECEC;
}

.banner-heading.light {
    background-color: #E7E7FF;
    color: #413939;
}

.banner-heading p {
    max-width: 900px;
    font-weight: 700;
    font-size: 35px;
    line-height: 50px;
    letter-spacing: 0.095em;
    text-align: center;
    margin: 60px 20px;
}

@media screen and (max-width: 768px) {
    .banner-heading p {
        font-size: 20px;
        line-height: 30px;
    }
}

.misc-page .row {
    margin: 50px 0;
}

.misc-page .content-heading {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #413939;
    margin-bottom: 40px;
}

.misc-page .content-subheading {
    font-weight: 700;
    font-size: 26px;
    line-height: 38px;
    color: #3939A3;
    text-align: justify;
    margin-bottom: 25px;
}

.misc-page .content {
    font-weight: 500;
    font-size: 18px;
    line-height: 36px;
    text-align: justify;
    letter-spacing: 0.02em;
    color: #655F5F;
    margin-bottom: 28px;
}

.misc-page .link {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #4A95FF;
}

.misc-page img {
    margin: 20px 0 50px;
}

.spacer {
    height: 100px;
}

/* INDEX */

.carousel-item {
    height: calc(100vh);
    background: #000;
    color: white;
    position: relative;
    background-position: center;
    background-size: cover;
}

.carousel-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-wrapper .heading {
    font-weight: 600;
    font-size: 50px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.carousel-wrapper .subheading {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.carousel-wrapper .button-start {
    background: #CF0A0A;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.carousel-wrapper .button-start:hover {
    background: #7B0303;
}

.carousel-wrapper .button-start i::before{
    margin-top: 2px;
    margin-left: 8px;
}

.overlay-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
}

.overlay-image.first {
    background-image: url('../assets/carousel1.png');
}

.overlay-image.second {
    background-image: url('../assets/carousel2.jpg');
}

.overlay-image.third {
    background-image: url('../assets/carousel3.jpg');
}

@media screen and (max-width: 768px) {
    .carousel-wrapper .heading {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .carousel-wrapper .subheading {
        font-size: 18px;
    }

    .carousel-wrapper .button-start {
        margin-top: 40px;
    }
}

@media screen and (max-width: 576px) {

    .carousel-wrapper {
        padding: 0px 20px;
    }
    .carousel-wrapper .heading {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .carousel-wrapper .subheading {
        font-size: 16px;
    }

    .carousel-wrapper .button-start {
        margin-top: 30px;
    }
}

.filters {
    margin-top: 50px;
}

.filters .filter-heading {
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
    color: #000;
    margin-bottom: 10px;
}

.filters .filter-subheading {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin-bottom: 25px;
}

.filters .form-label {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    margin-left: 2px;
}


/* CUSTOM SELECT FIELDS */
.custom-select {
    position: relative;
}

.custom-select select {
    display: none;
    /*hide original SELECT element: */
}

.select-selected {
    color: rgba(0, 0, 0, 0.65);
    background-color: #FFF;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
}

.select-selected.select-arrow-active span {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transition: .3s transform ease-in-out;
}

.select-selected span {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transition: .3s transform ease-in-out;
}

.select-items .options {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    padding: 8px 16px;
    cursor: pointer;
}

.select-items {
    position: absolute;
    background-color: white;
    top: 85%;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 10px 10px;
    padding: 10px 0;
    max-height: 300px;
    width: 100%;
    overflow-y: scroll;
}

.select-items::-webkit-scrollbar {
    width: 15px;
}

/* Track */
.select-items::-webkit-scrollbar-track {
    background: white;
}

/* Handle */
.select-items::-webkit-scrollbar-thumb {
    background-color: #00005C;
    background-clip: padding-box;
    border: 3px solid white;
    border-radius: 100px
}

/* Handle on hover */
.select-items::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 29, 121, 0.5);
}

.select-hide {
    display: none;
}

.select-items .options:hover {
    background-color: rgba(29, 29, 121, 0.5);
    color: #FFF;
}

.same-as-selected {
    background-color: #00005C !important;
    color: #FFF !important;
}

.custom-select-location {
    position: relative;
}

.custom-select-location .selected-location {
    color: rgba(0, 0, 0, 0.65);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
}


.selected-location.select-arrow-active span {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transition: .3s transform ease-in-out;
}

.selected-location span {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transition: .3s transform ease-in-out;
}

.custom-select-location .select-items {
    position: absolute;
    background-color: white;
    top: 85%;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 10px 10px;
    padding: 10px 0;
    max-height: 300px;
    width: 100%;
    overflow-y: scroll;
}

.custom-select-location .select-hide {
    display: none;
}

.custom-select-location .select-items ul {
    padding: 0;
}

.custom-select-location .select-items .region {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.45);
}

.custom-select-location .select-items .province {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.65);
}

.custom-select-location .select-items .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(29, 29, 121, 0.25);
}

.custom-select-location .select-items .accordion-button:not(.collapsed) {
    background-color: rgba(29, 29, 121, 0.5);
    color: #FFF
}

.custom-select-location .select-items .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-select-location .select-items .check-count {
    background-color: #1D1D79;
    color: #FFFFFF;
}

.custom-select-location .select-items .form-check-input {
    border: 1px solid #000;
}

.custom-select-location .select-items .form-check-input:checked {
    background-color: #1D1D79;
}

.custom-select-location .select-items .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 92, 0.25);
}

.custom-select-location .select-items .form-check-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.custom-select-location .select-items::-webkit-scrollbar {
    width: 15px;
}

/* Track */
.custom-select-location .select-items::-webkit-scrollbar-track {
    background: white;
}

/* Handle */
.custom-select-location .select-items::-webkit-scrollbar-thumb {
    background-color: #00005C;
    background-clip: padding-box;
    border: 3px solid white;
    border-radius: 100px
}

/* Handle on hover */
.custom-select-location .select-items::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 29, 121, 0.5);
}

.filters .form-control {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px;
}

.filters #search_filters {
    margin: 15px 0 30px;
    display: flex;
    align-items: center;
}

.filters .tags-label {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    margin-right: 10px;
}

.filters #search_filters .badge {
    font-weight: 500;
    font-size: 12px;
    color: #000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 5px 10px;
    margin: 5px;
}

/* PRIVACY POLICY / TERMS & CONDITIONS */

.misc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #0000BA;
}

.misc-header span {
    margin-bottom: 0;
}

.misc-header,
.misc-header a {
    color: #000;
}

.misc-header .toc-icon {
    display: none;
    background-color: #00005C;
    color: #FFF;
    max-height: 50px;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
}

.misc-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.toc-modal-body {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.toc-modal-body.show-modal {
    display: block;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

.toc-modal-body.hide-modal {
    display: block;
    -webkit-animation-name: fadeOut;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeOut;
    animation-duration: 0.4s
}

.misc-container .toc::-webkit-scrollbar {
    width: 15px;
}

/* Track */
.misc-container .toc::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.misc-container .toc::-webkit-scrollbar-thumb {
    background-color: #00005C;
    background-clip: padding-box;
    border: 5px solid white;
    border-radius: 100px
}

/* Handle on hover */
.misc-container .toc::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 29, 121, 0.5);
}

@media screen and (max-width: 992px) {
    .misc-header .toc-icon {
        display: flex;
    }

    .misc-header .toc-icon.fixed {
        position: fixed;
        top: 50px;
        right: 30px;
        animation-duration: 1.5s;
        animation-name: fadeIn;
    }


    .misc-container {
        grid-template-columns: 1fr;
    }

    .misc-container .toc {
        position: fixed;
        top: 0;
        right: 0;
        padding: 15px;
        width: 300px;
        height: 100%;
        overflow-y: auto;
        background-color: #FFF;
        z-index: 1200;
        min-width: 250px;
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        display: none;
    }

    .misc-container .toc.hidden {
        animation: slide-out 0.4s forwards;
        -webkit-animation: slide-out 0.4s forwards;
    }

    .misc-container .toc.show-modal {
        animation: slide-in 0.4s forwards;
        -webkit-animation: slide-in 0.4s forwards;
    }
}


.misc-container .toc .header {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 12px;
}

.misc-container .toc a {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #000;
    text-decoration: none;
}

.misc-container .toc .toc-bold {
    font-weight: 600;
}

.misc-container .misc-content {
    margin-bottom: 30px;
}

.misc-container .misc-content .misc-content-item {
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
}

.misc-container .misc-content .misc-content-item:not(:first-child) {
    padding-top: 20px;
}

.misc-container .misc-content .misc-content-item:last-child {
    border-bottom: none;
}

.misc-container .misc-content .misc-content-item .header {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 12px;
}

.misc-container .misc-content .misc-content-item .content {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.misc-container .misc-content .misc-content-item .content-bold {
    font-weight: 600;
}

.misc-container .misc-content .misc-content-item a {
    color: #1D1D79;
    font-weight: 600;
    text-decoration: none;
}

.misc-container .button-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    min-width: 50px;
    text-align: center;
    border: none;
    border-radius: 10px;
    padding: 5px;
    outline: none;
    background-color: #00005C;
    color: #FFF;
    cursor: pointer;
    font-size: 25px;
    animation-duration: 1.5s;
    animation-name: fadeIn;
}

.misc-container .button-top:hover {
    background-color: #8D8DBB;
}

@media screen and (max-width: 576px) {
    .misc-header {
        font-size: 24px;
        line-height: 20px;
    }

    .misc-container .toc {
        width: 250px;
    }

    .misc-container .toc .header {
        font-size: 20px;
    }

    .misc-container .toc a {
        font-size: 14px;
    }

    .misc-container .misc-content .misc-content-item .header {
        font-size: 20px;
    }

    .misc-container .misc-content .misc-content-item .content {
        font-size: 14px;
        line-height: 20px;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 0
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes slide-in {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(0%);
    }
}

@-webkit-keyframes slide-in {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

@-webkit-keyframes slide-out {
    0% {
        -webkit-transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(100%);
    }
}

/* Error Pages */

.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-wrap.not-found {
    width: 1100px;
    margin: 120px 20px;
    display: grid;
    grid-template-columns: 690px 380px;
    gap: 30px;
    align-items: end;
}

.error-wrap.not-found .left {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.error-wrap.not-found .left .error-code {
    font-family: 'Rozha One', serif;
    font-size: 120px;
    line-height: 80px;
    letter-spacing: 0.04em;
    color: #4E50FD;
    margin-bottom: 70px;
}

.error-wrap.not-found .left .content {
    position: relative;
    width: 100%;
    text-align: center;
}

.error-wrap.not-found .left .content .text-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.error-wrap.not-found .left .content .heading {
    font-weight: 800;
    font-size: 40px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.error-wrap.not-found .left .content .subheading {
    font-weight: 400;
    font-size: 24px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.error-wrap.not-found .left .content .button-wrap {
    position: absolute;
    bottom: -10px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.error-wrap.not-found .left .content .button {
    background: #FFFFFF;
    border: 1px solid #3E79CD;
    border-radius: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 20px;
    color: #00005C;
    padding: 16px 32px;
    text-decoration: none;
}

.error-wrap.forbidden {
    width: 700px;
    margin: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-wrap.forbidden .error-code {
    font-family: 'Rozha One';
    font-weight: 400;
    font-size: 200px;
    line-height: 120px;
    color: rgba(0, 0, 92, 0.2);
    margin-bottom: 50px;
}

.error-wrap.forbidden .error-code .lspcing {
    letter-spacing: 0.56em;
}

.error-wrap.forbidden .heading {
    font-weight: 700;
    font-size: 36px;
    line-height: 20px;
    color: #1D1D79;
    margin-bottom: 30px;
}

.error-wrap.forbidden .subheading {
    font-weight: 600;
    font-size: 24px;
    line-height: 20px;
    color: rgba(29, 29, 121, 0.7);
    margin-bottom: 24px;
    text-align: center;
}

.error-wrap.forbidden .back {
    font-weight: 600;
    font-size: 24px;
    line-height: 20px;
    color: #4A95FF;
    text-align: center;
}

.error-wrap.forbidden .back span {
    text-decoration: underline;
}

.error-wrap.forbidden .art {
    width: 400px;
    margin: 30px auto;
}

.error-wrap.server-error {
    width: 700px;
    margin: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-wrap.server-error .error-code {
    font-family: 'Rozha One';
    font-weight: 400;
    font-size: 120px;
    line-height: 80px;
    color: #00005C;
    margin-bottom: 30px;
}

.error-wrap.server-error .heading {
    font-weight: 700;
    font-size: 48px;
    line-height: 80px;
    color: rgba(29, 29, 121, 0.9);
    text-align: center;
}

.error-wrap.server-error .subheading {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #000000;
    text-align: center;
}

.error-wrap.server-error .back {
    font-weight: 600;
    font-size: 24px;
    line-height: 20px;
    color: #4A95FF;
    text-align: center;
    margin-top: 20px;
}

.error-wrap.server-error .back span {
    text-decoration: underline;
}

.error-wrap.server-error .vector {
    width: 600px;
    margin: 20px auto;
}

.error-wrap.server-error .art-container {
    position: relative;
}

.error-wrap.server-error .art-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-wrap.server-error .art {
    width: 430px;
}

.error-wrap.banned {
    width: 700px;
    margin: 80px 20px;
    background-color: #fff;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 10px;
    padding: 50px;
}

.error-wrap.banned .heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 20px;
}

.error-wrap.banned .content {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 20px;
}

.error-wrap.banned .back {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #CF0A0A;
    margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
    .error-wrap.not-found {
        width: 800px;
        grid-template-columns: 500px 300px;
    }

    .error-wrap.not-found .left .error-code {
        margin-bottom: 50px;
    }

    .error-wrap.not-found .left .content .heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .error-wrap.not-found .left .content .subheading {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .error-wrap.not-found .left .content .button {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .error-wrap.not-found {
        width: 600px;
        grid-template-columns: 100%;
        justify-items: center;
    }

    .error-wrap.not-found .left .content .heading {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .error-wrap.not-found .left .content .subheading {
        font-size: 20px;
    }

    .error-wrap.not-found .left .content .button {
        font-size: 20px;
    }

    .error-wrap.not-found .right .art {
        width: 400px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .error-wrap.not-found {
        margin: 50px 20px 80px;
        width: 400px;
    }

    .error-wrap.not-found .left .error-code {
        font-size: 100px;
    }

    .error-wrap.not-found .left .content .heading {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .error-wrap.not-found .left .content .subheading {
        font-size: 16px;
    }

    .error-wrap.not-found .left .content .button {
        font-size: 16px;
        padding: 12px 28px;
    }

    .error-wrap.not-found .right .art {
        width: 300px;
        margin-top: 20px;
    }

    .error-wrap.forbidden {
        width: 500px;
        margin: 50px 20px 80px;
    }

    .error-wrap.forbidden .error-code {
        font-size: 140px;
        margin-bottom: 40px;
    }

    .error-wrap.forbidden .error-code .lspcing {
        letter-spacing: 0.4em;
    }


    .error-wrap.forbidden .heading {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .error-wrap.forbidden .subheading {
        font-size: 20px;
    }

    .error-wrap.forbidden .back {
        font-size: 20px;
    }

    .error-wrap.server-error {
        width: 500px;
        margin: 50px 20px 80px;
    }

    .error-wrap.server-error .art {
        width: 360px;
    }

    .error-wrap.banned {
        width: 500px;
        margin: 50px 20px 80px;
    }

}

@media screen and (max-width: 576px) {
    .error-wrap.not-found {
        margin: 40px 10px 70px;
        width: 280px;
    }

    .error-wrap.not-found .left .error-code {
        font-size: 80px;
        margin-bottom: 40px;
    }

    .error-wrap.not-found .left .content .heading {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .error-wrap.not-found .left .content .subheading {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .error-wrap.not-found .left .content .button {
        font-size: 12px;
        padding: 10px 24px;
    }

    .error-wrap.not-found .right .art {
        width: 200px;
        margin-top: 20px;
    }

    .error-wrap.forbidden {
        width: 280px;
        margin: 40px 10px 70px;
    }

    .error-wrap.forbidden .error-code {
        font-size: 100px;
        margin-bottom: 20px;
    }

    .error-wrap.forbidden .error-code .lspcing {
        letter-spacing: 0.3em;
    }

    .error-wrap.forbidden .heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .error-wrap.forbidden .subheading {
        font-size: 18px;
    }

    .error-wrap.forbidden .back {
        font-size: 18px;
    }

    .error-wrap.server-error {
        width: 280px;
        margin: 40px 10px 70px;
    }

    .error-wrap.server-error .error-code {
        font-size: 100px;
    }

    .error-wrap.server-error .heading {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .error-wrap.server-error .subheading {
        font-size: 18px;
    }

    .error-wrap.server-error .back {
        font-size: 18px;
    }

    .error-wrap.server-error .art {
        width: 200px;
    }


    .error-wrap.banned {
        margin: 40px 10px 70px;
        width: 280px;
    }

}