.container {
    color: #fff;
    font-family: "Public sans", sans-serif;
    position: relative;
    /* min-height: 100vh; */
    background: var(--gradient);
    margin-top: 60px;
}
.white {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 50%;
    background: #fff;
}
.content {
    position: relative;
    padding: 60px 0px;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header .logo {
    color: #000;
    display: flex;
    align-items: center;
}
.header .logo img {
    width: 75px;
}
.header .logo p {
    margin-left: 15px;
    font-size: 24px;
    font-weight: 200;
}

.laptop_img {
    margin-top: 40px;
    width: 50%;
}

.contact {
    width: 90%;
    max-width: 750px;
    display: flex;
    flex-direction: column;
}
.contact_container {
    padding: 40px 0px;
    width: 50%;
    align-items: center;
    justify-content: center;
}
.contact .contact_container:first-child {
    /* width: calc(50% - 2px); */
    width: 100%;
    /* border-right: 1px solid #fff; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact .contact_container:last-child {
    padding-left: 10px;
}
.contact_container {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}
.phone_number {
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.whatsapp_icon {
    width: 35px;
    margin-right: 10px;
}
.contact_container_additional {
    font-size: 16px;
    margin-left: 20px;
    font-weight: 400;
    text-align: left;
    text-transform: none;
}
.contact_container_additional p:first-child {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}
.contact_container_additional p {
    font-size: 14px;
}

@media screen and (max-width: 950px) {
    .laptop_img {
        width: 80%;
    }
    .contact {
        width: 90%;
    }
}

@media screen and (max-width: 700px) {
    .contact {
        flex-direction: column;
    }
    .contact_container {
        width: 100%;
        flex-direction: column;
    }
    .contact .contact_container:first-child {
        border-right: none;
        width: 100%;
        /* border-bottom: 1px solid #fff; */
    }
    .contact_container_additional {
        text-align: center;
        margin-top: 20px;
    }
}
@media screen and (max-width: 550px) {
    .white {
        height: 30vh;
    }
    .laptop_img {
        width: 90%;
    }
}
