﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --bgcolor: ghostwhite;
  --lgscreenwidth: 1200px;
  --TopHeaderHeight: 80px;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
}


.divWrapper {
  background-color: var(--bgcolor);
  display: flex;
  justify-content: center;
}

.divWrapper > div {
  width: var(--lgscreenwidth);
}

.TopHeader {
  background-color: black;
  position: fixed;
  top: 0;
  height: var(--TopHeaderHeight);
  width: 100%;
  z-index: 99;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}

.divTopMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.divTopLogo {
  height: 100%;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

  .divTopLogo img {
    height: 100%;
    padding: 10px 0px;
  }

.ulTopMenu, .SubMenu ul {
  display: flex;
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0px;
  justify-content: flex-end;
}

  .ulTopMenu a {
    font-size: 1rem;
    color: ghostwhite;
    letter-spacing: 0.05rem;
    padding: 10px 10px;
    text-decoration: none;
    text-align: center;
    display: block;
  }

    .ulTopMenu a:hover {
      color: white;
    }

.SubMenu {
  position: relative;
  z-index: 99;
}

  .SubMenu ul {
    background: #fff;
    padding: 0px;
    position: absolute;
    left: 0px;
    flex-direction: column;
    display: none;
    transition: 0.5s;
    width: 200px;
  }

    .SubMenu ul li {
      width: auto;
    }

    .SubMenu ul a {
      padding: 10px 20px;
    }

  .SubMenu:hover ul {
    display: block;
  }

.divMenuBars {
  padding: 5px 20px;
  display: none;
  cursor: pointer;
}

.divBanner {
  margin-top: var(--TopHeaderHeight);
}

#divTopBanner {
  position: relative;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

  #divTopBanner div[data-type='slide'] {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    opacity: 0;
    cursor: pointer;
  }

  #divTopBanner div[data-type='bullet'] {
    position: absolute;
    bottom: 10px;
    font-size: 2rem;
    color: white;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

    #divTopBanner div[data-type='bullet'] div {
      width: 15px;
      height: 15px;
      border-radius: 10px;
      margin: 0px 10px;
      background-color: black;
      border: 1px solid white;
      transition: all linear 1s;
    }

      #divTopBanner div[data-type='bullet'] div.active {
        background-color: white;
        border: 1px solid black;
      }

  #divTopBanner div.fade {
    opacity: 0;
    transition: opacity 2s;
  }

  #divTopBanner div.show {
    opacity: 1;
    transition: opacity 2s;
  }

  #divTopBanner div img, #divTopBanner div video {
    width: 100%;
    height: auto;
  }


.divWhatsApp {
  z-index: 10;
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 50px;
}

.divWhatsApp img {
  width: 100%;
  height: auto;
}

.divFooter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px 50px;
  align-items: start;
  justify-content: start;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}

.footer-title {
  color: #09ffff;
  font-size: 1.5rem;
  margin-bottom: 10px;
  letter-spacing: 0.2rem;
}


.social_icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

  .social_icon a, .social_icon a:active, .social_icon a:visited, .social_icon a:hover {
    color: white;
    text-decoration: none;
  }

.social_icon i {
  margin: 5px 20px 5px 0px;
}

@media (max-width: 800px) {
  .ulTopMenu {
    display: none;
    position: absolute;
    background: white;
    padding: 0px;
    text-align: left;
    top: 80px;
    right: -120vw;
    z-index: 99;
    flex-direction: column;
    transition: display linear 0.5s;
  }

    .ulTopMenu.active {
      display: block;
      right: 0px;
    }

  .SubMenu ul {
    background-color: beige;
    position: absolute;
    top: 0%;
    left: -120%;
    z-index: 10;
  }

  .divMenuBars {
    display: flex;
    align-items: center;
  }
}
