@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
 
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-style: normal;
}

main{
    position: relative;
}

nav
{
    display: flex;
    height: 90px;
    width: 100%;
    background: #ffffff;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 2vw;
    padding-right: 2vw;
}

.logo
{
    display: flex;
	flex-direction: row;
	align-items: center;
}

.logo img
{
    height: 70px;
    width: auto;
}

.logo h1{
    color: #000000;
    font-size: 25px;
    font-weight: 600;       
    text-align: center;
    padding-left: 5px;
}

.logo a{
    text-decoration: none;
}

nav ul
{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

nav ul li
{
    margin: 35px 5px;
}

nav ul li a
{
    color: #1b1b1b;
    text-decoration: none;
    font-size: 19px;
    padding: 15px;
    /* padding: 5px 8px; */
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}



nav ul li a.active
{
    color: #ee1d15;
}

nav ul li a:hover
{
    color: #fbc000;
}

nav .menu-btn i
{
    color: #000000;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

input[type="checkbox"]
{
    display: none;
}

@media (max-width: 100px)
{
    nav{
        padding: 0 40px 0 50px;
    }


}

@media (max-width: 920px)
{

    nav{
        height: 70px;
        justify-content: center;
    }
    nav .menu-btn i{
        display: block;
        margin-top: 23px;
        margin-left: 10px;
    }
    #click:checked ~ .menu-btn i:before{
        content: "\f00d";
    }
    .logo img{
        height: 50px;
        width: auto;
    }
    .logo h1
    {
        font-size: 5vw;
        font-weight: 600;       
        text-align: center;
        padding-left: 2px;
    }
    nav ul{
        position: fixed;
        top: 90px;
        left: -100%;
        background: #111;
        height: 100vh;
        width: 100%;
        text-align: center;
        display: block;
        transition: all 0.3s ease;
    }
  #click:checked ~ ul{
        left: 0;
  }
  nav ul li{
        width: 100%;
        margin: 30px 0;
  }
  nav ul li a{
        width: 100%;
        margin-left: -100%;
        display: block;
        font-size: 20px;
        color: #ffffff80;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
        margin-left: 0px;
  }
    nav ul li a.active{
        background: none;
        color: #f9f051;
  }

}

.title{
    text-align: center;
    background-color: #0f1657;
    padding: 20px;
}

.title h1{
    color: #ffffff;
    font-size: 40px;
}

.info{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 3vw;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-top: 40px;
    margin-bottom: 40px;
}

.address{
    border: 4px solid #ee1d15;
    border-radius: 15px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.address i{
    color: #ee1d15;
}

.address h1{
    color: #ee1d15;
    padding-top: 5px;
    padding-bottom: 15px;
    font-size: 30px;
    letter-spacing: 1px;
    text-decoration: underline;
}

.address h3{
    color: #ee1d15;
    font-size: 22px;
    padding: 2px;
    font-weight: 600;
    letter-spacing: 1px;
}


.email{
    border: 4px solid #fbc000;
    border-radius: 15px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.email i{
    color: #fbc000;
}

.email h1{
    color: #fbc000;
    padding-top: 5px;
    padding-bottom: 15px;
    font-size: 30px;
    letter-spacing: 1px;
    text-decoration: underline;
}

.email h3{
    color: #fbc000;
    font-size: 22px;
    padding: 2px;
    font-weight: 600;
    letter-spacing: 1px;
}



.contact{
    border: 4px solid #4CC417;
    border-radius: 15px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.contact i{
    color: #4CC417;
}

.contact h1{
    color: #4CC417;
    padding-top: 5px;
    padding-bottom: 15px;
    font-size: 30px;
    letter-spacing: 1px;
    text-decoration: underline;
}

.contact h3{
    color: #4CC417;
    font-size: 22px;
    padding: 2px;
    font-weight: 600;
    letter-spacing: 1px;
}

.form-box{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-left: 5vw;
    margin-right: 5vw;
    border: 4px solid #0f1657;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 40px;
}

.form-title h2{
    font-weight: 600;
    color: #0f1657;
    font-size: 40px;
}

.row{
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

.contact-inputs{
    height: 50px;
    width: 100%;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 600;
    background-color: #bdbdbd;
    color: #000000;
    border-radius: 50px;
    transition: 0.1s;
}

.form-box textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus{
    border: 3px solid #0f1657;
}

.contact-inputs::placeholder{
    color: #646464;
    font-weight: 600;
}

.form-box button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #ffffff;
    background-color: #0f1657;
    gap: 10px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}


p{
    text-align : center;
    margin-bottom: 40px;
}





.footer{
    background: #0f1657;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 45px 40px;
}

  .footer-left,
  .footer-center,
  .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

  .footer-left{
	width: 40%;
}

/* The company logo */

    .footer img{
        height: 80px;
        width: auto;
}

    .footer h1{
      margin: 10px;
	  color: #ffffff;
      font-size: 25px;
      font-weight: 600;       
      text-align: center;
}

/* Footer links */

  .footer-links{
	color:  #ffffff;
	margin: 12px 0 12px;
    margin-left: 10px;
	padding: 0;
}

  .footer-links a{
	display:inline-block;
	line-height: 1.8;
    font-size: 20px;
    font-weight:600;
	text-decoration: none;
	color:  inherit;
}


/* Footer Center */

  .footer-center{
	width: 35%;
}

  .footer-center i{
	background-color:  #ffffff;
	color: #0f1657;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

  .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

  .footer-center p{
	display: inline-block;
	color: #ffffff;
    font-size:15px;
    font-weight:400;
	vertical-align: middle;
	margin:0;
}



  .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:15px;
	line-height:2;
}

  .footer-center p a{
	color:  #fbc000;
	text-decoration: none;;
}

  .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 10px;
}

  .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

  .footer-right{
	width: 20%;
}

  .footer-company-about{
	line-height: 20px;
	color:  #92999f;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}

  .footer-company-about span{
	display: block;
	color:  #ffffff;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}

  .footer-icons{
	margin-top: 25px;
}

  .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color:  #ffffff;
	border-radius: 50%;

	font-size: 20px;
	color: #0f1657;
	text-align: center;
	line-height: 35px;

	margin-right: 3px;
	margin-bottom: 5px;
 }

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {

	 .footer{
		font: bold 14px sans-serif;
	 }

	  .footer-left,
	  .footer-center,
	  .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	  .footer-center i{
		margin-left: 0;
	}

}
