@charset "UTF-8";

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 300;
	src: url(../fonts/Montserrat/Montserrat-Light.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	font-style: italic;
	font-weight: 300;
	src: url(../fonts/Montserrat/Montserrat-LightItalic.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/Montserrat/Montserrat-Regular.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/Montserrat/Montserrat-Medium.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	font-style: italic;
	font-weight: 500;
	src: url(../fonts/Montserrat/Montserrat-MediumItalic.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 600;
	src: url(../fonts/Montserrat/Montserrat-SemiBold.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	font-style: italic;
	font-weight: 600;
	src: url(../fonts/Montserrat/Montserrat-SemiBoldItalic.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/Montserrat/Montserrat-Bold.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	font-style: italic;
	font-weight: 700;
	src: url(../fonts/Montserrat/Montserrat-BoldItalic.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 800;
	src: url(../fonts/Montserrat/Montserrat-ExtraBold.ttf) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	font-style: italic;
	font-weight: 800;
	src: url(../fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf) format("truetype");
	font-display: swap;
}

:root{
    --primary-font: Montserrat,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
    --text-color: #101828;
    --primary-color: #376DB5;
    --gradient1: linear-gradient(277deg, #377DF4 0%, #2162BB 65.87%, #376DB5 100%);
    --gradient2: linear-gradient(263deg, #07B2DA 0%, #178AE3 67.31%, #2567EB 100%);
    --gradient3: linear-gradient(97deg, #377DF4 0%, #2162BB 65.87%, #376DB5 100%);
    --gradient4: linear-gradient(83deg, #07B2DA 0.01%, #178AE3 67.31%, #2567EB 100%);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    color: var(--text-color);
    background-color: #ffffff;
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    height: 100vh;
    overflow: hidden;
}
/* Animations */

@keyframes Start {
    from {
        visibility: hidden
    }

    to {
        visibility: visible
    }
}

/* General */

.container{
    max-width: 1184px;
    margin: 0 auto;
    padding: 0;
}

.img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ep-prevent-scroll{
    padding: 0 !important;
}

.easy-popup-master{
    --ep-radius: 16px;
    --ep-padding: 30px;
}

.ep-close-button svg{
    width: 32px;
    height: 32px;
}

/* Header */

.bic-header {
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
}

.bic-header {
    animation-name: Start;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.bic-logo {
    width: 90px;
    height: 80px;
    left: 30px;
    position: absolute;
    top: 30px;
    display: block;
    z-index: 200;
}

.bic-logo a{
    display: flex;
}

.bic-right-header {
    width: auto;
    right: 30px;
    top: 30px;
    position: absolute;
    height: auto;
    z-index: 120;
}

.bic-right-header-inner{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.bic-right-header__item{
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    background: var(--gradient1);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bic-right-header__item:hover{
    transform: scale(1.025);
}

.bic-right-header__item.zalo{
    width: 76px;
}

.bic-right-header__item.hotline{
    width: auto;
    padding: 0 16px;
}

.bic-right-header__item-icon{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
}

.bic-right-header__item-text{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

/* Main */

.bic-main {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding-bottom: 70px;
}

.bic-main-inner{
    position: relative;
    width: 100%;
}

.bic-shape{
    position: absolute;
    top: 0;
    pointer-events: none;
}

.bic-shape.shape-1{
    left: 0;
    width: 433.525px;
    height: 433.525px;
    background: url(../img/bg_shape1.png) no-repeat center center;
    background-size: cover;
}

.bic-shape.shape-2{
    top: unset;
    right: 0;
    bottom: 50px;
    width: 900px;
    height: 600px;
    opacity: 0.4;
    background: url(../img/bg_shape2.png) no-repeat center center;
    background-size: cover;
}

.bic-shape.shape-3{
    top: unset;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140px;
    background: url(../img/bg_shape3.png) no-repeat center center;
    background-size: cover;
}

.bic-main-h{
    position: relative;
    margin: 0 0 90px;
}

.bic-main-title{
    color: var(--primary-color);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.bic-main-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -16px;
    margin-right: -16px;
    row-gap: 32px;
}

.bic-card-item {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 16px;
    padding-right: 16px;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bic-card-item:hover{
    transform: scale(1.025);
}

.bic-card-item-inner{
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 10px;
    background: var(--gradient1);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 24px;
}

.bic-card-item:nth-child(2) .bic-card-item-inner{
    background: var(--gradient4);
}

.bic-card-item:nth-child(3) .bic-card-item-inner{
    background: var(--gradient2);
}

.bic-card-item:nth-child(4) .bic-card-item-inner{
    background: var(--gradient3);
}

.bic-card-item__icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 88px;
    font-weight: 700;
    font-style: normal;
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
}

.bic-card-item__info{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bic-card-item__info-title{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 10px;
}

.bic-card-item__info-text{
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* News item */

.bic-card-item.news-item .bic-card-item-inner{
    padding: 0;
    gap: 0;
    align-items: flex-start;
}

.bic-card-item.news-item .bic-card-item__image {
    display: flex;
    flex: 0 0 192px;
    height: 178px;
}

.bic-card-item.news-item .bic-card-item__info{
    padding: 24px;
    height: -webkit-fill-available;
    justify-content: space-between;
}

.bic-card-item.news-item .bic-card-item__info-btn{
    flex: 0 0 auto;
    width: 142px;
    padding: 8px 16px;
    border-radius: 8px;
    background: #FF6900;
    text-align: center;
    font-size: 18px;
    line-height: 1;
}

/* Navigation */

.bic-navigation{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 30px 0 0;
}

.bic-navigation__item{
    position: relative;
    width: 105px;
    height: 40px;
    padding: 13px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #377DF4;
    background: var(--gradient1);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.bic-navigation__current{
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: var(--primary-color)
}

/* Single */

.bic-single {
    position: relative;
    padding: 32px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background: #FFF;
    box-shadow: 0 20px 22px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(6px);
    height: 720px;
    overflow-y: scroll;
}

.bic-single .bic-main-h{
    margin: 0 0 32px;
}

.bic-single .bic-main-title{
    color: #1447E6;
    font-size: 36px;
    text-transform: none;
    font-weight: 400;
}

.bic-single-content{
    font-size: 18px;
}

.ContentBody p:not(:last-child){
    margin: 0 0 32px;
}

.ContentBody h1, .ContentBody .h1, .ContentBody h2, .ContentBody .h2, .ContentBody h3, .ContentBody .h3, .ContentBody h4, .ContentBody .h4, .ContentBody h5, .ContentBody .h5, .ContentBody h6, .ContentBody .h6{
    font-weight: 600;
}

.ContentBody ol li,.ContentBody ul li {
    padding: 0 0 12px 6px
}

.ContentBody ol,.ContentBody ul {
    margin: 0 0 12px 16px;
    padding-left: 10px
}

.ContentBody ul {
    list-style: disc
}

.ContentBody ol {
    list-style-type: decimal
}

.ContentBody ol ol {
    list-style: upper-alpha
}

.ContentBody ol ol ol {
    list-style: lower-roman
}

.ContentBody ol ol ol ol {
    list-style: lower-alpha
}

.ContentBody ol ol,.ContentBody ol ul,.ContentBody ul ol,.ContentBody ul ul {
    margin-bottom: 0
}

.ContentBody strong, .ContentBody b {
    font-weight: 600
}

.ContentBody cite,.ContentBody em {
    font-style: italic
}

.ContentBody cite {
    border: none
}

.ContentBody big {
    font-size: 1.25rem
}

.ContentBody blockquote{
    font-size: 1.25rem;
    border-left: 5px solid var(--primary-color);    
}

.ContentBody blockquote cite {
    font-size: 12px;
    text-transform: uppercase;
    color: #555
}

.ContentBody pre {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding: 12px 20px;
    background: #f4f4f4
}

.ContentBody figure {
    margin: 0 auto 1rem;
    text-align: center
}

.ContentBody figure figcaption {
    font-size: .875rem;
    padding: 4px
}

.ContentBody code,.ContentBody kbd,.ContentBody samp,.ContentBody var {
    font-size: 1rem
}

.ContentBody abbr,.ContentBody acronym,.ContentBody dfn {
    cursor: help;
    border-bottom: 1px dotted #ddd
}

.ContentBody address {
    display: block;
    margin: 0 0 1.25rem
}

.ContentBody del,.ContentBody ins {
    color: #555
}

.ContentBody ins {
    text-decoration: none;
    border: none
}

.ContentBody sub,.ContentBody sup {
    font-size: .625rem;
    line-height: 1;
    position: relative;
    vertical-align: baseline
}

.ContentBody sup {
    bottom: .75rem
}

.ContentBody sub {
    top: .375rem
}

.ContentBody table {
    width: 100%;
    margin-bottom: 1.25rem;
    border-collapse: collapse;
    text-align: left
}

.ContentBody tr td,.ContentBody tr th {
    padding: 10px;
    vertical-align: top;
    border: 1px solid #ddd;
}

.ContentBody img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.ContentBody img.aligncenter {
    margin: 0 auto 6px;
    display: block
}

.ContentBody br {
    float: none;
    clear: both
}

.ContentBody hr {
    height: 0;
    margin-bottom: 1.25rem;
    border-bottom: 1px dashed #ddd;
    background: 0 0
}

.ContentBody h1 {
    font-size: 2rem;
    line-height: 1.2;
}

.ContentBody h2 {
    font-size: 1.75rem;
    line-height: 1.16;
}

.ContentBody h3 {
    font-size: 1.5rem;
    line-height: 1.35;
}

.ContentBody h4 {
    font-size: 1.25rem;
}

.ContentBody h5,.ContentBody h6 {
    font-size: 1.125rem
}

.ContentBody h6 {
    line-height: 1.3;
}

.ContentBody ul:not(:last-child) {
    margin-bottom: 1.25rem
}

.ContentBody ul>li {
    padding: 0;
    position: relative
}

.ContentBody ol>li {
    padding: 0
}

.ContentBody ol>li:not(:last-child),.ContentBody ul>li:not(:last-child) {
    margin-bottom: 1rem
}

.ContentBody tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd
}

.ContentBody tr:first-child {
    border-top: none
}

.ContentBody tr:last-child {
    border-bottom: none
}

.ContentBody tr:nth-child(2n) {
    background: #F9F9F9;
}

.alignnone {
    max-width: 100%;
}

.alignleft {
    float: none;
    margin-right: 0;
}

.alignleft:first-child+* {
    margin-top: 0;
}

@media (min-width: 576px) {
    .alignleft {
        float: left;
        margin-right: 1rem;
    }
}

.alignright {
    float: none;
    margin-left: 0;
}

.alignright:first-child+* {
    margin-top: 0;
}

@media (min-width: 576px) {
    .alignright {
        float: right;
        margin-left: 1rem;
    }
}

.aligncenter {
    display: block;
    clear: both;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

img.alignleft,
img.alignright {
    margin-bottom: 1rem;
}