:root {
    --color-red: #ec2d3f;
    --color-medium-red: rgb(204, 44, 50);
    --color-dark-red: #c31829;
    --color-green: #28a745;
    --color-dark-green: #207d36;
    --color-black: #353434;
    --color-gray: #6c757d;
    --background-static: #3fa07e;
    --background-hover: #eceb1b;
    --color-static: #000;
    --color-hover: #ec2d3f;
    --color-main: #FFD04D;
    --color-submain: #171F2C;
}

.bg-green {background-color: #a4c969;}              /* Background Color Green */
.bg-blue {background-color: #48b7b0;}               /* Background Color Blue */
.bg-dark-blue {background-color: #2d5e7e;}          /* Background Color Dark Blue */
.bg-yellow {background-color: #f1bc48;}             /* Background Color Yellow */
.bg-orange {background-color: #e97c67;}             /* Background Color Orange */
.bg-dark-pink {background-color: #ad4673;}          /* Background Color Dark Pink */
.bg-grey {background-color: #f8f8f8;}               /* Background Color Grey */
.bg-dark-grey {background-color: #707070;}          /* Background Color Dark Grey */
.bg-black {background-color: #3b3b3b;}              /* Background Color Black */
.bg-adv { background: #006977;}
.txt-main {color: #FFD04D;}                          /* Text Color Main */
.text-adv { color: #006977;}

.border-adv { border-color: #006977 !important; }

.text-lg {
    font-size: 1.5rem;
}

html, body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

body {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-submain);
    background-color: #fff;
    max-width: 1366px;
    margin: 0px auto;
    padding: 0px !important;
    top: 0px !important;
}
/* Ẩn giao diện Google mặc định */
#google_translate_element {
    display: none;
}

/* Ẩn giao diện Google popup */
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
    display: none !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #313131;
    font-size: 15px;
}

input::-moz-placeholder,
textarea::-moz-placeholder{
    color: #313131;
    font-size: 15px;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #313131;
    font-size: 15px;
}

a,
input,
textarea {
    outline: none;
    padding: 0px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a {
    transition: all .2s ease-in-out;
    color: #333;
}
a:hover{
    color: var(--color-main);
}
a, a:hover {
    text-decoration: none;
}
.content-text {
    word-wrap: break-word;
}

.content-text a {
    color: #0E6EFD;
}
.content-text a:hover{
    color: #0a58ca;
}

.z-10 {
    z-index: 10;
}

blockquote {
    padding: 1rem 0;
    border-style: solid;
    border-color: var(--color-main);
    border-width: 0;
    padding-left: 20px;
    padding-right: 8px;
    border-left-width: 3px;
    margin: 2rem 0px;
}
blockquote h1,
blockquote h2,
blockquote h3,
blockquote h4,
blockquote h4,
blockquote h6{
    text-transform: uppercase;
    font-size: 26px;
    font-family: "UTM Bebas", sans-serif;

}
blockquote p{
    margin-bottom: 0;
}

.text-right {
    text-align: right !important;
}

.rounded-5 {
    border-radius: .5rem;
}

@keyframes slideDown {
from {
    max-height: 0;
    opacity: 0;
}
to {
    max-height: 500px; /* Điều chỉnh theo chiều cao mong muốn */
    opacity: 1;
}
}

@keyframes slideUp {
from {
    max-height: 500px;
    opacity: 1;
}
to {
    max-height: 0;
    opacity: 0;
}
}

/* .accordion-collapse {
overflow: hidden;
}

.accordion-collapse.collapsing {
animation: slideUp 1s ease-in-out;
}

.accordion-collapse.show {
animation: slideDown 1s ease-in-out;
} */
  

/* Định nghĩa style cho con trỏ tùy chỉnh */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-main);
    border-radius: 10px;
    pointer-events: none; /* Cho phép nhấp chuột qua con trỏ */
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.15s ease-out, background-color 0.15s ease-out;
    z-index: 9999;
}
.custom-cursor::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 10px;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: var(--color-main);
    -webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
    -o-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
    transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}

/* Hiệu ứng khi hover qua các phần tử tương tác */
.custom-cursor.hover {
    border: 0px;
}
.custom-cursor.hover::before{
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%) rotate(180deg) scale(2);
    background-color: rgba(255, 208, 77, 0.3);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

/* Lazyload */
img.lazy {
    opacity: 0;
}

img:not(.initial) {
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

img.initial,
img.loaded,
img.error {
    opacity: 1;
}

img:not([src]) {
    visibility: hidden;
}

.btn-main {
    color: #333;
    background-color: var(--color-main);
}

.mt-10 {
    margin-top: 5rem;
}

.fw-600 {
    font-weight: 600;
}
.font-UTMBebas {
    font-family: "UTM Bebas", sans-serif;
}

.border-dotted {
    border-style: dotted !important;
}

.text-italic {
    font-style: italic;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
}

#loader-wrapper #wrap {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

#loader-wrapper.show1 #wrap {
    background: transparent
}

#loader-wrapper:after {
    -webkit-mask: url(../images/mask-01.png);
    mask: url(../images/mask-01.png);
    -webkit-mask-size: 2300% 100%;
    mask-size: 2300% 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 1);
    z-index: 99999;
}

#loader-wrapper.show1::after {
-webkit-animation: MaskPlay 1s steps(22) forwards;
animation: MaskPlay 1s steps(22) forwards;  
}

#loader-wrapper.show1 #wrap {
opacity: 0;
}
.loading-text ul {
margin-top: 1.875rem
}

.loading-text ul li {
-webkit-animation: anime 1.5s infinite linear;
animation: anime 1.5s infinite linear;
display: inline-block;
font-family: var(--bs-font-monospace);
font-size: 1.875rem;
letter-spacing: 1px
}

.loading-text ul li:nth-child(1) {
-webkit-animation-delay: 0s;
animation-delay: 0s
}

.loading-text ul li:nth-child(2) {
-webkit-animation-delay: .1s;
animation-delay: .1s
}

.loading-text ul li:nth-child(3) {
-webkit-animation-delay: .2s;
animation-delay: .2s
}

.loading-text ul li:nth-child(4) {
-webkit-animation-delay: .3s;
animation-delay: .3s
}

.loading-text ul li:nth-child(5) {
-webkit-animation-delay: .4s;
animation-delay: .4s
}

.loading-text ul li:nth-child(6) {
-webkit-animation-delay: .5s;
animation-delay: .5s
}

.loading-text ul li:nth-child(7) {
-webkit-animation-delay: .6s;
animation-delay: .6s
}
.loader {
align-items: center;
display: flex;
flex-direction: column;
height: 100%;
justify-content: center;
left: 0;
padding-bottom: 3.125rem;
position: fixed;
top: 0;
width: 100%;
z-index: 100001
}

.popup-custom .modal-content {
border-radius: 0px;
border: 0px;
}

.popup-custom .modal-content .modal-body {
padding: 10px;
}

.popup-custom .close {
position: absolute;
top: 10px;
right: 10px;
width: 40px;
height: 40px;
z-index: 2;
color: #888888;
cursor: pointer;
border: 1px solid #eeeeee;
background-color: #ffffff;
opacity: 1 !important;
}

#popup-quickview .modal-dialog {
max-width: 1140px;
}

.control-owl {
position: absolute;
width: 100%;
z-index: 2;
left: 0px;
top: calc(50% - 45px / 2);
}

.control-owl button {
opacity: 0.5;
top: 0px;
position: absolute;
outline: none;
border: 0px;
padding: 0px;
margin: 0px;
display: block;
cursor: pointer;
color: #ffffff;
width: 45px;
height: 45px;
text-align: center;
font-size: 25px;
margin: 0px;
background-color: #000000;
border-radius: 3px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}

.control-owl button:hover {
opacity: 1;
}

.control-owl button.owl-prev {
left: 20px;
}

.control-owl button.owl-next {
right: 20px;
}

/* General */
.title-main {
    position: relative;
    margin-bottom: .5rem;
}

.title-main h2, .title-main h3, .title-main h4 {
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    color: var(--color-submain);
    font-family: "UTM Bebas", sans-serif;
}
.title-main h2 {
    font-size: 45px;
}
.title-main h3 {
font-size: 30px;
}
.title-main h4 {
font-size: 20px;
}

.title-main.has-line::after {
    content: '';
    display: inline-block;
    position: relative;
    width: 60px;
    height: 4px;
    background-color: var(--color-main);
}
.title-main.has-logo::before{
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0%;
    width: 90px;
    height: 80px;
    margin-left: -45px;
    margin-top: -40px;
    background: url(../images/logo_vector.png) no-repeat center center;
}
.title-main.text-white h2{
    color: #fff;
}
.title-main.text-white::after{
    background-color: #fff;
}

.title-main h2 span,
.title-main h3 span,
.title-main h4 span{
    font-size: 60px;
    color: var(--color-main);
}

.title-submain {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 1rem;
}

.title-desc {
    margin-bottom: 30px;
}

.title-main-detail {
    margin-top: .5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
}
.title-main-detail h2 {
    font-size: 35px;
}

.time-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
    color: #999999;
    font-size: 14px;
    line-height: 1;
}


/* Footer */
.footer {
}
.footer a{
}
.footer a:hover{
    color: red;
}

.footer-article{
}

.footer-title {
    font-family: "UTM Bebas", sans-serif;
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-title::after{
    content: '';
    display: none;
    width: 43px;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 30px;
    background-color: #fff;
}
.footer-title span{
    color: var(--color-main);
}
.footer-ul {
    list-style: inside;
    padding: 0px;
    margin: 0px;
}

.footer-ul li {
    margin-bottom: 10px;
}

.footer-ul li:last-child {
    margin-bottom: 0px;
}

.footer-ul li a {
    color: #333;
}

.footer-ul li a:hover {
    text-decoration: none;
    color: red;
}

.footer-info {
    position: relative;
    padding-bottom: 2rem;
}
.footer-info .p{
    margin-bottom: 0px;
}

.footer-tags {
    background: #eee;
}

.footer-tags .container {
    padding: 30px 15px;
}

.footer-tags-lists {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-tags-lists li {
    float: left;
}

.footer-tags-lists li a {
    padding-bottom: 0.375rem;
}

.footer-powered {
    text-align: center;
    color: #ffffff;
    background-color: var(--color-main);
}

.footer-powered .container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-statistic {
    text-align: right;
}

.footer-statistic span {
    padding-right: 10px;
}

.footer-statistic span:last-child {
    padding-right: 0px;
}

#footer-map {
    position: relative;
    height: 300px;
}

#footer-map iframe {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0px !important;
    left: 0px !important;
}

.footer-news {
    width: 20%;
    margin-bottom: 1rem;
}


/* Breadcrumb */
.breadCrumbs {
    padding: 10px 0px;
    background-color: #f2f2f2;
}
  
.breadCrumbs .container .breadcrumb {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}

.breadCrumbs .container .breadcrumb-item a {
    color: #212529;
}

.breadCrumbs .container .breadcrumb-item.active a {
    color: #6c757d;
}

.cursor-pointer {
    cursor: pointer;
}

.sidebar {
    position: sticky;
    top: 100px;
}
.widget {
    padding: 10px;
}
.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,1);
    line-height: 1;
    text-align: center;
    letter-spacing: 1.5px;
}
.widget-ul {
    list-style: none;
    margin: 0px;
    padding: 10px 0px;
}
.widget-ul li{
    position: relative;
    display: block;
    padding-left: 15px;
    border-top: 1px solid #f2f2f2;
}
.widget-ul > li{
    padding-left: 30px;
    background: url(../images/icon_check.png) no-repeat 12px 12px;
    background-size: 15px;
}
.widget-ul > li:first-child{
    border-top: 0px;
}

.widget-ul li a{
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    padding: 7px 10px 7px 10px;
}
.widget-ul li .icon{
    position: absolute;
    display: block;
    padding: 5px;
    font-size: 20px;
    top: 10px;
    right: 10px;
}

.widget-ul li .icon::before,
.widget-ul li .icon::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: currentColor;
    -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out
}
.widget-ul li .icon::before {
    width: 11px;
    height: 1px;
    opacity: 1
}

.widget-ul li .icon::after {
    width: 1px;
    height: 11px
}

.widget-ul li.active > .icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg)
}

.widget-ul li.active > .icon::before {
    opacity: 0
}


.widget-ul li:hover{
    background-color: #f2f2f2;
}

.widget-ul li.active > a,
.widget-ul li:hover > a{
}

.widget-ul li.has-child:after {
    content: "";
    position: absolute;
    top: 18px;
    right: 10px;
    width: 5px;
    height: 5px;
    border: 1px solid #333;
    border-top: 0px;
    border-left: 0px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.widget-ul li ul{
    display: none;
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.widget-ul li.active > ul {
    display: block;
    padding: 10px 0px;
}


/* Like Share */
.share {
    padding: 10px 15px 10px 15px;
    line-height: normal;
    background: rgba(128, 128, 128, 0.15);
    margin-top: 15px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
  
.share b {
    display: block;
    margin-right: 20px;
}
.social-plugin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.social-plugin .at-share-btn {
    margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
margin-left: 3px;
}

/* Paging */
.pagination-home .pagination .page-item .page-link {
color: #555555;
font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
color: #ffffff;
background-color: #555555;
border-color: #555555;
}

/* Paging Ajax */
.pagination-ajax {
text-align: center;
}

.pagination-ajax a {
display: inline-block;
vertical-align: top;
margin: 0px 3px 3px 3px;
width: 35px;
height: 35px;
line-height: 33px;
color: #666 !important;
border: 1px solid #e6e6e6;
font-size: 13px;
cursor: pointer;
text-decoration: none !important;
background-color: #ffffff;
}

.pagination-ajax a.current,
.pagination-ajax a:hover {
color: #ffffff !important;
border-color: #ec2d3f;
background-color: #ec2d3f;
}

.pagination-ajax a.first,
.pagination-ajax a.last,
.pagination-ajax a.prev,
.pagination-ajax a.next {
text-indent: -9999px;
position: relative;
background-color: #ffffff !important;
}

.pagination-ajax a.first:before,
.pagination-ajax a.last:before,
.pagination-ajax a.prev:before,
.pagination-ajax a.next:before {
content: "";
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index: 2;
background-color: transparent;
background-repeat: no-repeat;
background-position: center;
}

.pagination-ajax a.first:before {
background-image: url(../images/page-first.png);
}

.pagination-ajax a.last:before {
background-image: url(../images/page-last.png);
}

.pagination-ajax a.prev:before {
background-image: url(../images/page-prev.png);
}

.pagination-ajax a.next:before {
background-image: url(../images/page-next.png);
}

/* Popup */
#popup .modal-content {
    background: transparent;
    border: 0px;
}
#popup .modal-body {
    padding: 0px;
}
#popup .btn-close {
    width: 1.5rem;
    height: 1.5rem;
    opacity: 1;
    background: url(../images/nut-x.png) no-repeat center center;
    background-size: 25px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
display: none !important;
width: 0px !important;
height: 0px !important;
visibility: hidden !important;
overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
display: none;
}

/* Scroll Top */
.scrollToTop {
width: 41px;
height: 41px;
text-align: center;
font-weight: bold;
color: #444;
text-decoration: none;
position: fixed;
bottom: 65px;
right: 25px;
display: none;
z-index: 10;
cursor: pointer;
}

/* Text Hide */
.text-split {
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
-webkit-box-orient: vertical;
display: -webkit-box;
-webkit-line-clamp: 3;
}
.text-split-2 {
-webkit-line-clamp: 2;
}

/* Transition All */
.transition,
.control-owl button,
.carousel-comment-media .carousel-control a span,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover > ul,
.scale-img img,
.scale-img:hover > img,
.btn-frame .kenit-alo-circle-fill,
.support-online .kenit-alo-circle-fill {
-webkit-transition: 0.3s all;
transition: 0.3s all;
}

/* Scale IMG */
.scale-img {
overflow: hidden;
display: block;
}

.scale-img img {
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
}

.scale-img:hover > img {
-webkit-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
#noidung {
    padding-bottom: 50px;
    max-height: 580px;
    overflow-y: hidden;
    position: relative;
}
#noidung.show-full-content {
    max-height: 100% !important;
    padding-bottom: 50px;
}
#toc-content {
    position: relative;
}
.hide-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 80px 0 0 0;
    z-index: 1;
    text-align: center;
    background: -webkit-linear-gradient(transparent, #fff 100%);
    background: -o-linear-gradient(transparent, #fff 100%);
    background: linear-gradient(transparent, #fff 100%);
}
.hide-content.removeBlur {
    background: transparent;
    padding-bottom: 0px;
}


.toolbar2 {
    width: 100%;
    bottom: 0px;
    position: fixed;
    z-index: 500;
    left: 0px;
    -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -moz-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -ms-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -o-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
}

.toolbar2.is-active .list-phone {
    display: block;
    -webkit-animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
    animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
}

.toolbar2 .list-phone {
    position: absolute;
    bottom: 100%;
    left: 30px;
    opacity: 0;
    transform: scale(0);
    transform-origin: 50% 100%;
    display: none;
    width: 230px;
}

.toolbar2 .list-phone a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    max-width: 240px;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 50px;
    padding-right: 30px;
}

.toolbar2 .list-phone svg {
    max-width: 30px;
    max-height: 30px;
}

.toolbar2 .list-phone span {
    display: block;
    width: calc(100% - 40px);
    color: #333;
    font-weight: 700;
}

.toolbar2 .phone {
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdc124;
    border-radius: 50%;
    margin: 0 0px -25px 30px;
    transition: transform .2s ease-in-out;
}

.toolbar2 .phone a {
    color: #333;
    display: block;
    position: relative;
}

.toolbar2 .phone a:before,.toolbar2 .phone a:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    width: 30px;
    height: 3px;
    border-radius: 2rem;
    background-color: #fff;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.toolbar2 .phone a:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.toolbar2 .phone svg {
    max-width: 27px;
    max-height: 27px;
    display: block;
    position: relative;
    fill: #fff;
}

.toolbar2.is-active .phone {
    transform: rotate(-180deg);
}

.toolbar2.is-active .phone svg {
    opacity: 0;
}

.toolbar2.is-active .phone a:before,.toolbar2.is-active .phone a:after {
    opacity: 1;
}

.toolbar2 ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
    --size: 33px;
    -webkit-mask: radial-gradient(33px at 55px 0px, #0000 99%, #fff 101%) 100%;
    background: #fdc124;
    padding: 10px 0;
    padding-left: 100px;
    border-radius: 10px 10px 0px 0px;
}

.toolbar2 ul li {
    text-align: center;
    width: 25%;
    line-height: 1;
}

.toolbar2 ul li a {
    display: block;
    width: 100%;
    font-size: 27px;
    color: #ffff;
}

.toolbar2 ul li .icon {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.toolbar2 ul li a span {
    display: none;
    font-weight: 400;
    font-size: 11px;
    margin-top: 5px;
    color: #333;
    text-transform: capitalize;
}

.toolbar2 ul li a img,.toolbar2 ul li svg {
    max-height: 30px;
    fill: #fff;
    width: 100%;
}

.toolbar2 .phone svg {
    animation: tada 1.2s infinite;
    fill: #fff;
}

.tada {
    animation: tada 1.2s infinite;
}


.ex6 path {
    fill: transparent;
    stroke: #fff;
    stroke-width: 0.5;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    -webkit-animation: dash 5s ease forwards;
    animation: dash 5s ease forwards;
}

@-webkit-keyframes dash {
    to {
        fill: #0F4334;
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    to {
        fill: #0F4334;
        stroke-dashoffset: 0;
    }
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%, 20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes quickShow {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}