@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300;400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Dosis', sans-serif;
    background-color: rgb(240, 240, 240);
    
}


@keyframes fade-in {
    from {opacity: 0; transform: translateY(25px);}
    to {opacity: 1;}
}

.fade-in-element-blog-wrapper {
    animation: fade-in 2.5s;
}

/* ---------------------------------------------------------
                          Header
   --------------------------------------------------------- */

.about-home-hero { min-height: 300px; background-color: rgb(131, 131, 131); display: flex; flex-direction: column; justify-content: space-between; align-items: center; background-image: url("../css/img/pages-hero.png"); background-position: center; background-repeat: no-repeat; background-size: cover; padding-bottom: 0px; }

.logo { height: 70px; width: auto; }

.menu { display: flex; flex-direction: row; justify-content: space-between; align-items: center; padding: 25px; position: fixed; z-index: 10; width: 100%; background-color: rgba(255, 255, 255, 0.566); }

/* .menu.scrolled {
    background: #0a0a0a;
  } */
  .scrolled {
    background-color: white;
  }

.nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 0px;
}

.nav-item {
    color: black;
    text-decoration: none;
    font-size: 16px;
    margin-right: 20px;
    margin-left: 20px;
    text-transform: uppercase;
}
.login-btn { color: white; }


.login-input {
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 2px solid rgb(148, 148, 148);
  }


/* Home Hero */

.hero-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;

    animation-name: moveInLeft;
    animation-duration: 2s;
}


.btn { color: white; text-decoration: none; text-align: center; transition: all .3s; }

.btn:hover { transform: translateY(-5px); box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.212); }


.hero-btn-wrapper { display: flex; flex-direction: row; justify-content: center; align-items: center; margin-top: 30px; }

.home-left-btn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 13px 50px;
    border-radius: 100px;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 0 5px;
}
.home-left-btn:hover { background-color: black; color: white; border: 1px solid black; }

.home-right-btn {
    background-color: black;
    border: 1px solid black;
    color: white;
    padding: 13px 50px;
    border-radius: 100px;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 0 5px;
}
.home-right-btn:hover { background-color: transparent; color: white; border: 1px solid white; }

.uname { color: black;}

.login-wrapper { position: fixed; right: 0; z-index: 100; width: 80%; display: none; background-color: rgba(255, 255, 255, 0); }
.login-form { display: flex; flex-direction: row; justify-content: center; align-items: center; }
.login-input { width: 100%; padding: 5px 5px; margin: 15px 0; display: inline-block; border-top: none; border-right: none; border-left: none; border-bottom: 2px solid rgb(214, 214, 214); box-sizing: border-box; }
label { margin-left: 20px; margin-right: 5px; font-weight: 700; color: white; }
.login-submit-btn { background-color: transparent; color: black; font-weight: 700; padding: 10px 0px; margin: 0px 0; border: none; cursor: pointer; width: 100%; font-size: 15px; transition: all, .3s; }

.uname-label { color: black; }
/* Login */
.login-btn { background-color: #54954C; border: 1px solid #54954C; color: white; padding: 9px 40px; border-radius: 100px; 
    letter-spacing: .3px; font-size: 14px; font-weight: 500; transition: all, .3s; }

/* Full-width input fields */
.login-input {
    width: 100%;
    padding: 8px 5px;
    margin: 15px 0;
    display: inline-block;
    border-top: none;
	  border-right: none;
    border-left: none;
    border-bottom: 2px solid rgb(148, 148, 148);
    box-sizing: border-box;
  }
  
  /* Set a style for all buttons */
  button { color: white; cursor: pointer; }

  .login-submit-btn { background-color: #4CAF50; color: white; padding: 10px 20px; margin: 8px 0; border: none; cursor: pointer; 
    width: 100%; font-size: 16px; transition: all, .3s; }
  
  button:hover { opacity: 0.8; }
  
  /* Extra styles for the cancel button */
  .cancelbtn { width: auto; padding: 10px 30px; background-color: #f44336; border: none; border-radius: 5px; }
  
  /* Center the image and position the close button */
  .imgcontainer { text-align: center; margin: 24px 0 12px 0; position: relative; }
  
  .container { padding: 16px; }
  
  span.psw { float: right; padding-top: 16px; font-size: 15px; }
  
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button (x) */
  .close {
    position: absolute;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover, .close:focus { color: red; cursor: pointer; }
  
  /* Add Zoom Animation */
  .animate { -webkit-animation: animatezoom 0.6s; animation: animatezoom 0.6s }
  
  @-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
  }
    
  @keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
  }

@media only screen and (max-width: 800px) {

    .login-wrapper { position: relative; right: 5; z-index: 100; display: none; width: 100%; margin: 10px 0; background-color: rgba(255, 255, 255, 0); }
    .login-form { display: flex; flex-direction: column; justify-content: center; align-items: center; }
    label { margin-left: 0px; margin-right: 0px; font-weight: 700; }
    label {  color: black; }
    .login-submit-btn {  color: black;  }
    .login-input { width: 100%; padding: 2px 5px; margin: 5px 0; border-bottom: 2px solid rgb(73, 73, 73); }
}


/* ---------------------------------------------------------
                     Testimonials Section
   --------------------------------------------------------- */

.contact-page-heading { font-size: 50px; font-weight: 500; text-align: center; color: white; background-color: black; padding-top: 55px;
padding-bottom: 65px; }

.contact-section { display: flex; flex-direction: row; justify-content: space-around; align-items: center; padding-top: 56px; padding-bottom: 50px; background-color: rgb(17, 17, 17); color:white; }

.contact-form { width: 40%; }
#contact { width: 100%; display: flex; flex-direction: column; }
.input {
    width: 100%;
	padding: 10px 5px;
	background-color: transparent;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 2px solid rgb(148, 148, 148);
	color: white;
	margin: 12px 0;
}   

textarea {
	padding: 10px 5px;
	background-color: transparent;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 2px solid rgb(148, 148, 148);
	color: rgb(255, 255, 255);
    margin: 12px 0;
    width: 100%;
}

::placeholder { color: rgb(255, 255, 255); font-size: 17px; }

.contact-text-wrapper { width: 35%; margin-top: -120px; line-height: 32px; }
.contact-text-wrapper img { height: 70px; width: auto; }

.contact-text-wrapper p { font-size: 22px; font-weight: 500; color: white; }
.contact-green { color: #54954C; }

.submit-btn { margin: 20px 0; color: black; border-radius: 5px; background-color: white; padding: 9px 20px; width: 40%; text-align: center; transition: all, .4s; border: none; }
.submit-btn:hover { background-color: rgb(58, 102, 52); color: white; }

.contact-info-wrapper { display: flex; flex-direction: row; justify-content: center; align-items: center; background-color: rgb(17, 17, 17); }
.contact-info { padding: 20px 0; text-align: center; color: white; min-height: 100px; }
.contact-info p { font-size: 16px; color: rgb(199, 199, 199); }
.contact-info h3 { font-size: 24px; font-weight: 500; color: rgb(236, 236, 236); margin: 10px 0; }

.contact-info1 { width: 20%; border-top: 1px solid rgb(95, 95, 95); border-right: 1px solid rgb(95, 95, 95); }
.contact-info2 { width: 60%; border-top: 1px solid rgb(95, 95, 95);  }
.contact-info3 { width: 20%; border-top: 1px solid rgb(95, 95, 95); border-left: 1px solid rgb(95, 95, 95); }

#myBtn { font-size: 14px; padding: 6px 30px; color: black; margin: 10px 0; margin-bottom: 0; border-radius: 3px; border: none; }

input#captcha { width: 80%; }


@media only screen and (max-width: 800px) {

    .contact-section { display: flex; flex-direction: column-reverse;  justify-content: center; align-items: center; padding-top: 70px; padding-bottom: 50px; }

    .contact-form { width: 80%; margin-top: 40px; }

    ::placeholder { color: rgb(255, 255, 255); font-size: 14px; }

    .submit-btn { margin: 20px 0; color: black; border-radius: 5px; background-color: white; padding: 9px 20px; width: 100%; text-align: center; transition: all, .4s; border: none; }

    .contact-info-wrapper { display: flex; flex-direction: column; justify-content: center; align-items: center; background-color: rgb(17, 17, 17); }

    .contact-info1 { width: 98%; border: 1px solid rgb(95, 95, 95); border-right: none; }
    .contact-info2 { width: 98%; border: 1px solid rgb(95, 95, 95); border-right: none;  }
    .contact-info3 { width: 98%; border: 1px solid rgb(95, 95, 95); border-right: none; }
    .contact-text-wrapper { width: 90%; margin-top: 0; }

}


/* ---------------------------------------------------------
                      Footer
   --------------------------------------------------------- */

footer { display: flex; flex-direction: column; justify-content:center; align-items: center; padding: 50px 0; background-color: rgb(31, 31, 31); }   

.footer-row { display: flex; flex-direction: column; justify-content:center; align-items: center; }
.footer-row h2 { font-size: 20px; font-weight: 500; color: white; }
.footer-locations { display: flex; flex-direction: row; justify-content: center; align-items: center; }
.footer-locations p { margin: 10px 12px; text-align: center; font-weight: 500; color: white; }
.copyright { text-align: center; margin: 10px 0; font-weight: 500; color: white; }