/* SITE WIDE */

input:focus,
select:focus,
textarea:focus,
button:focus,
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

button:hover {
  cursor: pointer;
}

a:hover,
a {
  text-decoration: none;
}

/* -- HEADER -- */

.toggle-menu {
  display: none;
}

header {
  padding: 25px 0;
  position: relative;
  background: white;
  z-index: 1000;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .navbar-nav {
  flex-direction: row;
  margin-top: 0;
}

header .navbar-nav .menu-item:not(:last-of-type) {
  margin-right: 30px;
}

/* -- LANDING -- */

.owl-landing-hero .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.owl-landing-hero .item .image img {
  max-width: 100%;
}

#landing-intro {
  margin-top: 100px;
  background: rgba(0, 74, 88, 0.1);
  padding: 100px 0;
}

.landing-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
}

#landing-points {
  margin-top: 100px;
}

.landing-points-title {
  text-align: center;
}

.landing-points {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

#landing-contact {
  margin-top: 100px;
}

/* -- CONTACT FORM -- */

.contact-form {
  padding: 100px;
  background-color: rgba(0, 74, 88, 0.1);
  border-radius: 10px;
}

.contact-form p {
  margin: 0 !important;
  /* text-align: end; */
}

.contact-form select {
  -webkit-appearance: none;
  border-radius: 0;
}

.contact-form .wpcf7-form-control-wrap.Subject1 {
  position: relative;
}

.contact-form .wpcf7-form-control-wrap.Subject1::after {
  content: "";
  position: absolute;
  right: 15px;
  background-image: url("/wp-content/uploads/2022/04/dropdown-icon.svg");
  background-repeat: no-repeat;
  top: 50%;
  transform: translateX(-50%);
  height: 10px;
  width: 17px;
  background-size: contain;
}

.contact-form input[type="submit"] {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 20px !important;
}

.request-a-callback-form input[type="submit"] {
  width: 100%;
  text-align: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px;
  background-color: #f4faff;
  border: 2px solid #f4faff;
  transition: 0.3s ease-in-out;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #082f34;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 1.2rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  padding: 15px;
  background-color: #f4faff;
  border: 2px solid #dfa400;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #082f34;
  transition: 0.3s ease-in-out;
  font-size: 1.2rem;
  font-family: "roc-grotesk", sans-serif;
}

.contact-form input:focus::placeholder,
.contact-form select:focus::placeholder,
.contact-form textarea:focus::placeholder {
  opacity: 0.4;
}

.contact-form-split {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.contact-form-split input,
.contact-form-split textarea,
.contact-form-split select {
  width: 100%;
}

.contact-form-split div:first-of-type {
  padding-right: 10px;
  width: 50%;
}

.contact-form-split div:last-of-type {
  padding-left: 10px;
  width: 50%;
}

.contact-form-full {
  padding-bottom: 20px;
}

.contact-form-full input,
.contact-form-full div input,
.contact-form-full textarea,
.contact-form-full div textarea,
.contact-form-full select,
.contact-form-full div select {
  width: 100%;
}

.contact-form input.gold-btn {
  padding: 15px 35px;
  background: #dfa400;
  border-color: #dfa400;
  color: white;
}

.wpcf7-spinner {
  display: block;
}

/* -- FOOTER -- */

footer {
  margin-top: 150px;
  background: rgba(0, 74, 88, 0.1);
  padding-top: 100px;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 100px;
}

.footer-main__links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li:not(:last-of-type) {
  margin-bottom: 1rem;
}

#footer-bottom {
  margin-top: 50px;
  background-color: darkcyan;
  padding: 15px 0;
}

/* -- RESPONSIVE -- */

@media screen and (max-width: 1900px) {
}

@media screen and (max-width: 1400px) {
}

/* -- Extra Large Screens -- */

@media screen and (max-width: 1200px) {
  .toggle-menu {
    display: block;
  }
  header .menu-container {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    height: 0px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    background: white;
    box-shadow: 0 20px 10px -5px rgba(0, 0, 0, 0.05);
  }
  header .navbar-nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  header .navbar-nav .menu-item:not(:last-of-type) {
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1024px) {
}

/* -- Large Screens -- */

@media screen and (max-width: 992px) {
  .owl-landing-hero .item {
    grid-template-columns: 1fr;
  }
  .landing-points {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form {
    padding: 50px;
  }
  .footer-main__links {
    grid-template-columns: 1fr 1fr;
  }
}

/* -- Tablet Screens -- */

@media screen and (max-width: 768px) {
}

/* -- Phones Screens -- */

@media screen and (max-width: 767px) {
  .contact-form-split div:first-of-type {
    padding-right: 0px;
    width: 100%;
    padding-bottom: 20px;
  }
  .contact-form-split div:last-of-type {
    padding-left: 0px;
    width: 100%;
    padding-bottom: 20px;
  }
  .contact-form-split {
    padding-bottom: 0px;
  }
  .landing-intro {
    grid-template-columns: 1fr;
  }
  .footer-main {
    display: block;
  }
  .footer-main__links {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
}

/* -- Small Phones Screens -- */

@media screen and (max-width: 375px) {
}
