﻿@font-face {
    font-family: OpenSans-Light;
    src: url("fonts/OpenSans-Light.ttf") format('truetype');
}

@font-face {
    font-family: OpenSans-Regular;
    src: url("fonts/OpenSans-Regular.ttf") format("truetype");
}

@font-face {
    font-family: OpenSans-Medium;
    src: url("fonts/OpenSans-Medium.ttf") format("truetype");
}

@font-face {
    font-family: OpenSans-SemiBold;
    src: url("fonts/OpenSans-SemiBold.ttf") format("truetype");
}



h1, h2, h3, h4, h5, span, a, i, p {
    margin-bottom: unset;
    margin-top: unset;
}

body {
    font-family: OpenSans-Regular;
    font-size: 16px;
}

h1 {
}

h2 {
}

h6 {
    font-size: 20px;
}

h1, h2 {
    font-family: OpenSans-SemiBold !important;
    line-height: 1.2;
    letter-spacing: 1px;
}

span, button, a {
    font-size: 18px !important;
}

a {
    font-family: OpenSans-SemiBold !important;
    text-decoration-thickness: 1px;
    color: #0a98ac
}

.textLight {
    font-family: OpenSans-Light !important;
    letter-spacing: 0px;
}

.whoWeAreBackground {
    position: relative;
    overflow: hidden;
}


/*  Button themes */
.btn-primary {
    border: #C6C6C6 !important;
    background: linear-gradient(90deg, rgba(10,152,172,1) 0%, rgba(44,180,199,1) 100%);
}

.btn-secondary {
    border: #C6C6C6 !important;
    background: linear-gradient(90deg, rgba(31,51,119,1) 0%, rgba(22,62,193,1) 100%);
}
.btn-primary::before {
    background: linear-gradient(90deg, rgba(44,180,199,1) 0%, rgba(10,152,172,1) 100%);
}
.btn-secondary::before {
    background: linear-gradient(90deg, rgba(22,62,193,1) 0%, rgba(52,94,235,1) 100%);
}

.btn-secondary,
.btn-primary 
{
    position: relative;
    z-index: 1;
}

.btn-secondary::before,
.btn-primary::before {
    border-radius: 5px;
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.5s linear;
    opacity: 0;
}

.btn-secondary:hover::before,
.btn-primary:hover::before {
    opacity: 1
}


.block-gradient {
    background: rgb(10,152,172);
    background: linear-gradient(90deg, rgba(10,152,172,1) 0%, rgba(44,180,199,1) 40%, rgba(44,180,199,1) 60%, rgba(10,152,172,1) 100%);
}

.responsive-image {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 6 / 4;
}

.whoWeAreBackgroundChild:before {
    background-image: url('../System/img/Logo_only_dark.png');
    background-size: 100%;
    background-position-x: 20vw;
    background-position-y: 0;
    background-repeat: repeat-y;
    opacity: 0.2;
    content: '';
    z-index: -1;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


@media(max-width: 700px) {
    .whoWeAreBackgroundChild:before {
        background-position-x: 10%;
        background-position-y: 15%;
    }
}

.contact-widget {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.contact-thumb {
    width: 30%;
}

.contact-widget img {
    border-radius: 50%;
    width: 100%;
    height: auto;
}

.contact-details {
    padding: 10px 5%;
}

.btn-pill {
    border-radius: 1000px !important;
    overflow: hidden;
    padding: 0.5rem 1rem !important;
}

@media (max-width: 1000px){
    .btn {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .contact-widget {
        flex-direction: column;
        text-align: center;
    }

    .contact-thumb {
        width: 25%;
    }

    .btn {
        font-size: 14px !important;
    }
}

@media (max-width: 595px) {
    .contact-thumb {
        width: 35%;
    }
}

@media (max-width: 420px) {
    .contact-thumb {
        width: 45%;
    }
}

@media (max-width: 300px) {
    .contact-thumb {
        width: 80%;
    }
}

.image-block {
    display: block;
}

.image-block img {
    width: 100%;
    height: auto;
}

.image-block div.image {
    width: 100%;
    margin: 0 0 calc(var(--bs-gutter-x) * .5) 0;
}

.image-block p {
    margin: 0 0 calc(var(--bs-gutter-x) * .5);
}

@media (min-width: 768px) {
    .image-block div.image
    {
        width: 50%;
        height: auto;
    }

    .image-block.float-right div.image
    {
        margin: 0 0 calc(var(--bs-gutter-x) * .5) calc(var(--bs-gutter-x) * .5);
        padding: 0 0 calc(var(--bs-gutter-x) * .5) calc(var(--bs-gutter-x) * .5);
        float: right;
    }

    .image-block.float-left div.image
    {
        margin: 0 calc(var(--bs-gutter-x) * .5) calc(var(--bs-gutter-x) * .5) 0;
        padding: 0 calc(var(--bs-gutter-x) * .5) calc(var(--bs-gutter-x) * .5) 0;
        float: left;
    }
}