@font-face {
    font-family: "Poppins Light";
    font-style: normal;
    font-weight: 300;
    src: url("/font/Poppins-Light.woff") format("woff");
}

@font-face {
    font-family: "Poppins Regular";
    font-style: normal;
    font-weight: 400;
    src: url("/font/Poppins-Regular.woff") format("woff");
}

@font-face {
    font-family: "Poppins SemiBold";
    font-style: normal;
    font-weight: 600;
    src: url("/font/Poppins-SemiBold.woff") format("woff");
}

@font-face {
    font-family: "Poppins Bold";
    font-style: normal;
    font-weight: 700;
    src: url("/font/Poppins-Bold.woff") format("woff");
}

@font-face {
    font-family: "Bloomsburg";
    font-style: normal;
    font-weight: 400;
    src: url("/font/Bloomsburg.woff") format("woff");
}

@font-face {
    font-family: "Charter";
    font-style: normal;
    font-weight: 400;
    src: url("/font/Charter.woff") format("woff");
}

.poppins-regular {
    font-family: "Poppins Regular";
}

.poppins-semibold {
    font-family: "Poppins SemiBold";
}

.poppins-bold {
    font-family: "Poppins Bold";
}

.charter {
    font-family: "Charter";
}

:root {
    --color-blue: #1d9ff0;
    --color-red: #A41C1F;
    --color-green: #B0AE30;
    --color-black: #000000;
    --color-white: #ffffff;
}

.cma-container-fluid {
    box-shadow: 0px 4px 13px 0px rgb(0 0 0 / 10%);
}

.cma-title-parent {
    height: 60px;
    position: relative;
    text-align: center;
}

.cma-title-children1 {
    font-size: 30px;
    font-weight: bold;
    color: var(--color-blue);
}

.cma-title-children2 {
    position: absolute;
    width: 45px;
    height: 4px;
    background-color: var(--color-blue);
    left: calc(50% - 22.5px);
}

.container-full-size {
    min-height: calc(100vh - 430px);
}

.padding-header {
    padding-top: 130px;
}

.dropbtn {
    white-space: nowrap;
    color: #313131;
    cursor: pointer;
}

.dropbtn:hover {
    color: #313131;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-blue);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    font-family: "Charter";
    left: -40px;
}

.dropdown-content a {
    color: #ffffff !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #128dda;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 1199px) {
    .dropdown-content {
        top: 0;
        left: 85px;
    }
}