@font-face {
    font-family: 'roboto';
    src: url('../fonts/Roboto-Regular.ttf');
}

:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --main-heading: 40px;
    --fs-xsmall: 12px;
    --fs-small: 14px;
    --fs-normal: 16px;
    --fs-medium: 18px;
    --fw-medium: 500;
    --fw-bold: 600;
    --fw-bolder: 700;
    --font-roboto: 'roboto';
}
h5 {
    color: #fff;
    font-size: 24px;
    font-weight: var(--fw-bolder);
}
.fs-18 {
    font-size: var(--fs-medium);
}

.fs-20 {
    font-size: 20px;
}

.fs-14 {
    font-size: 14px;
}

.fw-500 {
    font-weight: var(--fw-medium);
}

.text-blue {
    color: #00007a;
}

.mt-30 {
    margin-top: 30px;
}

body {
    color: var(--color-black);
    font-family: var(--font-roboto);
}

.section {
    background-image: url('../images/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0px;
}
.right-content{
    background: #fff;
    border-radius: 10px;
    padding: 20px 0px;
    text-align: center;
    position: relative;
}
.top-logo{
    position: absolute;
    right: 15px;
    top: 0px;
    width: 100px;
}
.top-content{
    background-image: url('../images/light-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -55px;
    padding-top: 55px;
    height: 68%;
}
.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.top-content h2{
    color: #ff0000;
    font-size: 62px;
    font-weight: var(--fw-bolder);
}
.top-content h4.text-big{
    text-transform: uppercase;
    letter-spacing: 10px;
    font-size: 40px;
    font-weight: 400;
    padding-top: 40px;
    padding-bottom: 20px;
}
.top-content h4.text-big span{ 
    font-size: 80px;
    font-weight: 400;
}
.equal-height-container {
    display: flex;
    flex-wrap: wrap;
}
.equal-height-container > .left-col,
.equal-height-container > .right-col {
    display: flex;
    flex-direction: column;
}
.equal-height-container > .left-col .form-section,
.equal-height-container > .right-col .right-content {
    flex-grow: 1;
}
.bottom-content{
    position: absolute;
    bottom: 30px;
}
@media (max-width: 992px) {
    .top-content{
        height: unset;
    }
    .bottom-content{
        position: unset;
    }
    .top-content h4.text-big{
        font-size: 30px;
    }
    .top-content h4.text-big span{
        font-size: 40px;
    }
}
@media (max-width: 576px) {
    .top-content h4.text-big{
        font-size: 26px;
    }
    .top-content h4.text-big span{
        font-size: 30px;
    }
    .top-content h2{
        font-size: 40px;
    }
}
@media (max-width: 450px) {
    .right-content {
        text-align: unset;
    }
    .right-content .logo{
        height: 80px;
    }
    .top-logo{
        width: 80px;
    }
}
@media (min-width: 1400px) {
    .top-content{
        height: 65%;
    }
    .top-content h4.text-big{
        padding-top: 20px;
        padding-bottom: 10px;
    }

}