*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
  --blue-sofnage: #106dcc;
}

p li{
    font-family: "Source Sans 3", sans-serif;
}
body{
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    /* background-image: url(../images/background.jpg); */
    background: #f6fbff;
    /* margin-bottom: 100px; */
}

ul{
    list-style-type: none;
}
.container{
    padding: 0 30px;
}
.top-nav i,
.top-nav span{
    font-size: .8rem;
}

.nav-item .nav-link{
    font-size: .95rem;
}

.header{
    background-color: black;
    height: 300px;
    background-image: url(../images/hero-image.jpg);
    background-position: center;
    background-size: cover;
    /* align-items: center; */
}
.header .container{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 300px;
    
}

.contact-us{
    color: white;
}

  .contact-us h1{
    font-size: 70px;
    padding: 0;
    margin: 0;
  }

  .contact-us p{
    margin: 0;
    padding: 0;
  }

  .contact-us {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:600px){

  html{
    overflow: scroll;
    overflow-x: hidden;
  }
  .foot1{
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
  }

  .foot2{
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
  }

  .contact-form{
    align-items: center;
  }

  .form2{
    width: 100%;
  }

  .home, .about-us, .our-services, .products{
    margin: 10px 0px;
  }
}


@media only screen and (min-width:600px) and (max-width:768px){

  .foot1{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0px;
  }

  .foot2{
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
  }

  .home, .about-us, .our-services, .products{
    margin: 10px 10px;
  }
}


@media only screen and (min-width:768px) and (max-width:992px){
  .foot1{
    padding: 10px 20px;
  }

  .foot2{
    padding: 10px 20px;
  }

  .home, .our-services, .about-us, .products{
    margin: 0px 10px;
  }
}

@media only screen and (min-width:992px){
  .foot1{
    padding: 10px 20px;
  }

  .foot2{
    padding: 10px 20px;
  }
}


.row  {
  display: flex;
  flwx-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header h2 {
  color: black;
  font-weight: bold;
  font-size: 3em;
  margin-bottom: 20px;
}

.section-header p {
  color: black;
}

.contact-info {
  width: 50%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
}

.contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color: var(--blue-sofnage);
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: black;
  font-size: 1em;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  width: 45%;
  padding-bottom: 20px;
  padding-top: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea{
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box textarea:focus ~ span{
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"]
{
  width: 100%;
  background: var(--blue-sofnage);
  color: #FFF;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid var(--blue-sofnage);
  transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover
{
  background: #FFF;
  color: var(--blue-sofnage);
}

.contact-social-media-icons .social-contact-handles{
  display: flex;
  gap: 20px;
}

.social-contact-handles i{
  font-size: 20px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.social-contact-handles i:where(:hover, :focus-visible){
  color: var(--blue-sofnage);
}

@media (max-width: 991px) {
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .row {
    flex-direction: column;
  }
  
  .contact-info {
    margin-bottom: 40px;
    width: 100%;
  }
  
  .contact-form {
    width: 100%;
  }
}