input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.container-fluid {
  padding: 10px;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
}

#id_email {
  border-radius: 3px;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff;
  padding: 1rem 1rem;
  font-size: inherit;
  font-family: inherit;
  width: 80%;
  transition: 0.5s;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}

#id_new_password1 {
  border-radius: 3px;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff;
  padding: 1rem 1rem;
  font-size: inherit;
  font-family: inherit;
  width: 80%;
  transition: 0.5s;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}

#id_new_password2 {
  border-radius: 3px;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff;
  padding: 1rem 1rem;
  font-size: inherit;
  font-family: inherit;
  width: 80%;
  transition: 0.5s;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}

.form-control {
  border-radius: 3px;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff;
  padding: 1rem 1rem;
  font-size: inherit;
  font-family: inherit;
  width: 80%;
  transition: 0.5s;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}

/* 
grid-area: email;
}
#contact .form-group .email-input, #contact .form-group .name-input, #contact .form-group .message-input {
    
} */

@-webkit-keyframes autofill {
  0%,
  100% {
    color: #666;
    background: transparent;
  }
}

input:-webkit-autofill {
  -webkit-animation-delay: 1s; /* Safari support - any positive time runs instantly */
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.showPasswordToggle {
  cursor: pointer;
  transition: all;
}

.showPasswordToggle:hover {
  transform: scale(1.2);
}

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");

.py-1 {
  padding: 1rem 0;
}

.py-2 {
  padding: 2rem 0;
}

.py-3 {
  padding: 3rem 0;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}
.centered-text {
  text-align: center;
}

.heading-xl {
  font-weight: 800;
  font-size: 3rem;
  color: #000;
}

.heading-l {
  font-weight: 800;
  font-size: 2.5rem;
}

.heading-m {
  font-weight: 800;
  font-size: 2rem;
}

.lead {
  font-size: 1.25rem;
}

.btn-light {
  display: inline-block;
  width: fit-content;
  cursor: pointer;
  border: 1px solid #ffffff;
  background: none;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin: 0.75rem 0;
}

.btn-dark {
  width: fit-content;
  display: block;
  cursor: pointer;
  border: 2px solid #412f43;
  background-color: rgba(102, 102, 102, 0.541);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin: 0.75rem 0;
}

.col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}

.col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  line-height: 1.4;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

.logo {
  max-width: 130px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 49.5%;
  transform: translate(-50%, -50%);
}

nav {
  position: fixed;
  height: 115px;
  top: 0;
  z-index: 10;
  width: 100%;
  transition: all 0.75s;
}
nav .nav-inner {
  display: grid;
  grid-template-columns: repeat(3, calc(100% / 3));
  padding: 0.25rem 2rem;
  padding-top: 40px;
}
nav .nav-inner .hamburger,
nav .nav-inner .mobile-links {
  display: none;
}
nav .nav-inner .nav-links {
  display: flex;
  justify-content: space-evenly;
}
nav .nav-inner .nav-links li a {
  color: #000000;
  margin: 10px;

  text-transform: uppercase;
}

header {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
header .header-inner {
  text-transform: uppercase;
  z-index: 5;
}
header .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
header .video-bg::after {
  position: absolute;
  content: "";
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.098);
}
header .video-bg video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

#about {
  background: #ffffff;
}
#about .about-inner .about-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
}
#about .about-inner .about-img {
  margin: auto;
}

@media screen and (min-width: 1200px) {
  .about-txt {
    padding: 40px;
  }
  .gallery {
    padding: 20px;
  }
}

#services {
  color: white;
  background: rgba(101, 137, 90);
}
#services .services-inner .col-3 .service {
  border-right: 1px solid #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#services .services-inner .col-3 .service .icon {
  width: 3rem;
  height: 3rem;
}
#services .services-inner .col-3 .service:nth-child(3) {
  border-right: none;
}
#services .services-inner .col-3 .service:nth-child(4),
#services .services-inner .col-3 .service:nth-child(5) {
  border-top: 1px solid #ffffff;
}
#services .services-inner .col-3 .service:nth-child(6) {
  border-top: 1px solid #ffffff;
  border-right: none;
}

#portfolio {
  background: #ffffff;
}
#portfolio .portfolio-inner .gallery {
  columns: 3;
}
#portfolio .portfolio-inner .gallery img {
  cursor: pointer;
}

#admin_login .form-group .email-input,
#admin_login .form-group .name-input,
#admin_login .form-group .message-input {
  border-radius: 3px;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff;
  padding: 1rem 1rem;
  font-size: inherit;
  font-family: inherit;
  width: 100%;
  transition: 0.5s;
  outline: none;
}
#admin_login .form-group .email-input:focus,
#admin_login .form-group .name-input:focus,
#admin_login .form-group .message-input:focus {
  border: 2px solid #ffffff;
}

#admin_login {
  background: #ffffff;
}
#admin_login .form-group {
  display: grid;
  grid-template-areas:
    "email name"
    "message message";
  grid-gap: 1.2rem;
}
#admin_login .form-group .email-input {
  grid-area: email;
}
#admin_login .form-group .name-input {
  grid-area: name;
}
#admin_login .form-group .message-input {
  grid-area: message;
  height: 10rem;
  resize: none;
}

#contact .form-group .email-input,
#contact .form-group .name-input,
#contact .form-group .message-input {
  border-radius: 3px;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff;
  padding: 1rem 1rem;
  font-size: inherit;
  font-family: inherit;
  width: 100%;
  transition: 0.5s;
  outline: none;
}
#contact .form-group .email-input:focus,
#contact .form-group .name-input:focus,
#contact .form-group .message-input:focus {
  border: 2px solid #ffffffd3;
}

#contact {
  color: white;
  background: rgba(101, 137, 90);
}
#contact .form-group {
  display: grid;
  grid-template-areas:
    "email name"
    "message message";
  grid-gap: 1.2rem;
}
#contact .form-group .email-input {
  grid-area: email;
}
#contact .form-group .name-input {
  grid-area: name;
}
#contact .form-group .message-input {
  grid-area: message;
  height: 10rem;
  resize: none;
}

footer {
}
footer .footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-inner a {
  color: black;
  font-weight: 800;
}

@media screen and (max-width: 1400px) {
  nav .nav-inner {
    display: flex;
    justify-content: space-between;
  }
  nav .nav-inner .hamburger {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #000000;
  }
  nav .nav-inner .hamburger .menu-icon {
    width: 2rem;
    height: 2rem;
  }
  nav .nav-inner .mobile-links {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: #000000;
    overflow-x: hidden;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  nav .nav-inner .mobile-links .close {
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 40px;
    color: #ffffff;
  }
  nav .nav-inner .mobile-links li {
    text-align: center;
  }
  nav .nav-inner .mobile-links li a {
    color: #ffffff;
    text-transform: uppercase;
  }
  nav .nav-inner .nav-links {
    display: none;
  }
  .col-2 {
    grid-template-columns: 1fr;
  }
  .col-2 .about-img {
    order: 1;
  }
  .col-2 .about-txt {
    order: 2;
  }
}

@media screen and (max-width: 670px) {
  #portfolio .portfolio-inner .gallery {
    columns: 2;
  }
  .heading-xl {
    font-weight: 800;
    font-size: 2.25rem;
  }
  .heading-l {
    font-weight: 800;
    font-size: 1.75rem;
  }
  .heading-m {
    font-weight: 800;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 500px) {
  #services .services-inner .col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  #services .services-inner .col-3 .service {
    border-right: none;
  }
  #services .services-inner .col-3 .service:nth-child(1),
  #services .services-inner .col-3 .service:nth-child(3),
  #services .services-inner .col-3 .service:nth-child(5) {
    border-right: 1px solid #ffffff;
  }
  #services .services-inner .col-3 .service:nth-child(3),
  #services .services-inner .col-3 .service:nth-child(4) {
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
  }
  #services .services-inner .col-3 .service:nth-child(5) {
    border-top: none;
  }
  #services .services-inner .col-3 .service:nth-child(6) {
    border-top: none;
    border-right: none;
  }
  #portfolio .portfolio-inner .gallery {
    columns: 1;
  }
  #contact .form-group {
    grid-template-areas:
      "email"
      "name"
      "message";
  }
}

@media screen and (max-width: 390px) {
  #services .services-inner .col-3 {
    grid-template-columns: 1fr;
  }
  #services .services-inner .col-3 .service {
    border-bottom: 1px solid #ffffff;
  }
  #services .services-inner .col-3 .service:nth-child(1),
  #services .services-inner .col-3 .service:nth-child(3),
  #services .services-inner .col-3 .service:nth-child(5) {
    border-right: none;
  }
  #services .services-inner .col-3 .service:nth-child(6) {
    border-bottom: none;
  }
  #portfolio .portfolio-inner .gallery {
    columns: 1;
  }
}

@media screen and (max-height: 500px) {
  header .header-inner {
    padding-top: 3rem;
  }
}

.submit {
  height: auto;
  position: relative;
  top: 5px;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

#signup .form-group .email-input,
#admin_login .form-group .name-input,
#signup .form-group .message-input {
  border-radius: 3px;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff;
  padding: 1rem 1rem;
  font-size: inherit;
  font-family: inherit;
  width: 100%;
  transition: 0.5s;
  outline: none;
}

#signup {
  background: #919191;
  color: #000000;
}

nav li {
  z-index: 10;
  position: relative;
}
nav a {
  display: block;
  overflow: visible;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

nav .dropdown:after {
  content: " \25bc";
}
nav li:hover a {
  color: rgb(49, 35, 44);
}
nav li ul {
  white-space: nowrap;
  padding: 2px;
  overflow: visible;
  background: rgb(255, 255, 255);
  left: -15px;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
nav li:hover ul {
  opacity: 1;

  visibility: visible;
}
nav li:hover ul {
  margin-top: 10px;

  padding: 2px;
  text-align: left;

  z-index: 100;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
nav li ul a:hover {
  padding: 2px;

  box-shadow: 0 2px 5px -1px rgba(0, 0, 0, 0.25);
  background-color: rgba(192, 192, 192, 0.199);
  border-radius: 1px;
}
nav {
  font-size: 18px;
}
/* .static {
  display: none;
} */

.pd10 {
  padding-left: 2vw;
  padding-right: 2vw;
}
.pd11 {
  overflow: hidden;
 
}

.white {
  color: white;
}

.autocomplete-items {
  padding: 10px;
  font-size: 20px;
  width: 100%;
  background-color: rgba(101, 137, 90, 0.5);
  color: white;
  z-index: 100;
}

select {
  font-size: inherit;
  font-family: inherit;

  width: 140px;
  transition: 0.5s;
  padding: 10px;
  border: 2px solid #ffffff;
  border-radius: 3px;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem;
  -webkit-appearance: none;
  appearance: none;
  background: transparent !important;
}

.label2 {
  position: absolute;
  left: 8px;
  top: 24px;
  color: rgba(101, 137, 90, 0.5);
  font-weight: 700;
  font-size: 12px;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -20px, 0);
}

.form-new {
  border-radius: 3px;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: inherit;
  font-family: inherit;
  width: 100%;
  transition: 0.5s;
  outline: none;
}

h1 {
  font-size: 20px;
  text-align: center;
  margin: 20px 0 20px;
}
h1 small {
  display: block;
  font-size: 15px;
  padding-top: 8px;
  color: gray;
}
.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 50px auto;
}
.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 110px;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #e7e7e79f;
  border: 1px solid transparent;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover {
  border-color: #000000;
}
.avatar-upload .avatar-edit input + label:after {
  color: #272727;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}

.alert {
  font-size: 50px;
}
