@charset "UTF-8";
:root {
    --body-color: #001233;
    --heading-text-color: #001233;
    --blue-01: #196BFF;
    --gray-01: #D1E1FF;
    --black-color: #001233;
    --text-white: #fff;
    --white-bg: #fff;
    --blue-color: #196BFF;
    --blue-dark-color: #002261;
    --menu-hover-border-color: #196BFF;
    --submenu-border: #D9D9D9;
    --btn-blue-color: #196BFF;
    --btn-blue-hover-color: #002261;
    --btn-blue-text-color: #fff;
    --blog-details-head-bg: #002261;
    --list-dot-color-bg: #001233;
    --list-number-color-bg: #001233;
    --border-color: rgba(217, 217, 217, 0.74);
    --input-border-color: #D9D9D9;
    --input-bg-color: #fff;
    --input-color: #001233;
    --input-focus-border-color: rgba(25, 107, 255, .5);
    --input-placehoder-color: rgba(0, 0, 0, 0.4);
    --input-error-border-color: #DF4116;
    --input-error-message-color: #DF4116;
    --checkbox-bg: #fff;
    --checkbox-active-bg: #fff;
    --checkbox-border: #D9D9D9;
    --checkbox-active-border: #196BFF;
    --footer-bg: #002261;
    --footer-text-color: #fff;
    --footer-border-color: rgba(255, 255, 255, 0.3);
    --banner-heading-color: #fff;
    --banner-text-color: #fff;
    --banner-btn-bg: #fff;
    --banner-btn-color: #196BFF;
    --banner-btn-hover-bg: #fff;
    --banner-btn-hover-color: #001233;
    --pagination-bg: #fff;
    --pagination-border: #196BFF;
    --pagination-color: #196BFF;
    --pagination-bg-hover: #196BFF;
    --pagination-border-hover: #196BFF;
    --pagination-color-hover: #fff;
    --tab-bg-color: transparent;
    --tab-bg-active-color: #fff;
    --tab-text-color: #001233;
    --tab-text-active-color: #196BFF;
    --tab-border-color: rgba(103, 104, 106, .25);
    --tab-body-bg-color: #196BFF;
    --tab-body-text-color: #fff;
    --tab-button-bg: transparent;
    --tab-button-hover-bg: #fff;
    --tab-button-text-color: #fff;
    --tab-button-hover-text-color: #196BFF;
    --tab-button-border-color: #fff;
    --tab-button-hover-border-color: #fff;
    --tab-v1-bg: #fff;
    --tab-v1-border: #D9D9D9;
    --tab-v1-active-border: #196BFF;
    --tab-v1-color: #001233;
    --tab-v1-active-color: #196BFF;
    --light-blue: #8CB5FF;
    --very-light-blue: #D1E1FF;
    --red: #DF4116;
    --orange: #E6A130;
    --yellow: #EEDB41;
    --green: #448932;
    --dark-green: #2A6217;
}
* {
    padding: 0;
    margin: 0;
    border: 0;
}
*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*::after,
*::before {
    display: inline-block;
}
body,
html {
    height: 100%;
}
body {
    color: var(--body-color);
    line-height: 1.5;
    font-family: Arial;
    font-size: 1.6rem;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}
button,
input,
textarea {
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
}
button {
    cursor: pointer;
    color: inherit;
    background-color: transparent;
}
a{
    display: inline-block;
    color: inherit;
    text-decoration: none;
    outline: none !important;
    color: var(--blue-color);
}
ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
p{
    margin-bottom: 2.4rem;
}
p:last-child{
    margin-bottom: 0;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: inherit;
    font-size: inherit;
    margin: 0;
    font-family: Arial;
    color: var(--heading-text-color);
}
html {
    font-size: 62.5%;
}
body{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}
.container{
    padding: 0 1.5rem;
    margin: auto;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}
@media (min-width: 1340px) {
    .container {
        max-width: 1310px;
    }
}
.text-start {
    text-align: left !important;
}
.text-end {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
.text-decoration-none {
    text-decoration: none !important;
}
.text-decoration-underline {
    text-decoration: underline !important;
}
.text-decoration-line-through {
    text-decoration: line-through !important;
}
.text-lowercase {
    text-transform: lowercase !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-capitalize {
    text-transform: capitalize !important;
}
.text-wrap {
    white-space: normal !important;
}
.text-nowrap {
    white-space: nowrap !important;
}
.btn {
    outline: none;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.link {
  outline: none;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}
.link-black{
  color: var(--black-color);
}
.link:hover{
  text-decoration: underline !important;
}
.link img {
  margin-left: 1rem;
  width: 2rem;
}
.d-inline {
    display: inline !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-block {
    display: block !important;
}
.d-flex {
    display: flex !important;
}
.d-inline-flex {
    display: inline-flex !important;
}
.d-none {
    display: none !important;
}
.d-flex-w{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.d-new{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.d-align{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
}
.d-new-a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
}
.d-center{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center!important;
    flex-wrap: wrap;   
}
.d-center img{
    max-width: 100%;
    max-height: 100%;
}
.d-flex-1{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
h1,.h1,.h1 *{
    font-size: 4.5rem;
    font-weight: bold;
    line-height: 5.6rem
}
h2,.h2,.h2 *{
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 4.8rem
}
h3,.h3,.h3 *{
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 4.4rem;
}
h4,.h4,.h4 *{
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 3.6rem
}
h5,.h5,.h5 *{
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 3.2rem
}
h6,.h6,.h6 *{
    font-size: 1.9rem;
    font-weight: bold;
    line-height: 3.2rem
}
.sub-title,.sub-title *{
    font-size: 1.5rem;
    font-weight: 400;
    line-height: l.5
}
.small-text{
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-weight: bold;
    margin: 0;
}
.small-title{
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 4px;
  display: block;
}
p{
    margin-bottom: 2rem;
}
.fw-normal,.fw-normal * {
    font-weight: 400 !important;
}
.fw-medium,.fw-medium * {
    font-weight: bold !important;
}
.fw-semibold,.fw-semibold * {
    font-weight: bold !important;
}
.fw-bold,.fw-bold *{
    font-weight: 700 !important;
}
.text-white,.text-white *{
    color: var(--text-white);
}
.text-blue,.text-blue *{
    color: var(--blue-color);
}
.text-black,.text-black *{
    color: var(--black-color);
}
.text-dark-blue,.text-dark-blue *{
    color: var(--blue-dark-color);
}
.bg-gray-01{
  background: var(--gray-01);
}
.pt-96{
    padding-top: 9.6rem;
}
.pb-96{
    padding-bottom: 9.6rem;
}
.mt-96{
    margin-top: 9.6rem;
}
.mb-96{
    margin-bottom: 9.6rem;
}
.pt-80{
    padding-top: 8rem;
}
.pb-80{
    padding-bottom: 8rem;
}
.mt-80{
    margin-top: 8rem;
}
.mb-80{
    margin-bottom: 8rem;
}
.pt-64{
    padding-top: 6.4rem;
}
.pb-64{
    padding-bottom: 6.4rem;
}
.pt-36{
    padding-top: 3.6rem;
}
.pb-36{
    padding-bottom: 3.6rem;
}
.mt-64{
    margin-top: 6.4rem;
}
.mb-64{
    margin-bottom: 6.4rem;
}
.pt-56{
    padding-top: 5.6rem;
}
.pb-56{
    padding-bottom: 5.6rem;
}
.mt-56{
    margin-top: 5.6rem;
}
.mb-56{
    margin-bottom: 5.6rem;
}
.pt-48{
    padding-top: 4.8rem;
}
.pb-48{
    padding-bottom: 4.8rem;
}
.mt-48{
    margin-top: 4.8rem;
}
.mb-48{
    margin-bottom: 4.8rem;
}
.pt-40{
    padding-top: 4rem;
}
.pb-40{
    padding-bottom: 4rem;
}
.mt-40{
    margin-top: 4rem;
}
.mb-40{
    margin-bottom: 4rem;
}
.pt-32{
    padding-top: 3.2rem;
}
.pb-32{
    padding-bottom: 3.2rem;
}
.mt-32{
    margin-top: 3.2rem;
}
.mb-32{
    margin-bottom: 3.2rem;
}
.pt-24{
    padding-top: 2.4rem;
}
.pb-24{
    padding-bottom: 2.4rem;
}
.mt-24{
    margin-top: 2.4rem;
}
.mb-24{
    margin-bottom: 2.4rem;
}
.pt-16{
    padding-top: 1.6rem;
}
.pb-16{
    padding-bottom: 1.6rem;
}
.mt-16{
    margin-top: 1.6rem;
}
.mb-16{
    margin-bottom: 1.6rem;
}
.mb-12{
  margin-bottom: 1.2rem;
}
.pt-8{
    padding-top: 0.8rem;
}
.pb-8{
    padding-bottom: 0.8rem;
}
.mt-8{
    margin-top: 0.8rem;
}
.mb-8{
    margin-bottom: 0.8rem;
}
header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #D9D9D9;
}
.header-top{
    background: var(--blue-01);
    padding: 0.8rem 0;
}
.header-top-close img{
    display: block;
    cursor: pointer;
    transition: all .2s cubic-bezier(.455,.03,.515,.955);
}
.header-top-close img:hover{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
}
.header-top-name{
    border: 1px solid var(--black-color);
    padding: 0.2rem 0.6rem 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing : 0.9px;
    margin-right: 1.4rem;
}
.header-top-name:last-child{
    margin-right: 0;
}
.header-top-info p{
    margin: 0 2rem 0 0;
    color: var(--text-white);
}
.header-top-close {
    margin-left: auto;
}
.header-top-link a{
    color: var(--text-white);
    text-decoration: underline;
    font-weight: bold;
}
.header-bottom{
    position: relative;
}
.header-block {
    position: relative;
}
.logo a{
    display: block;
}
.logo img{
    max-width: 16rem;
    max-height: 6.5rem;
    width: auto;
    height: auto;
}
.menu-outer{
    margin-left: auto;
}
.menu > ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.menu > ul > li{
    position: initial;
}
.menu > ul > li > a {
    font-weight: bold;
    color: var(--body-color) !important;
    padding: 0 0.8rem;
    height: 7.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.menu > ul > li.hasChild > a::after{
    position: relative;
    content: "";
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/icon-down.png);
    background-size: 1.6rem;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 0.4rem;
    filter: invert(38%) sepia(100%) saturate(1876%) hue-rotate(207deg) brightness(104%) contrast(101%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.menu > ul > li.hasChild:hover > a::after{
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.menu > ul > li > a::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 0.6rem;
    width: 100%;
}
.menu > ul > li:hover > a::before,
.menu > ul > li.active > a::before{
    background: var(--menu-hover-border-color);
}
.menu .menu-btn{
    display: none;
}
.submenu{
    position: absolute;
    top: 7.8rem;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(1rem);
    -moz-transform: translateY(1rem);
    transform: translateY(1rem);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.menu > ul > li.hasChild:hover .submenu{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}
.submenu-mobile-head{
    display: none;
}
.submenu-mobile-head{
    display: none;
}
.submenu-list-outer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.submenu-list{
    -ms-flex-direction: row;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-shadow: 0 2px 4px #D9D9D9;
    background-color: var(--white-bg);
    box-shadow: 0 2px 4px #D9D9D9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    margin-left: auto;
    max-width: 100%;
    margin-top: 1px;
}
.submenu-item{
    padding: 1.2rem 0;
    width: 32rem;
    border-right: 1px solid var(--submenu-border)
}
.submenu-item:last-child{
    border-right: 0;
}
.submenu-title{
    padding: 1.2rem 3.2rem 0.8rem;
    font-size: 2rem;
    line-height: 2.8rem;
    color: var(--blue-color);
    font-weight: bold;
}
.submenu-list-nav{
    padding: 0 3.2rem;
}
.submenu-list-nav li{
    display: block;
    margin-top: 1.4rem;
}
.submenu-list-nav li:last-child{
    margin-bottom: 1.4rem;
}
.submenu-list-nav li a {
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: var(--body-color);
    width: 100%;
    display: block;
}
.submenu-list-nav li span{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 2.6rem;
    color: var(--body-color);
    width: 100%;
}
.submenu-list-nav li:hover span{
    text-decoration: underline;
}
.menu-language {
    outline: none;
    border: 0;
    margin-left: 1.4rem;
    position: relative;
}
.language-icon {
    height: 7.8rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.language-icon img{
    width: 2.4rem;
}
.language-dropdown{
    position: absolute;
    right: 0;
    top: 100%;
    -webkit-box-shadow: 0 2px 4px #D9D9D9;
    background-color: var(--white-bg);
    box-shadow: 0 2px 4px #D9D9D9;
    margin-top: 1px;
    min-width: 20rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(1rem);
    -moz-transform: translateY(1rem);
    transform: translateY(1rem);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.menu-language:hover .language-dropdown{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}
.lang-item {
    outline: none;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    margin: 1.4rem 0 0;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 2.6rem;
    color: var(--body-color);
    white-space: nowrap;
}
.lang-item:last-child{
    margin-bottom: 1.5rem;
}
.lang-item:hover{
    text-decoration: underline !important;
}
.flag-icon {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}
.flag-icon img{
    width: 3rem;
    height: 1.8rem;
}
.menu-btn{
    margin-left: 2.4rem;
}
.btn{
    height: 4rem;
    border-radius: 0.2rem;
    padding: 0 2rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    font-size: 1.5rem;
    font-weight: bold;
}
.btn-blue{
    background: var(--btn-blue-color);
    color: var(--btn-blue-text-color);
}
.btn-blue:hover{
    background: var(--btn-blue-hover-color); 
}
.btn-white{
    background: var(--white-bg);
    color: var(--blue-color);
}
.btn-white:hover{
    color: var(--black-color);
}
.btn-blue-outline{
    border: 1px solid var(--btn-blue-color);
    background: var(--white-bg);
    color: var(--btn-blue-color);
}
.btn-blue-outline:hover{
    color: var(--btn-blue-text-color);
    background: var(--btn-blue-color);
}
.toggleMenu{
    height: 3rem;
    width: 2.5rem;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.toggleMenu span{
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--black-color);
}
.toggleMenu span.bar1 {
    top: 0.6rem;
    transform: rotate(0);
    transition: top .15s ease .15s, transform .15s ease-out .05s;
}
body.openMenu .toggleMenu span.bar1 {
    top: 1.5rem;
    transform: rotate(45deg);
    transition: top .15s ease .05s,transform .15s ease-out .25s;
}
.toggleMenu span.bar2 {
    top: 1.5rem;
    opacity: 1;
    transition: .15s ease .15s;
}
body.openMenu .toggleMenu span.bar2 {
    opacity: 0;
}
.toggleMenu span.bar3 {
    top: 2.4rem;
    transform: rotate(0);
    transition: top .15s ease .15s, transform .15s ease-out .05s;
}
body.openMenu .toggleMenu span.bar3 {
    top: 1.5rem;
    transform: rotate(-45deg);
    transition: top .15s ease .05s,transform .15s ease-out .25s;
}
main{
    margin-top: 11.9rem;
}
.no-header-top main{
    margin-top: 7.8rem;
}
.sec-blog-head{
    position: relative;
    background: var(--blog-details-head-bg);
}
.blog-head-top-text{
    font-size: 1.2rem;
    line-height: 1;
    font-weight: bold;
}
.blog-head-top-text span{
    margin: 0 0.5rem;
}
.blog-head-top-text a:hover{
    color: var(--text-white);
}
.breadcrumb li{
    margin: 0 1.2rem;
    font-size: 1.2rem;
    line-height: 1;
    position: relative;
    opacity: 0.8;
}
.breadcrumb li:hover{
    opacity: 1;
}
.breadcrumb li::after {
    position: absolute;
    content: "";
    height: 0.4rem;
    width: 0.4rem;
    border-radius: 50%;
    left: -1.5rem;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--white-bg);
    opacity: 0.8;
}
.breadcrumb li:first-child{
    margin-left: 0;
}
.breadcrumb li:last-child{
    margin-right: 0;
}
.breadcrumb li:first-child::after{
    content: none;
}
.blog-contnet{
    max-width: 87rem;
    margin: auto;
}
.contnet-img{
    margin-bottom: 3.2rem;
}
.contnet-img:last-child{
    margin-bottom: 0;
}
.contnet-img img{
    width: 100%;
    height: auto;
}
.contnet a:hover{
    text-decoration: underline;
}
.contnet h1{
    margin-bottom: 3.2rem;
}
.contnet h2{
    margin-bottom: 2.8rem;
}
.contnet h3{
    margin-bottom: 2.4rem;
}
.contnet h4{
    margin-bottom: 2rem;
}
.contnet h5{
    margin-bottom: 1.6rem;
}
.contnet h6{
    margin-bottom: 1.2rem;
}
.contnet h1:last-child,
.contnet h2:last-child,
.contnet h3:last-child,
.contnet h4:last-child,
.contnet h5:last-child,
.contnet h6:last-child{
    margin-bottom: 0;
}
.contnet ul,
.contnet ol{
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}
.contnet ol{
    counter-reset: list-number;
}
.contnet ul:first-child,
.contnet ol:first-child{
    margin-top: 0;
}
.contnet ul:last-child,
.contnet ol:last-child{
    margin-bottom: 0;
}
.contnet li{
    padding-left: 2.6rem;
    margin-bottom: 1.2rem;
    position: relative;
}
.contnet ol li{
    counter-increment: list-number;
}
.contnet ul > li:last-child{
    margin-bottom: 0;
}
.contnet ul > li::after{
    position: absolute;
    content: "";
    height: 0.6rem;
    width: 0.6rem;
    border-radius: 50%;
    left: 0.6rem;
    top: 0.9rem;
    background: var(--list-dot-color-bg);
}
.contnet ol > li:after{
    position: absolute;
    left: 0.6rem;
    top: 0;
    font-weight: bold;
    content: counter(list-number)".";
}
/* Tables inside blog content */
.contnet table{
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0 3rem;
    font-size: 1.5rem;
    line-height: 2.2rem;
}
.contnet table thead{
    background: var(--body-color);
    color: var(--text-white);
}
.contnet table th{
    padding: 1.2rem 1.6rem;
    text-align: left;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
}
.contnet table td{
    padding: 1.2rem 1.6rem;
    border-bottom: 1px solid var(--border-color);
}
.contnet table tbody tr:hover{
    background: rgba(25, 107, 255, 0.04);
}
.contnet table tbody tr:nth-child(even){
    background: #D1E1FF;
}
.contnet table tbody tr:nth-child(even):hover{
    background: rgba(25, 107, 255, 0.06);
}
/* Blockquote inside blog content */
.contnet blockquote{
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--blue-01);
    background: #D1E1FF;
    font-size: 1.8rem;
    line-height: 2.8rem;
    font-style: italic;
    color: var(--body-color);
}
.contnet blockquote p{
    margin: 0;
}
.contnet blockquote cite,
.contnet blockquote footer{
    display: block;
    margin-top: 1rem;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: bold;
    color: var(--body-color);
}
/* Code blocks inside blog content */
.contnet pre{
    margin: 2rem 0;
    padding: 2rem;
    background: #1e293b;
    color: #e2e8f0;
    border-radius: 0.8rem;
    overflow-x: auto;
    font-size: 1.4rem;
    line-height: 2.2rem;
}
.contnet pre code{
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}
.contnet code{
    background: #D1E1FF;
    padding: 0.2rem 0.6rem;
    border-radius: 0.4rem;
    font-size: 1.4rem;
    color: #DF4116;
}
/* Horizontal rule */
.contnet hr{
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 3rem 0;
}
/* Mark/highlight */
.contnet mark{
    background: #EEDB41;
    padding: 0.1rem 0.3rem;
    border-radius: 0.2rem;
}
.border-top{
    border-top: 1px solid var(--border-color);
}
.border-bottom{
    border-bottom: 1px solid var(--border-color);
}
.card-list{
    margin: 0 -2rem;
    display: flex;
    flex-wrap: wrap;
}
.card-item{
    width: 25%;
    padding: 0 2rem;
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
}
.card-item::after{
    position: absolute;
    content: "";
    left: 2rem;
    top: -2.8rem;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}
.card-item:nth-child(4n)::after{
    width: calc(100% - 4rem);
}
.card-item:nth-child(-n+4):after{
    content: none;
}
.card-item:nth-child(4n + 1){
    border-left: 0;
}
.card-item:nth-child(n + 5){
    margin-top: 5.6rem;
}
/* White separator lines for blue background sections */
.bg-gray-01 .card-item{
    border-left-color: #fff;
}
.bg-gray-01 .card-item::after{
    background: #fff;
}
.card-img {
    width: 100%;
}
.card-img img{
    width: 100%;
    height: 16.3rem;
    object-fit: cover;
}
.card-info{
    height: calc(100% - 16.3rem);
    display: flex;
    flex-direction: column;
    width: 100%;
}
.card-item h1, 
.card-item h2, 
.card-item h3, 
.card-item h4, 
.card-item h5, 
.card-item h6 {
    font-size: 2rem;
    line-height: 2.7rem;
    margin: 0 0 1.6rem;
    height: 5.4rem;
    max-height: 5.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.card-item:hover h1, 
.card-item:hover h2, 
.card-item:hover h3, 
.card-item:hover h4, 
.card-item:hover h5, 
.card-item:hover h6{
    color: var(--blue-color);
}
.card-info p{
    color: var(--black-color);
    max-height: 7.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.card-footer{
    margin-top: auto;
}
.card-footer span{
    margin-left: 2rem;
    position: relative;
    font-size: 1.4rem;
    color: var(--black-color);
    opacity: 0.8;
    font-weight: bold;
}
.card-footer span:first-child{
    margin-left: 0;
}
.card-footer span::after {
    position: absolute;
    content: "";
    left: -1.4rem;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 5px;
    width: 5px;
    background: var(--black-color);
    opacity: 0.8;
    border-radius: 50%;
}
.card-footer span:first-child::after{
    content: none;
}
.card-link{
    outline: none;
    margin-left: auto;
}
.card-link img{
    width: 2.8rem;
    opacity: 0.7;
}
.card-link:hover img{
    opacity: 1;
}
.card-link.flagged img{
    opacity: 1;
    filter: invert(24%) sepia(98%) saturate(2053%) hue-rotate(11deg) brightness(92%) contrast(91%);
}
.card-link.flagged-fill img{
    content: url(../images/icon-bookmark-fill.svg);
    opacity: 1;
    filter: invert(24%) sepia(98%) saturate(2053%) hue-rotate(11deg) brightness(92%) contrast(91%);
}
.sec-newslatter{
    background: var(--blue-01);
}
.socail-list li{
    margin-left: 1.6rem;
}
.socail-list li:first-child{
    margin-left: 0;
}
.socail-list li a{
    height: 2.6rem;
    width: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.socail-list li a:hover{
    opacity: 0.8;
}
.socail-list li a img{
    max-width: 100%;
    max-height: 100%;
}
.form-group{
    margin-bottom: 2rem;
}
.label{
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.6rem;
    line-height: 1;
}
.input-columns.half{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}
.input-columns.half .form-group{
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
}
.form-control{
    outline: none;
    margin: 0;
    height: 4.1rem;
    padding: 0 1.5rem;
    font-size: 1.6rem;
    border-radius: 0.2rem;
    width: 100%;
    font-weight: normal;
    color: var(--input-color);
    background: var(--input-bg-color);
    border: 1px solid var(--input-border-color);
    --input-bg-color: #fff;
    --input-color: #001233;
}
.form-control:focus{
    border-color: var(--input-focus-border-color);
}
.form-control-white{
    background: transparent;
    border-color: var(--white-bg) !important;
    color: var(--text-white);
}
.form-control-white:-ms-input-placeholder{
    color: var(--text-white);
}
.form-control-white::placeholder{
    opacity: 1;
    color: var(--text-white);
}
.chk {
    display: block;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.chk input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.chk .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 2rem;
    width: 2rem;
    background-color: var(--checkbox-bg);
    border: 1px solid var(--checkbox-border);
}
.chk input:checked ~ .checkmark {
    background-color: var(--checkbox-active-bg);
    border-color: var(--checkbox-active-border);
}
.chk .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.chk input:checked ~ .checkmark:after {
    display: block;
}
.chk .checkmark:after {
    left: 0.6rem;
    top: 0.3rem;
    width: 0.6rem;
    height: 1rem;
    border: solid var(--checkbox-active-border);
    border-width: 0 0.2rem 0.2rem 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.sec-newslatter form,
.newslatter-form .form-control-white{
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
}
.newslatter-form {
    width: 65%;
    margin: auto;
}
.newslatter-form .form-control-white,
.newslatter-form .btn{
    height: 5.1rem;
}
.newslatter-form .form-control-white{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.newslatter-form .btn{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
footer{
    background: var(--footer-bg);
}
.footer-block{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    -ms-grid-column: 2.5rem;
    grid-column-gap: 2.5rem;
    -ms-grid-row: 1rem;
    grid-row-gap: 1rem;
}
.footer-logo img{
    max-width: 15rem;
    position: relative;
    top: -3.6rem;
}
.footer-head *{
    line-height: 1;
}
.footer-link li{
    margin-bottom: 0.7rem;
    line-height: 2rem;
}
footer a,
footer p{
    color: var(--footer-text-color);
    font-size: 1.4rem;
    line-height: 2rem;
}
footer a:hover{
    text-decoration: underline !important;
}
.footer-center{
    border-top: 1px solid var(--footer-border-color);
    border-bottom: 1px solid var(--footer-border-color);
}
.footer-center:last-child{
    border-bottom: 0;
}
.footer-brand-list p{
    color: var(--footer-text-color);
    text-transform: uppercase;
    margin: 0;
}
.footer-brand{
    margin-left: 3.2rem;
}
.footer-brand-item {
    margin: 0 0.8rem;
}
.footer-brand-item:first-child{
    margin-left: 0;
}
.footer-brand-item:last-child{
    margin-right: 0;
}
.footer-brand-item img{
    margin: 0.8rem 0;
    max-width: 11rem;
    max-height: 4.5rem;
}
.footer-bottom-link li{
    margin: 0 1.6rem;
}
.footer-bottom-link li:first-child{
    margin-left: 0;
}
.footer-bottom-link li:last-child{
    margin-right: 0;
}
footer p{
    margin: 0;
}
.sec-blog-banner{
    position: relative;
    background: var(--banner-bg);
    background-position: center;
    background-size: cover;
}
.sec-blog-banner::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--banner-gradient);
}
.banner-text-outer{
    position: relative;
    min-height: 36rem;
    max-width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}
.banner-text h1{
    color: var(--banner-heading-color);
    margin-bottom: 2rem;
}
.banner-text h1:last-child{
    margin-bottom: 0;
}
.banner-text p{
    color: var(--banner-text-color);
}
.banner-btn{
    margin-top: 4rem;
}
.banner-btn .btn{
    background: var(--banner-btn-bg);
    color: var(--banner-btn-color);
}
.banner-btn .btn:hover{
    background: var(--banner-btn-hover-bg);
    color: var(--banner-btn-hover-color);
}
.pagination ul{
    justify-content: center;
}
.pagination li{
    margin: 0 0.5rem;
    color: var(--pagination-color);
}
.pagination a{
    height: 3.6rem;
    width: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.2rem;
    background: var(--pagination-bg);
    border: 1px solid var(--pagination-border);
    color: var(--pagination-color);
    font-weight: bold;
}
.pagination li.active a,
.pagination li:hover a{
    background: var(--pagination-bg-hover);
    border-color: var(--pagination-border-hover);
    color: var(--pagination-color-hover);
}
.pagination span{
    height: 1rem;
    width: 1rem;
    border: 2px solid var(--pagination-border);
    border-top: 0;
    border-right: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 0.6rem;
}
.pagination li:last-child span {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-left: 0;
    margin-right: 0.6rem;
}
.pagination li:hover span{
    border-color: var(--pagination-color-hover);
}
.modal-outer{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 9999;
    overflow: hidden;
    overflow-y: auto;
    padding: 1rem;
    display: none;
}
.modal-outer.show{
    display: block;
}
.modal-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}
.modal{
    position: relative;
    background: var(--white-bg);
    width: 100%;
    max-width: 95rem;
    margin: 2rem 1.5rem;
}
.modal-sm{
  max-width: 45rem !important;
}
.modal-block{
    display: flex;
    flex-wrap: wrap;
}
.modal-left{
    background: #fafafa;
    border-right: 1px solid var(--border-color);
    padding: 2rem;
    width: 33.33%;
}
.modal-right{
    width: 66.66%;
    position: relative;
}
.modal-head{
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}
.modal-body{
    padding: 3.2rem 2rem;
}
.modal-sm .modal-body{
  padding: 2.4rem;
}
.modal-btn{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-top: 2rem;
}
.modal-close-cross{
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    height: 3.2rem;
    width: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}
.modal-close-cross::after,
.modal-close-cross::before{
    position: absolute;
    content: "";
    height: 2rem;
    width: 0.2rem;
    background: var(--black-color);
    transform: rotate(45deg);
    opacity: 0.7;
}
.modal-close-cross::after{
    transform: rotate(-45deg);
}
.modal-message p {
  font-size: 2rem;
  font-weight: bold;
  margin-top: -3px;
}
.message-success{
  color: var(--green);
}
.message-error{
  color: var(--red);
}
.grid{
    display: grid;
    grid-gap: 3.2rem;
    grid-template-columns: repeat(3, 1fr);
}
.grid-4{
  grid-gap: 2.4rem;
  grid-template-columns: repeat(4, 1fr);
}
.grid-icon-80{
  height: 8rem;
  width: 8rem;
  margin: auto;
}
.block-grid{
    grid-column-gap: 10.4rem;
    grid-row-gap: 10.4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.block-grid-item{
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.block-grid-item::after{
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: var(--border-color);
  top: -5.2rem;
  left: 0;
}
.block-grid-item::before{
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: var(--border-color);
  top: 0;
  left: -5.2rem;
}
.block-grid-item:nth-child(-n + 2){
  padding-top: 0;
}
.block-grid-item:nth-child(-n + 2)::after{
  content: none;
}
.block-grid-item:nth-child(2n + 1)::before{
  content: none;
}
.block-grid-icon{
  width: 6.2rem;
  margin-right: 3.2rem;
}
.block-grid-icon img{
  width: 100%;
}
.tab-outer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tab-list{
  width: 47.2rem;
  margin-right: 3.4rem;
  margin-bottom: 4rem;
}
.tab-item-list > li{
  background: var(--tab-bg-color);
  border-bottom: 1px solid var(--tab-border-color);
  position: relative;
}
.tab-item-list > li.active{
  background: var(--tab-bg-active-color);
  margin-left: -1.2rem;
  width: calc(100% + 4.6rem);
  -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.3);
  box-shadow: 0px 0px 5px rgba(0,0,0,.3);
}
.tab-item-list > li.active:after {
  content: "";
  position: absolute;
  z-index: 50;
  top: 50%;
  right: -30px;
  width: 0;
  height: 100%;
  border-style: solid;
  border-width: 25px 0 25px 30px;
  border-color: transparent transparent transparent var(--tab-bg-active-color);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tab-link{
  display: block;
  padding: 1.3rem 1.5rem;
  color: var(--tab-text-color);
}
.tab-item-list > li.active .tab-link,
.tab-item-list > li:hover .tab-link{
  color: var(--tab-text-active-color);
  font-weight: bold;
}
.tab-body {
  background: var(--tab-body-bg-color);
  border-radius: 2px;
  display: flex;
}
.tab-info{
  width: 100%;
  padding: 6rem 8rem;
  display: none;
  flex-direction: column;
}
.tab-info.active{
  display: flex;
}
.tab-info-top{
  margin-bottom: 2.4rem;
}
.tab-info-top:last-child{
  margin-bottom: 0;
}
.tab-info-top *{
  color: var(--tab-body-text-color);
}
.tab-info-top h1,
.tab-info-top h2,
.tab-info-top h3,
.tab-info-top h4,
.tab-info-top h5,
.tab-info-top h6{
  margin-bottom: 1.4rem;
}
.tab-info-top ul{
  margin: 1.4rem 0 2rem;
}
.tab-info-top ul:first-child{
  margin-top: 0;
}
.tab-info-top ul:last-child{
  margin-bottom: 0;
}
.tab-info-top li{
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
}
.tab-info-top li:last-child{
  margin-bottom: 0;
}
.tab-info-top li::after{
  position: absolute;
  content: "";
  left: 0;
  top: 0.8rem;
  width:0.7rem;
  height: 0.7rem;
  background: var(--tab-body-text-color);
  border-radius: 50%;
}
.tab-info-top a{
  text-decoration: underline !important;
}
.tab-btn{
  margin-top: auto;
}
.tab-btn .btn{
  color: var(--tab-button-text-color);
  background: var(--tab-button-bg);
  border: 1px solid var(--tab-button-border-color);
}
.tab-btn .btn:hover{
  color: var(--tab-button-hover-text-color);
  background: var(--tab-button-hover-bg);
  border: 1px solid var(--tab-button-hover-border-color);
}
.tab-mobile-content{
  display: none;
}
.tab-v1-list{
  width: 30rem;
  padding-right: 3.2rem;
}
.tab-v1-list li:first-child {
  border-top: 1px solid var(--tab-v1-border);
}
.tab-v1-list a{
  background: var(--tab-v1-bg);
  border-bottom: 1px solid var(--tab-v1-border);
  border-left: 3px solid transparent;
  border-right: 1px solid var( --tab-v1-border);
  display: flex;
  align-items: center;
  padding: 1.6rem 2.1rem 1.6rem 3.2rem;
  position: relative;
  color: var(--tab-v1-color);
}
.tab-v1-list li.active a{
  border-bottom: 1px solid var(--tab-v1-border);
  border-left-color: var(--tab-v1-active-border);
  border-right-width: 0;
  color: var(--tab-v1-active-color);
  font-weight: bold;
}
.tab-v1-list a::after {
  content: "";
  position: absolute;
  background: url(../images/icon-down.png);
  width: 1.6rem;
  height: 1.6rem;
  right: 0.8rem;
  transform: rotate(-90deg);
  -webkit-transition: transform .1s;
  -moz-transition: transform .1s;
  transition: transform .1s;
}
.tab-v1-list li.active a::after{
  content: none;
}
.tab-v1-list li:hover a::after{
  -ms-transform: rotate(-90deg) translateY(4px);
  -webkit-transform: rotate(-90deg) translateY(4px);
  transform: rotate(-90deg) translateY(4px);
}
.tab-v1-info{
  display: none;
}
.tab-v1-info.active{
  display: flex;
}
.box-list {
  display: grid;
  grid-gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.box-item{
  border: 1px solid var(--tab-v1-border);
  padding: 3.2rem;
  color: var(--body-color);
}
.box-item:hover{
  -webkit-box-shadow: 0 2px 8px #D9D9D9;
  box-shadow: 0 2px 8px #D9D9D9;
}
.box-item-img {
  width: 4.8rem;
  height: 4.8rem;
  margin-bottom: 1.6rem;
}
.block-outer{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.block-text{
  position: relative;
  z-index: 1;
}
.block-text-66{
  width: 66.66%
}
.block-image-outer .block-text-66{
  width: 58%;
}
.block-text .h2{
  margin-bottom: 2.4rem;
}
.block-text p{
  margin-bottom: 2.4rem;
}
.block-text li{
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2.4rem;
}
.block-text li:last-child{
  margin-bottom: 0;
}
.block-text li::before {
  position: absolute;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--body-color);
  top: 0.9rem;
  left: 0;
}
.block-img{
  width: 42%;
  padding-left: 3rem;
  text-align: center;
}
.block-img img{
  height: auto;
  max-width: 100%;
}
.sec-block-banner{
  background: var(--block-banner-bg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.sec-block-banner:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--block-banner-overlay);
}
.block-banner-text{
  position: relative;
  z-index: 1;
  width: 50%;
}
.block-banner-text .h2{
  margin-bottom: 1.2rem;
}
.block-banner-text p{
  font-size: 2rem;
  margin-bottom: 3.2rem;
}
.grid-box-item{
  background: #fff;
  border: 1px solid #ccc;
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  color: var(--body-color);
}
a.grid-box-item:hover{
  -webkit-box-shadow: 0 2px 8px #D9D9D9;
  box-shadow: 0 2px 8px #D9D9D9;
}
.grid-box-top{
  margin-bottom: 3.2rem;
}
.grid-box-top .h5{
  margin-bottom: 1.2rem;
}
.gird-box-link{
  margin-top: auto;
}
.grid-box-img{
  width: 5.6rem;
  height: 5.6rem;
  margin-bottom: 1.2rem;
}
.document-block{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.document-img{
  width: 30rem;
  border: 1px solid var(--border-color);
}
.document-img img{
  width: 100%;
  height: auto;
}
.document-info{
  width: calc(100% - 30rem);
  padding-left: 4rem;
}
.document-info p{
  max-width: 80%;
}
.attr-list{
  max-width: 40%;
}
.attr-item{
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-color);
}
.attr-item label {
  font-weight: bold;
  width: 11rem;
}
@media(min-width:1200px) and (max-width:1339.98px){
    body{
        font-size: 1.5rem;
    }
    main {
        margin-top: 11.75rem;
    }
    h1, .h1, .h1 * {
        font-size: 4.3rem;
        line-height: 5.4rem;
    }
    h2,.h2,.h2 *{
        font-size: 3.3rem;
        line-height: 4.6rem
    }
    h3,.h3,.h3 *{
        font-size: 3rem;
        line-height: 4.6rem
    }
    h4,.h4,.h4 *{
        font-size: 2.6rem;
        line-height: 3.4rem
    }
    h5,.h5,.h5 *{
        font-size: 2rem;
        line-height: 3rem
    }
    h6, .h6, .h6 * {
        font-size: 1.8rem;
        line-height: 3.1rem;
    }
    .pb-96 {
      padding-bottom: 8rem;
    }
    .pt-96 {
        padding-top: 8rem;
    }
    .pt-80 {
        padding-top: 6.4rem;
    }
    .mt-64 {
        margin-top: 5.6rem;
    }
    .mb-64 {
        margin-bottom: 5.6rem;
    }
    .pt-64 {
        padding-top: 5.6rem;
    }
    .pb-64 {
        padding-bottom: 5.6rem;
    }
    .mt-56 {
        margin-top: 4.8rem;
    }
    .mb-56 {
        margin-bottom: 4.8rem;
    }
    .btn {
        font-size: 1.4rem;
    }
    .submenu-item {
        width: 28.5rem;
    }
    .submenu-title {
        padding: 1.2rem 2.4rem 0.8rem;
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
    .submenu-list-nav {
        padding: 0 2.4rem;
    }
    .submenu-list-nav li {
        margin-top: 1.1rem;
    }
    .submenu-list-nav li span {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    .lang-item {
        font-weight: bold;
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    .card-img img {
        height: 14.4rem;
    }
    .card-info {
        height: calc(100% - 14.4rem);
    }
    .newslatter-form {
        width: 75%;
    }
    .banner-text-outer {
        min-height: 33rem;
    }
    .banner-text h1 {
        margin-bottom: 1.6rem;
    }
    .banner-btn {
        margin-top: 3.2rem;
    }
    .modal-close-cross {
        top: 1.9rem;
    }
    .grid,
    .grid-4{
      grid-gap: 3.2rem 2rem;
    }
    .block-grid {
      grid-column-gap: 9.6rem;
      grid-row-gap: 9.6rem;
    }  
    .block-grid-item::before {
     left: -4.8rem;
    }
    .block-grid-item::after {
      top: -4.8rem;
    }
  .tab-list {
    width: 42.2rem;
  }
  .tab-info {
    padding: 5rem 6rem;
  }
  .tab-v1-list {
    width: 28rem;
    padding-right: 2.4rem;
  }
  .box-list {
    grid-gap: 2.4rem;
  }
  .block-img {
    padding-left: 1rem;
  }
  .block-text li {
    margin-bottom: 1rem;
    padding-left: 2rem;
  }
  .block-text li::before {
    top: 0.8rem;
  }
  .grid-box-item {
    padding: 2.4rem;
  }
  .attr-list {
    max-width: 45%;
  }
  .document-info p{
    max-width: 80%;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
    body{
        font-size: 1.5rem;
    }
    h1, .h1, .h1 * {
        font-size: 4.1rem;
        line-height: 5.2rem;
    }
    h2,.h2,.h2 *{
        font-size: 3.1rem;
        line-height: 4.4rem
    }
    h3,.h3,.h3 *{
        font-size: 2.8rem;
        line-height: 4.4rem
    }
    h4,.h4,.h4 *{
        font-size: 2.4rem;
        line-height: 3.2rem
    }
    h5,.h5,.h5 *{
        font-size: 2rem;
        line-height: 2.8rem
    }
    h6, .h6, .h6 * {
        font-size: 1.7rem;
        line-height: 3rem;
    }
    .pb-96 {
      padding-bottom: 7.2rem;
    }
    .pt-96 {
      padding-top: 7.2rem;
    }
    .pt-80 {
        padding-top: 6.4rem;
    }
    .pb-64 {
        padding-bottom: 5.6rem;
    }
    .pt-64 {
        padding-top: 5.6rem;
    }
    .mt-64 {
        margin-top: 5.6rem;
    }
    .mb-64 {
        margin-bottom: 5.6rem;
    }
    .mt-56 {
        margin-top: 4.8rem;
    }
    .mb-56 {
        margin-bottom: 4.8rem;
    }
    .mb-48 {
        margin-bottom: 4rem;
    }
    .mt-48 {
        margin-top: 4rem;
    }
    .pb-48 {
        padding-bottom: 4rem;
    }
    .pt-48 {
        padding-top: 4rem;
    }
    .btn {
        font-size: 1.4rem;
    }
    .logo img {
        max-width: 9.7rem;
        max-height: 3.1rem;
    }
    .menu > ul > li > a {
        padding: 0 0.6rem;
        font-size: 1.4rem;
    }
    .menu > ul > li.hasChild > a::after {
        height: 1.4rem;
        width: 1.4rem;
    }
    .menu-btn .btn{
        font-size: 1.3rem;
        padding: 0 1.5rem;
        height: 3.5rem;
    }
    .menu-btn {
        margin-left: 1.5rem;
    }
    .menu-language {
        margin-left: 1rem;
    }
    .lang-item {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    .submenu-item {
        padding: 0.4rem 0;
        width: 232.5px;
    }
    .submenu-title {
        padding: 1.2rem 1.5rem 0.8rem;
        font-size: 1.7rem;
        line-height: 2.5rem;
    }
    .submenu-list-nav {
        padding: 0 1.5rem;
    }
    .submenu-list-nav li {
        margin-top: 1rem;
    }
    .submenu-list-nav li span {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }
    main {
        margin-top: 11.75rem;
    }
    .footer-block {
        -ms-grid-column: 1.5rem;
        grid-column-gap: 1.5rem;
    }
    footer a, footer p {
        font-size: 1.3rem;
        line-height: 2rem;
    }
    .footer-center-logo {
        margin-left: 2.2rem;
    }
    .footer-brand-item img {
        max-width: 9rem;
        max-height: 2.5rem;
    }
    .footer-bottom-link li {
        margin: 0 1.2rem;
    }
    .newslatter-form {
        width: 85%;
    }
    .card-list {
        margin: 0 -1.5rem;
    }
    .card-item {
        padding: 0 1.5rem;
    }
    .card-img img {
        height: 11.8rem;
    }
    .card-info {
        height: calc(100% - 11.8rem);
    }
    .card-item h1, 
    .card-item h2, 
    .card-item h3, 
    .card-item h4, 
    .card-item h5, 
    .card-item h6 {
        font-size: 1.8rem;
        line-height: 2.5rem;
        height: 5rem;
        max-height: 5rem;
    }
    .banner-text-outer {
        min-height: 31rem;
        max-width: 58%;
    }
    .banner-text h1 {
        margin-bottom: 1.6rem;
    }
    .banner-btn {
        margin-top: 3.2rem;
    }
    .card-item::after {
        left: 1.5rem;
    }
    .card-item:nth-child(4n)::after {
        width: calc(100% - 3rem);
    }
    .modal-close-cross {
        top: 1.8rem;
    }
    .grid,
    .grid-4{
      grid-gap: 3.2rem 1.6rem;
    }
    .block-grid {
      grid-column-gap: 8.8rem;
      grid-row-gap: 8.8rem;
    }  
    .block-grid-item::before {
     left: -4.4rem;
    }
    .block-grid-item::after {
      top: -4.4rem;
    }
    .tab-list {
      width: 33.2rem;
      margin-right: 2.4rem;
    }
    .tab-info {
      padding: 5rem 6rem;
    }
    .tab-item-list > li.active {
      width: calc(100% + 3.6rem);
    }
    .tab-item-list > li.active:after {
      margin-top: 1px;
    }
    .tab-v1-list {
      width: 25rem;
      padding-right: 1.6rem;
    }
    .tab-v1-list a {
      padding: 1.6rem 2.1rem 1.6rem 2rem;
    }
    .tab-v1-body {
      width: calc(100% - 25rem);
    }
    .box-list {
      grid-gap: 1.6rem;
    }
    .box-item {
      padding: 2rem;
    }
    .block-banner-text p {
      font-size: 1.8rem;
      margin-bottom: 3rem;
    }
    .block-img {
      padding-left: 1rem;
    }
    .block-text li {
      margin-bottom: 1rem;
      padding-left: 2rem;
    }
    .block-text li::before {
      top: 0.8rem;
    }
    .grid-box-item {
      padding: 2.4rem;
    }
    .grid-box-top {
      margin-bottom: 2.4rem;
    }
    .document-img {
      width: 27rem;
    }
    .document-info {
      width: calc(100% - 27rem);
    }
    .document-info p{
      max-width: 100%;
    }
    .attr-list {
      max-width: 55%;
    }
}
@media(min-width:768px) and (max-width:991.98px){
    main {
        margin-top: 11.15rem;
    }
    h1, .h1, .h1 * {
        font-size: 3.8rem;
        line-height: 4.8rem;
    }
    h2,.h2,.h2 *{
        font-size: 3rem;
        line-height: 3.5rem
    }
    h3,.h3,.h3 *{
        font-size: 2.6rem;
        line-height: 3.6rem
    }
    h4,.h4,.h4 *{
        font-size: 2.3rem;
        line-height: 3.3rem
    }
    h5,.h5,.h5 *{
        font-size: 2rem;
        line-height: 2.6rem
    }
    h6, .h6, .h6 * {
        font-size: 1.7rem;
        line-height: 3rem;
    }
    p {
        margin-bottom: 1.6rem;
    }
    .pb-96 {
      padding-bottom: 6.4rem;
    }
    .pt-96 {
      padding-top: 6.4rem;
    }
    .pt-80 {
        padding-top: 5.6rem;
    }
    .pb-64 {
        padding-bottom: 4.8rem;
    }
    .pt-64 {
        padding-top: 4.8rem;
    }
    .mt-64 {
        margin-top: 4.8rem;
    }
    .mb-64 {
        margin-bottom: 4.8rem;
    }
    .mt-56 {
        margin-top: 4rem;
    }
    .mb-56 {
        margin-bottom: 4rem;
    }
    .pb-48 {
        padding-bottom: 3.2rem;
    }
    .pt-48 {
        padding-top: 3.2rem;
    }
    .mt-48 {
        margin-top: 3.2rem;
    }
    .mb-48 {
        margin-bottom: 3.2rem;
    }
    .mb-40 {
      margin-bottom: 3.2rem;
    }
    .mt-32 {
        margin-top: 2.4rem;
    }
    .mb-24 {
        margin-bottom: 1.6rem;
    }
    .mt-24 {
        margin-top: 1.6rem;
    }
    main {
        margin-top: 7.3rem;
    }
    .footer-block {
        grid-template-columns: repeat(4, 1fr);
        -ms-grid-column: 1.5rem;
        grid-column-gap: 1.5rem;
        -ms-grid-row: 2.4rem;
        grid-row-gap: 2.4rem;
    }
    .footer-item:first-child {
        grid-column: 1 / -1;
    }
    footer a, footer p {
        font-size: 1.3rem;
        line-height: 2rem;
    }
    .footer-brand-list {
        align-items: flex-start;
    }
    .footer-brand-list p{
        margin-top: 1.2rem;
    }
    .footer-brand {
        margin-left: 2.2rem;
        justify-content: flex-start;
    }
    .footer-brand-item{
        margin: 0 3.2rem 0 0;
    }
    .footer-brand-item img {
        max-width: 9rem;
        max-height: 3rem;
    }
    .footer-bottom-link li {
        margin: 0 1rem;
    }
    .contnet ul, .contnet ol {
        margin: 1.6rem 0;
    }
    .contnet li {
        margin-bottom: 1rem;
    }
    .contnet-img {
        margin-bottom: 2.4rem;
    }
    .card-item {
        width: 50%;
    }
    .card-item:nth-child(2n + 1){
        border-left: 0;
    }
    .card-item:nth-child(n + 3){
        margin-top: 5.6rem;
    }
    .card-item:after{
        content: "" !important;
    }
    .card-item:nth-child(-n+2):after {
        content: none !important;
    }
    .card-item:nth-child(2n)::after{
        width: calc(100% - 4rem);
    }
    .card-img img {
        height: 18.3rem;
    }
    .card-info {
        height: calc(100% - 18.3rem);
    }
    .newslatter-block .title{
        width: 100%;
    }
    .socail-list{
        width: 100%;
    }
    .newslatter-form {
        width: 100%;
        margin: 2rem 0;
    }
    .newslatter-form .form-control-white, .newslatter-form .btn {
        height: 4.8rem;
    }
    .banner-text-outer {
        position: relative;
        min-height: 29rem;
        max-width: 70%;
    }
    .banner-text h1 {
        margin-bottom: 1.6rem;
    }
    .banner-btn {
        margin-top: 2.8rem;
    }
    .modal {
        max-width: 74rem;
    }
    .modal-close-cross {
        top: 1.7rem;
    }
    .grid,
    .grid-4{
      grid-gap: 3.2rem 2rem;
      grid-template-columns: repeat(2,1fr);
    }
  .block-grid-icon {
    width: 5.2rem;
    margin-right: 2rem;
  }
  .block-grid {
    grid-column-gap: 6.4rem;
    grid-row-gap: 6.4rem;
  }  
  .block-grid-item::before {
   left: -3.2rem;
  }
  .block-grid-item::after {
    top: -3.2rem;
  }
  .tab-list {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
  .tab-body{
    display: none;
  }
  .tab-item-list > li.active {
    margin-left: 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .tab-item-list > li.active:after{
    content: none;
  }
  .tab-item-list > li > a{
    padding-right: 3rem;
    position: relative;
    display: flex;
    align-items: center;
  }
  .tab-item-list > li > a::after{
    position: absolute;
    right: 1rem;
    content: "";
    background: url(../images/icon-down.png);
    background-size: cover;
    width: 1.6rem;
    height: 1.6rem;
  }
  .tab-item-list > li.active .tab-mobile-content{
    display: block;
    background: var(--tab-body-bg-color);
    padding: 4rem;
  }
  .tab-item-list > li.active a:after{
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .tab-info {
    padding: 0;
    display: block;
  }
  .tab-v1-list {
    width: 25rem;
    padding-right: 1.2rem;
  }
  .tab-v1-list a {
    padding: 1.6rem 2.1rem 1.6rem 2rem;
  }
  .tab-v1-body {
    width: calc(100% - 25rem);
  }
  .box-list {
    grid-gap: 1.6rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .box-item {
    padding: 2rem;
  }
  .block-text-66 {
    width: 100% !important;
  }
  .block-text .h2 {
    margin-bottom: 2rem;
  }
  .block-text p {
    margin-bottom: 2rem;
  }
  .block-banner-text {
    width: 100%;
  }
  .block-banner-text p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  .block-img {
    width: 100%;
    padding-left: 0;
    text-align: center;
    margin-top: 3.2rem;
  }
  .block-text li {
    margin-bottom: 1rem;
    padding-left: 2rem;
  }
  .block-text li::before {
    top: 0.8rem;
  }
  .grid-box-item {
    padding: 2.4rem;
  }
  .grid-box-top {
    margin-bottom: 2.4rem;
  }
  .document-img {
    width: 23rem;
  }
  .document-info {
    width: calc(100% - 23rem);
    padding-left: 3rem;
  }
  .document-info p{
    max-width: 100%;
  }
  .attr-list {
    max-width: 100%;
  }
}
@media(max-width:991.98px){
    body{
        font-size: 1.5rem;
    }
    body.openMenu{
        overflow: hidden;
    }
    .logo img {
        max-width: 9.7rem;
        max-height: 3.1rem;
    }
    .language-icon {
        height: 7.2rem;
    }
    .menu {
        position: fixed;
        top: 7.3rem;
        width: 100%;
        right: -100%;
        background: #fff;
        z-index: 1;
        overflow: hidden;
        overflow-y: auto;
        height: calc(100vh - 7.3rem);
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }
    body.openMenu .menu{
        right: 0;
    }
    body:has(.header-top) .menu{
        top: 11.3rem;
        height: calc(100vh - 11.3rem);
    }
    .menu > ul {
        display: block;
    }
    .menu > ul > li {
        border-bottom: 1px solid var(--submenu-border);
    }
    .menu > ul > li > a {
        padding: 1.2rem 1.5rem;
        margin: auto;
        height: initial;
        justify-content: flex-start;
        max-width: 72rem;
    }
    .menu > ul > li > a::before {
        bottom: -1px;
        height: 0.1rem;
    }
    .menu > ul > li.hasChild > a::after {
        position: absolute;
        right: 1.5rem;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-transform: rotate(0) !important;
        -moz-transform: rotate(0) !important;
        transform: rotate(0) !important;
    }
    .menu > ul > li.hasChild.open > a::after{
        -webkit-transform: rotate(-180deg) !important;
        -moz-transform: rotate(-180deg) !important;
        transform: rotate(-180deg) !important;
    }
    .submenu {
        position: relative;
        top: 0;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: none;
        transition: none;
        display: none;
    }
    .menu > ul > li.hasChild.open .submenu{
        display: block;
    }
    .submenu-list {
        flex-wrap: wrap;
        margin-left: 0 !important;
        margin-top: 0;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .submenu-item {
        width: 100%;
        border-right: 0;
        border-top: 1px solid var(--submenu-border);
        padding: 0.4rem 0;
    }
    .submenu-title {
        padding: 1.2rem 1.5rem 0.8rem;
        font-size: 1.7rem;
        line-height: 2.5rem;
        max-width: 72rem;
        margin: auto;
    }
    .submenu-list-nav {
        padding: 0 1.5rem;
        padding: 0 1.5rem;
        margin: auto;
        max-width: 72rem;
    }
    .submenu-list-nav li:first-child{
        margin-top: 0.5rem;
    }
    .submenu-list-nav li {
        margin-top: 1rem;
    }
    .submenu-list-nav li span {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    .toggleMenu {
        display: flex;
        margin-left: 2.5rem;
    }
    .menu-btn .btn{
        height: 3.5rem;
        font-size: 1.4rem;
    }
}
@media(max-width:767.98px){
    h1, .h1, .h1 * {
        font-size: 3rem;
        line-height: 3.6rem;
    }
    h2,.h2,.h2 *{
        font-size: 2.7rem;
        line-height: 3.5rem
    }
    h3,.h3,.h3 *{
        font-size: 2.4rem;
        line-height: 3rem
    }
    h4,.h4,.h4 *{
        font-size: 2.1rem;
        line-height: 3rem
    }
    h5,.h5,.h5 *{
        font-size: 1.9rem;
        line-height: 2.6rem
    }
    h6,.h6,.h6 *{
        font-size: 1.7rem;
        line-height: 2.2rem
    }
    p {
        margin-bottom: 1.5rem;
    }
    .pb-96 {
      padding-bottom: 5.6rem;
    }
    .pt-96 {
        padding-top: 5.6rem;
    }
    .pt-80 {
        padding-top: 4.8rem;
    }
    .pt-64 {
        padding-top: 4rem;
    }
    .pb-64 {
        padding-bottom: 4rem;
    }
    .pt-64 {
        padding-top: 4rem;
    }
    .mb-64 {
        margin-bottom: 4rem;
    }
    .mb-56 {
        margin-bottom: 3.2rem;
    }
    .mt-56 {
        margin-top: 3.2rem;
    }
    .pb-48 {
        padding-bottom: 3.2rem;
    }
    .pt-48 {
        padding-top: 3.2rem;
    }
    .mt-48 {
        margin-top: 3.2rem;
    }
    .mb-48 {
        margin-bottom: 3.2rem;
    }
    .mb-40 {
      margin-bottom: 3.2rem;
    }
    .mt-32 {
        margin-top: 2.4rem;
    }
    .pb-32 {
        padding-bottom: 2.4rem;
    }
    .pt-32 {
        padding-top: 2.4rem;
    }
    .mb-32 {
        margin-bottom: 2.4rem;
    }
    .mt-24 {
        margin-top: 1.6rem;
    }
    .mb-24 {
        margin-bottom: 1.6rem;
    }
    .d-flex-1 {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
    }
    .header-top{
        height: 9.4rem;
    }
    .header-top-info{
        display: block;
        width: calc(100% - 2rem);
    }
    .header-top-name {
        width: 7.7rem;
        margin-bottom: 8px;
    }
	.header-top-info p {
        display: inline;
        margin: 0px 1rem 0 0;
    }
    .header-top-link {
        display: inline;
    }
    .header-top-close {
        margin-top: 1rem;
    }
    .menu-btn .btn{
        height: 3.2rem;
        font-size: 1.2rem;
        padding: 0 1.5rem;
    }
    .menu-btn {
        margin-left: 1.4rem;
    }
    .toggleMenu {
        margin-left: 1.5rem;
    }
    body:has(.header-top) .menu{
        top: 16.7rem;
        height: calc(100vh - 16.7rem);
    }
    .menu > ul > li > a,
    .submenu-list-nav,
    .submenu-title{
        max-width: 54rem;
    }
    .language-dropdown {
        right: auto;
        min-width: 16rem;
        left: -4rem;
    }
    .lang-item {
        padding: 0 1.5rem;
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    main {
        margin-top: 16.7rem;
    }
    .footer-top {
        padding: 4rem 0;
    }
    .footer-block {
        grid-template-columns: repeat(2, 1fr);
        -ms-grid-column: 1.5rem;
        grid-column-gap: 1.5rem;
        -ms-grid-row: 2.4rem;
        grid-row-gap: 2.4rem;
    }
    .footer-item:first-child {
        grid-column: 1 / -1;
    }
    footer a, footer p {
        font-size: 1.3rem;
        line-height: 1.9rem;
    }
    .footer-brand-list p {
        text-align: center;
    }
    .footer-brand {
        margin-left: 0;
    }
    .footer-brand-item {
        margin: 0 0.8rem;
        margin: 2.4rem 0 0;
        width: 33.33%;
        text-align: center;
        padding: 0 0.4rem;
    }
    .footer-brand-item img {
        margin: 0;
        max-width: 10rem;
        max-height: 3.5rem;
    }
    footer p{
        width: 100%;
        text-align: center;
    }
    .footer-bottom-link,
    .footer-bottom-link ul{
        width: 100%;
        justify-content: center;
    }
    .footer-bottom-link li {
        margin: 0.4rem 0.6rem 0;
    }
    .breadcrumb{
        margin-bottom: -0.8rem;
    }
    .breadcrumb li {
        margin: 0 1rem 0.8rem;
    }
    .breadcrumb li::after {
        left: -1.2rem;
    }
    .contnet-img {
        margin-bottom: 2.4rem;
    }
    .contnet h5 {
        margin-bottom: 1.3rem;
    }
    .contnet ul, .contnet ol {
        margin: 1.5rem 0;
    }
    .contnet li {
        margin-bottom: 0.8rem;
    }
    .contnet table{
        font-size: 1.3rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .contnet table thead,
    .contnet table tbody,
    .contnet table tr{
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    .contnet table th,
    .contnet table td{
        padding: 1rem 1.2rem;
    }
    .card-list {
        margin: 0;
    }
    .card-item {
        width: 100%;
        padding: 0;
        border-top: 1px solid var(--border-color);
        border-left: 0;
        padding-top: 2.4rem;
        margin-top: 2.4rem !important;
    }
    .card-item::after{
        content: none;
    }
    .card-item:first-child{
        border-top: 0;
        padding-top: 0;
        margin-top: 0 !important;
    }
    .card-img img {
        height: 28.6rem;
    }
    .card-info {
        height: calc(100% - 28.6rem);
    }
    .card-item h1, 
    .card-item h2, 
    .card-item h3, 
    .card-item h4, 
    .card-item h5, 
    .card-item h6 {
        font-size: 1.8rem;
        line-height: 2.6rem;
        height: initial;
        max-height: initial;
    }
    .newslatter-block .title{
        width: 100%;
        text-align: center;
    }
    .newslatter-form {
        width: 100%;
        margin: 2rem 0;
    }
    .socail-list {
        width: 100%;
    }
    .socail-list ul{
        justify-content: center;
    }
    .newslatter-form .form-control-white, .newslatter-form .btn {
        height: 4.8rem;
    }
    .banner-text-outer {
        min-height: 30rem;
        max-width: 100%;
    }
    .banner-text h1 {
        margin-bottom: 1.6rem;
    }
    .banner-btn {
        margin-top: 2.4rem;
    }
    .pagination a {
        height: 3.2rem;
        width: 3.2rem;
    }
    .modal-block {
        position: relative;
    }
    .modal-left {
        background: #fafafa;
        border-right: 0;
        padding: 2rem;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    .modal-right {
        width: 100%;
        position: initial;
    }
    .modal-close-cross {
        top: 1.7rem;
        right: 1rem;
    }
    .input-columns.half {
        gap: 0;
        flex-wrap: wrap;
    }
    .modal-body {
        padding: 2.4rem 2rem;
    }
    .input-columns.half .form-group {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .grid{
      grid-gap: 2.4rem;
      grid-template-columns: repeat(1, 1fr);
    }
    .grid-4{
      grid-template-columns: repeat(1, 1fr);
    }
    .grid-icon-80 {
      height: 7rem;
      width: 7rem;
    }
    .block-grid {
      grid-column-gap: 0;
      grid-row-gap: 6.4rem;
      grid-template-columns: repeat(1, 1fr);
    }
    .block-grid-item::before{
      content: none;
    }
    .block-grid-item::after {
      top: -3.2rem;
      content: "" !important;
    }
    .block-grid-item:nth-child(-n + 1):after{
      content: none !important;
    }
    .block-grid-icon {
      margin: 0 auto 1.6rem;
    }
    .block-grid-text {
      width: 100%;
      text-align: center;
  }
  .tab-list {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
  .tab-body{
    display: none;
  }
  .tab-item-list > li.active {
    margin-left: 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .tab-item-list > li.active:after{
    content: none;
  }
  .tab-item-list > li > a{
    padding-right: 3rem;
    position: relative;
    display: flex;
    align-items: center;
  }
  .tab-item-list > li > a::after{
    position: absolute;
    right: 1rem;
    content: "";
    background: url(../images/icon-down.png);
    background-size: cover;
    width: 1.6rem;
    height: 1.6rem;
  }
  .tab-item-list > li.active .tab-mobile-content{
    display: block;
    background: var(--tab-body-bg-color);
    padding: 2.4rem;
  }
  .tab-item-list > li.active a:after{
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .tab-info {
    padding: 0;
    display: block;
  }
  .tab-v1-list {
    width: 100%;
    padding-right: 0;
    margin-bottom: 2.4rem;
  }
  .tab-v1-list a {
    padding: 1.2rem 2.1rem 1.2rem 2.4rem;
  }
  .box-list {
    grid-gap: 1.6rem;
    grid-template-columns: repeat(1, 1fr);
  }
  .block-text-66 {
    width: 100% !important;
  }
  .block-text .h2 {
    margin-bottom: 1.6rem;
  }
  .block-text p {
    margin-bottom: 1.6rem;
  }
  .block-banner-text {
    width: 100%;
  }
  .block-banner-text p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  .block-img {
    width: 100%;
    padding-left: 0;
    text-align: center;
    margin-top: 2.4rem;
  }
  .block-text li {
    margin-bottom: 1rem;
    padding-left: 2rem;
  }
  .block-text li::before {
    top: 0.8rem;
  }
  .grid-box-item {
    padding: 2.4rem;
  }
  .grid-box-top {
    margin-bottom: 2.4rem;
  }
  .document-info {
    width: 100%;
    padding-left: 0;
    margin-top: 2.4rem;
  }
  .document-info p{
    max-width: 100%;
  }
  .attr-list {
    max-width: 100%;
  }
  .document-img {
    width: 21rem;
    margin: auto;
  }
  .modal-message p {
    font-size: 1.8rem;
  }
}
@media(max-width:575.98px){
    .card-img img {
        height: 52vw;
    }
    .card-info {
        height: calc(100% - 52vw);
    }
}