@font-face {
    font-family: Jost;
    src: url(assets/Fonts/static/Jost-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: myFirstFont;
    src: url(assets/Fonts/static/Jost-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: Jost;
    src: url(assets/Fonts/static/Jost-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: myFirstFont;
    src: url(assets/Fonts/static/Jost-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: myFirstFont;
    src: url(assets/Fonts/static/Jost-ExtraBold.ttf);
    font-weight: 800;
}

body {
    font-family: Jost;
    font-weight: 400;
}

.herosection {
    background-image: url(assets/digital-risk_homepage.webp);
    background-size: cover;
    color: white;
}

.herosection .container-fluid {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 100vh;
    height: 700px;
    background-image: linear-gradient(-90deg, #29d8dbec 0%, #01578cef 50%);
    opacity: 0.9;
    padding-right: 60px;
    padding-left: 60px;
}

.left-home-section {
    padding-right: 50px;
}

.left-home-section .logo {
    width: 300px;
    margin-bottom: 30px;
}

.left-home-section h4 {
    font-weight: bold;
    font-size: 26px;
    line-height: 40px;
}

.left-home-section .break-line {
    width: 100px;
    height: 1px;
    margin: 30px 0;
    display: block;
    background-color: #7a7a7a;
}

.left-home-section p {
    font-size: 21px;
    font-weight: semibold;
    line-height: 34px;
}

.right-section {
    padding: 20px;
    background-color: white;
    color: black;
    border-radius: 20px;

}

.right-section h3 {
    text-align: center;
    font-weight: bold;
    text-transform: capitalize;
}

.right-section .divider {
    width: 20%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    display: block;
    height: 1px;
    background-color: #7a7a7a;
}

#solutions {
    padding: 60px 0;
}

#solutions h3 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.our-solutions {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: #f6f9f9;
    margin-top: 30px;
    min-height: 300px;
}

.our-solutions img {
    width: 100px;
}

.our-solutions h4 {
    margin-bottom: 0;
    font-weight: bold;
}

.our-solutions p {
    font-size: 18px;
    font-weight: 500;
}


@media screen and (max-width: 768px) {

    .herosection .container-fluid{
        height: auto;
    }

    .left-home-section{
        text-align: center;
    }

    .left-home-section .logo{
        margin: auto;
        margin-bottom: 30px;
    }
    .left-home-section .break-line{
        margin: 30px auto;
    }

    .right-section {
        margin-top: 30px;
    }
}