*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body
{
    font-family: 'Readex Pro', sans-serif;
    font-display: swap;
}
header
{
    width: 100%;
    display: flex;
    height: 100px;
    padding: 0 200px;
}
header .logo-box
{
    width: 50%;
    display: flex;
    justify-content: flex-start;
}
header .logo
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
header .logo img
{
    height: 70px;
    object-fit: cover;
}
header .slogan
{
    display: flex;
    align-items: flex-end;
    padding: 15px;
}
header .slogan h3
{
    font-weight: 200;
}
header nav 
{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#hamburger
{
    width: 30px;
    height: 30px;
    display: none;
    border: none;
    background-color: white;
}
#hamburger img
{
    height: 30px;
    width: 30px;
}
#hamburger-close
{
    width: 30px;
    height: 30px;
    border: none;
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 40;
    display: none;
    background-color: #f7b71e;
    transition: .3s;
}
#hamburger-close img
{
    height: 30px;
    width: 30px;
}
header nav ul 
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}
header nav ul li a 
{
    display: flex;
    color: #000;
    text-decoration: none;
    padding: 12px;
    margin: 0 1px;
    position: relative;
    transition: color .2s ease-in;
}
header nav ul li a:hover {
    color: #f7b71e;
}
header nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #f7b71e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease-in;
}
header nav ul li a:hover::after
{
    transform: scaleX(1);
}
.swiper
{
    width: 100%;
    height: 700px;
    user-select: none;
}
.swiper-container 
{
    margin: 0 auto;
    height: 700px;
}
.swiper-slide 
{
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    position: relative;

    cursor: grab;
}
.swiper-slide h2
{
    position: absolute;
    color: white;
    font-size: 80px;
    width: 500px;
    top: 50px;
    left: 200px;
    z-index: 2;
}
.swiper-pagination-bullet-active 
{
    background-color: white !important;
}
.swiper-slide img
{
    width: 100%;
    filter: brightness(0.5);
    height: 800px;
    object-fit: cover;
}
.block
{
    padding: 100px 200px;
}
.block:nth-child(even)
{
    background: #f6f6f5;
}
.block .ue
{
    margin: 0 auto;
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.block .ue > img
{
    width: 60%;
}
.fade-in
{
    opacity: 0;
    transition: opacity 250ms ease-in;
}
.fade-in.appear
{
    opacity: 1;
}
.block h4
{
    font-size: 40px;
    color: #000;
    text-align: center;
    font-weight: 300;
}
.block hr
{
    border: 1px solid #f7b71e;
    width: 100px;
    margin: 20px auto;
}
.f2
{
    display: flex;
    flex-wrap: wrap;
}
.f2 p
{
    width: 50%;
    padding: 5px;
    font-weight: 300;
}
.f4
{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
    margin: 50px 0 0 0;
}
.service-block
{
    width: calc(25% - 20px);
    margin: 10px;
    padding: 30px;
    background-color: #f7b71e;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    border-radius: 5px;
}
.service-block h3
{
    text-align: center;
    font-weight: 500;
    padding-bottom: 10px;
    color: #f6f6f5;
}
.service-block > ul > li
{
    font-weight: 300;
    margin-left: 20px;
}
.gallery
{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.gallery-item
{
    width: 550px;
    height: 300px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.gallery-item img
{
    width: 550px;
    height: 300px;
    object-fit: cover;
    transition: transform .2s ease-in;
}
.gallery-item:hover img
{
    transform: scale(1.03);
}
.gallery-item h3
{
    position: absolute;
    width: 100%;
    bottom: 0;
    font-weight: 300;
    background-color: rgba(53, 53, 53, 0.7);
    color: white;
    padding: 20px 5px;
    text-align: center;
}
.f1
{
    display: flex;
    justify-content: center;
}
.mailbox
{
    width: 100%;
    display: flex;
}
.fc
{
    display: flex;
    flex-direction: column;
    width: 50%;
}
.fc1 h6
{
    font-size: 45px;
}
.fc1
{
    padding: 20px;
}
.fc1 h5
{
    color: #f7b71e;
}
.fc1 p
{
    padding: 0;
    font-weight: 300;
}
.fc1 > .contact
{
    color: black;
    margin: 10px 0;
    font-size: 20px;
}
.fc1 > .contact img
{
    padding-right: 5px;
}
.fc1 a
{
    display: flex;
    align-items: center;
    color: black;
    text-decoration: none;
    font-weight: 500;
}
.mailbox form
{
    width: 80%;
}
.mailbox h5
{
    font-size: 20px;
    font-weight: 400;
}
.mailbox input[type=text], 
.mailbox input[type=email]
{
    width: 100%;
    border: 2px solid #f7b71e;
    margin: 10px 0;
    font-size: 16px;
    padding: 10px;
    outline: none;
}
.mailbox textarea
{
    width: 100%;
    min-height: 100px;
    border: 2px solid #f7b71e;
    margin: 10px 0;
    font-size: 16px;
    padding: 10px;
    outline: none;
    resize: vertical;
    max-height: 300px;
}
.btn
{
    background-color: #f7b71e;
    border: 2px solid transparent;
    text-decoration: none;
    color: white;
    font-weight: 300;
    padding: 10px 20px;
    margin: 10px 0;
    width: 100%;
    transition: .3s ease-in;
}
.btn:hover 
{
    border-color: #f7b71e;
    background-color: white;
    color: #f7b71e;
    cursor: pointer;
}
::-webkit-input-placeholder {
    font-family: 'Readex Pro', sans-serif;
}
:-moz-placeholder {
    font-family: 'Readex Pro', sans-serif;
}
::-moz-placeholder {
    font-family: 'Readex Pro', sans-serif;
}
:-ms-input-placeholder {
    font-family: 'Readex Pro', sans-serif;
}
footer
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 100px;
    font-weight: 300;
    padding: 0 200px;
}
footer a
{
    text-decoration: none;
    color: black;
}
@media screen and (max-width: 1400px)
{
    .service-block
    {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 1300px) 
{
    header, footer
    {
        padding: 0 100px;
    }
    .block
    {
        padding: 100px;
    }
    .swiper-slide h2
    {
        font-size: 70px;
        width: 500px;
        top: 50px;
        left: 100px;
    }
}
@media screen and (max-width: 1100px)
{
    header
    {
        padding: 0 50px;
        justify-content: flex-start;
        position: relative;
    }
    header .logo-box
    {
        width: 80%;
    }
    header .logo img
    {
        height: 60px;
    }
    header .slogan 
    {
        padding-bottom: 17px;
    }
    header #hamburger
    {
        display: block;
        position: absolute;
        top: calc(50% - 15px);
        right: 50px;
    }
    header nav 
    {
        width: 10%;
    }
    header nav ul 
    {
        display: flex;
        width: 100%;
        background-color: #f7b71e;
        position: fixed;
        top: 0;
        right: -1200px;
        height: 100vh;
        z-index: 30;    
        flex-direction: column;
        align-content: center;
        flex-flow: wrap;
    }
    header nav li
    {
        width: 100%;
    }
    header nav ul li a
    {
        font-size: 25px;
        text-align: center;
        justify-content: center;
        color: white !important;
        background-color: #f7b71e;
        border: 0;
    }
    header nav ul li a:hover
    {
        background-color: #dda31c;
        color: white;
        border: none;
    }
    .swiper-slide h2
    {
        font-size: 40px;
        width: 100%;
        top: calc(50% - height);
        left: 0;
        text-align: center;
    }
    .block
    {
        padding: 50px;
    }
    .mailbox
    {
        flex-direction: column;
    }
    .mailbox form
    {
        width: 100%;
    }
    .fc
    {
        width: 100%;
    }
    footer
    {
        padding: 0 50px;
        justify-content: center;
    }
    footer p
    {
        width: 100%;
        text-align: center;
    }
}
@media screen and (max-width: 625px)
{
    header, footer
    {
        padding: 0 20px;
    }   
    header #hamburger
    {
        right: 20px;
    }
    .service-block
    {
        width: 100%;
    }
    .gallery-item
    {
        margin: 20px 0;
    }
    .f2 p
    {
        width: 100%;
    }
    .block .ue > img
    {
        width: 100%;
    }
}
@media screen and (max-width: 500px)
{
    header .slogan h3
    {
        font-size: 16px;
    }
    .swiper-slide h2
    {
        font-size: 30px;
    }
    .swiper, .swiper-container
    {
        height: 400px;
    }
    .swiper-slide img
    {
        height: 400px;
    }
    .block
    {
        padding: 50px 20px;
    }
}
@media screen and (min-width: 3000px)
{
    header
    {
        padding: 0 400px;
    }
    .block
    {
        padding: 100px 400px;
    }
    .swiper h2
    {
        left: 400px;
    }
}