*,
*::before,
*::after {
    box-sizing: border-box;
    border-style: none;
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

:root {
    --theme-color-black: #333333;
    --theme-color-brown: #423A3A;
    --theme-color-red: #f7aa47;
    --theme-color-white: #FEFFFF;
}

/* ---------- MAIN BODY DECLERATIONS ---------- */

html,
body {
    background-color: var(--theme-color-white);
    font-size: 18px;
    height: 100%;
    width: 100%;
    font-family: 'FreightDispProMedium';
}

.mobile-container {
    margin: 0 auto;
    max-width: 500px;
    min-width: 300px;
}

.hero-image-desktop {
    display: none;
}

/* ---------- HERO BANNER DECLERATIONS ---------- */
.hero-banner {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.hero-banner .logo-wrapper {
    height: auto;
    margin: 0 auto;
    width: auto;
}

.logo-wrapper img {
    display: block;
    height: 60px;
    margin: 0 auto;
    width: auto;
    filter: grayscale(0) invert(1);
}

.hero-banner .hero-image {
    background-image: url('../img/1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 376px;
    width: 100%;
}

/* ---------- TEXT INFO DECLERATIONS ---------- */
.text-info {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

/* intended for the first h2 within .text-info */
.text-info h2:nth-child(1) {
    color: #000;
    font-weight: normal;
}

.text-info h2 {
    font-size: 2.5rem;
    color: #888887;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: 'FreightDispProSemibold';
}

.text-info p {
    color: var(--theme-color-black);
    line-height: 24px;
}

.text-info .email-signup {
    margin: 1rem 0 6rem;
    position: relative;
    width: 100%;
}

.email-signup .email-input {
    border: 1px solid rgba(51, 51, 51, .7);
    border-radius: 3px;
    padding: 1rem 1.5rem;
    opacity: .5;
    width: 100%;
}

.email-signup .email-input:focus {
    background-color: var(--theme-color-white);
    outline: 2px solid var(--theme-color-black);
    opacity: 1;
}

.email-signup .email-submit {
    background-color: var(--theme-color-black);
    border-bottom: 1px solid var(--theme-color-black);
    border-radius: 2px;
    color: var(--theme-color-white);
    cursor: pointer;
    font-weight: bold;
    opacity: 1;
    padding: 1rem 1.5rem;
    position: absolute;
    right: 0;
    margin-right: 2.5rem;
    z-index: 10;
}

.contact-data ul li{
    display: flex;
    margin: 0 0 15px;
}
.contact-data ul li i{
    font-size: 25px;
    width: 40px;
    min-width: 40px;
    position: relative;
    top: 3px;
}
.contact-data ul li:last-child{
    margin: 0;
}
.contact-data ul li,
.contact-data ul li a{
    font-size: 18px;
    line-height: 28px;
    color: #000;
    font-weight: 600;
    font-family: 'FreightDispProLight';
    letter-spacing: 1px;
}
.contact-data ul li a:hover{
    color: #f7aa47;
}
@media only screen and (min-width: 992px) {
    body {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: row;
        height: 100%;
        overflow: hidden;
    }

    main {
        display: flex;
        flex-direction: column;
        height: inherit;
        max-width: 100%;
    }

    .mobile-container {
        width: 45vw;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .hero-banner .logo-wrapper {
        width: 100%;
        display: flex;
        align-items: start;
        flex-direction: column;
    }

    .logo-wrapper img {
        margin: 0 0 0;
    }

    .hero-image {
        display: none;
    }

    .text-info {
        text-align: left;
        align-items: start;
    }

    .text-info h2 {
        font-size: 2.5rem;
        line-height: 1;
    }

    .text-info p {
        font-size: 16px;
    }

    .text-info input {
        font-size: 16px;
    }

    .text-info .email-signup {
        margin: 1rem 0 7rem;
    }

    .hero-image-desktop {
        display: block;
        height: 100%;
        width: 55vw;
    }

    .hero-image-desktop img {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

    .email-signup .email-submit {
        border-bottom: 2px solid var(--theme-color-black);
    }
}

@media (max-width:1280px){
    .logo-wrapper img{
        height: 60px;
        margin: 0 auto 20px;
    }
    .mobile-container{
        padding: 0 15px;
    }
}
@media (max-width:991px){
    .mobile-container{
        padding: 30px 15px 80px;
    }
}
@media (max-width:767px){
    .text-info{
        margin: 20px 0;
    }
    .mobile-container{
        padding: 30px 15px 80px;
    }
    .logo-wrapper img{
        height: 40px;
    }
}

#notification {
  position: fixed;
  bottom: 81px;
  left: 15px;
  z-index: 1000;
  border-color: #0062cc;
  background-color: #fff;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5);
  border-radius: 5px;
  width: 300px;
  height: auto;
  padding: 20px;
}

#notification p {
  text-align: justify;
  color: #000
}

#notification a {
  color: #000 !important;
  font-weight: 600;
}

.whatsappicon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9;
}

.whatsappicon img {
  width: 55px;
}

@media (max-width:575px) {
  .whatsappicon img {
    width: 45px;
  }
}

.tableimg {
  width: 50px;
}
