*{
    margin: 0px;
    padding: 0px;
}

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

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.inter{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* shared class */

header, main{
    max-width: 1440px;
    margin: 0 auto;
}
section{
    width: 100%;
}

.bg-color{
    background-color: rgba(170, 170, 170, 1);
}

.color-3A3A3A{
    color: rgba(58, 58, 58, 1);
}

.display-flex{
    display: flex;
}

.btn-primary{
    color: #fff;
    font-weight: bold;
    background-color: rgba(224, 44, 109, 1);
    padding: 10px 24px;
    border-radius: 40px;
    border-style: none;
}

/* nav styles */

nav{
    justify-content: space-between;
    align-items: center;
    padding: 80px 0px;
}

nav h2{
    font-size: 24px;
}

nav ul{
    gap: 35px;
}

nav ul li{
    list-style: none;
}

ul li a{
    text-decoration: none;
    color: rgba(58, 58, 58, 1);
}

.icon{
    scale: 1.2;
}

/* banner style */

.banner{
    height: 500px;
    background-position: right top;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}
.banner-content{
    width: 580px;
    height: 270px;
}

.heading{
    font-size: 3.25rem;
}
.description{
    font-weight: 600;
    padding-right: 50px;
    margin: 20px 0;
}
.banner-image{
    height: 500px;
    width: 33%;
    background-image: url(../images/Circle\ design.svg);
    background-repeat: no-repeat;
}
.banner-image img{
    margin-top: 30px;
    margin-left: 10px;
}

/* brand-logo design */
.brand-logo{
    gap: 80px;
    justify-content: center;
    align-items: center;
}

.logo{
    scale: 1.3;
}

/* responsive design */
.hide{
    display: none;
}

@media screen and (max-width:576px){
    nav,
    nav ul,
    .banner
    {
        flex-direction: column;
    }
    nav{
        width: 100%;
        padding-top: 40px;
    }
    nav ul{
        margin-top: 20px;
        gap: 10px;
    }
    .icon{
        margin-left: 17px;
    }
    .banner{
        width: 100%;
        height: auto;
        flex-direction: column-reverse;
        margin-top: -120px;
    }
    .banner-content{
        width: 400px;
        height: 220px;
    }
    .heading{
        font-size: 1.75rem;
    }
    .banner-image{
        width: 115%;
        scale: 0.7;
        margin-bottom: 15px;
    }
    .banner-content{
        height: auto;
        text-align: center;
        margin: 0 20px;
        width: calc(100% - 40px);
        margin-top: -86px;
    }
    .description{
        padding-right: 0;
    }
    .brand-logo{
        flex-wrap: wrap;
        gap: 10px;
        margin-top: -40px;
    }
    .logo{
        scale: 0.7;
    }
}

@media screen and (min-width:576px) and (max-width:992px){
    nav {
        padding: 60px 20px;
        width: calc(100% - 40px);
    }
    .banner-content{
        width: 450px;
        height: auto;
        scale: 0.9;
        margin-left: -20px;
    }
    .heading{
        font-size: 2.5rem;
    }
    .banner-image{
        width: 480px;
        height: auto;
        scale: 0.6;
        margin-right: -100px;
    }
    .banner{
        height: auto;
        margin: 0 20px;
        width: calc(100% - 40px);
        margin-top: -110px;
        padding: 0;
    }
    .brand-logo{
        flex-wrap: wrap;
        gap: 15px;
        margin-top: -50px;
    }
    .logo{
        scale: 0.8;
    }
}