.welcome-company-info {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgb(255 255 255 / 60%);
    height: 80%;
    overflow: scroll;
    padding: 40px 50px;
    color: white;
    justify-content: center;
    align-items: center;
}

.welcome-section {
    height: 100%;
    min-height: 60vh;
    overflow: hidden;
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
}

.welcome-container .welcome-section {
    width: 60%;
}

.welcome-section.layout2 {
    width: 30%;
    display: flex;
    justify-content: center;
}

.welcome-container {
    display: flex;
    flex-direction: row-reverse;
}

.welcome-holder {
    width: 86%;
}

.welcome_company_title {
    font-size: 35px;
    font-weight: 300;
    color: var(--primary-color);
}

.get_direction {
    font-size: 24px;
    font-weight: 500;
    color: #000;
}

p.welcome_company_adress {
    text-align: center;
    width: 70%;
	color: #000;
}

.welcome_company_phone {
    text-align: center;
	color: #000;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .welcome-container {
        flex-direction: column;
        padding: 15px;
    }
    
    .welcome-section.layout2 {
        width: 100% !important;
    }
    
    .welcome-company-info {
        width: 100%;
        padding: 15px;
    }
    
    .welcome-section {
        padding: 0;
    }
    
    .welcome_company_adress p {
        text-align: center;
    }
}


@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
      .welcome-container {
        flex-direction: column;
        min-height: 30vh;
    }
    .welcome-company-info{
        width: 100%;
    }
    .welcome-section {
        min-height: 30vh;
    }
}