.section-home{
    min-height: 35vh;
    position: relative;
}

.section-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./../assets/bg-1.jpg');
    background-size: cover;
    z-index: -1; 
    transform: rotate(180deg);
}


.about-us {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.about-container{
    /* border: 1px solid red; */
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row !important;
    align-items: start !important;
}

.about-column {
    /* border: 1px solid red; */
    width: 100%;
    height: 500px; 
    margin-top: 50px;
    margin-bottom: 50px;
}

.left-column {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.small-image {
    position: relative;
}

.small-image img {
    max-width: 100%;
    height: auto;
}

.image-text {
    position: absolute;
    top: 50%;
    left: 17.5%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.right-column {
    width: 50%;
    background-size: cover;
    background-position: center;
}

.content .about-head{
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 50px;
}

.content .about-content{
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    color: #646464;
}

.contact-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    /* border: 2px solid #ff0336; */
    height: 55px;
    width: 200px;
    background-color: #ff0336;
    margin-top: 40px;
    position: relative;
    color: #fff;
}


.contact-btn .custom-icon{
    color: #000;
}

.contact-btn:after {
    content: "";
    height: 55px;
    width: 200px;
    border: 1px solid #ff033566;
    position: absolute;
    top: -15px;
    left: 15px; 
    transition: all .4s;
}

.contact-btn:hover:after {
    top: 0;
    left: 0;
}

.column2{
    margin-left: 40px;
}

@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
  }


  .social-buttons {
    margin-top: 20px;
}

.socials {
    cursor: pointer;
    font-size: 24px;
    color: #333;
    margin-right: 10px;
}

.socials:last-child {
    margin-right: 0;
}

.hamburger {
    display: none;
}

.navigation-items {
   display: none;
}

@media only screen and (max-width: 1500px) {
    .section-about .about-container {
        padding-left: 120px;
        padding-right: 120px;
    }

    .image-text{
        left: 19.5%;
    }

    .left-column{
        height: auto;
    }

    .footer{
        padding: 0 120px;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 1300px) {
    .image-text {
        left: 22%;
    }

    .section-about .about-container{
        padding-left: 50px;
        padding-right: 50px;
        height: auto;
    }

    .left-column {
        height: auto;
    }
}

@media only screen and (max-width: 1150px) {
    .image-text {
        left: 23%;
    }
}

@media only screen and (max-width: 1070px) {
    .image-text {
        left: 32%;
    }
}

@media only screen and (max-width: 900px) {
    .image-text {
        left: 27%;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        color: #fff;
        font-size: 26px;
    }

    .nav-buttons{
        display: none;
    }

    .navigation-items {
        position: fixed;
        top: 0;
        width: 100%;
        height: 50vh;
        background-color: #fff; 
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        right: -100%;
    }

    .navigation-items.active {
        right: 0;
    }

    .navigation-items .nav-button{
        color: #000;
        line-height: 50px;
        transition: 0.3s ease-in-out;
        font-size: 20px;
        font-weight: 700;
    }

    .navigation-items .nav-button:hover{
        color: #ff0336;
    }

    .close-icon {
        position: absolute;
        top: 10px;
        right: 10px; 
        cursor: pointer;
        font-size: 26px;
        font-weight: 700;
        transition: 0.3s ease-in-out;
    }

    .close-icon:hover{
        color: #ff0336;
    }
}

@media only screen and (max-width: 790px) {
    .image-text {
        left: 19% !important;
        width: 140px;
    }

    .right-column {
        display: none;
    }

    .section-about .about-container {
        padding-left: 10px;
        padding-right: 10px;    
        height: auto;
    }

    .left-column {
        width: 90%;
        margin-bottom: 0px;
        height: auto;
    }

    .column2 {
        margin: 0;
        margin-top: 30px;
        height: auto;
    }

    .contact-btn{
        height: 50px;
        width: 160px;
    }

    .contact-btn::after{
        height: 50px;
        width: 160px;
    }

    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-logo {
        width: 100%;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
    }

    .footer-nav, .working-hours{
        line-height: 30px;
    }
}

@media only screen and (max-width: 570px) {
    .image-text {
        left: 27.5% !important;
    }
 
    .navbar{
        gap: 270px;
    }

    .logo{
        position: relative;
        left: 55%;
        height: 50px;
    }

    .hamburger {
        position: relative;
        right: 30%;
    }
    
    .navbar{
        height: 80px;
    }

    .navbar.scrolled {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 330px;
        margin: 0;
        padding-top: 20px;
        padding-right: 10px;
        padding-left: 10px;
        height: 80px;
    }
    
    .navbar.scrolled .hamburger{
        margin-right: -55px;
    }

    .navigation-items.active {
        width: 100%;
    }

    .section-home{
        height: 25vh;
    }

    .right-column {
        display: none;
    }

    .section-about .about-container {
        padding-left: 10px;
        padding-right: 10px;    
        height: auto;
    }

    .left-column {
        width: 90%;
        margin-bottom: 0px;
        height: auto;
    }

    .column2 {
        margin: 0;
        margin-top: 30px;
        height: auto;
    }

    .contact-btn{
        height: 50px;
        width: 160px;
    }

    .contact-btn::after{
        height: 50px;
        width: 160px;
    }
    
    
}

@media only screen and (max-width: 460px) {
    .image-text {
        left: 55% !important;
    }
    
    .content .about-head {
        font-size: 28px;
    }
}

@media only screen and (max-width: 414px) {
    .image-text {
        left: 38% !important;
    }
}

@media only screen and (max-width: 405px) {
    .image-text {
        left: 45% !important;
    }
}

@media only screen and (max-width: 390px) {
    .image-text {
        left: 44% !important;
    }
}

@media only screen and (max-width: 330px) {
    .image-text {
        left: 55% !important;
    }
}