*{
    margin: 0;
    padding: 0;
}
body{
    background: url("../images/retro-living-room-interior-design.jpg") no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}
 /* navbar section */
 .list ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    list-style-type: none;
    color: #fff;
 }
 .list-item{
   position: relative;
   bottom: 30px;
   left: 200px;
   font-size: 20px;
 }
  h2{ 
    position: relative;
    left: 65px;
    bottom: 70px;
 }
 .list-item img{
    position: relative;
    right: 30px;
    bottom: 10px;
 }
 hr{
    width:62%;
    position: relative;
    left:450px;
    bottom: 80px;
    background-color: #fff;
 }
 .logo{
  position:relative;
  top: 30px;
  left: 30px;
 }
 .heading h1{
    font-size: 55px;
    position: relative;
    left: 70px;
    color: #fff;
 }
 button{
    position: relative;
    left:80px;
    top:40px;
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #fff;
    border-radius: 40px;
    padding: 14px 40px;
    cursor: pointer;
    font-weight: 600;
 }
 i{
    font-size:40px;
    color: #000;
    padding: 2px 15px;
    padding: 2px 30px;
    border: 2px solid #fff;
    background-color: #fff;
    border-radius: 20px;
 }
 p{
    font-size: 25px;
    color: #fff;
    margin-top: 15px;
 }
 .svg-1{
   width: 300px;
   height: 140px;
   padding: 20px 20px;
   position: relative;
   bottom: 200px;
   left: 900px;
   background-color: #2F4556;
 }
 .svg-2{
    font-size: 40px;
    color: #000;
    width: 300px;
    height: 140px;
    padding: 20px 20px;
    position: relative;
    bottom: 200px;
    left: 400px;
    background-color: #2F4556;
 }
 h3{
    font-size: 25px;
    color: #fff;
 }
.circle-line1{
  position: absolute;
  height: 70px;
  width: 2px;
  background-color: #FFFFFF;
  left: 200px;
  top: 180px;
  transform: rotate(-180deg);
}
.circle-line1 .circle1{
 position: absolute;
 width: 20px;
 height: 20px;
 border-radius: 50px;
 background-color: #FFFFFF;
 bottom: 50px;
 left: -8px;
}

.circle-line2{
  position: absolute;
  height: 70px;
  width: 2px;
  background-color: #FFFFFF;
  right: -36px;
  top: 40px;
  transform: rotate(-90deg);
}
.circle-line2 .circle2{
 position: absolute;
 width: 20px;
 height: 20px;
 border-radius: 50px;
 background-color: #FFFFFF;
 bottom: 0;
 left: -8px;
}
.mob-list{
   display: none;
}
@media only screen and (min-width: 300px) and (max-width: 480px) {
   .list-item{
       display: none;
   }
   
   .menu-btn {
       position: relative;
       left: 1000px;
       bottom: 80px;
       top: 50px;
       display: flex;
       justify-content: center;
       align-items: center;
       width: 80px;
       height: 80px;
       cursor: pointer;
       transition: all .5s ease-in-out;
       /* border: 3px solid #fff; */
     }
     .menu-btn__burger {
       width: 30px;
       height: 3px;
       background: #fff;
       border-radius: 5px;
       box-shadow: 0 2px 5px rgba(255,101,47,.2);
       transition: all .5s ease-in-out;
     }
     .menu-btn__burger::before,
     .menu-btn__burger::after {
       content: '';
       position: absolute;
       width: 30px;
       height: 3px;
       background: #fff;
       border-radius: 5px;
       box-shadow: 0 2px 5px rgba(255,101,47,.2);
       transition: all .5s ease-in-out;
     }
     .menu-btn__burger::before {
       transform: translateY(-8px);
     }
     .menu-btn__burger::after {
       transform: translateY(8px);
     }
     /* ANIMATION */
     .menu-btn.open .menu-btn__burger {
       transform: translateX(-50px);
       background: transparent;
       box-shadow: none;
     }
     .menu-btn.open .menu-btn__burger::before {
       transform: rotate(45deg) translate(35px, -35px);
     }
     .menu-btn.open .menu-btn__burger::after {
       transform: rotate(-45deg) translate(35px, 35px);
     }  
     
     .mob-nav{
       background-color: #fff;
       height: 100vh;
       width: 60vw;
       position: absolute;
       top: 0%;
       left: -300%;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: 1s;
       font-size: 50px;
     }
     
      .remove{
       left: 0%;
     } 
     
     .mob-list{
       list-style-type: none;
       display: flex;
       align-items: center;
       justify-content: center;
       flex-direction: column;
       font-size: 1.2em;
       color: #082033;
       font-weight: 800;
     }
     
     .mob-list li{
       margin-top: 20%;
     }

           
     .mob-list li:hover{
       background-color: #082033;
       color: #fff;
     }
     .heading h1{
      margin-top: 100px;
     }
   }