@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

.box {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
    padding: 20px;
}

.boxes {
    max-width: 1000px;
    width: 100%;
    max-height: max-content;
    height: 100%;
    border: 2px solid rgb(180, 180, 180);
    border-radius: 20px;
}

.circle {
    width: 212px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 120px;
    border: 4px solid black;
    background-color: rgb(16, 87, 139);
    color: white;
    text-align: center;
}

.offer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: rgb(4, 135, 153);
    margin-top: 80px;
    z-index: 20;
}

.offer h1 {
    font-size: 18px;
}

.gift {
    margin-right: 8px;
    font-size: 20px;
    color: rgb(4, 135, 153);
    padding: 9px;
}

.h21 {
    font-size: 16px;
    text-transform: capitalize;
    margin-top: 40px;
}

.h22 {
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
}

.p {
    font-size: 20px;
    color: rgba(7, 253, 7, 0.749);
    margin-top: 20px;
}

.h1 {
    font-size: 25px;
}

.box1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 50px;
    gap: 10px;
}

.box2 {
    max-width: 220px;
    width: 100%;
}

.star {
    font-size: 10px;
    color: gold;
}

h3 {
    color: rgb(4, 135, 153);
    text-transform: capitalize;
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
}

.summeroffer {
    margin-top: 10px;
    font-size: 14px;
    margin-left: 4%;
    color: rgb(55, 72, 103);
}

.quote {
    font-size: 30px;
    margin-left: 4%;
    color: rgb(55, 72, 103);
}

.quotes {
    font-size: 30px;
    display: flex;
    justify-content: end;
    margin-right: 10%;
    color: rgb(55, 72, 103);
}

.box5 {
    display: flex;
    justify-content: end;
}

.box5 img {
    width: 290px;
    height: 200px;
}
.code{
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 14px;
}
.code span:last-child{
    border: 1px solid #088994;
    padding: 5px 10px;
    border-radius: 15px;
}
@media (max-width:768px) {
    .circle{
        height: 125px;
        width: 125px;
        z-index: 1;
        right: 8px;
    }
    .h21 {
        font-size: 12px;
        margin-top: 20px;
    }
    
    .h22 {
        font-size: 12px;
        margin-top: 5px;
    }
    
    .p {
        font-size: 16px;
        margin-top: 10px;
    }
    
    .h1 {
        font-size: 16px;
    }
}
@media (max-width:1234px) and (min-width:767px) {
    .circle{
        right: 8px;
    }
}