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

:root {
    --primary-color: #D4D700;
    --secondary-color: #0c4da2;
    --third-color: #ed1c24;
}

* {
    font-family: "Kanit", sans-serif;
    color: var(--secondary-color);
}

.section {
    padding: 5rem 0;
}

.bg-main {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.bg-sub {
    background-color: var(--secondary-color);
    color: white;
}

.bg-sub-2 {
    background-color: var(--third-color);
    color: white;
}

.text-main {
    color: var(--primary-color);
}

.text-sub {
    color: var(--secondary-color);
}

.text-sub-2 {
    color: var(--third-color);
}

.btn-danger {
    background-color: var(--third-color);
    color: white;
}

.btn-main {
    background-color: #005221;
    color: white;
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.button-polygon {
    background-color: #e52e2e;
    color: white;
    padding: 12px 28px;
    display: inline-block;
    border: none;
    border-radius: 15px;
    transform: skewX(-15deg);
    transition: background-color 0.3s ease;
}

.button-polygon:hover {
    background-color: #c41a1a;
}

.arrow-up-right {
    transform: rotate(45deg);
}

.prospan-striped {
    height: 2px;
    background-color: var(--secondary-color);
    width: 80px;
}

body {
    background-image: linear-gradient(to bottom, var(--primary-color) 0%, white 40%);
    background-repeat: no-repeat;
    background-size: 100% 100vh;
}

header .mini-menu {
    display: flex;
    gap: 25px;
}

header .mini-menu li a {
    color: gray;
}

.header-menu .header-logo {
    height: 50px;
}

footer .footer-logo {
    height: 40px;
}

.bg-cta {
    background-image: url('../../media/vector.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.section-logo {
    height: 40px;
}

.list-prospan {
    list-style: none;
    padding-left: 0;
}

.list-prospan li {
    padding-left: 25px;
    background-image: url('../../media/prospan-arrow.png');
    background-repeat: no-repeat;
    background-position: left center;
}

.list-prospan-2 {
    list-style: none;
    padding-left: 0;
}

.list-prospan-2 li {
    padding-left: 25px;
    background-image: url('../../media/prospan-arrow.png');
    background-repeat: no-repeat;
    background-position: left 3px;
}

.list-min-height .list-prospan-2 li {
    min-height: 100px;
}

.video-header {
    position: relative;
}

.video-header video {
    border-radius: 2rem;
    filter: brightness(0.5);
}

.video-header .row {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}

.video-header .row h1 {
    color: white;
    font-size: 6rem;
}

.video-header .row h2 {
    color: white;
    font-size: 3rem;
    line-height: 5rem;
}

.home-prospan {
    background-image: url('../../media/prospan-image-1.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
}

.home-ea575 {
    background-image: url('../../media/prospan-image-2.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

.home-highlight {
    background-image: url('../../media/prospan-image-3.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
}

.products-header>.container,
.products-header-1>.container,
.symptoms-header>.container {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 2rem;
}

.symptoms-header>.container {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../media/symptoms-header.jpg');
}

.products-header>.container {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../media/products-header.jpg');
}

.products-header-1>.container {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../media/product-1-header.jpg');
}

.bg-highlight-product-1 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../media/product-1-highlight.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
}

.symptoms-middle-bg {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 30%, rgba(212, 215, 0, 1) 30%);
}