@font-face {
    font-family: 'Dancing';
    src: url('../fonts/DancingScript-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-VariableFont_wght.ttf');
}

body {
    font-family: Mulish;
    margin: 0;
}

.main_container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.left_box {
    width: 33.333%;
    height: 100vh;
    display: flex;
}

.middle_box {
    width: 50%;
    height: calc(100vh - 130px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0 80px;
    background-image: url("../img/image (21).png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.middle_box .socials {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}

.middle_box .socials a {
    display: block;
    width: 75px;
    height: 75px;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    transition: all ease 0.4s;
}

.middle_box .socials a:hover {
    transform: scale(1.2);
}

.middle_box .socials .fb {
    background-image: url("../img/icons8-facebook (1).svg");
}

.middle_box .socials .ig {
    background-image: url("../img/icons8-instagram.svg");
}

.middle_box .phone {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.middle_box .phone i {
    display: block;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    transition: all ease 0.4s;
    background-image: url("../img/phone-call-svgrepo-com.svg");
}

.middle_box .phone a {
    color: #fff;
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.right_box {
    width: 50%;
    height: 100vh;
    display: flex;
}

#logo {
    width: 400px;
    /*height: 300px;*/
    margin: 0 auto;
    display: block;
}

.text_box {
    text-align: center;
}

.text_box .intro {
    font-size: 22px;
    color: #424242;
}

.text_box .coming_soon {
    font-family: Dancing;
    font-weight: bold;
    font-size: 40px;
    margin: 0;
}

.text_box .description {
    font-family: Mulish;
    color: #424242;
    margin: 0;
}

.social_box {
    text-align: center;
    margin-top: 35px;
}

.social_box #fb_icon {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin: 0 20px;
    background-image: url("../img/Facebook_F_icon.svg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.social_box #ig_icon {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin: 0 20px;
    background-image: url("../img/ig.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.phone_box {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 35px;
}

.phone_box .phone {
    text-decoration: none;
    font-family: Mulish;
    color: #424242;
    display: inline-flex;
    align-items: center;
    font-weight: bold;
}

.phone_box .phone_icon {
    width: 26px;
    height: 26px;
    display: inline-block;
    margin-right: 10px;
    background-image: url("../img/phone-534.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.slider {
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.slider .item {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider .item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

@media (max-width: 767px) {
    .main_container {
        display: block;
    }

    .middle_box {
        background-image: none;
        width: 100%;
        background-color: #55555563;
        position: absolute;
        z-index: 100;
    }

    .right_box {
        width: 100%;
        filter: blur(7px);
    }
}

@media (max-width: 430px) {
    #logo {
        width: 300px;
    }
}