.header{
    height: 90px;
}
.about {
    height: calc(100vh - 90px);
    background-image: url(/images/about.png);
    background-repeat: no-repeat;
    
}
.about .content {
    right: 30%;
}
@media(max-width : 991px) {
    .about .content {
        right: 15%;
    }
    .about {
        background-size: cover;
        height: 60vh;
    }
}
@media(max-width : 767px){
    .about{
        height:50vh;
    }    
}
@media(max-width : 440px){
    .about{
        height:25vh;
    }    
}
.about .content h2{
    color: var(--main-color);
    padding-bottom: 10px;
}
.about .content h2::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 2px;
    background-color: var(--main-color);
}
.about-us{
    margin-top: 90px;
}
@media(min-width : 992px){
    .about-us .row > div {
    height: 500px;
    img{
        height: 100%;
        object-fit: cover;
    }
}
.about-us .para {
    width: 75%;
}

}
.about-us .learn{
    border: 1px solid var(--main-color);
    transition: var(--trans) linear;
}
.about-us .learn:hover{
    background-color: var(--main-color);
    color: white;
}
.about-us .image::before , .about-us .text::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 160px;
    background-color: var(--alt-color);
    z-index: -1;
}
.about-us .image::before{
    left: -80px;
    top: 40px;
}
.about-us .text::after{
    right: -80px;
    bottom: 40px;
}
.res .info {
    margin: 90px 0;
}
@media(max-width : 991px) {
    .res .info {
        width: auto !important;
    }
}
.res .boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(400px , 1fr));
    align-items: center;
}

.res img {
    width: 100%;
    height: 500px;
    object-fit: cover;
} 
.res h6 {
    letter-spacing: 5px;
}
.swiper {
  width: 100%;
  height: 300px;
}

.swiper-wrapper {
  display: flex;
  font-size: 24px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.delivery {
    margin: 90px 0;
}
.delivery .text {
    margin-bottom: 90px;
}