@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.prompt-medium {
    font-family: "Prompt", sans-serif;
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root {
    --white-color: #ffffff;
}


body {
    color: var(--white-color);
    background-color: #211c1c;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
    line-height: 1.2;
}

p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--white-color);
}

p:last-child {
    margin-bottom: 0;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
}
#banner{
    background-image: url(../images/BG.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#banner .banner-box {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    padding: 50px 0 20px;
    max-width: 80%;
    margin: 0 auto;
}
.banner-box .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.content-box {
    width: 40%;
    padding: 0 15px;
}
#banner  .logo-box img {
    max-width: 250px;
    width: 100%;
}
.img-box {
    width: 60%;
    padding: 0 15px;
}
.img-box img{
    width: 100%;
}
.content-box .logo-box a{
    line-height: 0;
}
.logo-box {
    margin-bottom: 50px;
}
.title-box img {
    display: block;
    max-width: 500px;
    width: 100%;
    margin-bottom: 30px;
}
.text-box h3{
    font-family: "Prompt", sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 75px;
}
.button-box img {
    max-width: 290px;
}
.button-box {
    margin-top: 40px;
}
.mobile-show{
    display: none;
}