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

@font-face {
    font-family: "HelveticaNeue";
    font-weight: 700;
    src: url(./font/HelveticaNeueBold.woff);
  }

  img {
    max-width: 100%;
    display: block;
  }

body {
    font-family: "Roboto", serif;
    color: #fff;
}


.custom-banner {
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.custom-container {
    max-width: 1400px;
    margin-inline: auto;
    height: inherit;
}
.custom-banner .custom-banner-content {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-banner .custom-banner-content > div {
    max-width: 370px;
    text-align: center;
}


.custom-banner .custom-banner-content  h1 {
    font-family: "HelveticaNeue";
    font-size: 58px;
    line-height: 1;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 30px;
}
.custom-banner .custom-banner-content  h3 {
    font-size: 25px;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 30px;
}

.custom-banner .btn-contact {
    background-color: #000000;
    font-weight:400;
    color: #E4E4E4;
    border-style: solid;
    border-color: #6C6C6C;
    border-radius: 4px;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 15px 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.custom-banner .btn-contact svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.contact-info-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.contact-info-wrapper .qr-wrapper {
    flex-shrink: 0;
}
.contact-info-wrapper .contact-qr-img {
    max-width: 70px;
}
.custom-banner .social-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.custom-banner .social-list a,
.custom-banner .social-list li
 {
    display: flex;
}
.custom-banner .social-list svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}
.custom-banner .social-list .mail-icon svg {
    width: 32px;
    height: 32px;
}
.custom-banner .custom-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}
.custom-banner .custom-banner-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 24%;
}



@media screen and (max-width:767px) {
    .custom-banner .custom-banner-content {
        align-items: flex-start;
        padding-top: 70px;
    }
    .custom-banner .custom-banner-bg img {
        object-position: initial;
    }
    
    .custom-banner .custom-banner-content  h1 {
        font-size: 45px;
    }

    .custom-banner .btn-contact {
        font-size: 15px;
        line-height: 1.2em;
        letter-spacing: 2px;
        border-width: 1px;
        padding: 14px 22px;
        width: 100%;
        max-width: 230px;
    }
    .custom-banner .social-list .mail-icon svg {
        width: 24px;
        height: 24px;
    }
    .custom-banner .social-list svg  {
        width: 22px;
        height: 22px;
    }

    .custom-banner.custom-banner-new .custom-banner-content {
        align-items: flex-end;
        padding-block:0 30px;
    }
    .custom-banner.custom-banner-new .btn-contact {
        border-color: #fff;
        color: #fff;
        font-weight: 500;
        background: transparent;
    }
   
    .custom-banner.custom-banner-new  h1,
    .custom-banner.custom-banner-new  h3
     {
        filter: drop-shadow(0px 3px 3.5px rgba(0,0,0,0.35));
    }
    .custom-banner {
        height: 100svh;
    }
    .contact-info-wrapper .contact-qr-img {
    max-width: 60px;
}
    
}

