* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
 
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #000000;

}

img {
    width: 100%;
}

.conteiner {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;

    width: 100%;
    height: 70vh;

    background-color: #1E4776;
    background-image: url('../SRC/header/header-bg.jpg');
    background-size: cover;
    background-position: center;
}

.header-title {
    margin: 0;
    margin-bottom: 25px;
    font-style: Bold;
    font-size: 56px;
    line-height: 73px;
    line-height: 130%;
    text-align: center;
    color: #FFFFFF;

}

.header-subtitle {
    margin: 0;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    /* or 24px */

    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: #FFFFFF;
    max-width: 400px;
}

.header-arrow {
    width: 48px;
    height: 48px;
    /* background-color: red; */
    position: absolute;
    justify-content: end;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
}

.none {
    display: none;
}

.portfolio {
    padding-top: 80px;
    padding-bottom: 115px;
}

.portfolio-header {
    margin: 0;
    margin-bottom: 70px;
    font-weight: 700;
    font-size: 46px;
    line-height: 130%;
    text-align: center;
    color: #000000;

}

.portfolio-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    background-color: #fff;
    max-width: 540px;

    /* box-sizing: border-box; */
    margin-bottom: 30px;
    box-shadow: 0px 10px 40px rgba(126, 155, 189, 0.35);
    transition: transform 0.2s ease-in;
}

.card:hover {
    transform: translateY(-15px);
}

.card-link {
    color: #000000;
    padding: 20px;

    text-decoration: none;
    display: block;
    transition: color 0.2s ease-in;
}

.card-link:hover {
    color: rgb(39, 91, 236);
}

.card:last-child,
.card:nth-last-child(2) {
    margin-bottom: 0;
}

.card-image {
    margin-bottom: 20px;
}

.card-title {
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 13px;

}

.card p {
    font-size: 16px;
    line-height: 130%;
    margin: 0;

}

/* <!--Footer--> */

.footer {
    background: #1E4776;
    padding-top: 45px;
    padding-bottom: 129px;
    color: white;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-coll {
    max-width: 350px;
    flex-grow: 1;
}

.footer-copyright {
    color: #7E9EC9;
    line-height: 1.3;
}

.footer-copyright-name {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-copyright p {
    margin: 0;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}


.footer-icons p {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;

}

.footer-icons-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icons-row>*+* {
    margin-left: 30px;
}


.footer-buttom {
    display: inline-block;
    height: 50px;
    padding-left: 30px;
    padding-right: 30px;

    border: 3px solid #FFFFFF;
    border-radius: 50px;

    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 44px;
    text-decoration: none;

    transition: all 0.2s ease-in;
}

.footer-buttom:hover {
    background-color: #fff;
    color: #1E4776;

}

.footer-contacts p {
    font-weight: 400;
    font-size: 15.5px;
    line-height: 1.3;
    margin: 15px 0;
    height: 42px;

    color: #7E9EC9;
}

/* Forest-Travel */

.project {
    padding: 80px 0 120px 0;
    text-align: center;
    color: #000000;
}

.project-title {
    margin: 0;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.3;

    color: #000000;
}

.project-image {
    margin-bottom: 70px;
}

.project-discriprion {
    margin: 0 auto 60px;
    max-width: 730px;
    margin-bottom: 60px;

}

.project-discriprion p {
    margin-top: 0;
    border-bottom: 16px;

    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.project-btn-back {
    display: inline-block;
    height: 60px;
    padding-left: 30px;
    padding-right: 30px;

    border: 3px solid #275BEC;
    border-radius: 50px;

    color: #275BEC;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 54px;
    text-decoration: none;

    transition: all 0.2s ease-in;
}

.project-btn-back:hover {
    background-color: #275BEC;
    color: white;
}

.none {
    display: none;
}