@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0 8vw;
    font-family: 'montserrat';
    background-color: #F3F3F3;
}

.container {
    width: calc(100% - 16vw);
    height: max-content;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 25px;
}

.container .clm1 {
    width: 650px;
    height: 650px;
    position: relative;
    flex-shrink: 0;
}

.container .clm1 .wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #F97240;
    box-shadow: -14px 24px 30px #3d3d3d4d;
}

.container .clm1 h1 {
    font-size: 85px;
    font-weight: 400;
    text-transform: uppercase;
}

/* Bsuiness information and signup form */

.container .clm2 {
    width: 100%;
    height: 585px;
    position: relative;
    
}

.container .clm2 .wrapper {
    width: 100%;
    height: 100%;
    padding: 100px;
    box-sizing: border-box;
    background-color: white;
}

.container .clm2 .title {
    display: flex;
    flex-direction: column;
    margin: 0 0 50px 0;
    padding: 0 0 25px 0;
    border-bottom: 1px solid #F97240;
}

.container .clm2 .title span:nth-child(1) {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #F97240;
}

.container .clm2 .title span:nth-child(2) {
    width: 100%;
    text-wrap: wrap;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #A3A3A3;
}

.container .clm2 .contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.container .clm2 .phone, .container .clm2 .email {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #919191;
}

.container .clm2 .contact-info img {
    width: 40px;
}

/* Mobile View */

@media screen and (width < 1300px) {
    .container {
        width: calc(100% - 16vw);
        min-width: calc(380px - 16vw);
        height: max-content;
        padding: 100px 0 20px 0;
        position: absolute;
        top: 0;
        transform: translate(0, -50px);
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 25px;
    }

    .container .clm1 {
        width: 100%;
        height: 650px;
        position: relative;
        flex-shrink: 0;
    }
    
     .container .clm2 .title{
         gap: 20px;
     }

    .container .clm2 .title span {
        align-items: center;
        text-align: center;
    }

    .container .clm2 .phone, .container .clm2 .email {
        width: 100%;
        flex-direction: column;
        font-size: 18px;
    }

}

@media screen and (width < 600px) {
    .container .clm2 .wrapper {
        padding: 100px 10%;
        box-sizing: border-box;
    }

    .container .clm1 h1 {
        font-size: 12vw;
        text-align: center;
    }

    .container .clm2 {
        box-sizing: border-box;
        height: 700px;
    }

}