@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Playfair+Display:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}
*,
a,
body,
html,
p,
span {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
    color: #000000;
}
.playfair {
    font-family: 'Playfair Display', serif;
}
.font-light {
    font-weight: 300 !important;
}
.font-regular {
    font-weight: 400 !important;
}
.font-bold, b {
    font-weight: 700 !important;
}
.title{
    font-size: 77px;
    line-height: 55px;
}
.text{
    font-size: 14px;
    line-height: 23px;
}
.pointer {
    cursor: pointer;
}
.btn.focus, .btn:focus, :focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0) !important;
}
body {
    overflow-x: hidden !important;
}
.overflow{
    overflow: hidden !important;
}
a, a:hover {
    text-decoration: none;
}
.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
section.container-fluid {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
.padding {
    padding-top: 100px;
    padding-bottom: 100px;
}
.relative {
    position: relative !important;
}
.transition {
    transition: all 0.4s;
}
.max-content {
    width: -moz-max-content;
    width: -webkit-max-content;
    width: -o-max-content;
    width: -ms-max-content;
    width: max-content;
}
main{
    padding-top: 150px;
    min-height: 100vh;
    overflow: hidden !important;
}
.line:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000000;
    top: 50%;
    left: 0;
    transform: translateY(50%);
}
img.logo {
    position: relative;
    display: block;
    max-width: 100%;
    object-fit: contain;
}
.social {
    margin-top: 28px;
}
.banner{
    width: 100%;
    min-height: 250px;
    object-fit: cover;
    object-position: center;
    position: relative;
    margin-top: -110px;
    z-index: 0;
}
.middle-section {
    padding: 50px 0 50px 50px;
    z-index: 1;
}
.middle-section:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #172F45;
    height: 100%;
    width: 50vw;
}
.under:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 1px;
    background: #0180FC;
}
.social b:hover {
    opacity: 0.5;
}
.social b {
    transition: all 0.2s;
    opacity: 1;
}

/* RESPONSIVE */
@media (min-width: 1200px){
    .container {
        max-width: 1500px;
    }
}
@media (max-width: 991.98px) {
    main {
        padding-top: 100px;
    }
    .middle-section:before{
        width: calc(100vw - 15px);
        left: 15px;
    }
    .container-fluid{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}
@media (max-width: 524.98px){
    main {
        padding-top: 80px;
    }
    .w-75{
        width: 100% !important;
    }
}