*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
background-color: white;
overflow-x: hidden;
}

button{
    
    color:#ED2524;
    background-color: white;
    border-color: #ED2524;
    box-shadow: 12px;
    width: 115px;
    height: 35px;
    border-radius: 30px;
    
}
/*HORIZONTAL RULE CSS*/
.hrabout{
    width: 50%;
    margin-left: 5%;
    padding-bottom: 60px;
    margin-top: 100px;
    
}

.hrtestimonials{
    width: 95%;
    margin-left: 3%;
    margin-top: -150px;
}

.hr3getsocial{
    width: 45%;
    margin-left: 5%;
    margin-top: 55px;
    margin-bottom: 40px;
}

.hr4location{
    width: 85%;
    margin-left: 5%;
    margin-bottom: 5%;
    
}

.hrcopyright{
    width:90%;
    margin-left: 65px;
}



/*END OF HORIZONTAL RULE CSS*/

/*POPUP CSS*/
.overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
 }

 .overlay:target{
    visibility: visible;
    opacity: 1;
 }
 .wrapper{
    margin: 70px auto;
    padding: 20px;
    background: #e7e7e7;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 3s ease-in-out;
 }

 .wrapper h2{
    margin-top: 0;
    color: #333;

 }

 .wrapper .close{
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: 400px;
    text-decoration: none;
    cursor: pointer;
    color: #333;
 }

 .wrapper .popupcontent{
    max-height: 30%;
    overflow: auto;
 }

 .popupcontainer{
    border-radius: 5px;
    background-color: #e7e7e7;
    padding: 20px 0;
 }

 .popupform label{
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 3px;
 }

 input[type=text]{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=password]{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type ="submit"]{
    background-color: #413b3b;
    color: #fff;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    
}

.popupform input[type ="button"]{
    background-color: #413b3b;
    color: #fff;
    padding: 15px 50px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2%;
}

/*END OF POPUP CSS*/

/*PC MR*/
@media screen and (min-width: 1080px) {
    html,body{

    }
    header{
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;  
    /* transition: background-color 0.5s ease-in-out; */
    padding-top: 45px;
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 20px;
    margin-bottom: -45px;
    display: inline-block;
}
    .content1img{
        border-radius: 55px 0 0 55px;
    }

    .footercontainer .row{
        
        padding-top: 75px;
    }

    .content2-left p{
        width: 70%;
    }

    .footercontainer .row .footer-col-right {
        margin-right: -65px;
    }

    h2{
        font-size: 36px;
    }

    .section4card{
        width: 400px;
    }
}
/*END OF PC MR*/



/*Mobile Responsiveness for iPad Mini*/
@media screen and (min-width: 650px) and (max-width: 768px){

  html,body{
      width: 100%;
      height: 100%;
      margin: 0;
      overflow-x: hidden;
      padding: 0;
      
    }
  
  /*MR for Phones Nav*/
  header{
      position: sticky;
      width: 100%;
      z-index: 1000;
      
  }
  .active_header
  {
      background-color: gainsboro;
      transition: 0.5 ease-in-out;
      
  }
  
   header nav{
      width: 100%;
      position: sticky;
    }
  
    .active_nav{
      background-color: gainsboro;
      
    }
  
  nav .logo{
      margin-left: -400px;
  }
    ul{
      
      position: fixed;
      width: 100%;
      height: 40vh;
      top: 100px;
      left: -100%;
      text-align: center;
      display: none;
      flex-direction: column;
      transition: all 0.5s;
      
    }
  
  ul.active{
      position: fixed;
      width: 100%;
      height: 40vh;
      top: 118px;
      left: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: 0.5s;
      background-color: gainsboro;
  }
  
    ul li{
      
      text-align: center;
      display: block;
      
    }
  
   
  
    ul li.active{
      
    }
  
  ul li a{
      padding: .5rem 1rem;
  
  }
  
  ul a:hover{
      
  }
  
    ul button{
      
      display: block;
    }
    
  
  nav .menu-toggle{
      display: block;
      position: absolute;
      margin-right: -600px;
    }
  
  
  
    /*End of MR for Phones Nav*/ 
  
    /*POPUP MR*/
    .wrapper{
      width: 50%;
    }
  
  
    /*END OF POPUP MR*/
  
  /*SECTION 1 MR*/
  .section1 /*CSS FOR SECTION 1*/{
  display: flex;
  flex-wrap: wrap;
  
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
  
  }
  
  h2 /*CSS FOR H2*/{
      font-size: 60px;
      margin-left: -2vh;
  }
  
  .content1-left{
      display: flex;
      
      width: 50%;
      padding: 70px;
      flex-direction: column;
      margin-right: 200px;
      
  }
  
  .content1-leftheading:after{
      margin-left: -10px;
      margin-bottom: -50px;
  }
  
  .content1-leftheading{
    margin-bottom: -150px;
  }

  .content1leftbutton
  {
      width: 300px;
      height: 50px;
      display: flex;
      border-radius: 100px;
      margin-top: -150px;
      position: relative;
      right: 80px;
  }
  
  .buttoncont1{
      padding: 5px 25px;
      border: 5px solid red;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 90px;
  }
  
  
  
  .content1-right{
  width: 100%;
  height: 500px;
  margin-left: 35px;
  }
  
  .content1img/*CSS FOR CONTENT 1 IMAGE*/{
  
      max-width: 600px;
      height: 700px;
      position: relative;
      margin-bottom: 50%;
      display: inline-block;
      border-radius: 55px;
      
  }
  
    
    /*END OF SECTION 1 MR*/
  
  /*HR ABOUT US MR*/
  .hrabout{
      margin-top: 400px;
      margin-bottom: -500px;
  }
  /*END OF HR ABOUT US MR */
  
  /*SECTION 2 MR*/
  .section2
  {
      display: flex;
      margin-top: -350px;
      height: auto;
      width: auto;
      align-items: center;
      justify-content: space-evenly;
      margin-bottom: 50px;
      flex-direction: column;
  }
  
  .content2-left{
  
  margin-top: 60%;
  margin-bottom: 50px;
  width: 500px;
  }
  
  .content2img{
      
      margin-bottom: 50%;
      margin-right: 1px;
      margin-left: -50px;
  }
  
  .content2-lefth3 h3{
    font-size: 40px;
  }
  
  .content2-left p{
    font-size: 20px;
  }
  
  /* END OFSECTION 2 MR*/
  
  /*SECTION 3 - CONTAINER MR*/
  .section3container{
      display: flex;
      flex-direction: column;
      align-items: center;
      
  }
  
  .hrtestimonials{
      width: 70%;
      margin-left: 3%;
      margin-top: 30px;
  }
  
  .section3container .section3card .imgbx{
    width: 500px;
  }
  
  .section3container .section3card{
      margin-bottom: 5px;
  }
  
  
  /*END OF SECTION 3 - CONTAINER MR*/
  
  
  /*SECTION 4 MR*/
  .section4container{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-right: 120px;
  }
  
  .section4container h4{
      
  }
  .section4left{
  
  }
  
  .section4card{
  margin-bottom: 300px;
  
  }
  
  
  /*END OF SECTION 4 MR*/
  
  
  /*HR 3 GET SOCIAL*/
  .hr3getsocial{
      margin-bottom: -450px;
  }
  
  .section4leftheader::before{
      display: none;
      }
  /*END OF HR 3 GET SOCIAL*/
  
  /*HR 5 LOCATION*/
  .hr4location{
     margin-top: -200px;
  }
  
  /*END OF HR 5 LOCATION*/
  
  
  
  
  /*SECTION 6 MR*/
  .section6contact-in{
     
      flex-wrap: wrap;
  }
  
  .section6contact-map iframe{
      width: 100%;
      height: 500px;
  }
  
  
  /*END OF SECTION 6 MR*/
  /*FOOTER MR*/
  
  .footercontainer{
      max-width: 1000px;
      margin: auto;
  }
  
  .footercontainer .row{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      margin-left: -100px;
      padding-top: 15px;
  }
  .footer-col-left{
  margin-left: 95px;
  
  }
  
  .footercontainer .row .footer-col{
      width: 35%;
      padding: 0 50px;
      }
      
  .footer-col-right{
      margin-right: -65px;
      width: 400px;
  }
  
  .hrcopyright{
      margin-left: 35px;
  }
  
  .contactusdeet1{
      padding-right: 55px;
      padding-bottom: 35px;
  }
  
  .contactus{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }

/*END OF FOOTER MR*/

}
/*End of Mobile Responsiveness for iPad Mini*/

/*Mobile Responsiveness for iPhone SE*/
@media screen and (min-width: 375px) and (max-width: 389px){

    html,body{
      width: 100%;
      height: 100%;
      margin: 0;
      overflow-x: hidden;
      
    }
  
  /*MR for Phones Nav*/
  header{
      
  }
  
   header nav{
      
    }

    .active_nav{
        
    }

  nav .logo{
      margin-left: -100px;
  }
    ul{
      position: fixed;
      width: 100%;
      height: 40vh;
      top: 100px;
      left: -100%;
      text-align: center;
      display: none;
      flex-direction: column;
      transition: all 0.5s;
      
    }
  
  ul.active{
      position: fixed;
      width: 100%;
      height: 590px;
      top: 80px;
      left: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: all 0.5s;
      background-color: gainsboro;
  }
  
    ul li{
      
      text-align: center;
      display: block;
      
    }
  
   
  
    ul li.active{
      
    }
  
  ul li a{
      padding: .5rem 1rem;
  
  }
  
  ul a:hover{
      
  }
  
    ul button{
      
      display: block;

    }
    
  
  nav .menu-toggle{
      display: block;
      position: absolute;
      margin-right: -300px;
    }
  
  
  
    /*End of MR for Phones Nav*/ 
  
    /*POPUP MR*/
    .wrapper{
      width: 80%;
    }
  
    .wrapper h2{
        font-size: 24px;
        margin-left: 0;
    }
  
    /*END OF POPUP MR*/
  
  /*SECTION 1 MR*/
  .section1 /*CSS FOR SECTION 1*/{
  display: flex;
  flex-wrap: wrap;
  
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
  
  }
  
  h2 /*CSS FOR H2*/{
      font-size: 35px;
      margin-left: -120px;
  }
  
  .content1-left{
      display: flex;
      
      width: 50%;
      padding: 70px;
      flex-direction: column;
      
  }
  
  .content1-leftheading:after{
      margin-left: -115px;
      margin-bottom: 10px;
  }
  
  .content1leftbutton
  {
      width: 300px;
      height: 50px;
      display: flex;
      border-radius: 100px;
      margin-top: -150px;
      position: relative;
      left: -20px;
  }
  
  .buttoncont1{
      padding: 5px 25px;
      border: 5px solid red;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-left: -160px;
      
  }
  
  
  
  .content1-right{
  width: 100%;
  height: 500px;
  margin-left: 67px;
  }
  
  .content1img/*CSS FOR CONTENT 1 IMAGE*/{
  
      max-width: 350px;
      max-height: 400px;
      position: relative;
      margin-bottom: 50%;
      display: inline-block;
      margin-left: -105px;
  }
  
    
    /*END OF SECTION 1 MR*/
  
  /*HR ABOUT US MR*/
  .hrabout{
      margin-top: 350px;
      margin-bottom: -500px;
  }
  /*END OF HR ABOUT US MR */
  
  /*SECTION 2 MR*/
  .section2
  {
      display: flex;
      margin-top: -350px;
      height: auto;
      width: auto;
      align-items: center;
      justify-content: space-evenly;
      margin-bottom: 50px;
      flex-direction: column;
  }
  
  .content2-lefth3{
    width: 300px;
  }
  .content2-left{
  
  margin-top: 70%;
  margin-bottom: 50px;
  padding-top: 230px;
  margin-right: 150px;
  }
  
  .content2-left p{
    width: 210px;
  }
  .content2img{
      
      margin-bottom: 50%;
      margin-left: -55px;
  }
  
  
  
  /* END OFSECTION 2 MR*/
  
  /*SECTION 3 - CONTAINER MR*/
  .section3container{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 200px;
      margin-bottom: -150px;
  }
  
  .hrtestimonials{
      width: 70%;
      margin-left: 3%;
      margin-top: 30px;
      margin-bottom: 50px;
  }
  
  
  
  .section3container .section3card{
      margin-bottom: -200px;
  }
  
  .section3container .section3card .imgbx {
    margin-left: 4px;
  }
  
  /*END OF SECTION 3 - CONTAINER MR*/
  
  
  /*SECTION 4 MR*/
  .section4container{
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-right: 130px;
  }
  .section4quotemark{
    margin-bottom: -30px;
    position: relative;
    right: 100px;
  }

  .section4leftheader{
    margin-bottom: 35px;
    margin-right: -20px;
    width: 300px;
    margin-left: -80px;
  }
  .section4container h4{
      
  }
  .section4left{
  
  }
  
  .section4card{
  margin-bottom: 300px;
  width: 400px;
  }
  
  
  
  /*END OF SECTION 4 MR*/
  
  
  /*HR 3 GET SOCIAL*/
  .hr3getsocial{
      margin-bottom: -450px;
  }
  
  .section4leftheader::before{
      display: none;
      }
  /*END OF HR 3 GET SOCIAL*/
  
  /*HR 5 LOCATION*/
  .hr4location{
     margin-top: -200px;
  }
  
  /*END OF HR 5 LOCATION*/
  
  
  
  
  /*SECTION 6 MR*/
  .section6contact-in{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }
  
  .section6contact-map iframe{
      width: 100%;
      height: 500px;
  }
  
  .section6contact-form{

  }

  .section6contact-map{

  }

  /*END OF SECTION 6 MR*/
  /*FOOTER MR*/
  .footer{
    
  }

  .footercontainer{
      max-width: 1000px;
      margin: auto;
      font-size: 12px;
      
  }
  
  .footercontainer .row{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      margin-left: -170px;
      padding-top: 5px;
  }
  .footer-col-left{
  margin-left: 135px;
  
  }
  
  .footercontainer .row .footer-col{
      width: 35%;
      padding: 0 50px;
      }
      
  .footer-col-right{
      width: 190px;
  }
  
  .footer-col-right p{
    width: 160px;
    
  }

  .hrcopyright{
      margin-left: 35px;
  }
  
  .contactusdeet1{
      padding-right: 55px;
      padding-bottom: 15px;
      width: 150px;
  }
  
  .contactus{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }

  .hrcopyright{
    margin-left: 15px;
}
  
  /*END OF FOOTER MR*/
  
  }



/*End of Mobile Responsiveness for phones*/


/*NAV BAR CSS*/

header{
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;  
    /* transition: background-color 0.5s ease-in-out; */
    padding-top: 45px;
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 20px;
    margin-bottom: -45px;
    display: inline-block;
}





header nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
      
}
/*Change Scroll CSS*/

.active_header
{
    background-color: gainsboro;
    transition: 0.5 ease-in-out;
    padding-top: 45px;
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 20px;
    margin-bottom: -45px;
}

.active_nav {
    background-color: gainsboro;
    
    
    
    
}
.active_nav ul a{
    color: black;
}

.active_nav .logo {
    color: white;
}
.active_nav ul a:hover {
    color: #ED2524;
}



/*End of Change Scroll CSS*/

.logo{
    color: black;
    text-transform:uppercase;
    letter-spacing: 5px;
    font-size: 12px;
    margin-right: 150px;
}

ul{
    display:flex;
    justify-content: space-evenly;
    width: 80%;
    margin-right: -50px;
    align-items: center;
}

ul li{

    list-style: none;
    
    
}
ul a{
    color: black; 
    text-decoration: none;
    transition: color 0.4 ease-in-out;
}



ul a:hover{
    color: red; 
    text-decoration: none;
    transition: 0.5s;
    
}

#navbutton{
    display: none;
}

.menu-toggle{
float: right;
line-height: 50px;
font-size: 24px;
cursor: pointer;
display: none;
position: absolute;
}

.checkbtn{
    float: right;
    cursor: pointer;

}







/*END OF NAV BAR CSS*/


/*RED LINE CSS*/

.redline{
    background-color: red;
    margin: 50px;
}

/*END OF RED LINE CSS*/


/*CONTENT 1 CSS*/
.section1 /*CSS FOR SECTION 1*/{
    display: flex;
    flex-wrap: wrap;

height: calc(100vh - 100px);
align-items: center;
justify-content: space-between;
margin: 50px;

}

h2 /*CSS FOR H2*/{
    
}



.content1-left /*CSS FOR CONTENT 1 LEFT PART*/{
    display: flex;
    justify-content: center;
    width: 30%;
    padding: 50px;
    flex-wrap: wrap;
    position: relative;
    margin: 50px;
}

.content1-leftheading{

}

.sectiontextholder{
    margin-right: -35px;
}

.content1-leftheading:after{
    position: absolute;
    background-color: gray;
    content: " ";
    height: 70px;
    width: 1px;
    bottom:30%;
    display: block;

}

.content1leftbutton
{
    
    margin-right: 180px;
    
}

.content1-right /*CSS FOR CONTENT 1 RIGHT PART*/{

    
}

.content1img/*CSS FOR CONTENT 1 IMAGE*/{

    width: 600px;
    height: 600px;
    /* border-radius: 55px 0 0 55px; */
    margin-right: -50px;
    
}



.content1leftbutton
{
    width: 500px;
    height: 50px;
    display: flex;
    border-radius: 100px;
    margin-left: 60px;
    
}

.buttoncont1{
    display: flex;
    padding: 0px 25px;
    justify-content: center;
    border: 2px solid red;
    border-radius: 30px;
    text-decoration: none;
    
    width: 170px;
    height: 40px;
   color: red;
}



/*END OF CONTENT 1 CSS*/


/*CONTENT 2 CSS*/


.section2 /*CSS FOR SECTION 2*/{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 50px;
    padding: 30px;
}

.content2-left{
    width: 30%;
    
}
.content2-lefth3{
    position: relative;
    
}
.content2-lefth3::before{
content: "";
width: 3px;
height: 40px;
background-color: #ED2524;
top:15px;
left: 0;
position: absolute;
margin-left: -20px;
}

.content2img/*CSS FOR CONTENT 2 IMAGE*/{

    max-width: 500px;
    height: auto;
    max-height: 375px;
    border-radius: 35px;
    margin-right: -55px;
    
}

.content2-left p /*CSS CONTENT FOR PARAGRAPH ON CONTENT 2 LEFT*/{
    font-size: 12px;
    
    
}

h3{
    font-size:24px;
}



/*END OF CONTENT 2 CSS*/

/*CONTENT 3 CSS - CONTAINER*/
.section3background{
    background-color: gainsboro;
}
.section3container{
    display:flex;
    justify-content: center;
    margin-bottom: 20%;
    background-color: gainsboro;
}

.section3container .section3card{
    position: relative;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 170px;
    margin-top: 5%;
    transition: 0.5s ease-in-out;
    display: inline-block;
    background-color: gainsboro;
    
}

.section3container .section3card .imgbx{
    position: relative;
    width: 300px;
    height: 300px;
    top:-60px;
    left: 20px;
    background-color: white;
    border-radius: 15px 15px;
    
}

.section3cardtext{
    margin-top: -6px;
    background-color: white;
    padding: 40px;
    border-radius: 0 0 15px 15px;
    
}




.section3container .section3card .imgbx a
{
color: red;
text-decoration: none;

}

.section3container .section3card .imgbx img{
    max-width: 100%;
    border-radius: 15px 15px 0 0;
}

.section3arrow{
    float: right;
    margin-top: -35px;
    margin-right: 20px;
}

/*END OF CONTENT 3 CSS - CONTAINER*/

/*SECTION 4 CSS */
.section4container{
display:flex;
    justify-content: center;
    margin-bottom: 25%;
    margin-top: -50px;
    margin-left: 90px;
}




.section4container .section4left{
    width: 20%;
    margin-top: 12.5%;
}

.section4quotemark{
color: red;
width: 70px;
height: 70px;
margin-left:-20px ;
}

.section4container .section4card{
position: relative;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
    margin-top: 5%;
    transition: 0.5s ease-in-out;

}

.section4container .section4card .imgbx{
position: relative;
    width: 400px;
    height: 320px;
    top:-60px;
    left: 20px;
    margin-bottom: -350px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 1.2);
    border-radius: 15px;
    overflow: hidden;
}

.imgbxtext{
    color: red;
    font-size: 15px;
    margin-top: 15px;
}

.section4leftheader{

}
.section4leftheader::before{
position: absolute;
background-color: red;
content: " ";
width: 3px;
height: 62px;
margin-left: -20px;
}

.section4cardtext{
padding: 30px;
font-size: 15px;
}

.section4arrows{
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    
    margin-right: -1070px;
    margin-top: -140px;
    
}

/*END OF SECTION 4 CSS */

/*SECTION 6 CSS*/

.section6contact-in{
    width: 80%;
    height: auto;
    margin: auto;
    display: flex;
    
    padding: 10px;
    border-radius: 10px;
    justify-content: space-between;
    flex-direction: row;
    gap: 100px;
}

.section6contact-map{
    width: 100%;
    height: 500px;
    
    flex: 50%;
    
}

.section6contact-map iframe{
    width: 100%;
    height: 500px;
    border-radius: 25px 25px 25px 25px;
}

.section6contact-form{
    width: 100%;
    height: auto;
    flex: 50%;
    
}

.section6contact-form h1{

margin-bottom: 10px;
text-align: center;

}

.section6contact-form .section6contact-form-txt{
    width: 100%;
    height: 40px;
    color: #000;
    border: 1px solid gainsboro;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.section6contact-form-textarea{
    width: 100%;
    height: 140px;
    color: #000;
    border: 1px solid gainsboro;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}
.section6contact-form input[type = "submit"]
{

width: 125px;
border: 3px solid red;
outline: none;
border-radius: 50px;
text-transform: uppercase;
padding: 10px;
cursor: pointer;
color:red;
background-color: white;
}


/* END OF SECTION 6 CSS*/

/*FOOTER*/
.footercontainer{
    max-width: 1350px;
    margin: auto;
}
.footercontainer .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    
}

.footercontainer .row .footer-col-left{
width: 35%;
padding: 45px 50px;
}

.footercontainer .row .footer-col-right{
    
    padding: 0 50px;
    }

.footer-col-left p{
color: white;
}

.footer-col-right p{
    color: white;
    }

.footer-logo{
    display: flex;
    gap:10px;
    margin-top: -20px;
}

.footer-col-left h4{
    font-size:20px;
    color: white;
    text-transform: capitalize;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 3px;

}

    

.footer-col ul{
    list-style: none;
}

.footer-col-right ul li{
    margin-bottom: 10px;
    color: white;
}

.footer-col-right ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: #bbbbbb;
    text-decoration: none;
    display: flex;
    font-weight: 100px;
}
.footer{
    background-color: #ED2524;
    
    padding: 70px 0px -5px;
    
}

.footer .companycopyright h4{
    margin-top: 10px;
    
    text-align: center;
    color: white;
}

.footer .companycopyright h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: white;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}



/*Contact Us Flex Box*/
.contactus{
display: flex;
margin-top: 10%;
margin-bottom: 20%;
}


.contactusdeet1{
    display: inline-block;
    color: white;
    margin-right: 55px;
    
}.contactusdeet2{
    display: inline-block;
    color: white;
}

/*End of Contact Us Flex Box*/

/*END OF FOOTER*/

/*MR FOR iPad Air*/
@media screen and (min-width: 769px) and (max-width: 911px){

    html,body{
      width: 100%;
      height: 100%;
      margin: 0;
      overflow-x: hidden;
      padding: 0;
      
    }
  
  /*MR for Phones Nav*/
  header{
      position: sticky;
      width: 100%;
      z-index: 1000;
      
  }
  .active_header
  {
      background-color: gainsboro;
      transition: 0.5 ease-in-out;
      
  }
  
   header nav{
      width: 100%;
      position: sticky;
    }
  
    .active_nav{
      background-color: gainsboro;
      
    }
  
  nav .logo{
      margin-left: -400px;
  }
    ul{
      
      position: fixed;
      width: 100%;
      height: 40vh;
      top: 100px;
      left: -100%;
      text-align: center;
      display: none;
      flex-direction: column;
      transition: all 0.5s;
      
    }
  
  ul.active{
      position: fixed;
      width: 100%;
      height: 40vh;
      top: 118px;
      left: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: 0.5s;
      background-color: gainsboro;
  }
  
    ul li{
      
      text-align: center;
      display: block;
      
    }
  
   
  
    ul li.active{
      
    }
  
  ul li a{
      padding: .5rem 1rem;
  
  }
  
  ul a:hover{
      
  }
  
    ul button{
      
      display: block;
    }
    
  
  nav .menu-toggle{
      display: block;
      position: absolute;
      margin-right: -600px;
    }
  
  
  
    /*End of MR for Phones Nav*/ 
  
    /*POPUP MR*/
    .wrapper{
      width: 50%;
    }
  
  
    /*END OF POPUP MR*/
  
  /*SECTION 1 MR*/
  .section1 /*CSS FOR SECTION 1*/{
  display: flex;
  flex-wrap: wrap;
  
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
  
  }
  
  h2 /*CSS FOR H2*/{
      font-size: 60px;
      margin-left: -2vh;
  }
  
  .content1-left{
      display: flex;
      
      width: 50%;
      padding: 70px;
      flex-direction: column;
      margin-right: 200px;
      
  }
  
  .content1-leftheading:after{
      margin-left: -10px;
      margin-bottom: -50px;
  }
  
  .content1-leftheading{
    margin-bottom: -150px;
  }

  .content1leftbutton
  {
      width: 300px;
      height: 50px;
      display: flex;
      border-radius: 100px;
      margin-top: -150px;
      position: relative;
      right: 80px;
  }
  
  .buttoncont1{
      padding: 5px 25px;
      border: 5px solid red;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 90px;
  }
  
  
  
  .content1-right{
  width: 100%;
  height: 500px;
  margin-left: 65px;
  }
  
  .content1img/*CSS FOR CONTENT 1 IMAGE*/{
  
      max-width: 600px;
      height: 700px;
      position: relative;
      margin-bottom: 50%;
      display: inline-block;
      border-radius: 55px;
      
  }
  
    
    /*END OF SECTION 1 MR*/
  
  /*HR ABOUT US MR*/
  .hrabout{
      margin-top: 400px;
      margin-bottom: -500px;
  }
  /*END OF HR ABOUT US MR */
  
  /*SECTION 2 MR*/
  .section2
  {
      display: flex;
      margin-top: -350px;
      height: auto;
      width: auto;
      align-items: center;
      justify-content: space-evenly;
      margin-bottom: 50px;
      flex-direction: column;
  }
  
  .content2-left{
  
  margin-top: 60%;
  margin-bottom: 50px;
  width: 500px;
  }
  
  .content2img{
      
      margin-bottom: 50%;
      margin-right: 1px;
  }
  
  .content2-lefth3 h3{
    font-size: 40px;
  }
  
  .content2-left p{
    font-size: 20px;
  }
  
  /* END OFSECTION 2 MR*/
  
  /*SECTION 3 - CONTAINER MR*/
  .section3container{
      display: flex;
      flex-direction: column;
      align-items: center;
      
  }
  
  .hrtestimonials{
      width: 70%;
      margin-left: 3%;
      margin-top: 30px;
  }
  
  
  
  .section3container .section3card{
      margin-bottom: 5px;
  }
  
  .section3container .section3card .imgbx{
width: 500px;
margin-left: -90px;
  }
  
  /*END OF SECTION 3 - CONTAINER MR*/
  
  
  /*SECTION 4 MR*/
  .section4container{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-right: 120px;
  }
  
  .section4container h4{
      
  }
  .section4left{
  
  }
  
  .section4card{
  margin-bottom: 300px;
  
  }
  
  
  /*END OF SECTION 4 MR*/
  
  
  /*HR 3 GET SOCIAL*/
  .hr3getsocial{
      margin-bottom: -450px;
  }
  
  .section4leftheader::before{
      display: none;
      }
  /*END OF HR 3 GET SOCIAL*/
  
  /*HR 5 LOCATION*/
  .hr4location{
     margin-top: -200px;
  }
  
  /*END OF HR 5 LOCATION*/
  
  
  
  
  /*SECTION 6 MR*/
  .section6contact-in{
     
      flex-wrap: wrap;
  }
  
  .section6contact-map iframe{
      width: 100%;
      height: 500px;
  }
  
  
  /*END OF SECTION 6 MR*/
  /*FOOTER MR*/
  
  .footercontainer{
      max-width: 1000px;
      margin: auto;
  }
  
  .footercontainer .row{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      margin-left: -100px;
      padding-top: 15px;
  }
  .footer-col-left{
  margin-left: 95px;
  
  }
  
  .footercontainer .row .footer-col{
      width: 35%;
      padding: 0 50px;
      }
      
  .footer-col-right{
      margin-right: -65px;
      width: 400px;
  }
  
  .hrcopyright{
      margin-left: 35px;
  }
  
  .contactusdeet1{
      padding-right: 55px;
      padding-bottom: 35px;
  }
  
  .contactus{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }
  
  /*END OF FOOTER MR*/
  
  }
/* End of MR FOR iPad Air*/

/* MR For iPhone XR */
@media screen and (min-width: 414px) and (max-width: 539px){ 
    html,body{
        width: 100%;
        height: 100%;
        margin: 0;
        overflow-x: hidden;
        
      }
    
    /*MR for Phones Nav*/
    header{
        
    }
    
     header nav{
        
      }
  
      .active_nav{
          
      }
  
    nav .logo{
        margin-left: -100px;
    }
      ul{
        position: fixed;
        width: 100%;
        height: 40vh;
        top: 100px;
        left: -100%;
        text-align: center;
        display: none;
        flex-direction: column;
        transition: all 0.5s;
        
      }
    
    ul.active{
        position: fixed;
        width: 100%;
        height: 590px;
        top: 80px;
        left: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        transition: all 0.5s;
        background-color: gainsboro;
    }
    
      ul li{
        
        text-align: center;
        display: block;
        
      }
    
     
    
      ul li.active{
        
      }
    
    ul li a{
        padding: .5rem 1rem;
    
    }
    
    ul a:hover{
        
    }
    
      ul button{
        
        display: block;
  
      }
      
    
    nav .menu-toggle{
        display: block;
        position: absolute;
        margin-right: -300px;
      }
    
    
    
      /*End of MR for Phones Nav*/ 
    
      /*POPUP MR*/
      .wrapper{
        width: 80%;
      }
    
      .wrapper h2{
          font-size: 24px;
          margin-left: 0;
      }
    
      /*END OF POPUP MR*/
    
    /*SECTION 1 MR*/
    .section1 /*CSS FOR SECTION 1*/{
    display: flex;
    flex-wrap: wrap;
    
    height: calc(100vh - 100px);
    align-items: center;
    justify-content: center;
    
    }
    
    h2 /*CSS FOR H2*/{
        font-size: 35px;
        margin-left: -140px;
    }
    
    .content1-left{
        display: flex;
        
        width: 50%;
        padding: 70px;
        flex-direction: column;
        
    }
    
    .content1-leftheading:after{
        margin-left: -140px;
        margin-bottom: 10px;
    }
    
    .content1leftbutton
    {
        width: 300px;
        height: 50px;
        display: flex;
        border-radius: 100px;
        margin-top: -150px;
      
        
    }
    
    .buttoncont1{
        padding: 5px 25px;
        border: 5px solid red;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        margin-left: -200px;
        margin-top: 20px;
    }
    
    
    
    .content1-right{
    width: 100%;
    height: 500px;
    margin-left: 70px;
    }
    
    .content1img/*CSS FOR CONTENT 1 IMAGE*/{
    
        max-width: 350px;
        max-height: 400px;
        position: relative;
        margin-bottom: 50%;
        display: inline-block;
        margin-left: -87px;
    }
    
      
      /*END OF SECTION 1 MR*/
    
    /*HR ABOUT US MR*/
    .hrabout{
        margin-top: 200px;
        margin-bottom: -500px;
    }
    /*END OF HR ABOUT US MR */
    
    /*SECTION 2 MR*/
    .section2
    {
        display: flex;
        margin-top: -350px;
        height: auto;
        width: auto;
        align-items: center;
        justify-content: space-evenly;
        margin-bottom: 50px;
        flex-direction: column;
    }
    
    .content2-left{
    
    margin-top: 70%;
    margin-bottom: 50px;
    padding-top: 230px;
    }
    
    .content2-left p{
      margin-left:-100px;
    }
    .content2img{
        
        margin-bottom: 50%;
        margin-left: -55px;
    }
    
    .content2-lefth3{
    margin-left: -100px;
    }

    .content2-lefth3 p {
        
    }

    h3{

    }
    
    .content2-left button{
        margin-left: -100px;
    }
    /* END OFSECTION 2 MR*/
    
    /*SECTION 3 - CONTAINER MR*/
    .section3container{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 200px;
        margin-bottom: -150px;
    }
    
    .hrtestimonials{
        width: 70%;
        margin-left: 3%;
        margin-top: 200px;
        margin-bottom: 50px;
    }
    
    
    
    .section3container .section3card{
        margin-bottom: -200px;
    }
    
    .section3container .section3card .imgbx{
        
    }
    
    /*END OF SECTION 3 - CONTAINER MR*/
    
    
    /*SECTION 4 MR*/
    .section4quotemark{
        margin-left: -150px;
    }

    .section4container{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 5px;
    }
    
    .section4leftheader{
      margin-bottom: 35px;
      margin-right: -20px;
      margin-left: -110px;
      margin-top: -30px;
    }
    .section4container h4{
        
    }
    .section4left{
    
    }
    
    .section4card{
    margin-bottom: 300px;
    margin-left: -125px;
    width: 400px;
    }
    
    
    
    /*END OF SECTION 4 MR*/
    
    
    /*HR 3 GET SOCIAL*/
    .hr3getsocial{
        margin-bottom: -450px;
    }
    
    .section4leftheader::before{
        display: none;
        }
    /*END OF HR 3 GET SOCIAL*/
    
    /*HR 5 LOCATION*/
    .hr4location{
       margin-top: -200px;
    }
    
    /*END OF HR 5 LOCATION*/
    
    
    
    
    /*SECTION 6 MR*/
    .section6contact-in{
        display: flex;
        flex-direction: column;
        
    }
    
    .section6contact-map iframe{
        width: 100%;
        height: 500px;
    }
    
    .section6contact-form{
  
    }
    /*END OF SECTION 6 MR*/
    /*FOOTER MR*/
    .footer{
      
    }
  
    .footercontainer{
        max-width: 1000px;
        margin: auto;
        font-size: 12px;
        
    }
    
    .footercontainer .row{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        margin-left: -170px;
        padding-top: 5px;
        flex-direction: row;
    }
    .footer-col-left{
    margin-left: 145px;
    
    }
    
    .footercontainer .row .footer-col{
        width: 35%;
        padding: 0 50px;
        }
        
    .footer-col-right{
        margin-right: -65px;
    }
    
    .hrcopyright{
        margin-left: 35px;
    }
    
    .contactusdeet1{
        padding-right: 55px;
        padding-bottom: 35px;
    }
    
    .contactus{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
  
    .hrcopyright{
      margin-left: 15px;
  }

}

/* End of MR For iPhone XR */

/* MR For Samsung Galaxy s8+ */
@media screen and (min-width: 360px) and (max-width: 374px){

    html,body{
      width: 100%;
      height: 100%;
      margin: 0;
      overflow-x: hidden;
      
    }
  
  /*MR for Phones Nav*/
  header{
      
  }
  
   header nav{
      
    }

    .active_nav{
        
    }

  nav .logo{
      margin-left: -100px;
  }
    ul{
      position: fixed;
      width: 100%;
      height: 40vh;
      top: 100px;
      left: -100%;
      text-align: center;
      display: none;
      flex-direction: column;
      transition: all 0.5s;
      
    }
  
  ul.active{
      position: fixed;
      width: 100%;
      height: 590px;
      top: 80px;
      left: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: all 0.5s;
      background-color: gainsboro;
  }
  
    ul li{
      
      text-align: center;
      display: block;
      
    }
  
   
  
    ul li.active{
      
    }
  
  ul li a{
      padding: .5rem 1rem;
  
  }
  
  ul a:hover{
      
  }
  
    ul button{
      
      display: block;

    }
    
  
  nav .menu-toggle{
      display: block;
      position: absolute;
      margin-right: -300px;
    }
  
  
  
    /*End of MR for Phones Nav*/ 
  
    /*POPUP MR*/
    .wrapper{
      width: 80%;
    }
  
    .wrapper h2{
        font-size: 24px;
        margin-left: 0;
    }
  
    /*END OF POPUP MR*/
  
  /*SECTION 1 MR*/
  .section1 /*CSS FOR SECTION 1*/{
  display: flex;
  flex-wrap: wrap;
  
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
  
  }
  
  h2 /*CSS FOR H2*/{
      font-size: 30px;
      margin-left: -105px;
  }
  
  .content1-left{
      display: flex;
      
      width: 50%;
      padding: 70px;
      flex-direction: column;
      margin-left: 5px;
  }
  
  .content1-leftheading:after{
      margin-left: -100px;
      margin-bottom: 10px;
  }
  
  .content1leftbutton
  {
      width: 300px;
      height: 50px;
      display: flex;
      border-radius: 100px;
      margin-top: -150px;
    
      
  }
  
  .buttoncont1{
      padding: 5px 25px;
      border: 5px solid red;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-left: -160px;
      
  }
  
  
  
  .content1-right{
  width: 100%;
  height: 500px;
  margin-left: 60px;
  }
  
  .content1img/*CSS FOR CONTENT 1 IMAGE*/{
  
      max-width: 350px;
      max-height: 400px;
      position: relative;
      margin-bottom: 50%;
      display: inline-block;
      margin-left: -105px;
  }
  
    
    /*END OF SECTION 1 MR*/
  
  /*HR ABOUT US MR*/
  .hrabout{
      margin-top: 250px;
      margin-bottom: -500px;
  }
  /*END OF HR ABOUT US MR */
  
  /*SECTION 2 MR*/
  .section2
  {
      display: flex;
      margin-top: -350px;
      height: auto;
      width: auto;
      align-items: center;
      justify-content: space-evenly;
      margin-bottom: 50px;
      flex-direction: column;
  }
  
  .content2-left{
  
  margin-top: 70%;
  margin-bottom: 50px;
  padding-top: 230px;
  width: 200px;
  }
  
  .content2-left p{
    
  }
  .content2img{
      
      margin-bottom: 50%;
      margin-left: -55px;
  }
  
  
  
  /* END OFSECTION 2 MR*/
  
  /*SECTION 3 - CONTAINER MR*/
  .section3container{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 200px;
      margin-bottom: -150px;
  }
  
  .hrtestimonials{
      width: 70%;
      margin-left: 3%;
      margin-top: 200px;
      margin-bottom: 50px;
  }
  
  
  
  .section3container .section3card{
      margin-bottom: -200px;
  }
  
  
  /*END OF SECTION 3 - CONTAINER MR*/
  
  
  /*SECTION 4 MR*/
  .section4container{
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-right: 130px;
  }
  
  .section4leftheader{
    margin-bottom: 35px;
    margin-right: -20px;
    margin-left: -75px;
    margin-top: -30px;
  }
  .section4container h4{
      
  }

  .section4quotemark{
    margin-left: -100px;
  }
  .section4left{
  
  }
  
  .section4card{
  margin-bottom: 300px;
  width: 400px;
  }
  
  
  
  /*END OF SECTION 4 MR*/
  
  
  /*HR 3 GET SOCIAL*/
  .hr3getsocial{
      margin-bottom: -450px;
  }
  
  .section4leftheader::before{
      display: none;
      }
  /*END OF HR 3 GET SOCIAL*/
  
  /*HR 5 LOCATION*/
  .hr4location{
     margin-top: -200px;
  }
  
  /*END OF HR 5 LOCATION*/
  
  
  
  
  /*SECTION 6 MR*/
  .section6contact-in{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }
  
  .section6contact-map iframe{
      width: 100%;
      height: 500px;
  }
  
  .section6contact-form{

  }

  .section6contact-map{

  }

  /*END OF SECTION 6 MR*/
  /*FOOTER MR*/
  .footer{
    
  }

  .footercontainer{
      max-width: 1000px;
      margin: auto;
      font-size: 12px;
      
  }
  
  .footercontainer .row{
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-evenly;
      margin-left: -170px;
      padding-top: 5px;
  }
  .footer-col-left{
  margin-left: 155px;
  
  }
  .footer-col-right p{
    width: 200px;
  }
  .footercontainer .row .footer-col{
      width: 35%;
      padding: 0 50px;
      }
      
  .footer-col-right{
      margin-right: -65px;
  }
  
  .hrcopyright{
      margin-left: 35px;
  }
  
  .contactusdeet1{
      padding-right: 55px;
      padding-bottom: 35px;
  }
  
  .contactus{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }

  .hrcopyright{
    margin-left: 15px;
}
  
  /*END OF FOOTER MR*/
  
  }
/* End of MR For Samsung Galaxy s8+ */

/* MR FOR iPhone12 Pro, Pixel 5  */
@media screen and (min-width: 390px) and (max-width: 413px){

    html,body{
      width: 100%;
      height: 100%;
      margin: 0;
      overflow-x: hidden;
      
    }
  
  /*MR for Phones Nav*/
  header{
      
  }
  
   header nav{
      
    }

    .active_nav{
        
    }

  nav .logo{
      margin-left: -100px;
  }
    ul{
      position: fixed;
      width: 100%;
      height: 40vh;
      top: 100px;
      left: -100%;
      text-align: center;
      display: none;
      flex-direction: column;
      transition: all 0.5s;
      
    }
  
  ul.active{
      position: fixed;
      width: 100%;
      height: 590px;
      top: 80px;
      left: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: all 0.5s;
      background-color: gainsboro;
  }
  
    ul li{
      
      text-align: center;
      display: block;
      
    }
  
   
  
    ul li.active{
      
    }
  
  ul li a{
      padding: .5rem 1rem;
  
  }
  
  ul a:hover{
      
  }
  
    ul button{
      
      display: block;

    }
    
  
  nav .menu-toggle{
      display: block;
      position: absolute;
      margin-right: -300px;
    }
  
  
  
    /*End of MR for Phones Nav*/ 
  
    /*POPUP MR*/
    .wrapper{
      width: 80%;
    }
  
    .wrapper h2{
        font-size: 24px;
        margin-left: 0;
    }
  
    /*END OF POPUP MR*/
  
  /*SECTION 1 MR*/
  .section1 /*CSS FOR SECTION 1*/{
  display: flex;
  flex-wrap: wrap;
  
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
  
  }
  
  h2 /*CSS FOR H2*/{
      font-size: 40px;
      margin-left: -170px;
  }
  
  .content1-left{
      display: flex;
      
      width: 50%;
      padding: 70px;
      flex-direction: column;
      
  }
  
  .content1-leftheading:after{
      margin-left: -165px;
      margin-bottom: 15px;
  }
  
  .content1leftbutton
  {
      width: 300px;
      height: 50px;
      display: flex;
      border-radius: 100px;
      margin-top: -150px;
      position: relative;
      left: -70px;
  }
  
  .buttoncont1{
      padding: 5px 25px;
      border: 5px solid red;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-left: -160px;
      
  }
  
  
  
  .content1-right{
  width: 100%;
  height: 500px;
  margin-left: 73px;
  }
  
  .content1img/*CSS FOR CONTENT 1 IMAGE*/{
  
      max-width: 350px;
      max-height: 400px;
      position: relative;
      margin-bottom: 50%;
      display: inline-block;
      margin-left: -105px;
  }
  
    
    /*END OF SECTION 1 MR*/
  
  /*HR ABOUT US MR*/
  .hrabout{
      margin-top: 250px;
      margin-bottom: -500px;
  }
  /*END OF HR ABOUT US MR */
  
  /*SECTION 2 MR*/
  .section2
  {
      display: flex;
      margin-top: -350px;
      height: auto;
      width: auto;
      align-items: center;
      justify-content: space-evenly;
      margin-bottom: 50px;
      flex-direction: column;
  }
  
  .content2-lefth3{
    width: 300px;
  }
  .content2-left{
  
  margin-top: 70%;
  margin-bottom: 50px;
  padding-top: 230px;
  margin-right: 150px;
  }
  
  .content2-left p{
    width: 210px;
  }
  .content2img{
      
      margin-bottom: 50%;
      margin-left: -55px;
  }
  
  
  
  /* END OFSECTION 2 MR*/
  
  /*SECTION 3 - CONTAINER MR*/
  .section3container{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 200px;
      margin-bottom: -150px;
  }
  
  .hrtestimonials{
      width: 70%;
      margin-left: 3%;
      margin-top: 200px;
      margin-bottom: 50px;
  }
  
  
  
  .section3container .section3card{
      margin-bottom: -200px;
  }
  
  .section3container .section3card .imgbx {
    margin-left: 4px;
  }
  
  /*END OF SECTION 3 - CONTAINER MR*/
  
  
  /*SECTION 4 MR*/
  .section4container{
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-right: 130px;
  }
  .section4quotemark{
    margin-bottom: -30px;
    position: relative;
    right: 100px;
  }

  .section4leftheader{
    margin-bottom: 35px;
    margin-right: -20px;
    width: 300px;
    margin-left: -80px;
  }
  .section4container h4{
      
  }
  .section4left{
  
  }
  
  .section4card{
  margin-bottom: 300px;
  width: 400px;
  }
  
  
  
  /*END OF SECTION 4 MR*/
  
  
  /*HR 3 GET SOCIAL*/
  .hr3getsocial{
      margin-bottom: -450px;
  }
  
  .section4leftheader::before{
      display: none;
      }
  /*END OF HR 3 GET SOCIAL*/
  
  /*HR 5 LOCATION*/
  .hr4location{
     margin-top: -200px;
  }
  
  /*END OF HR 5 LOCATION*/
  
  
  
  
  /*SECTION 6 MR*/
  .section6contact-in{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }
  
  .section6contact-map iframe{
      width: 100%;
      height: 500px;
  }
  
  .section6contact-form{

  }

  .section6contact-map{

  }

  /*END OF SECTION 6 MR*/
  /*FOOTER MR*/
  .footer{
    
  }

  .footercontainer{
      max-width: 1000px;
      margin: auto;
      font-size: 12px;
      
  }
  
  .footercontainer .row{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      margin-left: -170px;
      padding-top: 5px;
  }
  .footer-col-left{
  margin-left: 135px;
  
  }
  
  .footercontainer .row .footer-col{
      width: 35%;
      padding: 0 50px;
      }
      
  .footer-col-right{
      width: 190px;
  }
  
  .footer-col-right p{
    width: 160px;
    
  }

  .hrcopyright{
      margin-left: 35px;
  }
  
  .contactusdeet1{
      padding-right: 55px;
      padding-bottom: 15px;
      width: 150px;
  }
  
  .contactus{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }

  .hrcopyright{
    margin-left: 15px;
}
  
  /*END OF FOOTER MR*/
  
  }
/* End of MR FOR iPhone12 Pro, Pixel 5 */

/* MR For Surface Pro 7 */
@media screen and (min-width: 912px) and (max-width:1023px){

    html,body{
      width: 100%;
      height: 100%;
      margin: 0;
      overflow-x: hidden;
      padding: 0;
      
    }
  
  /*MR for Phones Nav*/
  header{
      position: sticky;
      width: 100%;
      z-index: 1000;
      
  }
  .active_header
  {
      background-color: gainsboro;
      transition: 0.5 ease-in-out;
      
  }
  
   header nav{
      width: 100%;
      position: sticky;
    }
  
    .active_nav{
      background-color: gainsboro;
      
    }
  
  nav .logo{
      margin-left: -400px;
  }
    ul{
      
      position: fixed;
      width: 100%;
      height: 40vh;
      top: 100px;
      left: -100%;
      text-align: center;
      display: none;
      flex-direction: column;
      transition: all 0.5s;
      
    }
  
  ul.active{
      position: fixed;
      width: 100%;
      height: 85vh;
      top: 90px;
      left: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: 0.5s;
      background-color: gainsboro;
  }
  
    ul li{
      
      text-align: center;
      display: block;
      
    }
  
   
  
    ul li.active{
      
    }
  
  ul li a{
      padding: .5rem 1rem;
  
  }
  
  ul a:hover{
      
  }
  
    ul button{
      
      display: block;
    }
    
  
  nav .menu-toggle{
      display: block;
      position: absolute;
      margin-right: -600px;
    }
  
  
  
    /*End of MR for Phones Nav*/ 
  
    /*POPUP MR*/
    .wrapper{
      width: 50%;
    }
  
  
    /*END OF POPUP MR*/
  
  /*SECTION 1 MR*/
  .section1 /*CSS FOR SECTION 1*/{
  display: flex;
  flex-wrap: wrap;
  
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
  
  }
  
  h2 /*CSS FOR H2*/{
      font-size: 60px;
      margin-left: -2vh;
  }
  
  .content1-left{
      display: flex;
      
      width: 50%;
      padding: 70px;
      flex-direction: column;
      margin-right: 200px;
      
  }
  
  .content1-leftheading:after{
      margin-left: -10px;
      margin-bottom: -50px;
  }
  
  .content1-leftheading{
    margin-bottom: -10px;
  }

  .content1leftbutton
  {
      width: 300px;
      height: 50px;
      display: flex;
      border-radius: 100px;
      margin-top: -150px;
      position: relative;
      right: 80px;
  }
  
  .buttoncont1{
      padding: 5px 25px;
      border: 5px solid red;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 90px;
  }
  
  
  
  .content1-right{
  width: 100%;
  height: 500px;
  margin-left: 30px;
  }
  
  .content1img/*CSS FOR CONTENT 1 IMAGE*/{
  
      max-width: 600px;
      height: 700px;
      position: relative;
      margin-bottom: 50%;
      display: inline-block;
      border-radius: 55px;
      margin-left: 90px;
  }
  
    
    /*END OF SECTION 1 MR*/
  
  /*HR ABOUT US MR*/
  .hrabout{
      margin-top: 200px;
      margin-bottom: -550px;
  }
  /*END OF HR ABOUT US MR */
  
  /*SECTION 2 MR*/
  .section2
  {
      display: flex;
      margin-top: -350px;
      height: auto;
      width: auto;
      align-items: center;
      justify-content: space-evenly;
      margin-bottom: 50px;
      flex-direction: column;
  }
  
  .content2-left{
  
  margin-top: 60%;
  margin-bottom: 50px;
  width: 500px;
  }
  
  .content2img{
      
      margin-bottom: 50%;
      margin-right: 1px;
  }
  
  .content2-lefth3 h3{
    font-size: 40px;
  }
  
  .content2-left p{
    font-size: 20px;
  }
  
  /* END OFSECTION 2 MR*/
  
  /*SECTION 3 - CONTAINER MR*/
  .section3container{
      display: flex;
      flex-direction: column;
      align-items: center;
      
  }
  
  .hrtestimonials{
      width: 70%;
      margin-left: 3%;
      margin-top: 30px;
  }
  .section3container .section3card .imgbx{
    width: 550px;
    margin-left: -120px;
  }
  
  
  .section3container .section3card{
      margin-bottom: 5px;
  }
  
  
  /*END OF SECTION 3 - CONTAINER MR*/
  
  
  /*SECTION 4 MR*/
  .section4container{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-right: 120px;
  }
  
  .section4container h4{
      
  }
  .section4left{
  
  }
  
  .section4card{
  margin-bottom: 300px;
  
  }
  
  
  /*END OF SECTION 4 MR*/
  
  
  /*HR 3 GET SOCIAL*/
  .hr3getsocial{
      margin-bottom: -500px;
  }
  
  .section4leftheader::before{
      display: none;
      }
  /*END OF HR 3 GET SOCIAL*/
  
  /*HR 5 LOCATION*/
  .hr4location{
     margin-top: -200px;
  }
  
  /*END OF HR 5 LOCATION*/
  
  
  
  
  /*SECTION 6 MR*/
  .section6contact-in{
     
      flex-wrap: wrap;
  }
  
  .section6contact-map iframe{
      width: 100%;
      height: 500px;
  }
  
  
  /*END OF SECTION 6 MR*/
  /*FOOTER MR*/
  
  .footercontainer{
      max-width: 1000px;
      margin: auto;
  }
  
  .footercontainer .row{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      margin-left: -100px;
      padding-top: 15px;
  }
  .footer-col-left{
  margin-left: 95px;
  
  }
  
  .footercontainer .row .footer-col{
      width: 35%;
      padding: 0 50px;
      }
      
  .footer-col-right{
      margin-right: -65px;
      width: 400px;
  }
  
  .hrcopyright{
      margin-left: 35px;
  }
  
  .contactusdeet1{
      padding-right: 55px;
      padding-bottom: 35px;
  }
  
  .contactus{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }
  
  /*END OF FOOTER MR*/
  
  }
/* END OF MR For Surface Pro 7 */

/* MR For Galaxy Fold */
@media screen and (min-width: 280px) and (max-width: 359px){

    html,body{
      width: 100%;
      height: 100%;
      margin: 0;
      overflow-x: hidden;
      
    }
  
  /*MR for Phones Nav*/
  header{
      
  }
  
   header nav{
      
    }

    .active_nav{
        
    }

  nav .logo{
      margin-left: -50px;
  }
    ul{
      position: fixed;
      width: 100%;
      height: 40vh;
      top: 100px;
      left: -100%;
      text-align: center;
      display: none;
      flex-direction: column;
      transition: all 0.5s;
      
    }
  
  ul.active{
      position: fixed;
      width: 100%;
      height: 590px;
      top: 80px;
      left: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: all 0.5s;
      background-color: gainsboro;
  }
  
    ul li{
      
      text-align: center;
      display: block;
      
    }
  
   
  
    ul li.active{
      
    }
  
  ul li a{
      padding: .5rem 1rem;
  
  }
  
  ul a:hover{
      
  }
  
    ul button{
      
      display: block;

    }
    
  
  nav .menu-toggle{
      display: block;
      position: absolute;
      margin-right: -250px;
    }
  
  
  
    /*End of MR for Phones Nav*/ 
  
    /*POPUP MR*/
    .wrapper{
      width: 80%;
    }
  
    .wrapper h2{
        font-size: 24px;
        margin-left: 0;
    }
  
    /*END OF POPUP MR*/
  
  /*SECTION 1 MR*/
  .section1 /*CSS FOR SECTION 1*/{
  display: flex;
  flex-wrap: wrap;
  
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
  
  }
  
  h2 /*CSS FOR H2*/{
      font-size: 30px;
      margin-left: -105px;
  }
  
  .content1-left{
      display: flex;
      
      width: 50%;
      padding: 70px;
      flex-direction: column;
      margin-left: 5px;
  }
  
  .content1-leftheading:after{
      margin-left: -100px;
      margin-bottom: 10px;
  }
  
  .content1leftbutton
  {
      width: 300px;
      height: 50px;
      display: flex;
      border-radius: 100px;
      margin-top: -150px;
    
      
  }
  
  .buttoncont1{
      padding: 5px 25px;
      border: 5px solid red;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-left: -160px;
      
  }
  
  
  
  .content1-right{
  width: 100%;
  height: 500px;
  margin-left: 60px;
  }
  
  .content1img/*CSS FOR CONTENT 1 IMAGE*/{
  
      max-width: 250px;
      max-height: 300px;
      position: relative;
      margin-bottom: 50%;
      display: inline-block;
      margin-left: -95px;
  }
  
    
    /*END OF SECTION 1 MR*/
  
  /*HR ABOUT US MR*/
  .hrabout{
      margin-top: 250px;
      margin-bottom: -450px;
  }
  /*END OF HR ABOUT US MR */
  
  /*SECTION 2 MR*/
  .section2
  {
      display: flex;
      margin-top: -350px;
      height: auto;
      width: auto;
      align-items: center;
      justify-content: space-evenly;
      margin-bottom: 50px;
      flex-direction: column;
  }
  
  .content2-left{
  
  margin-top: 70%;
  margin-bottom: 50px;
  padding-top: 230px;
  width: 200px;
  margin-right: 50px;
  }
  
  .content2-left p{
    
  }
  .content2img{
      
      margin-bottom: 50%;
      margin-left: -55px;
      width: 250px;
      height: 300px;
      margin-right: -25px;
  }
  
  
  
  /* END OFSECTION 2 MR*/
  
  /*SECTION 3 - CONTAINER MR*/
  .section3container{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 200px;
      margin-bottom: -150px;
  }
  
  .hrtestimonials{
      width: 70%;
      margin-left: 3%;
      margin-top: 200px;
      margin-bottom: 50px;
  }
  
  
  
  .section3container .section3card{
      margin-bottom: -200px;
      margin-left: 56px;
  }
  
  .section3container .section3card .imgbx{
    width: 250px;
  }

  .section3arrow{
    margin-right: -5px;
  }
  
  /*END OF SECTION 3 - CONTAINER MR*/
  
  
  /*SECTION 4 MR*/
  .section4container{
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-right: 130px;
  }
  
  .section4leftheader{
    margin-bottom: 35px;
    margin-right: -20px;
    margin-left: -75px;
    margin-top: -30px;
  }
  .section4container h4{
      
  }

  .section4quotemark{
    margin-left: -100px;
  }
  .section4left{
  
  }
  
  .section4card{
  margin-bottom: 300px;
  width: 340px;
  }
  
  .section4cardtext{
margin-top: -31px;
  }
  
  /*END OF SECTION 4 MR*/
  
  
  /*HR 3 GET SOCIAL*/
  .hr3getsocial{
      margin-bottom: -350px;
  }
  
  .section4leftheader::before{
      display: none;
      }
  /*END OF HR 3 GET SOCIAL*/
  
  /*HR 5 LOCATION*/
  .hr4location{
     margin-top: -150px;
  }
  
  /*END OF HR 5 LOCATION*/
  
  
  
  
  /*SECTION 6 MR*/
  .section6contact-in{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }
  
  .section6contact-map iframe{
      width: 100%;
      height: 500px;
  }
  
  .section6contact-form{

  }

  .section6contact-map{

  }

  /*END OF SECTION 6 MR*/
  /*FOOTER MR*/
  .footer{
    
  }

  .footercontainer{
      max-width: 50px;
      margin: auto;
      font-size: 12px;
      
  }
  
  .footercontainer .row{
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-evenly;
      margin-left: -170px;
      padding-top: 5px;
  }
  .footer-col-left{
  margin-left: 155px;
  
  }
  .footer-col-right p{
    width: 200px;
  }
  .footercontainer .row .footer-col{
      width: 35%;
      padding: 0 50px;
      }
      
  .footer-col-right{
      margin-right: -65px;
  }
  
  .hrcopyright{
      margin-left: 35px;
  }
  
  .contactusdeet1{
      padding-right: 55px;
      padding-bottom: 35px;
  }
  
  .contactus{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }

  .hrcopyright{
    margin-left: 15px;
}
  
  /*END OF FOOTER MR*/
  
  }
/* End of MR For Galaxy Fold */

/* MR For Surface Duo */
@media screen and (min-width: 540px) and (max-width: 649px){ 
    html,body{
        width: 100%;
        height: 100%;
        margin: 0;
        overflow-x: hidden;
        
      }
    
    /*MR for Phones Nav*/
    header{
        
    }
    
     header nav{
        
      }
  
      .active_nav{
          
      }
  
    nav .logo{
        margin-left: -250px;
    }
      ul{
        position: fixed;
        width: 100%;
        height: 40vh;
        top: 100px;
        left: -100%;
        text-align: center;
        display: none;
        flex-direction: column;
        transition: all 0.5s;
        
      }
    
    ul.active{
        position: fixed;
        width: 100%;
        height: 590px;
        top: 80px;
        left: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        transition: all 0.5s;
        background-color: gainsboro;
    }
    
      ul li{
        
        text-align: center;
        display: block;
        
      }
    
     
    
      ul li.active{
        
      }
    
    ul li a{
        padding: .5rem 1rem;
    
    }
    
    ul a:hover{
        
    }
    
      ul button{
        
        display: block;
  
      }
      
    
    nav .menu-toggle{
        display: block;
        position: absolute;
        margin-right: -450px;
      }
    
    
    
      /*End of MR for Phones Nav*/ 
    
      /*POPUP MR*/
      .wrapper{
        width: 80%;
      }
    
      .wrapper h2{
          font-size: 24px;
          margin-left: 0;
      }
    
      /*END OF POPUP MR*/
    
    /*SECTION 1 MR*/
    .section1 /*CSS FOR SECTION 1*/{
    display: flex;
    flex-wrap: wrap;
    
    height: calc(100vh - 100px);
    align-items: center;
    justify-content: center;
    
    }
    
    h2 /*CSS FOR H2*/{
        font-size: 35px;
        margin-left: -140px;
    }
    
    .content1-left{
        display: flex;
        
        width: 50%;
        padding: 70px;
        flex-direction: column;
        
    }
    
    .content1-leftheading:after{
        margin-left: -140px;
        margin-bottom: 10px;
    }
    
    .content1leftbutton
    {
        width: 300px;
        height: 50px;
        display: flex;
        border-radius: 100px;
        margin-top: -150px;
      
        
    }
    
    .buttoncont1{
        padding: 5px 25px;
        border: 5px solid red;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        margin-left: -200px;
        margin-top: 20px;
    }
    
    
    
    .content1-right{
    width: 100%;
    height: 500px;
    margin-left: 130px;
    }
    
    .content1img/*CSS FOR CONTENT 1 IMAGE*/{
    
        max-width: 350px;
        max-height: 400px;
        position: relative;
        margin-bottom: 50%;
        display: inline-block;
        margin-left: -87px;
    }
    
      
      /*END OF SECTION 1 MR*/
    
    /*HR ABOUT US MR*/
    .hrabout{
        margin-top: 300px;
        margin-bottom: -600px;
    }
    /*END OF HR ABOUT US MR */
    
    /*SECTION 2 MR*/
    .section2
    {
        display: flex;
        margin-top: -350px;
        height: auto;
        width: auto;
        align-items: center;
        justify-content: space-evenly;
        margin-bottom: 50px;
        flex-direction: column;
    }
    
    .content2-left{
    
    margin-top: 70%;
    margin-bottom: 50px;
    padding-top: 230px;
    margin-left: 150px;
    }
    
    .content2-left p{
      margin-left:-100px;
    }
    .content2img{
        
        margin-bottom: 50%;
        margin-left: -55px;
    }
    
    .content2-lefth3{
    margin-left: -100px;
    }

    .content2-lefth3 p {
        
    }

    h3{

    }
    
    .content2-left button{
        margin-left: -100px;
    }
    /* END OFSECTION 2 MR*/
    
    /*SECTION 3 - CONTAINER MR*/
    .section3container{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 200px;
        margin-bottom: -150px;
    }
    
    .hrtestimonials{
        width: 70%;
        margin-left: 3%;
        margin-top: 200px;
        margin-bottom: 50px;
    }
    
    
    
    .section3container .section3card{
        margin-bottom: -200px;
    }
    
    
    /*END OF SECTION 3 - CONTAINER MR*/
    
    
    /*SECTION 4 MR*/
    .section4quotemark{
        margin-left: -150px;
    }

    .section4container{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 5px;
    }
    
    .section4leftheader{
      margin-bottom: 35px;
      margin-right: -20px;
      margin-left: -110px;
      margin-top: -30px;
    }
    .section4container h4{
        
    }
    .section4left{
    
    }
    
    .section4card{
    margin-bottom: 300px;
    margin-left: -125px;
    width: 400px;
    }
    
    
    
    /*END OF SECTION 4 MR*/
    
    
    /*HR 3 GET SOCIAL*/
    .hr3getsocial{
        margin-bottom: -550px;
    }
    
    .section4leftheader::before{
        display: none;
        }
    /*END OF HR 3 GET SOCIAL*/
    
    /*HR 5 LOCATION*/
    .hr4location{
       margin-top: -200px;
    }
    
    /*END OF HR 5 LOCATION*/
    
    
    
    
    /*SECTION 6 MR*/
    .section6contact-in{
        display: flex;
        flex-direction: column;
        
    }
    
    .section6contact-map iframe{
        width: 100%;
        height: 500px;
    }
    
    .section6contact-form{
  
    }
    /*END OF SECTION 6 MR*/
    /*FOOTER MR*/
    .footer{
      
    }
  
    .footercontainer{
        max-width: 1000px;
        margin: auto;
        font-size: 12px;
        
    }
    
    .footercontainer .row{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        margin-left: -170px;
        padding-top: 5px;
        flex-direction: row;
    }
    .footer-col-left{
    margin-left: 145px;
    
    }
    
    .footercontainer .row .footer-col{
        width: 35%;
        padding: 0 50px;
        }
        
    .footer-col-right{
        margin-right: -65px;
        width: 350px;
    }
    
    .hrcopyright{
        margin-left: 35px;
    }
    
    .contactusdeet1{
        padding-right: 55px;
        padding-bottom: 35px;
    }
    
    .contactus{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
  
    .hrcopyright{
      margin-left: 15px;
  }

}
/* End of MR for Surface Duo */

/* MR FOR NEST HUB MAX */
@media screen and (min-width: 1280px){
    body{
        overflow-x: hidden;
    }
}
/*END OF MR FOR NEST HUB MAX */

/* Nest Hub MR */
@media screen and (min-width: 1024px) and (max-width: 1079px){

    html,body{
      width: 100%;
      height: 100%;
      margin: 0;
      overflow-x: hidden;
      padding: 0;
      
    }
  
  /*MR for Phones Nav*/
  header{
      position: sticky;
      width: 100%;
      z-index: 1000;
      
  }
  .active_header
  {
      background-color: gainsboro;
      transition: 0.5 ease-in-out;
      
  }
  
   header nav{
      width: 100%;
      position: sticky;
    }
  
    .active_nav{
      background-color: gainsboro;
      
    }
  
  nav .logo{
      margin-left: -600px;
  }
    ul{
      
      position: fixed;
      width: 100%;
      height: 40vh;
      top: 100px;
      left: -100%;
      text-align: center;
      display: none;
      flex-direction: column;
      transition: all 0.5s;
      
    }
  
  ul.active{
      position: fixed;
      width: 100%;
      height: 40vh;
      top: 118px;
      left: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: 0.5s;
      background-color: gainsboro;
  }
  
    ul li{
      
      text-align: center;
      display: block;
      
    }
  
   
  
    ul li.active{
      
    }
  
  ul li a{
      padding: .5rem 1rem;
  
  }
  
  ul a:hover{
      
  }
  
    ul button{
      
      display: block;
    }
    
  
  nav .menu-toggle{
      display: block;
      position: absolute;
      margin-right: -700px;
    }
  
  
  
    /*End of MR for Phones Nav*/ 
  
    /*POPUP MR*/
    .wrapper{
      width: 50%;
    }
  
  
    /*END OF POPUP MR*/
  
  /*SECTION 1 MR*/
  .section1 /*CSS FOR SECTION 1*/{
  display: flex;
  flex-wrap: wrap;
  
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
  
  }
  
  h2 /*CSS FOR H2*/{
      font-size: 60px;
      margin-left: -2vh;
  }
  
  .content1-left{
      display: flex;
      
      width: 50%;
      padding: 70px;
      flex-direction: column;
      margin-right: 200px;
      
  }
  
  .content1-leftheading:after{
      margin-left: -10px;
      margin-bottom: -50px;
  }
  
  .content1-leftheading{
    margin-bottom: -150px;
  }

  .content1leftbutton
  {
      width: 300px;
      height: 50px;
      display: flex;
      border-radius: 100px;
      margin-top: -50px;
      position: relative;
      right: 80px;
  }
  
  .buttoncont1{
      padding: 5px 25px;
      border: 5px solid red;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 90px;
  }
  
  
  
  .content1-right{
  width: 100%;
  height: 500px;
  margin-left: 175px;
  }
  
  .content1img/*CSS FOR CONTENT 1 IMAGE*/{
  
      max-width: 600px;
      height: 700px;
      position: relative;
      margin-bottom: 50%;
      display: inline-block;
      border-radius: 55px;
      
  }
  
    
    /*END OF SECTION 1 MR*/
  
  /*HR ABOUT US MR*/
  .hrabout{
      margin-top: 800px;
      margin-bottom: -700px;
  }
  /*END OF HR ABOUT US MR */
  
  /*SECTION 2 MR*/
  .section2
  {
      display: flex;
      margin-top: -350px;
      height: auto;
      width: auto;
      align-items: center;
      justify-content: space-evenly;
      margin-bottom: 50px;
      flex-direction: column;
  }
  
  .content2-left{
  
  margin-top: 70%;
  margin-bottom: 50px;
  width: 500px;
  }
  
  .content2img{
      
      margin-bottom: 50%;
      margin-right: 1px;
  }
  
  .content2-lefth3 h3{
    font-size: 40px;
  }
  
  .content2-left p{
    font-size: 20px;
  }
  
  /* END OFSECTION 2 MR*/
  
  /*SECTION 3 - CONTAINER MR*/
  .section3container{
      display: flex;
      flex-direction: column;
      align-items: center;
      
  }
  
  .hrtestimonials{
      width: 70%;
      margin-left: 3%;
      margin-top: 30px;
  }
  
  
  
  .section3container .section3card{
      margin-bottom: 5px;
  }
  
  .section3container .section3card .imgbx{
width: 500px;
margin-left: -90px;
  }
  
  /*END OF SECTION 3 - CONTAINER MR*/
  
  
  /*SECTION 4 MR*/
  .section4container{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-right: 120px;
  }
  
  .section4container h4{
      
  }
  .section4left{
  
  }
  
  .section4card{
  margin-bottom: 300px;
  
  }
  
  
  /*END OF SECTION 4 MR*/
  
  
  /*HR 3 GET SOCIAL*/
  .hr3getsocial{
      margin-bottom: -450px;
  }
  
  .section4leftheader::before{
      display: none;
      }
  /*END OF HR 3 GET SOCIAL*/
  
  /*HR 5 LOCATION*/
  .hr4location{
     margin-top: -200px;
  }
  
  /*END OF HR 5 LOCATION*/
  
  
  
  
  /*SECTION 6 MR*/
  .section6contact-in{
     
      flex-wrap: wrap;
  }
  
  .section6contact-map iframe{
      width: 100%;
      height: 500px;
  }
  
  
  /*END OF SECTION 6 MR*/
  /*FOOTER MR*/
  
  .footercontainer{
      max-width: 1000px;
      margin: auto;
  }
  
  .footercontainer .row{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      margin-left: -100px;
      padding-top: 15px;
  }
  .footer-col-left{
  margin-left: 95px;
  
  }
  
  .footercontainer .row .footer-col{
      width: 35%;
      padding: 0 50px;
      }
      
  .footer-col-right{
      margin-right: -65px;
      width: 400px;
  }
  
  .hrcopyright{
      margin-left: 35px;
  }
  
  .contactusdeet1{
      padding-right: 55px;
      padding-bottom: 35px;
  }
  
  .contactus{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
  }
  
  /*END OF FOOTER MR*/
  
  }
/* End of Nest Hub MR */