*{
    padding: 0;
    margin: 0;
    --red: #ff6347 ;
    --blue: #47e3ff;
    --grey: #36454f;
    --dark-grey: #1d1d1d;
    font-family: Open Sans;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    scroll-behavior: smooth;

}
@font-face {
    font-family: Open Sans;
    src: url(OpenSans-VariableFont_wdth\,wght.ttf);
}
.left{
  list-style: none;
  padding: 0;
}

.left li{
  position: relative;
  padding-left: 24px;
}

.left li::before {
  content: '';
  background: url('/tick-box-with-a-check-mark-svgrepo-com.svg') no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
a{
    text-decoration: none;
    color: var(--red)
}
img{
    width: 100%;
    height: auto;
    border-radius: 1rem;
}
body::-webkit-scrollbar {
  display: none;
}
header{
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    position: sticky;
    background-color: white;
    width: 100%;
    top: 0;
    z-index: 999;
}
.container{
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin: 5vw auto;
    flex-wrap: wrap;
    padding: 1rem;
    border-radius: 1rem;
}
.btn-row{
    padding: 1rem 0;
    margin: 0.5rem 0;
}
.btn{
    color: white;
    font-size: 0.9rem;
    background-color: #1d1d1d;
    border-radius: 0.5rem;
    padding: 1rem;
    font-weight: 700;
}

.smaller{
    color: var(--red)
}
.mhero{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--red);
    color: white;
   
}
.part-1{
    text-align: left;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
.part-2 img{
    border-radius: 1rem;
}
.left{
    text-align: left;
    padding: 1rem 0;
}
.img-con-1{
    width: 90%;
}
.cta{
    background-color: var(--red);
    color: white;
}
.cfooter{
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 1rem;
}
.cfooter ul{
    list-style: none;
    
}




@media (max-width: 1300px){
    .container{
        border-radius: initial;
    }
}
@media (max-width: 756px) {
    .container{
        font-size: 0.8rem;
    }
    .hero{
        margin: 8rem auto;
    }
    .features{
        margin: 8rem auto;
    }
    .cta{
        margin: 8rem auto;
    }
}
@media (max-width: 600px) {
    .mhero{
        grid-template-columns: 1fr;
    }
}