@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
input,
textarea {
  font-family: "Poppins", sans-serif;

}

nav{
    background: #000000;
    height: 110px;

  }
  nav:after{
    content: '';
    clear: both;
    display: table;
  }
  nav .logo{
    float: left;
    color: white;
    font-size: 27px;
    font-weight: 600;
    line-height: 30px;
    padding-left: 60px;
    margin-top: 5px;
  }
  nav ul{
    float: right;
    margin-right: 40px;
    list-style: none;
    position: relative;
  }
  nav ul li{
    float: left;
    display: inline-block;
    background: #000000;
    margin: 0 5px;
  }
  nav ul li a{
    color: white;
    line-height: 100px;
    text-decoration: none !important;
    font-size: 18px;
    padding: 8px 15px;
  }
  nav ul li a:hover{
    color: cyan;
    border-radius: 5px;
    box-shadow:  0 0 5px #33ffff,
                 0 0 10px #66ffff;
  }
  nav ul ul li a:hover{
    box-shadow: none;
  }
  nav ul ul{
    position: absolute;
    top: 90px;
    border-top: 3px solid cyan;
    opacity: 0;
    visibility: hidden;
    transition: top .3s;
  }
  nav ul ul ul{
    border-top: none;
  }
  nav ul li:hover > ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
  }
  nav ul ul li{
    position: relative;
    margin: 0px;
    width: 250px;
    float: none;
    display: list-item;
    border-bottom: 1px solid rgba(0,0,0,0.3);
  }
  nav ul ul li a{
    line-height: 50px;
  }
  nav ul ul ul li{
    position: relative;
    top: -60px;
    left: 150px;
  }
  .show,.icon, nav input{
    display: none;
  }
  .fa-plus{
    font-size: 15px;
    margin-left: 40px;
  }
  
  
  @media all and (max-width: 968px) {
    nav ul{
      margin-right: 0px;
      float: left;
    }
    nav .logo{
      padding-left: 30px;
      width: 100%;
    }
    .show + a, nav ul{
      display: none;
    }
    nav ul li,nav ul ul li{
      display: block;
      width: 100%;
    }
    nav ul li a:hover{
      box-shadow: none;
    }
    .show{
      display: block;
      color: white;
      font-size: 18px;
      padding: 0 15px;
      line-height: 70px;
      cursor: pointer;
    }
    .show:hover{
      color: cyan;
    }
    .icon{
      display: block;
      color: white;
      position: absolute;
      top: 0;
      right: 40px;
      line-height: 70px;
      cursor: pointer;
      font-size: 25px;
      margin-top: 5px;
    }
    nav ul ul{
      top: 70px;
      border-top: 0px;
      float: none;
      position: static;
      display: none;
      opacity: 1;
      visibility: visible;
    }
    nav ul ul a{
      padding-left: 40px;
    }
    nav ul ul ul a{
      padding-left: 80px;
    }
    nav ul ul ul li{
      position: static;
    }
    [id^=btn]:checked + ul{
      display: block;
    }
    nav ul ul li{
      border-bottom: 0px;
    }
    span.cancel:before{
      content: '\f00d';
    }
  }
  header{
    font-size: 35px;
    font-weight: 600;
    padding: 10px 0;
  }




  @import url('https://fonts.googleapis.com/css?family=Coda+Caption:800|Source+Sans+Pro&display=swap');

  :root {
    --primary-color:#323a2e;
    --secondary-color:#eaba5d		;
    --third-color: #6F4E37;
  }
  
  .hero-img .banner-area{
    width: 100%;
    height: 451px;
    background-image: url(../assets/pexels-spencer-selover-428310.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}

.container {
    max-width: 60rem;
    margin: 0 auto;
  }
  
  ul {
    list-style: none;
  }
  
  #heading {
    background: var(--primary-color);
    height: 20rem;
  }
  
  .heading-wrap {
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
  }
  
  .heading-wrap h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: 'Coda Caption', sans-serif;
  
  }
  
  .heading-wrap p {
    position: relative;
    font-size: 1rem;
  }
  
  .heading-wrap p::before {
    content: '';
    position: absolute;
    top: -.7rem;
    left: 50%;
    transform: translate(-50%);
    width: 7.7rem;
    height: 7px;
    background: var(--secondary-color);
  }
  
  .form-box {
    margin: -4rem 2rem 1rem 2rem;
    box-shadow: 0 0 5px 0 rgba(49, 61, 73, 0.7);
    border-radius: 5px;
  }
  
  /* Form Info */
  .form-info {
    background: #eaba5d;
    color: #fff;
    padding: 2rem;
    text-align: center;
  }
  
  .form-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .form-info ul li {
    margin-top: .5rem;
    display: flex;
    align-items: center;
  }
  
  .form-info ul li i {
    background: #fff;
    color: var(--secondary-color);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    margin-right: .5rem;
  }
  
  /* Form input */
  .form-input {
    padding: 0 2rem;
    background: #fff;
  }
  
  .form-input h3 {
    margin: 1.5rem 0 2rem 0;
    font-size: 1.3rem;
    color: #333;
  }
  
  .form-input form {
    display: grid;
    grid-gap: 1rem;;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-input label {
    font-weight: bold;
    color: #222222;
    line-height: 1.6;
    opacity: 0.8;
  }
  
  .form-input input {
    height: 2.5rem;
    text-indent: 1em;
    border: .5px solid #149cc567;
  }
  
  .form-input form input, .form-input form textarea {
    width: 100%;
  }
  
  .form-input form textarea {
    height: 6rem;
    padding: 1em;
    border: .5px solid #149cc567;
  }
  
  .form-input form .full {
    grid-column: 1 / 3;
  }
  
  .form-input form button {
    width: 100%;
    margin: 1rem 0 2rem 0;
    height: 2.5rem;
    background: #eaba5d;
    border: none;
    outline: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all .5s ease
    ;
  }
  
  .form-input form button:hover {
    background: #fff;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
  }
  
  /* LARGE SCREEN */
  @media (min-width: 700px) {
    #heading {
      height: 15rem;

    }
  
    .heading-wrap h1 {
      font-size: 2.5rem;
    }
  
    .form-box {
      margin-top: -4rem;
    }
  
    .form-box-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      
    }
    
    .form-input {
      grid-row: 1;
      grid-column: 1 / 3;
    }
  
    .form-info {
      grid-column: 3 / 4;
    }
  
    .form-info ul {
      margin-top: 4rem;
    }
  
    .form-info ul li {
      margin-top: 2rem;
    }
  
  }


  section{
    padding: 0 200px 0px;
}
.about{
    background: #d3d1d1;
}
.row{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.row .col150{
    position: relative;
    width: 48%;
}
.row .col150 h2{
  margin-top: 70px;
  margin-bottom: 20px;
}
.row .col150 p{
  margin-bottom: 10px;
  font-family: Open-Sans;
  font-size: 20px;
}
.row .col150 .fas{
margin-right: 5px;
}
.titleText{
    color: rgb(255, 255, 255);
    font-size: 2em;
    font-weight: 300;
}
.titleText span{
    color: #b67f0a;
    font-family: Open-Sans;
    font-weight: 700;
    font-size: 1.5em;
}
.row .col150 .imgBx{
position: relative;
width: 100%;
height: 550px;
}
.row .col150 .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    object-fit: cover;
}
@media only screen and (max-width:600px){
    section{
        padding:20px;
    }
    .row{
        flex-direction: column;
    }
    .row .col150{
        position: relative;
        width: 100%;
    }
    .row .col150 .imgBx{
        height: 300px;
    }
}
@media only screen and (max-width:900px){
  section{
    padding: 1px;
  }
  .row .col150{
    padding: 20px;
  }
}
@media only screen and (min-width:1024px){
  section{
    padding: 0 100px 0;
  }
}
  /* ----------------- Footer --------------------- */

footer .footer {
	width: 100%;
	background: #000000;
  display: block;
  margin-top: 50px;
}
.fab{
  font-size: 22px;
}
footer .inner-footer {
	width: 100%;
	margin: auto;
	padding: 30px 10px;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	justify-content: center;
}

footer .footer-items {
	width: 20%;
	padding: 10px 20px;
  box-sizing: border-box;

}

footer h1 {
	padding: 10px 0;
	font-size: 25px;
	color: #fff;
  text-transform: uppercase;
  margin-top: -15px;
}

footer .footer-items p {
	color: grey;
	font-size: 16px;
	text-align: justify;
  line-height: 25px;
}

footer h2 {
	margin: 0px 0;
	color: rgb(231, 181, 15);
	font-size: 16px;
	font-weight: lighter;
  text-transform: uppercase;
  font-family: 'Open-Sans';
}

footer .border {
	height: 1px;
	width: 40px;
	position: absolute;
  background: #ff9800;
  margin: auto;
}

footer ul {
	list-style: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.5px;
}

footer ul a {
	text-decoration: none;
	outline: none;
	color: #fff;
	transition: 0.3s;
}

footer ul a:hover {
	color: #ffffff;
}

footer ul li {
	margin: 10px 0;
  height: 25px;
  font-family: 'Open-Sans';
}

footer li i {
	margin-right: 20px;
}

footer .social-media {
	width: 100%;
	color: #fff;
  text-align: center;
  padding: 10px;
}

footer .social-media a {
	text-decoration: none;
}

footer .social-media i {
	width: 15px;
	margin: 0px 5px;
	color: #fff;
    transition: 0.3s;
    float: left;
    padding-right: 20px;
}

footer .social-media i:hover {
	background: grey;
}

footer .footer-bottom {
	padding: 10px;
	background: #3d545f;
	color: #fff;
	font-size: 12px;
}
footer .inner-footer .footer-items input[type="email"]{
	border: 0;
	padding: 6px 8px;
	width: 65%;
}
footer .inner-footer .footer-items input[type="submit"]{
background: #e23719;
border: 0;
width: 35%;
padding: 6px 0;
text-align: center;
color: #fff;
transition: 0.3s;
cursor: pointer;
}
footer .inner-footer .footer-items input[type="submit"]:hover{
	background: #16a32d;
}

@media screen and (max-width: 1085px) {
	footer .footer-items {
		width: 50%;
	}
}

@media screen and (max-width: 600px) {
	footer .footer-items {
		width: 100%;
	}
}
/* ---------x------- Footer ----------x---------- */