@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.ttf');
}

/* 6px/16px = 37.5% */
@media (min-width: 992px) {
    html {
        font-size: 37.5%;
    }
}

/* 8px/16px = 50% */
@media (min-width: 1200px) {
    html {
        font-size: 50%;
    }
}

/* 10px/16px = 62.5% */
@media (min-width: 1400px) {
    html {
        font-size: 62.5%;
    }
}

/* 12px/16px = 75% */
/* @media (min-width: 1560px) {
    html {
        font-size: 62.5%;
    }
} */

body {
    font-family: 'Poppins', 'Courier New', Courier, monospace;
}

a {
    text-decoration: none;
}

.w-full {
    width: 100% !important;
}

.h-full {
    width: 100% !important;
}

.bg-gray {
    background-color: #f5f5f5;
}

.btn-more {
    display: flex;
    justify-content: center;
    padding: 5rem 0;
}

.btn-more a {
    display: block;
    width: 26rem;
    font-size: 1.5rem;
    padding: 1.2rem 0;
    text-align: center;
    color: #fff;
    border-radius: .5rem;
    transition: all .3s ease 0s;
}

.btn-more a:hover {
    opacity: .9;
    transition: all .3s ease 0s;
}

.main-bg-color {
    background-color: #0043a3;
    color: #fff;
}

.main-color {
    color: #0043a3 !important; 
}

.sub-bg-color {
    background-color: #dd6b20;
    color: #fff;
}

.sub-color {
    color: #dd6b20 !important;
}

.page-banner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-banner::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #05233a;
    opacity: .8;
}

.page-banner h2 {
    font-size: 4.2rem;
    line-height: 1;
    color: #efefef;
    margin-bottom: 3rem;
}

.page-banner p, 
.page-banner a {
    font-size: 1.2rem;
    color: #fff;
    font-weight: lighter;
}

.page-banner svg {
    width: 1.2rem;
    height: 1.2rem;
}

.side {
    width: 30rem;
}

.side_nav h2 {
    font-size: 2.4rem;
    color: #363636;
    line-height: 1;
    font-weight: 500;
}

.side_nav h2::after {
    content: "";
    display: block;
    height: 2px;
    background-color: #cecece;
    border-left: 10rem solid #3c3c3c;
    margin: 2rem 0;
}

.side_nav_item::after {
    content: "";
    display: block;
    height: 1px;
    background-color: #ccc;
    margin: 1.5rem 0;
}

.side_nav_item a {
    font-size: 1.5rem;
    color: #3c3c3c;
    line-height: 1;
}

.side_nav_item a:hover {
    color: #0043a3;
    font-weight: bold;
    transition: all .3s ease 0s;
}

.side_nav_item--list {
    margin: 1rem 0;
}

.side_nav_item--item a {
    font-weight: lighter;
    color: #6c6c6c;
    line-height: 2;
}

.side_contact {
    padding: 5rem 2rem;
    font-size: 1.5rem;
    color: #fff;
    border-radius: .5rem;
}

.side_contact h2 {
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 500;
}

.side_contact h2::after {
    content: "";
    display: block;
    height: 2px;
    background-color: #fff;
    margin: 2rem 0;
}

.side_contact p {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 31rem;
    align-items: center;
}

.side_contact span {
    display: block;
    width: 23rem;
}

.side_contact svg {
    width: 1.6rem;
    height: 1.6rem;
}

.page_menu_item {
    padding: 0 3.6rem;
}

.page_menu_item a {
    font-size: 1.3rem;
    color: #3c3c3c;
    line-height: 3.6;
}

.page_menu .active a {
    color: #fff;
}

.page_product_list {
    width: 100rem;
}

.page_product_thumb {
    width: 30rem;
    height: 26rem;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background-color: #f9f9f9;
    overflow: hidden;
    transition: all .5s ease 0s;
}

.page_product_item:hover .page_product_thumb {
    background-color: #ccc;
    transition: all .5s ease 0s;
}

.page_product_thumb img {
    max-width: 90%;
    max-height: 90%;
    transition: all .5s ease 0s;
}

.page_product_item:hover img {
    transform: scale(1.2);
    transition: all .5s ease 0s;
}

.page_product_video {
    width: 42rem;
    height: 50rem;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background-color: #f9f9f9;
    overflow: hidden;
    transition: all .5s ease 0s;
}

.page_product_item:hover .page_product_video {
    background-color: #ccc;
    transition: all .5s ease 0s;
}


.page_product_video video {
    max-width: 90%;
    max-height: 90%;
    transition: all .5s ease 0s;
}

.page_product_title {
    text-align: center;
}

.page_product_title::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background-color: #6c6c6c;
    transition: all .5s ease 0s;
}

.page_product_item:hover .page_product_title::after {
    width: 100%;
    transition: all .5s ease 0s;
}

.page_product_title a {
    font-size: 1.3rem;
    color: #3c3c3c;
    display: inline-block;
    padding: 1rem 0;
}

#pages {
    margin: 5rem 0;
    text-align: center;
}

#pages a {
    display: inline-block;
    background: #393D49;
    color: #fff;
    line-height: 3;
    text-align: center;
    padding: 0 1.2rem;
}

#pages span {
    display: inline-block;
    border: 1px solid #393D49;
    color: #393D49;
    line-height: 2.8;
    text-align: center;
    padding: 0 1.2rem;
}

.page_title {
    font-size: 3rem;
    line-height: 1;
    color: #3c3c3c;
    text-align: center;
    font-weight: bold;
    padding-top: 2rem;
}

.page_title::after {
    content: "";
    display: block;
    width: 8rem;
    height: 2px;
    background-color: #3c3c3c;
    margin: 3.2rem auto;
}

.page_subtitle {
    font-size: 1.5rem;
    font-weight: lighter;
    color: #9c9c9c;
    text-align: center;
    margin-bottom: 5rem;
}

.page_inner {
    font-size: 1.5rem;
    color: #3c3c3c;
    text-align: justify;
    line-height: 2;
}

.page_inner img {
    max-width: 100% !important;
    display: block;
    margin: 1rem auto;
}

.page_contact_title {
    font-size: 1.5rem;
    font-weight: lighter;
    line-height: 3;
}

.page_contact {
    display: flex;
    flex-wrap: wrap;  
}

.page_contact_item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    width: 50rem;
}

.page_contact_item h3,
.page_contact_item p {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 300;
    margin: 0;
    color: #3c3c3c;
}

.page_contact_icon {
    width: 6rem;
}

.page_contact_icon svg {
    width: 4rem;
    height: 4rem;
}

.page_map {
    width: 100%;
    height: 36rem;
    margin: 5rem 0;
}

.page_news_item {
    padding: 2rem;
}

.page_news_thumb {
    height: 24rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.page_news_thumb img {
    width: 100%;
    vertical-align: middle;
}

.page_news_title {
    margin-top: 2rem;
}

.page_news_title a {
    font-size: 1.8rem;
    color: #2c2c2c;
    line-height: 1;
}

.page_news_date {
    font-size: 1.5rem;
    color: #6c6c6c;
    font-weight: lighter;
    line-height: 1;
    margin-top: 1.5rem;
}

.page_news_date svg {
    width: 1.8rem;
    height: 1.8rem;
    margin-right: .5rem;
}

.page_news_description {
    font-size: 1.5rem;
    font-weight: lighter;
    margin-top: 1rem;
}

.page_msg_content {
    width: 100rem;
    margin: 0 auto;
}

.page_msg_form {
    width: 100%;
}

.page_msg_item {
    margin: 1rem auto;
}

.page_msg_item input,
.page_msg_item textarea {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 2px;
    font-size: 1.3rem;
    line-height: 1.5;
    height: 5rem;
    padding: 2rem;
    background: none;
}

.page_msg_item textarea {
    padding: 2rem;
    height: 15rem; 
}

.page_msg_item ::placeholder {
    color: #acacac;
}

.page_msg_form button {
    width: 100%;
    padding: 1.5rem 0;
    font-size: 1.6rem;
    line-height: 1;
    border: 0;
    border-radius: 4px;
    margin: 1rem 0;
}

.page_product_show {
    width: 100rem;
}

.page_product_show_title {
    width: 100%;
    background-color: #f9f9f9;
}

.page_product_show_title h1 {
    display: inline-block;
    width: auto;
    color: #fff;
    padding: 2rem 5rem 2rem 2rem;
    border-radius: 5px;
    font-size: 2rem;
    margin: 0;
}

.page_product_show_title svg {
    width: 3rem;
    height: 3rem;
}

.page_product_show_photos {
    padding: 2rem;
    background-color: #f9f9f9;
    text-align: center;
    margin: 2rem 0;
    border-radius: 5px;
}

#swiper-product .swiper-slide {
    height: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#swiper-product .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}






