@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');


:root{
    --color-blue: #ECF3FF;
    --color-corp: #0099FF;
    --color-light-blue: #00A8FF;
}
.bg-blue{
    background: var(--color-blue);
}
body{
    font-family: 'Golos Text';
}
a {
    color: inherit;
    text-decoration: none;
}
.logo{  
    top: 0;
}
.h-200{
    height: 200px;
}
.box-shadow {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 24px;
}
.logo-box {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    z-index: 3;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    outline: 3px solid #00A8FF;
}
.pt-custom{
    padding-top: 100px;
}
.btn {
    width: fit-content;
    background: #00A8FF;
    color: white;
    font-weight: bold;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 18px;
    box-shadow: 5px 5px 4px 0 rgba(0, 0, 0, 0.25);
}
.hover-box{
    box-shadow: 5px 5px 4px 0 rgba(0, 0, 0, 0.25);
    transition: all .3s ease;
}
.hover-box:hover {
    box-shadow: rgb(215, 215, 215) 0px 0px 4px 0px;
}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}
.fs-span {
    font-size: 14px;
}
.card-social {
    height: 90px;
    width: 90px;
    border-radius: 18px;
}
.bg-corp {
    background: var(--color-corp);
}
.text-blue{
    color: var(--color-light-blue);
}
@media(min-width: 1400px)
{
    .container{
        max-width: 600px;
    }
}