* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /* font-family: 'Roboto'; */
}

/* common css */

:root {
    --white-color: white;
    --black-color: black;
    --heading-font-size: 40px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
    line-height: 1.2;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: green;
}

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;
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: green;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    color: green;
}

.section-heading p {
    font-size: 20px;
    color: green;
    margin-bottom: 0;
}

.btn.btn-red {
    font-size: 32px;
    padding: 15px 30px;
    color: white;
    background: linear-gradient(180deg, rgba(3, 155, 230, 1) 40%, rgba(16, 64, 255, 1) 100%);
    border-radius: 10px;
    text-transform: uppercase;
    font-family: 'Barlow Semi Condensed', sans-serif;
    display: inline-flex;
    align-items: center;
    border: 1px solid #30D4FF;
}

section {
    padding: 60px 0;
}

/* common css */


/* banner css start */

#banner {
    background-image: url("../images/banner.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 100% 100%;
    min-height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

#banner .box .content-box .logo-box img {
    max-width: 280px;
    margin-bottom: 20px;
}

#banner .box .content-box .text-box h1 span span {
    font-size: 75px;
}

.contact-form h3 {
    font-size: 56px;
    color: #fff;
    font-family: barlow condensed, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

#banner .box .content-box .text-box h1 {
    color: #fff;
    font-size: 70px;
    text-transform: uppercase;
    line-height: 90px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
}

#banner .box .content-box .text-box p {
    font-size: 32px;
    color: white;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
}

#banner .box .content-box .button-box a img {
    max-width: 40px;
    margin-right: 15px;
}

#banner .box .content-box .button-box {
    margin-top: 40px;
}

#banner .box.right-box {
    display: none;
}

#banner .box .content-box .text-box h1 span {
    display: block;
}

/* banner css end */