* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
  }
  
  body {
    
    font-family: 'Montserrat';
    display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
  }
  
  /* Navigation bar */
  nav{
    background: #0082e6;
    height: 80px;
    width: 100%;
  }
  label.logo{
    color: white;
    font-size: 30px;
    line-height: 80px;
    padding: 0 50px;
    font-weight: bold;
  }
  nav ul{
    float: right;
    margin-right: 20px;
  }
  nav ul li{
    display: inline-block;
    line-height: 50px;
    margin: 17px 5px;
  }
  nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    text-decoration: none;
  }
  a.active,a:hover{
    background: #1b9bff;
    transition: .5s;
    text-decoration: none;
  }
  .checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  #check{
    display: none;
  }
  @media (max-width: 952px){
    label.logo{
      font-size: 30px;
      padding-left: 50px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }
  @media (max-width: 858px){
    .checkbtn{
      display: block;
    }
    ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }
    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }
    a:hover,a.active{
      background: none;
      color: #0082e6;
    }
    #check:checked ~ ul{
      left: 0;
    }
  }
  
  



  .form{
	background-color: white;
	border-radius: 5px;
  	box-shadow: 0 14px 28px rgba(0,0,0,0.12), 
			0 10px 10px rgba(0,0,0,0.09);
	position: relative;
	overflow: hidden;
	width: 768px;
	max-width: 100%;
	min-height: 480px;
    min-width:370px;
    margin-top:  100px;
    margin-bottom: 100px;
    
}

h2 {
  font-size:1.5rem;
  margin-bottom:1rem;
}
.form-container {
  display:flex;
}

.left-container {
  flex:1;
  height:480px;
  background-color:#0082e6;
}
.right-container {
  display:flex;
  flex:1;
  height:460px;
  background-color: white;
  justify-content:center;
  align-items:center;
}

.left-container {
  display:flex;
  flex:1;
  height:480px;
  justify-content:center;
  align-items:center;
    color:white;
}

.left-container p {
  font-size:0.9rem;
}

.right-inner-container {
  width:70%;
  height:80%;
  text-align:center;
}

.left-inner-container {
  height:50%;
  width:80%;
  text-align:center;
  line-height:22px;
}

input, textarea {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
  font-size:0.8rem;
}

input:focus, textarea:focus{
  outline:1px #0082e6;
}

button {
	border-radius: 20px;
	border: 1px solid #0082e6;
	background-color: #0082e6;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
    cursor:pointer;
}

button:hover {
  opacity:0.7;
}
@media only screen and (max-width: 600px) {
  .left-container{
    display: none;
  }
  .lg-view {
    display:none;  
  }
}

@media only screen and (min-width: 600px) {
  .sm-view {
    display:none;  
  }
}

form p {
  text-align:left;
  font-size: 0.8rem;
}





  footer {
    background-color:#0082e6;
    color: #fff;
    padding: 20px 0;
    width: 100%;
     padding-top: 35px;
  }
  
  footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  footer .row {
    margin: 0 -10px;
  }
  
  footer .col-3 {
    width: 25%;
    padding: 0 10px;

  }
  
  footer h4 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: bold;
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
  
  }

  footer h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: white;
    height: 3px;
    box-sizing: border-box;
    width: 50px;
    font-weight: bold; 
  }
  
  footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  footer ul li {
    margin-bottom: 10px;
  }
  
  footer ul li a {
    color: #fff;
    text-decoration: none;
  }

  footer .col-3 .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  footer .col-3 .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
  }

  footer ul li a{
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: white;
    display: block;
    transition: all 0.3s ease;
  }
  footer ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
  }
  
  

  
  section {
      height: 170vh;
      width: 100%;
      display: grid;
      place-items: center;
      
    }
    .row {
      display: flex;
      flex-wrap: wrap;
      margin-left: 3rem;
      margin-right: 3rem;
    }
    

    


  
  @media only screen and (max-width: 768px) {
  
        .col-6 {
          width: 100%;

        }
      
        .services .col-3 {
          width: 100%;
          margin-bottom: 20px;
        }
      
        footer .col-3 {
          width: 100%;
          margin-bottom: 20px;
        }
      
      }
  