@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
:root{
    --main-color: #8b322c;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
p,a,h1,h2,h3 {
  font-family: 'Cairo';
}
img{
    pointer-events: none;
}
.explore{
    position: relative;
    margin-top: 68px;
}
.explore img{
    width: 100%;
    height: 100%;
}
.explore button {
    position: absolute;
    right: 8%;
    bottom: 18%;
    border-radius: 15px;
    width: 12%;
    height: 9%;
    color: white;
    border: 2px solid white;
    background-color: transparent;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}
.explore button:hover{
    background-color: white !important;
    color: var(--main-color) !important;
    font-weight: bold;
}
@media (max-width: 1200px) {
    .explore button {
        font-size: 14px;
        width: 14%;
        height: 11%;
    }
}
@media (max-width: 850px) {
    .explore button {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .explore {
       margin-top: 100px;
    }
}

@media (max-width: 727px) {
    .explore button {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .explore button {
        font-size: 10px;
    }
}

@media (max-width: 557px) {
    .explore button {
        font-size: 8px;
        width: max-content;
    }
}

@media (max-width: 400px) {
    .explore button {
        font-size: 11px !important;
    }
}

@media (min-width: 461px) {
    .explore2{
        display: none;
    }
    .explore1{
        display: block;
    }
    .service2{
        display: none;
    }
    .service1{
        display: block;
    }
}
.features{
    margin-top: 60px;
    margin-bottom: 60px;
}
.features h2{
    padding-bottom: 10px;
    font-size: 35px;
    text-align: center;
    color: var(--main-color);
    font-weight: bold !important;
}
.feat-content{
    display: flex;
    justify-content: space-around;
}
.feat-content img{
    width: 25%;
    height: 100%;
}
@media (max-width:460px) {
    .explore1{
        display: none;
    }
    .explore2{
        display: block;
    }
    .feat-content{
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .feat-content img{
        width: 50%;
    }
    .features h2{
        font-size: 25px;
    }
    .explore button {
        width: 30%;
        height: 5%;
        right: 50%;
        font-size: 16px;
        bottom: 7%;
        transform: translateX(50%);
    }
    .service1{
        display: none;
    }
    .service2{
        display: block;
    }
}
.services img{
    width: 100%;
    height: 100%;
}
