/*
    Theme Name: Avertra Brand Hub Theme
    Author: Alixsander Haj Saw
    Author URI: https://alexinbloom.com/
    Description: IT Services and IT Consulting
    Tags: IT, Mendix, SAP
    Version: 2.9
    Text Domain: avertra
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap');

.emoji {
    font-family: "Noto Color Emoji", sans-serif;
    font-weight: 400;
    font-style: normal;
}


html, button {
    font-family: 'Poppins', sans-serif;
    color: white;
}

html, body {
    width: 100%;
    background-color: white;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


h1 {
    font-size: 3.5vw;
}

h2 {
    font-size: 2.5vw;
}

h3 {
    font-size: 1.5vw;
}

p, a, li {
    font-size: 1.39vw;
}

a.gradient-btn {
    font-size: 1.2vw;
}

.request-btn {
    background-color: white;
    color: #161e35;
    cursor: pointer;
}

#content-cnt h2 {
    font-size: 2.5vw;
    font-weight: 500;
}

#content-cnt h3 {
    font-size: 2vw;
}

#content-cnt li {
    color: black;
}

.bold {
    font-weight: bold !important;
}

.regular {
    font-weight: 400 !important;
}

.italic {
    font-style: italic;
}

.cyan {
    color: #2ac6d1 !important;
}

.pink {
    color: #c9239c !important;
}

.blue {
    color: #0844BC !important;
}

.purple {
    color: #5523b7 !important;
}

.dark-bg {
    background-color: #161E35;
}

.darkBlue {
    color: #161E35;
}

.white {
    color: white;
}

.blur-bg {
    background: #abb8c391;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gradient-txt {
    background: linear-gradient(90deg, #2AC6D1 0%, #0844BC 30%, #5523B7 70%, #C9239C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cyan-bg {
    background-color: #c3f8ff;
}

.pink-bg {
    background-color: #ffd9f5;
}

a {
    text-decoration: none;
    color: white;
}

.gradient-btn {
    background: linear-gradient(90deg, #2AC6D1 0%, #0844BC 30%, #5523B7 70%, #C9239C 100%);
    border-radius: 25px;
    padding: 0.3vw 1.5vw;
    width: fit-content;
    color: white !important;
}

.round-btn {
    padding: 1vw 2.5vw;
    border-radius: 25vw;
    font-size: 1.2vw;
    width: fit-content;
    height: fit-content;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

.round-btn img {
    width: 2vw;
    margin-right: 1vw;
}

.main-cnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.margin-cnt {
    width: 92.5%;
}

section {
    position: relative;
    width: 100%;
}

#banner-cnt section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#banner-txt-cnt {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 7.5%;
    padding-bottom: 6%;
    height: 25vw;
}

#banner-txt-cnt p {
    font-size: 1.25vw;
}

#banner-img-cnt {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    width: 45%;
    padding-bottom: 3%;
}

#banner-txt-cnt h1 {
    font-size: 2.5vw;
    font-weight: bold;
    margin: 0 0 0.5vw 0;
}

#main-content-cnt {
    padding-top: 6%;
}

#main-content-cnt .margin-cnt {
    display: flex;
    flex-direction: row;
}

#side-widget-cnt {
    width: 20%;
    z-index: 1;
}

#side-widget {
    position: -webkit-sticky;
    position: sticky;
    top: 12%;
    width: 100%;
    mix-blend-mode: multiply;
}

#content-cnt {
    width: 80%;
    padding-left: 5%;
}

#widget-title-cnt {
    padding: 7.5%;
    background-color: white;
}

#widget-title-cnt a {
    margin: 0;
}

#widget-links-cnt {
    background-color: #f4f3f3;
    padding: 7.5% 7.5% 0 7.5%;
    width: 85%;
    display: flex;
    flex-direction: column;
}

#widget-links-cnt a {
    text-decoration: none;
    margin-bottom: 7.5%;
    font-weight: 500;
}

#content-cnt > :first-child {
    margin-top: 0;
}

@media (max-width: 727px) {
    
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    p, a, li {
        font-size: 18px;
    }
    
    .round-btn {
        font-size: 16px;
    }

    .round-btn {
        border-radius: 25px;
        padding: 10px 20px;
    }

    .round-btn img {
        width: 16px;
        margin-right: 10px;
    }

    #banner-txt-cnt {
        height: auto;
        z-index: 1;
    }

    #banner-cnt section {
        flex-direction: column;
    }

    #banner-cnt section > div {
        width: 100% !important;
        height: auto;
        overflow: hidden;
    }

    #banner-img-cnt {
        display: none;
    }

    #content-cnt h2 {
        font-size: 28px;
        font-weight: 500;
    }

    #content-cnt h3 {
        font-size: 24px;
    }

    #banner-txt-cnt h1 {
        font-size: 28px;
        margin-top: 60px;
    }

    #banner-txt-cnt p {
        font-size: 18px;
    }

    #side-widget-cnt {
        display: none;
    }

    #content-cnt {
        width: 100%;
        padding-left: 0;
    }
}