@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #d8f3dc;
}

::-webkit-scrollbar-thumb {
    background: #7b7b7b;
    border-radius: 5px;    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    min-height: 100vh;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #000;
    background: radial-gradient(ellipse at bottom, #d8f3dc 60%, #f1faee 100%);
}

#main {
    width: 100%;
    height: fit-content;
    overflow-x: hidden;
}

header.navbar.sticky {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #111111;

}

@media (max-width: 1023px) {
    header.navbar.sticky {
        position: fixed;
        top: 0;
        left: 0;
    }
}

header .logo {
    padding: 10px 0;
    width: 16vw;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header .logo img {
    width: 6em;
    max-width: 6em;
    height: 6vh;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
  }
  
  header .logo img:hover {
    scale: 1.2;
  }

header .logo span {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 0.7rem;
    transition: all 0.5s ease-in-out;
}

header .logo:hover span {
    text-shadow:
        0 0 5px #d8f3dc,
        0 0 8px #d8f3dc,
        0 0 9px #d8f3dc,
        0 0 10px #d8f3dc,
        0 0 15px #d8f3dc,
        0 0 20px #d8f3dc;
}

/* animation menu hamburger */
.menu-btn {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

@media (max-width: 1023px) {
    .menu-btn {
        display: flex;
    }
}

.menu-btn .menu-btn__lines,
.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
    width: 1.5rem;
    height: 0.1rem;
    background: #d8f3dc;
    transition: all 0.4s ease-in-out;
}

.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
    content: "";
    position: absolute;
}

.menu-btn .menu-btn__lines::before {
    transform: translateY(-0.5rem);
}

.menu-btn .menu-btn__lines::after {
    transform: translateY(0.5rem);
}

.menu-btn.open .menu-btn__lines {
    transform: translateX(1rem);
    background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: #d8f3dc;
}

.menu-btn.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: #d8f3dc;
}

.expand-btn:after {
    position: absolute;
    top: 50%;
    right: 0;
    content: " \25BE";
    opacity: 0.75;
    transform: translateY(-50%) rotate(0);
    transition: 0.25s;
}

.expand-btn.open {
    color: #d8f3dc;
}

.expand-btn.open:after {
    transform: translateY(-50%) rotate(180deg);
}

/* navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    padding: 0 40px;
    background: #111111;
    box-shadow: 0 5px 30px 0 #111111;
}

@media (max-width: 1023px) {
    .navbar {
        padding: 10px 20px;
    }
}

.navbar.sticky {
    position: sticky;
    z-index: 999;
    top: 0;
}

.navbar .logo {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.navbar .menu-items {
    display: flex;
    align-items: center;
}

.navbar .menu-items::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background-color: #111111;
}

.navbar .menu-items::-webkit-scrollbar {
    width: 6px;
    background-color: #111111;
}

.navbar .menu-items::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    background-color: #fff;
}

@media (max-width: 1023px) {
    .navbar .menu-items {
        scrollbar-gutter: stable;
        position: fixed;
        top: 6rem;
        left: 0;
        display: block;
        width: 350px;
        height: 100%;
        padding-top: 30px;
        padding-bottom: 100px;
        padding-right: 10px;
        background: #111111;
        overflow-y: auto;
        transform: translateX(-100vh);
        transition: 0.3s ease-out;
    }

    .navbar .menu-items.open {
        transform: translateY(0);
        height: 100vh;
        width: 100vw;
    }
}

.navbar .menu-items>li>.menu-item {
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
}

@media (max-width: 1023px) {
    .navbar .menu-items>li>.menu-item {
        padding: 1rem 1rem;
        font-size: 1.5rem;
    }
}

.navbar .menu-items li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1023px) {
    .navbar .menu-items li a {
        padding: 10px 1rem;
        font-size: 1.5rem;

    }
}

.navbar .dropdown {
    position: relative;
}

@media (min-width: 1024px) {
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .navbar .dropdown:hover>.expand-btn:after {
        transform: translateY(-50%) rotate(180deg);
    }
}

@media (min-width: 1024px) {

    .navbar .dropdown .dropdown-right .expand-btn:after,
    .navbar .dropdown .dropdown-left .expand-btn:after {
        right: 0.625rem;
    }
}

@media (min-width: 1024px) {
    .navbar .dropdown-menu {
        position: absolute;
        top: 65px;
        right: 0;
        left: 0;
        width: 190px;
        padding: 5px 0;
        background: #111111;
        border-radius: 0 0 5px 5px;
        opacity: 0;
        box-shadow: 0 20px 50px 0 #111111;
        visibility: hidden;
        transition: all 0.4s ease;
    }
}

@media (max-width: 1023px) {
    .navbar .dropdown-menu {
        display: none;
        position: relative;
        top: 0;
        width: 100%;
        padding-left: 1rem;
        overflow: hidden;
    }
}

.navbar .menu-right {
    top: 0;
    left: 100%;
}

@media (max-width: 1023px) {
    .navbar .menu-right {
        top: 0;
        left: 0;
        right: auto;
        width: 100%;
        padding-left: 1.5rem;
    }

    .navbar .menu-right:before {
        content: "";
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 20px;
        width: 1px;
        height: calc(100% - 25px);
        background-color: #111111;
        transform: translateY(-50%);
    }
}

.navbar .menu-left {
    top: 0;
    left: -100%;
}

@media (max-width: 1023px) {
    .navbar .menu-left {
        top: 0;
        left: 0;
        width: 100%;
        padding-left: 1.5rem;
    }

    .navbar .menu-left:before {
        content: "";
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 20px;
        width: 1px;
        height: calc(100% - 25px);
        background-color: #111111;
        transform: translateY(-50%);
    }
}

.navbar .menu-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 14px;
    transition: 0.25s;
}

.navbar .menu-item:hover {
    text-shadow:
        0 0 5px #d8f3dc,
        0 0 8px #d8f3dc,
        0 0 9px #d8f3dc,
        0 0 10px #d8f3dc,
        0 0 15px #d8f3dc,
        0 0 20px #d8f3dc;
}

.navbar ul li {
    list-style: none;
    transition: 0.3s ease;
}

.navbar ul li .arrow {
    transition: all 0.3s ease-out;
}

.navbar ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
}

@media (min-width: 1024px) {
    .navbar .dropdownMega {
        position: inherit !important;
    }
}

@media (min-width: 1024px) {
    .navbar .mega-menu {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100vw;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
    }
}

@media (max-width: 1023px) {
    .navbar .mega-menu {
        position: relative;
        display: none;
        padding-left: 0;
    }
}

.navbar .mega-menu .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    background: #111111;
    -webkit-box-shadow: 0 20px 50px 0 #111111;
    box-shadow: 0 20px 50px 0 #111111;
}

@media (max-width: 1023px) {
    .navbar .mega-menu .content {
        grid-template-columns: auto;
    }
}

@media (min-width: 1024px) {
    .navbar .mega-menu .content {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 1023px) {
    .navbar .mega-menu .content .col {
        padding: 0;
        width: 100%;
    }
}

.navbar .category .content .col .img-wrapper {
    margin: 1rem 0;
}

.navbar .category .content .col .img-wrapper span img {
    width: 80%;
    height: 80%;
}

.navbar .blog .content {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 1024px) {
    .navbar .blog .content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.navbar .blog .content .col .img-wrapper {
    margin-bottom: 1rem;
}

.navbar .blog .content .col .menu-title {
    font-weight: normal;
    font-size: 1.125rem;
}

.navbar .blog .content .col .menu-title a {
    transition: 0.25s;
}

.navbar .blog .content .col .menu-title a:hover {
    color: #d8f3dc;
}

.navbar .content .col {
    display: flex;
    flex-direction: column;
}

.navbar .content .col .img-wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: 20vw;
    overflow: hidden;
}

.navbar .content .col .img-wrapper:hover img {
    transform: scale(1.1);
}

.navbar .content .col .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.navbar .content .col img {
    width: 100%;
    max-width: 100%;
    transition: transform 0.3s ease-in-out;
}

.navbar .content .col .menu-title {
    color: #00f5d4;
    font-size: 1.25rem;
    line-height: 1.125rem;
    border-left: 2px solid #00f5d4;
    padding-left: 0.625rem;
}

.navbar .content .col .menu-title a {
    color: #00f5d4;
}

@media (max-width: 1023px) {
    .navbar .content .col .menu-title {
        font-size: 1.5rem;
        
    }
}

.navbar .content .col p {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
    font-size: 1rem;
    line-height: 1.6rem;
    color: #ffffff;
}

.navbar .content .col .mega-links {
    padding-left: 1rem;
    border-left: 1px solid #979797;
}

@media (max-width: 1023px) {
    .navbar .content .col .mega-links {
        border-left: 0;
        padding-left: 0;
    }

    .navbar .content .col .mega-links li {
        margin: 0;
    }

    .navbar .content .col .mega-links li a {
        padding: 0 0.5rem;
    }
}

.navbar .content .col .mega-links li {
    margin: 1rem 0;
}

.navbar .content .col .mega-links li a {
    padding: 0;
}

@media (max-width: 1023px) {
    .overflow {
        overflow: hidden;
    }
}

@media (max-width: 1023px) {
    .overlay {
        position: fixed;
        z-index: 500;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .overlay.overlay--active {
        opacity: 1;
        visibility: visible;
    }
}





.contact {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 0 8rem;
  margin-top: 10em;
}

.contact h1 {
  width: fit-content;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 10px;
}

.contact h1::after {
  content: "";
  width: 0;
  margin: auto;
  background-color: #111111;
  height: 3px;
  display: block;
  transition: 0.3s;
}

.contact h1:hover::after {
  width: 100%;
}

.contact h3 {
  font-size: 1.5rem;
  margin-bottom: 5vh;
}

.top-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5rem;
}

.top-container-left {
  width: 40%;
  height: 80vh;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.top-container-left .img {
  width: 100%;
  height: 100%;
  background-image: url(./../images/banners/Location1.jpg);
  background-size: cover;
  background-position: center;
}

.content-wrapper {
  width: 100%;
  position: absolute;
  color: #ffffff;
  top: 10%;
  left: 10%;
}

.content-wrapper span {
  width: 80%;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.content-wrapper span i {
  margin-right: 20px;
}

.social-wrapper {
  width: 100%;
  position: absolute;
  color: #ffffff;
  bottom: 10%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.social-wrapper a {
  color: #ffffff;
  font-size: 2rem;
  transition: all 0.3s ease-in-out;
}

.social-wrapper a:hover {
  transform: translateY(-10px);
}

@media only screen and (max-width: 768px) {
  .contact {
    padding: 0 1.5rem;
    margin-top: 8rem;
  }

  .contact h1 {
    font-size: 3rem;
  }

  .contact h3 {
    font-size: 1.2rem;
  }
  
  .top-container {
    flex-direction: column;
  }

  .top-container-left {
    width: 100%;
    height: 50vh;
    margin-bottom: 2rem;
  }

  .content-wrapper {
    padding: 2.5rem;
    top: 0;
    left: 0;
  }

  .content-wrapper span {
    width: 90%;
  }

}




input,
textarea,
button {
  font-size: 100%;
}

button,
label {
  cursor: pointer;
}

textarea {
  resize: none;
}

ul {
  list-style: none;
}

.top-container .container {
  width: 160%;
  height: 80vh;
  padding: 0 3.5rem;
}

@media only screen and (max-width: 768px) {
  .top-container .container {
    width: 100%;
    padding: 0;
  }
}

/* FORM ELEMENTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.my-form li,
.my-form .grid > *:not(:last-child) {
  margin-bottom: 1.5rem;
}

.my-form input,
.my-form textarea,
.my-form button {
  font-family: "Raleway", sans-serif;
  width: 100%;
  line-height: 1.5;
  padding: 15px 10px;
  color: #111111;
  border: 1px solid #111111;
  box-shadow: inset 0px 0px 5px #111111;
  border-radius: 5px;
  background-color: #d8f3dc;
}

.my-form textarea {
  height: 150px;
  resize: none;
}

.my-form ::placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-family: "Raleway", sans-serif;
}

.my-form input:focus,
.my-form textarea:focus,
.my-form button:enabled:hover,
.my-form button:focus,
.my-form input[type="checkbox"]:focus + label {
  background: transparent !important;
  outline: none;
  color: #000;
}

.my-form *:required {
  background-repeat: no-repeat;
  background-position: center right 12px;
  background-size: 15px 15px;
}

.my-form *:required {
  background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/asterisk.svg);
}

.my-form *:disabled {
  cursor: default;
  filter: blur(2px);
}

/* FORM BTNS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.my-form .required-msg {
  display: none;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/asterisk.svg)
    no-repeat center left / 15px 15px;
  padding-left: 20px;
}

.my-form .btn-grid {
  position: relative;
  overflow: hidden;
  transition: filter 0.2s;
}

.my-form button {
  font-weight: 500;
}

.my-form button > * {
  display: inline-block;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}

.my-form button .back {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-140%, -50%);
}

.my-form button .back img {
  width: 30px;
}

.my-form button:enabled:hover .back,
.my-form button:focus .back {
  transform: translate(-50%, -50%);
}

.my-form button:enabled:hover .front,
.my-form button:focus .front {
  transform: translateX(110%);
}

/* CUSTOM CHECKBOX
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.my-form input[type="checkbox"] {
  position: absolute;
  left: -99999px;
  background-color: #000;
}

.my-form input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  padding-left: 2rem;
  transition: background 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
}

.my-form input[type="checkbox"] + label::before,
.my-form input[type="checkbox"] + label::after {
  content: "";
  position: absolute;
}

.my-form input[type="checkbox"] + label::before {
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border: 1px solid #111;
}

.my-form input[type="checkbox"]:checked + label::before {
  background: #90e3ff;
}

.my-form input[type="checkbox"]:checked + label::after {
  left: 7px;
  top: 7px;
  width: 5px;
  height: 10px;
  margin-top: -2px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}

/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 768px) {
  .my-form .grid {
    display: grid;
    grid-gap: 1.5rem;
  }

  .my-form .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .my-form .grid-3 {
    grid-template-columns: auto auto auto;
    align-items: center;
  }

  .my-form .grid > *:not(:last-child) {
    margin-bottom: 0;
  }

  .my-form .required-msg {
    display: block;
  }
}

@media screen and (min-width: 541px) {
  .my-form input[type="checkbox"] + label::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .my-form input[type="checkbox"]:checked + label::after {
    top: 3px;
  }
}

.footer {
  position: relative;
  width: 100%;
  height: auto;
  background: #111111;
  margin-top: 2rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#footer-part {
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer-logo {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer-logo iframe {
  width: 15vw;
  height: 20vh;
  margin-bottom: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

#footer-logo iframe:hover {
  box-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
    0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
}

#footer-logo span {
  color: #d8f3dc;

}

.footer-certificates {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
}

.footer-certificates img {
  width: 100opx;
  height: 100px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.footer-certificates img:hover {
  box-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
    0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
}

#footer-part-options {

  top: -50%;
  right: 0;
}

.social-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}


.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #d8f3dc;
  text-decoration: none;
  font-size: 2rem;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #d8f3dc;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  font-weight: 300;
}

.menu__link:hover {
  text-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
    0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
}

.footer .bottom {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer .bottom p {
  color: #d8f3dc;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.footer .bottom p a {
  text-decoration: none;
  color: #d8f3dc;
  transition: 0.5s;
}

.footer .bottom p a:hover {
  text-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
    0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
}

@media only screen and (max-width: 768px) {
  .footer {
    margin-top: 3rem;
    padding: 1.5rem;
  }

  #footer-part {
    height: auto;
    flex-direction: column;
  }

  #footer-logo {
    margin: 1rem 0;
  }

  #footer-logo iframe {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
  }

  .footer-certificates {
    margin: 1.5rem;
  }

  .footer-certificates img {
    width: 50px;
    height: 50px;
  }

  .bottom {
    flex-direction: column-reverse;
  }
  .menu {
    flex-direction: column;
  }

  .menu__item {
    margin: 0.5rem 0;
  }
}
