﻿@font-face {
    font-display: swap; 
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto/roboto-300.woff2') format('woff2');
}

@font-face {
    font-display: swap; 
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto/roboto-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap; 
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto/roboto-500.woff2') format('woff2');
}

@font-face {
    font-display: swap; 
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/roboto/roboto-600.woff2') format('woff2');
}

@font-face {
    font-display: swap; 
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto/roboto-700.woff2') format('woff2');
}

@font-face {
    font-display: swap; 
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/roboto/roboto-800.woff2') format('woff2');
}

@font-face {
    font-display: swap; 
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/roboto/roboto-900.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Courgette';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/courgette/courgette-regular.woff2') format('woff2');
}

*,
*:before,
*::after {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto';
}

/*--------------- HERO ---------------*/
.hero {
    position: relative;
    height: 100svh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@keyframes sharpen {
    from {
        filter: blur(10px);
    }

    to {
        filter: blur(0px);
    }
}

.hero.main {
    background-image: url('../img/hero/Main.jpg');
    animation: sharpen 2s forwards;
}

.hero.library {
    background-image: url('../img/hero/Library.jpg');
    animation: sharpen 2s forwards;
}

.hero.archive {
    background-image: url('../img/hero/Archive.jpg');
    animation: sharpen 2s forwards;
}

.hero.foreign_visas {
    background-image: url('../img/hero/Foreign-visas.jpg');
    animation: sharpen 2s forwards;
}

.hero.immigration_lawyer {
    background-image: url('../img/hero/Immigration_lawyer.jpg');
    animation: sharpen 2s forwards;
}

.hero.seminars {
    background-image: url('../img/hero/Seminars.jpg');
    animation: sharpen 2s forwards;
}

.hero.visa-to-RK {
    background-image: url('../img/hero/Visa_to_RK.jpg');
    animation: sharpen 2s forwards;
}

.hero.work-permits {
    background-image: url('../img/hero/Work_permits.jpg');
    animation: sharpen 2s forwards;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-title {
    text-align: center;
    transform: translate(0px, 200%);
    opacity: 0;
    transition-property: all;
    transition-timing-function: linear;
    transition-delay: 1s;
    transition-duration: 0.6s;
}

    .hero-title.show {
        transform: translate(0px, 0px);
        opacity: 1;
    }

.hero-title > h1 {
    font-weight: 800;
    color: #fff;
}

.hero-text {
    text-align: center;
    font-weight: 600;
    color: rgba(255,255,255,.75) !important;
    transform: translate(0px, 200%);
    opacity: 0;
    transition-property: all;
    transition-timing-function: linear;
    transition-delay: 1.5s;
    transition-duration: 0.6s;
}

    .hero-text.show {
        transform: translate(0px, 0px);
        opacity: 1;
    }

.hero-link {    
    margin-top: 50px;
    transform: translate(0px, 200%);
    opacity: 0;
    transition-property: all;
    transition-timing-function: linear;
    transition-delay: 2s;
    transition-duration: 0.6s;
}

    .hero-link.show {
        transform: translate(0px, 0px);
        opacity: 1;
    }

.button-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f5ba4b;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.8s ease 0s;
}

    .button-link:hover {
        background-color: #f5ba4b;
        color: #000;
    }


@media (min-width: 767px) { 

    .hero-title > h1 {
        font-size: 50px;
    }
    
    .hero-text {
        margin-top: 20px;
    }

    .hero-text {
        font-size: 30px;
    }
    
    .button-link {
        width: 155px;
        height: 52px;
    }
    
}
    
@media (max-width: 767px) { 
    
    .hero-title > h1 {
        font-size: 38px;
    }
    
    .hero-text {
        margin-top: 15px;
    }

    .hero-text {
        font-size: 22px;
    }
    
    .button-link {
        width: 138px;
        height: 47px;
    }
    
}

/*--------------- ABOUT ---------------*/
@media (width >= 1200px) {

    /*--------------- ALL ---------------*/
    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #f5ba4b;
        width: 155px;
        height: 52px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.8s ease 0s;
    }

    .btn-black {
        color: #000;
    }

    .btn-black:hover {
        background-color: #f5ba4b;
    }

    /*--------------- ABOUT ---------------*/
    .about-body {
        max-width: 1200px;
        padding-top: 100px;
        padding-bottom: 100px;
        padding-left: 20px;
        padding-right: 20px;
        margin-inline: auto;
        display: flex;
        flex-direction: row;
    }

    .about-content {
        flex-basis: 50%;
        margin-right: 15px;
    }

    .about-title {
        text-align: left;
    }

    .about-title > h2 {
        font-size: 32px;
        font-weight: 800;
    }

    .about-text {
        margin-top: 30px;
    }

    .about-text > p {
        font-size: 18px;
        line-height: 1.5;
    }

    .about-link {
        margin-top: 50px;
        display: flex;
        flex-direction: row;
        justify-content:flex-start;
    }

    .about-cards {
        flex-basis: 50%;
        margin-left: 15px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 30px;
        column-gap: 30px;
    }

    .about-card {
        flex-basis: 47%;
        height: 250px;
        padding: 30px;
        border: 1px solid #f5ba4b;
        padding: 30px;
        border: 1px solid #f5ba4b;
    }

    .about-card-accent {
        background-color: #f5ba4b;
    }

    .about-card-icon {
        font-size: 35px;
    }

    .about-card-title {
        margin-top: 20px;
        font-weight: 600;
        font-size: 16px;
    }

    .about-card-text {
        margin-top: 20px;
        font-weight: 400;
        font-size: 18px;
    }

    .result {
        position: relative;
        height: 400px;
        width: 100%;
        background-image: linear-gradient(rgba(33,37,41,.4), rgba(33,37,41,.4)), url('../img/hero/result.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        display: flex;
    }

    .result-row {
        max-width: 1200px;
        margin-inline: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .result-card {
        width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .result-card:nth-child(2) {
        border-left: 1px solid rgba(255,255,255,.2);
        border-right: 1px solid rgba(255,255,255,.2);
    }

    .result-card-digit {
        font-weight: 800;
        font-size: 44px;
        color: #fff;
    }

    .result-card-text {
        font-size: 18px;
        color: rgba(240, 240, 240, .8);
    }
    
}

@media (1200px > width > 776px ) {

    /*--------------- ALL ---------------*/
    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #f5ba4b;
        width: 128px;
        height: 46px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.8s ease 0s;
    }

    .btn-black {
        color: #000;
    }

    .btn-black:hover {
        background-color: #f5ba4b;
    }

    /*--------------- ABOUT ---------------*/
    .about-body {
        margin-inline: auto;
        padding-top: 70px;
        padding-bottom: 70px;
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
    }

    .about-title {
        text-align: center;
    }

    .about-title > h2 {
        font-size: 32px;
        font-weight: 800;
    }

    .about-text {
        margin-top: 30px;
    }

    .about-text > p {
        font-size: 16px;
        line-height: 1.5;
    }

    .about-link {
        margin-top: 50px;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .about-cards {
        margin-top: 50px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 30px;
        column-gap: 30px;
    }

    .about-card {
        flex-basis: 47%;
        height: 200px;
        padding: 30px;
        border: 1px solid #f5ba4b;
        padding: 30px;
        border: 1px solid #f5ba4b;
    }

    .about-card-accent {
        background-color: #f5ba4b;
    }

    .about-card-icon {
        font-size: 35px;
    }

    .about-card-title {
        margin-top: 20px;
        font-weight: 600;
        font-size: 16px;
    }

    .about-card-text {
        margin-top: 20px;
        font-weight: 400;
        font-size: 16px;
    }

    .result {
        position: relative;
        height: 400px;
        width: 100%;
        background-image: linear-gradient(rgba(33,37,41,.4), rgba(33,37,41,.4)), url('../img/hero/result.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        display: flex;
    }

    .result-row {
        margin-inline: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .result-card {
        width: 250px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .result-card:nth-child(2) {
        border-left: 1px solid rgba(255,255,255,.2);
        border-right: 1px solid rgba(255,255,255,.2);
    }

    .result-card-digit {
        font-weight: 800;
        font-size: 38px;
        color: #fff;
    }

    .result-card-text {
        font-size: 16px;
        color: rgba(240, 240, 240, .8);
    }

}

@media (width <= 776px) {

    /*--------------- ALL ---------------*/
    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #f5ba4b;
        width: 128px;
        height: 46px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.8s ease 0s;
    }

    .btn-black {
        color: #000;
    }

    .btn-black:hover {
        background-color: #f5ba4b;
    }

    /*--------------- ABOUT ---------------*/
    .about-body {
        margin-inline: auto;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-title {
        text-align: center;
    }

    .about-title > h2 {
        font-size: 28px;
        font-weight: 800;
    }

    .about-text {
        margin-top: 30px;
    }

    .about-text > p {
        font-size: 14px;
        line-height: 1.5;
    }

    .about-link {
        margin-top: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .about-cards {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .about-card {
        height: 160px;
        padding: 30px;
        border: 1px solid #f5ba4b;
        padding: 25px;
        border: 1px solid #f5ba4b;
    }

    .about-card-accent {
        background-color: #f5ba4b;
    }

    .about-card-icon {
        font-size: 28px;
    }

    .about-card-title {
        margin-top: 15px;
        font-weight: 600;
        font-size: 14px;
    }

    .about-card-text {
        margin-top: 15px;
        font-weight: 400;
        font-size: 14px;
    }

    .result {
        position: relative;
        height: 600px;
        width: 100%;
        background-image: linear-gradient(rgba(33,37,41,.4), rgba(33,37,41,.4)), url('../img/hero/result.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        display: flex;
    }

    .result-row {
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .result-card {
        padding-top: 70px;
        padding-bottom: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .result-card:nth-child(2) {
        border-top: 1px solid rgba(255,255,255,.2);
        border-bottom: 1px solid rgba(255,255,255,.2);
    }

    .result-card-digit {
        font-weight: 800;
        font-size: 38px;
        color: #fff;
    }

    .result-card-text {
        font-size: 16px;
        color: rgba(240, 240, 240, .8);
    }

}

/*--------------- MAIN ---------------*/

.main {
    background-color: #fff;
}

.main-body {
    max-width: 1200px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-inline: auto;
    padding-left: 20px;
    padding-right: 20px;
}

    .main-body h3 {
        color: #212529;
        font-weight: 600;
        font-size: 18px;
    }

.main-list-row {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.main-list-icon {
    padding-left: 15px;
    padding-right: 15px;
    color: #f5ba4b;
}

.main-list-text {
    font-size: 16px;
    font-weight: 500;
    color: #6c757d;
}


/*
.main-title {
    font-weight: 500;
    font-size: 18px;
    color: #212529;
}

.main-content {
    font-size: 16px;
    line-height: 1.7;
}

.main-content ul {
    list-style-type:none;
}

    .main-content ul li {
        font-weight: 500;
        margin-left: 30px;
        color: #6c757d;
    }

        .main-content ul li:before {
            content: '\f058';
            font-family: FontAwesome;
            color: #f5ba4b;
            margin-right: 10px;
        }
*/
.main-note {
    margin-top: 30px;
    border-left: 3px solid #f5ba4b;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main-note-icon i {
    font-size: 50px;
    color: #f5ba4b;
}

.main-note-text {
    margin-left: 20px;
    font-size: 16px;
    line-height: 1.7;
}

/*--------------- Accordion ---------------*/

.grey-section {
    background-color: #f8f9fa !important;
}

.section-body {
    max-width: 1200px;
    margin-inline: auto;
    padding: 100px 20px;
}

.accordion {
    width: 100%;
    background-color: #fff;
    border-top: 2px solid #f5ba4b;
    border-left: 1px solid rgba(0,0,0,.1);
    border-right: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.accordion-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.accordion-title h3 {
    font-size: 18px;
    font-weight: 600;
}

.accordion-button i {
    font-size: 20px;
}


/*--------------- library ---------------*/

.library-card {
    padding: 50px 20px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.library-card-icon {
    margin-right: 30px;
}

.library-card-icon > a > i {
    color: #000;
    font-size: 40px;
    cursor: pointer;
}

    .library-card-icon > a > i:hover {
        color: #f5ba4b;
    }

.library-card-title {
    font-weight: 500;
    color: #212529;
}

@media (min-width: 767px) { 

    .library-card-title {
        font-size: 16px;
    }

}

@media (max-width: 767px) {

    .library-card-title {
        font-size: 14px;
    }

 }