@font-face {
    font-family: 'GeneralSans-Semibold';
    src: url('./fonts/GeneralSans-Semibold.woff2') format('woff2'),
        url('./fonts/GeneralSans-Semibold.woff') format('woff'),
        url('./fonts/GeneralSans-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('./fonts/GeneralSans-Medium.woff2') format('woff2'),
        url('./fonts/GeneralSans-Medium.woff') format('woff'),
        url('./fonts/GeneralSans-Medium.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans-Light';
    src: url('./fonts/GeneralSans-Light.woff2') format('woff2'),
        url('./fonts/GeneralSans-Light.woff') format('woff'),
        url('./fonts/GeneralSans-Light.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.loader-background{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
}

.loader-11 {
    width: 84px; 
    height: 84px; 
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #333 #333 transparent transparent; 
    animation: rotation 1.25s linear infinite;
    position: absolute;
    top: calc(50% - 84px);
    left: calc(50% - 84px);
}

.loader-11:after, .loader-11:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #03143b #03143b; 
    width: 68px; 
    height: 68px; 
    border-radius: 50%;
    animation: rotationBack 0.75s linear infinite;
    transform-origin: center center;
}

.loader-11:before {
    width: 48px; 
    height: 48px;
    border-color: #7aabc7 #7aabc7 transparent transparent;
    animation: rotation 1.75s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

  

h1 {
    font-family: 'GeneralSans-Semibold', sans-serif;
    color: #03143b;
}

.unselectable {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

body {
    margin: 0;
    offset: scroll;
    font-family: 'GeneralSans', sans-serif;
    animation: fade-in 0.3s;
    overflow-x: hidden;
}

.header {
    height: 88px;
    width: 100%;
    background-color: #ffffff98;
    position: fixed;
    padding: 0 80px 0 80px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    z-index: 9998;
}

#header.show, #content.show {
    animation: fade-in 0.3s ease-in;
}

.links {
    display: flex;
    width: 360px;
    height: 50px;
}



.link {
    width: 120px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.link:hover {
    background-color: #cce4f443;
}

.logo {
    height: 50px;
    width: 150px;
    background: url('./img/BK+\ logo.png') no-repeat;
    background-size: contain;
    background-position-x: center;
}

.logo a {
    width: 100%;
    height: 100%;
    display: block;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 90%;
    height: 600px;
    background-color: #fff;
    border-radius: 100px 0 0 0;
    margin-top: 88px;
    background: url('./img/healthcare-excellence.jpg');
    background-size: cover;
    transition: border-radius 0.3s;
}

.text-container {
    width: 70%;
    background-color: #ffff;
    border-radius: 80px 0 0 0;
    margin-top: -150px;
    padding: 50px 80px 50px 80px;
    box-sizing: border-box;
}

.text-container-about {
    width: 70%;
    background-color: #ffff;
    border-radius: 80px 0 0 0;
    margin-top: -150px;
    padding: 50px 80px 50px 80px;
    box-sizing: border-box;
}

.text-container-about h1 {
    font-size: 55px;
    color: #03143b;
    font-family: 'GeneralSans-Semibold', sans-serif;
}

.text-container-about p {
    font-size: 35px;
    font-weight: 700;
    font-family: 'GeneralSans-Light', sans-serif;
    color: #333;
}

.text-container h1 {
    font-size: 55px;
    color: #03143b;
    font-family: 'GeneralSans-Semibold', sans-serif;
}

.text-container p {
    font-size: 35px;
    font-weight: 700;
    font-family: 'GeneralSans-Light', sans-serif;
    color: #333;
}

.categories p {
    font-size: 25px;
}

.categories li {
    font-size: 23px;
    color: #333;
    font-weight: 700;
    font-family: 'GeneralSans-Light', sans-serif;
    margin: 10px 0 10px 0;
    transition: color 0.3s, transform 0.3s;
    cursor: pointer;
}

.categories li a {
    text-decoration: none;
    color: #333
}

.categories li:hover {
    color: #517487;
    transform: translateX(10px);
}

.categories li a:hover {
    color: #517487;
}



.our-products-tab {
    width: 70%;
    background-color: #fff;
    padding: 50px 150px 0 150px;
    box-sizing: border-box;
}

.our-products-tab h1 {
    color: #03143b;
    font-size: 35px;
}

.our-products-tab p {
    font-size: 20px;
    color: #517487;
}

.on-rescale {
    display: none;
    background: url(./img/a-wide-choice.jpg) no-repeat;
    background-size: cover;
}

.learn-more-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    width: 200px;
    height: 60px;
    line-height: 60px;
    border-radius: 0;
    background-color: transparent;
    border: 2px solid #517487;
    color: #7aabc7;
    font-family: 'GeneralSans', sans-serif;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.learn-more-button:hover {
    background-color: #cce4f443;
    color: #517487;
}

.media-container {
    margin-top: 100px;
    width: 90%;
    background-color: #cce4f431;
    padding: 80px 50px 80px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.media-card {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.media-text-container {
    width: 500px;
}

.media-text-container:nth-child(2) {
    margin-top: 50px;
}

.media-text-container h1 {
    color: #03143b;
    font-size: 35px;
}

.media-text-container p {
    font-size: 20px;
    font-weight: lighter;
    color: #517487;
}

.image {
    height: 700px;
    width: 600px;
    background-color: #fff;
}

#guarantee-of-quality {
    background: url(./img/gurantee-of-quality.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 0 100px;


}

#a-wide-choice {
    background: url(./img/a-wide-choice.jpg) no-repeat;
    background-size: cover;
    border-radius: 0 100px 0 0;
}

#our-goods {
    background: url(./img/our-goods.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

#contact-us {
    background: url(./img/contact-us.jpg) no-repeat;
    background-size: cover;
}

#about-us {
    background: url(./img/about-us.jpg) no-repeat;
    background-size: cover;
}

.footer-container {
    width: 90%;
    height: 400px;
    background-color: #f6f6f6;
    margin: 100px auto 0 auto;
    padding: 80px 50px 80px 50px;
    border-radius: 80px 0 0 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-evenly;
}

.who-we-are p {
    font-size: 22px;
    font-weight: 700;
    font-family: 'GeneralSans-Light', sans-serif;
    color: #333;
    margin: 0;
}

#our-products .who-we-are p{
    text-align: justify;
}

.quote-container {
    display: flex;
    width: 100%;
    margin: 50px 0;
    justify-content: space-between;
}

.quote-image {
    background-color: #7aabc7;
    width: 400px;
    opacity: 0.2;
    height: 500px;
}

.quote {
    width: 400px;
    display: flex;
    flex-direction: column;
}

.quote-text {
    padding: 100px 0 50px 0;
    position: relative;
    font-size: 25px;
    font-weight: 700;
    font-family: 'GeneralSans', sans-serif;
    color: #333;
}

.quote-text:before {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    color: #0066f5;
    content: "\201C";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 5rem;
    height: 3.6rem;
    justify-content: center;
    top: 40px;
    position: absolute;
}

.author-name {
    font-weight: 700;
    color: #03143b;
}

.author-title {
    font-family: 'GeneralSans-Light', sans-serif;
}

.our-business-values {
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
    background-color: #cce4f431;
    padding-bottom: 50px;
}

.our-business-values a{
    text-decoration: none;
    color: #333;
}

.our-business-values p{
    width: 100%;
    text-align: center;
    font-size: 40px;
    color: #03143b;
    font-family: 'GeneralSans-Light', sans-serif;
}

.our-business-values h1 {
    width: 100%;
    text-align: center;
    font-size: 55px;
    color: #03143b;
}

.our-business-values.wider{
    justify-content: center;
}

.business-value.wider{
    cursor: pointer;
    transition: background-color 0.3s;
}

.business-value.wider:hover{
    background-color: #cce4f429;
}

.business-value {
    height: 400px;
    width: 20%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
}

.business-value.wider{
    width: 30%;
    height: 260px;
}

.value-icon {
    height: 150px;
    width: 150px;
}

#high-quality {
    background: url(./img/high-quality.png) no-repeat;
    background-size: contain;
    background-position: center;
}

#a-fair-price {
    background: url(./img/a-fair-price.png) no-repeat;
    background-size: contain;
}

#science-and-innovation {
    background: url(./img/science-and-innovation.png) no-repeat;
    background-size: contain;
}

#trustworthy {
    background: url(./img/trustworthy.png) no-repeat;
    background-size: contain;
}

#semyn, #dermoacm, #dermoxen, #hemopran, #lecoxen {
    width: 215px;
    height: 80px;
}

#semyn {
    background: url(./img/semyn.png) no-repeat;
    background-size: contain;
}

#dermoacm{
    background: url(./img/dermoACM.png) no-repeat;
    background-size: contain;
}

#dermoxen{
    background: url(./img/dermoxen.png) no-repeat;
    background-size: contain;
}

#hemopran{
    background: url(./img/hemopran.png) no-repeat;
    background-size: contain;
}

#lecoxen{
    background: url(./img/lecoxen.png) no-repeat;
    background-size: contain;
}

.value-header {
    margin: 10px 0;
    color: #333;
    font-family: 'GeneralSans-SemiBold', sans-serif;
    font-size: 20px;
    font-weight: 700px;
}

.value-text {
    font-family: 'GeneralSans-Light', sans-serif;
    font-size: 15px;
    font-weight: 300px;
}

.mail,
.phone,
.bank {
    padding-left: 40px;
    margin: 20px 0;
    font-size: 18px;
    font-family: 'GeneralSans-Light', sans-serif;
    display: flex;
}

.icon {
    width: 30px;
    height: 30px;
    display: block;
    margin-right: 20px;
}

.mail .icon {
    background: url(./img/mail.png) no-repeat;
    background-size: contain;
}

.phone .icon {
    background: url(./img/telephone.png) no-repeat;
    background-size: contain;
}

.bank .icon {
    background: url(./img/bank.png) no-repeat;
    background-size: contain;
}


@media only screen and (max-width: 1535px) {
    .text-container h1 {
        font-size: 50px;
    }


}

@media only screen and (max-width: 1437px) {
    .text-container h1 {
        font-size: 40px;
    }

    .text-container p {
        font-size: 25px;
    }

    .image {
        height: 600px;
        width: 550px;
    }

    .media-container {
        height: 1350px;
    }

    .business-value {
        width: 50%;
    }

    .business-value.wider{
        width: 50%;
        height: 260px;
    }

    .our-business-values p{
        font-size: 25px;
        text-align: center;
    }

    .line-break {
        display: none;
    }

    .quote {
        width: 300px;
    }

    .quote-text {
        font-size: 20px;
    }

}

@media only screen and (max-width: 1360px) {
    .media-container {
        height: 1150px;
    }

    .image {
        height: 500px;
        width: 450px;
    }

    .media-text-container {
        width: 400px;
    }

    .quote-image {
        width: 300px;
        height: 400px;
    }


    .quote-container {
        align-items: center;
    }
}

@media only screen and (max-width: 1185px) {

    .media-text-container h1 {
        font-size: 27px;
    }

    .media-text-container p {
        font-size: 15px;
    }

    .image {
        height: 500px;
        width: 400px;
    }

    .media-text-container {
        width: 350px;
    }


    .text-container h1 {
        font-size: 35px;
    }

    .text-container p {
        font-size: 23px;
    }

}

@media only screen and (max-width: 1065px) {
    .image-container {
        height: 400px;
    }

    .text-container h1 {
        font-size: 25px;
    }

    .text-container-about h1{
        font-size: 30px;
    }

    .text-container-about h2{
        font-size: 20px;
    }

    .text-container p, .text-container-about p {
        font-size: 15px;
        text-align: justify;
    }

    .section {
        font-size: 15px;
    }

    .our-products-tab {
        padding: 25px 80px 25px 80px;
    }

    .our-products-tab h1 {
        font-size: 27px;
    }

    .our-products-tab p {
        font-size: 15px;
    }

    .learn-more-button {
        width: 120px;
        height: 40px;
        line-height: 40px;
    }

    .footer-container {
        box-sizing: inherit;
        border-radius: 0;
        padding: 30px 0 30px 0;
        width: 100%;
        height: 300px;
    }

    .quote-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .quote {
        width: 500px;
        text-align: justify;
    }
}

@media only screen and (max-width: 980px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }


    .bank-details h1 {
        font-size: 27px;
    }

    .bank-details p {
        font-size: 15px;
    }

    .contact h1 {
        font-size: 27px;
    }

    .contact p {
        font-size: 15px;
    }

    .media-card {
        flex-direction: column;
        align-items: center;
    }

    #guarantee-of-quality {
        border-radius: 0 100px 0 100px;
    }

    #a-wide-choice {
        display: none;
    }

    .media-container {
        height: fit-content;
    }

    .on-rescale {
        display: block;
        border-radius: 100px 0 100px 0;
    }

    .media-text-container:nth-child(2) {
        text-align: right;
    }

    .image-container {
        border-radius: 100px 100px 0 0;
    }
}

@media only screen and (max-width: 725px) {
    .image-container {
        height: 250px;
    }

    .text-container {
        margin-top: -50px;
        padding: 50px 30px 0px 30px;
        width: 80%;
        border-radius: 45px 0 0 0;
    }

    #our-products{
        margin-bottom: 50px;
    }

    .text-container-about {
        padding: 50px 30px;
        width: 85%;
    }

    .our-products-tab {
        padding: 25px 0 25px 0;
    }

    .media-container {
        margin-top: 60px;
    }

    .our-products-tab p {
        text-align: justify;
        text-justify: distribute;
    }

    .header {
        padding: 0;
        justify-content: space-between;
    }

    .links {
        width: 280px;
    }

    .logo {
        margin: 0 auto;
    }

    .business-value {
        width: 100%;
    }

    .business-value.wider {
        width: 100%;
    }

    .link {
        width: 90px;
        font-size: 14px;
    }

    .quote {
        padding: 0 100px;
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 480px) {
    .loader-11{
        top: calc(40%);
        left: calc(38%);
    }

    .image {
        width: 300px;
        height: 350px;
    }

    .media-text-container {
        width: 300px;
    }

    .logo{
        width: 130px;
        height: 35px;
    }

    .link{
        font-size: 10px;    
        width: 70px;
    }

    .links{
        width: 210px;
    }

    body{
        overflow-x: none;
    }
}
