@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;400;500;700&display=swap');
* { scroll-behavior: smooth; }
:root {
    --base-font-size: 30px;
    --base-font: 'Kanit', sans-serif;
    --red: #FF0000;
    --orange: #F8B600;
    --dark-blue: #222B60;
    --dirty-white: #F7FBFF;
    --gray: #7188A4;
    --dark-gray: #7188A4;
    --solid-gray: #E6E6E6;
    --solid-green: #339999;
    --green: #008615;
    --black: #141414;
    --white: #fff;
    --orange: #f8b600;
    --padding-5px: 5px;
    --padding-10px: 10px;
    --padding-15px: 15px;
    --padding-20px: 20px;
    --padding-30px: 30px;
    --padding-40px: 40px;
    --padding-50px: 50px;
    --margin-5px: 5px;
    --margin-10px: 10px;
    --margin-15px: 15px;
    --margin-20px: 20px;
    --margin-30px: 30px;
    --margin-40px: 40px;
    --margin-50px: 50px;
    --border-radius: 5px;
}
html {}
body {
    font-family: var(--base-font);
    font-weight: normal;
    line-height: 1.5rem;
    color: var(--black);
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: calc(16px + (26 - 16) * ((100vw - 300px) / (1600 - 300)));
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust:100%;
    -ms-text-size-adjust:100%;
}
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}
::selection {
    background: #b3d4fc;
    text-shadow: none;
}
/*Global*/
p{
    line-height: 1.4;
}
a{ text-decoration: none; transition: 0.5s; position: relative; }
a:hover{ color: var(--white); }
a.link-effect::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--white);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
a.link-effect:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}
a.black{ text-decoration: none; transition: 0.5s; color: var(--black); }
a.black:hover{ color: var(--gray); }

a.gray{ text-decoration: none; transition: 0.5s; color: var(--gray); }
a.gray:hover{ color: var(--solid-gray); }

.color-dark-blue{
    color: var(--dark-blue);
}
a.color-dark-blue{
    color: var(--dark-blue);
}

.margin-reset{ padding: 0; margin: 0; }
.margin-seperator{
    margin-top: 60px;
    margin-bottom: 60px;
}

.owl-carousel .owl-item img, .owl-carousel .owl-item picture img{ width: 100%; z-index: 0; }
.dotted { border-top: 1px #454545 dotted; margin-top: 5px; margin-bottom: 5px; }

.border{ box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px; }
.border:hover{ box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px; }

.button-light{
    border: var(--orange) solid 3px;
    border-radius: 20px;
    font-size: 14px;
    padding: 10px 30px 10px 30px;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.button-light:hover{
    background-color: var(--orange);
    color: var(--white);
}
.font-white{
    color: #ffffff;
}
.font-size16{
    font-size: 16px;
}
.font-weight-bold{
    font-weight: bold;
}
.top-20{
    top: 20px;
}

.text-tiny{
    font-size: 36px;
    font-weight: 100;
    line-height: 1.1;
}
.text-title{
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
}
.text-tiny a, .text-title a, a .text-tiny, a .text-title{
    color: var(--black);
}

._featureImage{
    overflow: hidden;
    margin-top: 20px;
    border-bottom: #222B60 solid 10px;
    border-radius: 8px;
}
._featureImage img{
    -webkit-animation: zoomin 15s ease-in infinite;
    animation: zoomin 15s ease-in infinite;
    transition: all 1s ease-in-out;
}

.overflow-auto-x{
    overflow-x: auto;
}
nav{
    z-index: 2;
    color: var(--white);
}
nav a{
    color: var(--white);
}
nav ul li{
    list-style: none;
}
.overlay-slider {
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    display:inline-block;
    z-index: 1;
    background: linear-gradient(to top, rgba(35, 45, 97, 0.6) 0%, rgba(21, 131, 133, 0.5) 78%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#232c61', endColorstr='#1b8385',GradientType=0 );
}
header nav .logo{
    margin-top: 14px;
    text-align: right;
    position: relative;
}
header nav .logo div{
    /*width: 120px;
    background-color: #fff;
    position: absolute;
    top: -50px;
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    right: 0;*/


    width: 120px;
    background-color: var(--dirty-white);
    position: absolute;
    top: -50px;
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    right: 0;

}
header nav .logo div img{
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.1));
    width: 80px;
}
header nav ul li a{
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 19px;
}
header nav ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--white);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
header nav ul li a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}
header nav ul li.has-sub:hover:after{
    display: block;
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-bottom: solid 0.6rem #fff;
    border-left: solid 0.6rem transparent;
    border-right: solid 0.6rem transparent;
    top: 6.6rem;
}
.menu ul li:last-child img{
width: 50px;
margin-top: -4px;
}

header nav .menu-group{
    align-items: center!important;
    margin-top: 40px;
}

header .right-block{
margin-top: -20px;
}
header .language{
max-width: 167px;
}
header .language svg{
width: 16px;
margin-top: 2px;
}
header .language a span{
font-size: 14px;
font-weight: normal;
}
.header-container{ padding: 0; margin-bottom: 120px; }
header nav{
    z-index: 2;
    position: relative;
    padding-top: var(--padding-30px);
}
header nav ul{
    margin-top: 20px;
}
header nav ul li{
    float: left;
    margin-left: 15px;
}
header nav ul li:first-child{
    margin-left: 0;
}
header nav.menu .hamburger-link{
    display: none;
}
header nav.menu .hamburger-link a, header nav.menu .hamburger-link a::before{
    border: none !important;
    background-color: transparent;
    transform: none;
}
header::after{
    content: '';
    height: 12px;
    background-color: var(--solid-green);
    position: absolute;
    width: 100%;
}
.sub-menu{
    position: absolute;
    padding: 30px 30px 30px 40px;
    left: 80px;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 740px;
    height: 200px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0.4rem 0.5rem 0 rgb(0 0 0 / 14%);
    -webkit-box-shadow: 0 0.4rem 0.5rem 0 rgb(0 0 0 / 14%);
    box-sizing: border-box;
    line-height: 1;
    background-color: #fff;
    border-radius: 0.4rem;
    top: 7.1rem;
    z-index: 1;
    will-change: transform;
    -webkit-transform: translate3d(0,-0.5rem,0);
    -ms-transform: translate3d(0,-.5rem,0);
    transform: translate3d(0,-0.5rem,0);
    -webkit-transition: opacity .3s cubic-bezier(.25,.46,.45,.94),transform .4s ease;
    transition: opacity .3s cubic-bezier(.25,.46,.45,.94),transform .4s ease;
}
.sub-menu:after {
    content: ' ';
    display: block;
    clear: both;
    height: 0;
    overflow: hidden;
}
.sub-menu.open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.sub-menu .sector-item{
    padding: 10px;
    min-width: 130px;
}
.sub-menu .row{
    flex-wrap: nowrap;
}
.sub-menu .sector-item i, .sub-menu .sector-item p{
    box-shadow: none;
    text-shadow: none;
}

/*Mega Menu*/
.mega-menu{
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
    /*display: inline-block;*/
    left: 0;
    top: 0;
    margin: 0;
    z-index: 3;
    background-color: #f8b600;
    will-change: transform;
    -webkit-transform: translate3d(0,-0.5rem,0);
    -ms-transform: translate3d(0,-.5rem,0);
    transform: translate3d(0,-0.5rem,0);
    -webkit-transition: opacity .3s cubic-bezier(.25,.46,.45,.94),transform .4s ease;
    transition: opacity .3s cubic-bezier(.25,.46,.45,.94),transform .4s ease;
    background: linear-gradient(to top, rgba(35, 45, 97, 0.6) 0%, rgba(21, 131, 133, 0.5) 78%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#232c61', endColorstr='#1b8385',GradientType=0 );
}
.mega-menu.open {
    opacity: 1;
    visibility: visible;
    display: block;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.mega-menu .close {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 4;
}
.mega-menu .mega-menu-block{
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    background: rgb(27,131,133);
    background: -moz-linear-gradient(277deg, rgba(27,131,133,1) 23%, rgba(35,44,97,1) 100%);
    background: -webkit-linear-gradient(277deg, rgba(27,131,133,1) 23%, rgba(35,44,97,1) 100%);
    background: linear-gradient(277deg, rgba(27,131,133,1) 23%, rgba(35,44,97,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b8385",endColorstr="#232c61",GradientType=1);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-bottom: solid 12px var(--solid-green);
    color: var(--dirty-white);
    padding-top: 150px;
}


.mega-menu .mega-menu-block h3{
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}
.mega-menu .mega-menu-block p{
    font-size: 18px;
    font-weight: normal;
}
.mega-menu .video-component:before{
    right: 110px;
}
.mega-menu-block .mega-menu-products{
    padding-left: 20px;
}
.mega-menu-block .mega-menu-products h1{
    margin-bottom: 15px;
    font-size: 54px;
}
.mega-menu-block .read-more.mega{
    margin-bottom: 10px;
}
.mega-menu-block .mega-menu-products .box{
    background-color: var(--dirty-white);
    margin-right: 20px;
    margin-bottom: 10px;
    height: 140px;
    width: 450px;
    border-bottom: var(--dark-blue) solid 10px;
    overflow: hidden;
    padding: 22px;
    -webkit-box-shadow: 0px 3px 12px -6px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 3px 12px -6px rgba(0,0,0,0.75);
    box-shadow: 0px 3px 12px -6px rgba(0,0,0,0.75);
    float: left;
    border-radius: 5px 5px 0px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.mega-menu-block .mega-menu-products .box:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.mega-menu-block .mega-menu-products .box .title{
    font-size: 31px;
    font-weight: bold;
    margin-bottom: 10px;
}
.mega-menu-block .mega-menu-products .box p{
    font-size: 14px;
    font-weight: normal;
}
.mega-menu-block .mega-menu-products .box a{
    color: var(--dark-blue);
}
.mega-menu-block .mega-menu-products .box a:hover{
    color: var(--solid-green);
}

/*Mega Menu*/

/*Mobile Menu*/
.mobile-menu{
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    margin: 0;
    display: inline-block;
    z-index: 2;
    background-color: #f8b600;
    background: linear-gradient(to top, rgba(35, 45, 97, 0.9) 0%, rgba(21, 131, 133, 0.8) 78%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#232c61', endColorstr='#1b8385',GradientType=0 );
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    display: block;
}
.mobile-menu .close {
    width: 50px;
    text-align: right;
    position: absolute;
    right: 60px;
    top: 65px;
}
.mobile-menu .close i{
    font-size: 34px;
    color: var(--white);
}
.mobile-menu .title{
    padding: 10px;
    font-size: 36px;
    font-weight: bold;
    margin-left: 44px;
    display: none;
    margin-bottom: 20px;
}
.mobile-menu .prev{
    padding: 10px;
    width: 50px;
    float: left;
    display: none;
}
.mobile-menu .logo{
    width: 100%;
    margin-bottom: 30px;
}
.mobile-menu .logo img{
    width: 50px;
}

.mobile-menu-content{
    background: rgb(27,131,133);
    background: -moz-linear-gradient(277deg, rgba(27,131,133,1) 23%, rgba(35,44,97,1) 100%);
    background: -webkit-linear-gradient(277deg, rgba(27,131,133,1) 23%, rgba(35,44,97,1) 100%);
    background: linear-gradient(277deg, rgba(27,131,133,1) 23%, rgba(35,44,97,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b8385",endColorstr="#232c61",GradientType=1);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-bottom: solid 12px var(--solid-green);
    color: var(--dirty-white);
    padding: 40px;
}
.mobile-menu-box{
    margin-top: 5px;
}
.mobile-menu-box ul{
    margin: 0;
    padding: 0;
}
.mobile-menu-box ul li{
    padding: 5px;
    list-style: none;
    margin-bottom: 4px;
}

.mobile-menu-sub{
    opacity: 0;
    visibility: hidden;
    display: none;
    overflow-x: scroll;
}
.mobile-menu-sub.open{
    opacity: 1;
    visibility: visible;
    display: block;
}
.mobile-menu-box ul li.has-sub:after{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f35a";
    position: absolute;
    right: 60px;
}
/*Mobile Menu*/



.exchange-box{
    background-color: var(--orange);
    padding: 10px;
    border-radius: 11px;
    text-align: right;
    cursor: pointer;
    width: 140px;
    margin-top: 12px;
    position: absolute;
    right: 10px;
}
.exchange-box:hover .data-box .other{
display: block !important;
}
.exchange-box h3{
color: var(--black);
font-size: 14px;
font-weight: bold;
margin-bottom: 1px;
text-align: left;
}
.exchange-box .data-box{
font-size: 14px;
font-weight: bold;
color: var(--black);
}
.exchange-box .data-box .date{
font-size: 12px;
font-weight: normal;
}
.exchange-box .data{
text-align: right;
font-size: 15px;
margin-top: -3px;
}
.exchange-box .up{
color: var(--green);
}
.exchange-box .up:before{
content: '';
position: absolute;
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMS4wNCAxMi42MyI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOnJlZDt9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IkxheWVyXzIiIGRhdGEtbmFtZT0iTGF5ZXIgMiI+PGcgaWQ9IkdyaWQiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIuMSwwQTIuMSwyLjEsMCwwLDAsLjYxLjY0YTIuMTEsMi4xMSwwLDAsMCwwLDNMOSwxMmEyLjEsMi4xLDAsMSwwLDMtM0wzLjU4LjY0QTIuMDksMi4wOSwwLDAsMCwyLjEsMFoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xOC45NCwwYTIuMDksMi4wOSwwLDAsMC0xLjQ4LjYxTDksOS4wNWEyLjEsMi4xLDAsMSwwLDMsM2w4LjQzLTguNDNhMi4xLDIuMSwwLDAsMCwwLTNBMi4wNiwyLjA2LDAsMCwwLDE4Ljk0LDBaIi8+PC9nPjwvZz48L3N2Zz4=");
background-repeat: no-repeat;
height: 10px;
width: 10px;
margin-left: -13px;
margin-top: 5px;
transform: rotate(180deg);
-webkit-filter: grayscale(100%) brightness(80%) sepia(100%) hue-rotate(50deg) saturate(1000%) contrast(0.8);
filter: grayscale(100%) brightness(80%) sepia(100%) hue-rotate(50deg) saturate(1000%) contrast(0.8);
}
.exchange-box .down{
color: var(--red);
}
.exchange-box .down:before{
content: '';
position: absolute;
background-image: url("../img/exchange-arrow.svg");
background-repeat: no-repeat;
height: 18px;
width: 18px;
margin-left: -22px;
margin-top: 7px;
}
.slider{
    /*height: 80vh;
    min-height: 35rem;*/
    height: 640px;
    overflow-y: hidden;
    position: relative;
    margin-top: -150px;
    align-items: center;
    justify-content: center;
}
.slider .pics .text-block{
    z-index: 3;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.slider .video{
    width: 100%;
    height: auto;
}
.slider picture img{
    width: 100%;
    height: 100%;
}
.slider h2{
    font-size: 76px;
    font-weight: bold;
    color: var(--dirty-white);
    text-shadow: 2px 2px rgba(0,0,0,.5);
}
.slider .line{
    height: 8px;
    border-radius: 2px;
    width: 30%;
    left: 0;
    right: 0;
    margin: 10px auto 10px auto;
    background-color: var(--orange);
}
/*Slider Product Box*/
.header-products{
    z-index: 1;
    margin-top: -120px;
    position: absolute;
    overflow-x: hidden;
    width: 90%;
    right: 0px;
    padding-left: 6px;
}
.header-products::before{
    content: "";
    position: absolute;
    z-index: 3;
    width: 200px;
    height: 100%;
    right: -128px;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(270deg, rgba(255,255,255,1) 80%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(255,255,255,1) 80%, rgba(255,255,255,0) 100%);
    background: linear-gradient(270deg, rgba(255,255,255,1) 80%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.header-products .owl-nav{
    display: none;
}
.header-products .owl-item{
    float: left;
}
.header-products .box{
    background-color: var(--dirty-white);
    margin-right: 20px;
    height: 190px;
    width: 400px;
    border-bottom: var(--dark-blue) solid 10px;
    overflow: hidden;
    padding: 30px;
    /*-webkit-box-shadow: 0px 3px 12px -6px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 3px 12px -6px rgba(0,0,0,0.75);
    box-shadow: 0px 3px 12px -6px rgba(0,0,0,0.75);*/
    float: left;
    border-radius: 5px 5px 0px 0px;
    transition: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.header-products .box:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.header-products .box .title{
    font-size: 31px;
    font-weight: bold;
    margin-bottom: 10px;
}
.header-products .box p{
    font-size: 17px;
    font-weight: normal;
}
.header-products .box a{
    color: var(--dark-blue);
}
.header-products .box a:hover{
    color: var(--solid-green);
}
.header-products-sub{
    position: relative;
    margin-top: 60px;
}
.header-products .box{
    margin-bottom: 40px;
}
/*Slider Product Box*/

/*Footer*/
footer{
    background-color: #232c61;
}
footer{

}
footer .logo-group{
    width: 300px;
}
footer .logo-group .logo{
    width: 130px;
    text-align: center;
    background-color: #ffffff;
    padding: 12px;
    border-radius: 0 0 10px 10px;
    margin-bottom: 16px;
    -webkit-box-shadow: 0px 9px 12px -4px rgba(48,48,48,1);
    -moz-box-shadow: 0px 9px 12px -4px rgba(48,48,48,1);
    box-shadow: 0px 9px 12px -4px rgba(48,48,48,1);
}
footer .logo-group .logo img{
    width: 70px;
}
footer .logo-group p{
    font-size: 12px;
    color: #ffffff;
    line-height: 1.9;
}
footer .copyright{
    color: #ffffff;
    font-size: 14px;
    padding-bottom: 30px;
    margin-top: 40px;
}
footer .copyright a{
    color: #ffffff;
}
footer .social-group{
    line-height: 0.9;
}
footer .social-group ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .social-group ul li{
    margin-bottom: 3px;
}
footer .social-group img{
    width: 70px;
}
footer .menu-group ul{
    margin: 0;
    border-right: solid thin #fff;
    padding-right: 24px;
}
footer .menu-group ul li{
    list-style: none;
    line-height: 1.1;
    text-align: right;
}
footer .menu-group ul li a{
    color: #ffffff;
    font-size: 14px;
}
footer .social-group ul li{
    margin-bottom: 13px;
}
footer .social-group ul li:last-child{
    margin-bottom: 0;
}
/*Footer*/

/*sticky-banner*/
.sticky-banner{
    position: absolute;
    width: 90px;
    height: 100px;
    background-color: var(--dirty-white);
    right: 0;
    top: 300px;
    border-radius: 8px 0 0 8px;
    padding: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    cursor: pointer;
    z-index: 2;
}
.sticky-banner p{
    font-size: 12px;
    margin-bottom: 0px;
    text-align: center;
    line-height: 1.4;
    margin-top: 4px;
    color: var(--dark-blue);
}
/*sticky-banner*/

/*Video Component*/
.video-component{
    background: rgb(27,131,133);
    background: -moz-linear-gradient(277deg, rgba(27,131,133,1) 23%, rgba(35,44,97,1) 100%);
    background: -webkit-linear-gradient(277deg, rgba(27,131,133,1) 23%, rgba(35,44,97,1) 100%);
    background: linear-gradient(277deg, rgba(27,131,133,1) 23%, rgba(35,44,97,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b8385",endColorstr="#232c61",GradientType=1);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 8px;
    height: 100px;
    overflow: hidden;
    transition: 0.5s;
}
.video-component:hover{
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}
.video-component .content{
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: left;
    height: 100%;
    padding-left: 40px;
}
.video-component .content h4{
    font-size: 16px;
    margin-left: 0px;
    margin-top: 10px;
}
.video-component .content img{
    width: 36px;
    margin-right: 20px;
    float: left;
}
.video-component:before{
    content: '';
    position: absolute;
    background-image: url("../img/repeat-bg-01.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 300px;
    height: 100px;
    right: 54px;
    z-index: 0;
}
/*Video Component*/

/*Banner Component*/
.banner-component{
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 8px;
    background-image: url("../img/banner-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    transition: 0.5s;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}
.banner-component, .banner-component .row, .banner-component .banner-text-block, .banner-component .banner-image-block{
    height: 319px;
}
.banner-component:hover{
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    transform: translate3d(0px, 0px, 0px) scale3d(0.98, 0.98, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg) !important;
    transform-style: preserve-3d;
}
.banner-component .banner-image-block img{
    height: 100%;
}
.banner-component .banner-text-block{
    display: grid;
    align-items: center;
    justify-content: center;
    padding-left: 70px;
    text-align: center;
}
/*Banner Component*/

/*Modal Component*/
.modal-component {
    content:'';
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(35, 45, 97, 0.6) 0%, rgba(21, 131, 133, 0.5) 78%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#232c61', endColorstr='#1b8385',GradientType=0 );
    overflow: scroll;
    opacity: 0;
    visibility: hidden;
    display: none;

    will-change: transform;
    -webkit-transform: translate3d(0,-0.5rem,0);
    -ms-transform: translate3d(0,-.5rem,0);
    transform: translate3d(0,-0.5rem,0);
    -webkit-transition: opacity .3s cubic-bezier(.25,.46,.45,.94),transform .4s ease;
    transition: opacity .3s cubic-bezier(.25,.46,.45,.94),transform .4s ease;
}

.modal-component.open {
    opacity: 1;
    visibility: visible;
    display: block;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.modal-component ._modal-header{
    background-color: var(--dirty-white);
    padding: 30px;
    border-radius: 8px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 50%;
    min-height: 100px;
}
.modal-component ._modal-header .close{
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: 0;
    opacity: 0.3;
}
.modal-component ._modal-header .close:hover {
    opacity: 1;
}
.modal-component ._modal-header .close:before, .modal-component ._modal-header .close:after {
    position: absolute;
    left: -4px;
    top: 19px;
    content: ' ';
    height: 27px;
    width: 2px;
    background-color: #333;
}
.modal-component ._modal-header .close:before {
    transform: rotate(45deg);
}
.modal-component ._modal-header .close:after {
    transform: rotate(-45deg);
}
.modal-component ._modal-content{
    margin-top: 30px;
}
.modal-component ._modal-content video{
    width: 100%;
    border-radius: 5px;
}
/*Modal Component*/

/*Slider Owl Dots*/
.slider .owl-dots {
    z-index: 3;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 390px;
    text-align: center;
}
.slider .owl-dots button.owl-dot {
    height: 2px;
    width: 48px;
    margin-right: 0.75rem;
    border-radius: 1px;
    background-color: hsla(0,0%,100%,.2);
}
.slider .owl-dots button.owl-dot.active {
    background-color: var(--orange);
}
.slider .owl-dots button.owl-dot:focus {
    outline: none;
}
/*Owl Dots*/

/*Main About Us*/
.main-about-us{
}
.main-about-us h3{
    font-weight: bold;
    font-size: 48px;
}
.main-about-us p{
    line-height: 1.5;
    padding: 10px 10px 0 0;
    font-size: 20px;
}
.main-about-us a{
    font-style: italic;
    font-weight: bold;
    font-size: 22px;
}
.main-about-us img{
    margin-top: 20px;
    border-bottom: #222B60 solid 10px;
    border-radius: 8px;
}
/*Main About Us*/

/*Main Blog Component*/
.blog-main-component{
    border-radius: 8px;
    background-color: var(--solid-green);
    min-height: 320px;
}
.blog-main-component .blog-main-text-block{
    display: grid;
    align-items: center;
    justify-content: end;
    text-align: right;
}
.blog-main-component .blog-main-text-block div{
    max-width: 90%;
}
.blog-main-component .blog-main-text-block .text-tiny{
    font-size: 32px;
    color: #ffffff;
}
.blog-main-component .blog-main-text-block .text-title{
    font-size: 52px;
    color: #ffffff;
    line-height: 1;
}
.blog-main-component .blog-main-text-block a{
    margin-right: 40px;
    top: 14px;
    font-size: 42px;
    color: var(--dark-blue);
}
.blog-main-component .blog-main-image-block, .blog-main-component .blog-main-image-block img, .blog-main-component .blog-main-image-block video{
    border-radius: 0 8px 0 0;
}
.blog-main-component .blog-main-image-block{
    height: 371px;
}
.blog-main-component .blog-main-image-block .video{
    width: 100%;
    height: auto;
    filter: brightness(50%);
}
.blog-main-component .bottom-block{
    background-color: var(--dark-blue);
    padding: 30px;
    border-radius: 0 0 8px 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.blog-main-component .bottom-block a{
    color: var(--white);
    font-weight: bold;
}

/*Main Blog Component*/

/*Main News Component*/
.main-news-component .main-news-block .news-item{
    transition: 0.5s;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}
.main-news-component .main-news-block .news-item:hover{
    transform: translate3d(0px, 0px, 0px) scale3d(0.98, 0.98, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}
.main-news-component .text-tiny{
    font-size: 18px;
}
.main-news-component .main-news-block .news-item div{
    min-height: 200px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    text-align: center;
}
.main-news-component .main-news-block h4{
    margin-bottom: 20px;
    text-align: left;
}
.main-news-component .main-news-block h4 a{
    line-height: 1.3;
    font-weight: bold;
    font-size: 23px;
}
.main-news-component .main-news-block p{
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 40px;
    text-align: left;
}
.main-news-component .main-news-block .news-item img{
    border-radius: 8px;
    margin-bottom: 30px;
    width: 100%;
    max-height: 240px;
}
.main-news-component .main-news-block .news-item .read-more{
    text-align: left;
}
#main-news-component .main-news-block {
    overflow: visible;
    flex-wrap: nowrap;
    padding: 0;
    display: flex;
    width: 100%;
    margin-bottom: 40px;
}
#main-news-component .main-news-block .news-item{
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    flex-grow: 1;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33%;
}
.read-more{
    border-radius: 8px;
    padding: 10px;
    background-color: var(--dark-blue);
    color: #ffffff;
    font-size: 12px;
}
.read-more.mega{
    padding: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    font-size: 18px;
    max-width: 920px;
}
.save{
    border-radius: 8px;
    max-width: 150px;
    font-size: 20px;
    text-align: center;
    padding: 10px;
    background-color: var(--dark-blue);
}
.save a{
    color: #ffffff;
}
/*Main News Component*/

/*Main Sector Component*/
.main-sector-component .text-tiny{
    font-size: 18px;
}
.main-sector-component .sector-block{
    margin-top: 20px;
}

.main-sector-component .sector-block {
    overflow: visible;
    flex-wrap: wrap;
    padding: 0;
    display: flex;
    width: 100%;
}
.sector-item{
    background-color: #f3faff;
    border-radius: 8px;
    box-shadow: rgb(0 0 0 / 10%) 0px 2px 2px -3px, rgb(0 0 0 / 5%) 0px 4px 6px -2px;
    color: var(--dark-gray);
    text-align: center;
    transition: 0.5s;
    cursor: pointer;
    letter-spacing: 2px;
    line-height: 1.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    flex-grow: 1;
    flex: 1;
    padding: 16px;
    min-height: 130px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sector-item:hover a:before{
    background-color: transparent;
    display: none;
}
.sector-item i{
    font-size: 48px;
}
.sector-item:hover a{
    color: var(--dark-blue);
}
.sector-item a{
    color: var(--dark-gray);
}
.sector-item p{
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: bold;
}
/*Main Sector Component*/


/*Main Certificates*/
.main-certificates .left-block .top-block{
    background-color: var(--solid-green);
    color: #ffffff;
    border-radius: 8px 8px 0 0;
    padding: 30px;
    min-height: 300px;
    display: grid;
    align-items: end;
    justify-content: end;
    text-align: right;
}
.main-certificates .bottom-block{
    background-color: var(--dark-blue);
    padding: 30px;
    border-radius: 0 0 8px 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    text-align: right;
    color: #ffffff;
}
.main-certificates .bottom-block a{
    color: var(--white);
}
.main-certificates .certificate-item{
    margin-bottom: 40px;
}
.main-certificates .certificate-item .certificate-block{
    min-height: 383px;
    background-color: #e6e6e6;
    padding: 20px;
    overflow: hidden;
    border-radius: 8px;
    text-align: center;
    color: var(--dark-gray);
}
.main-certificates .certificate-item .certificate-block .image{
    overflow: hidden;
    cursor: pointer;
}
.main-certificates .certificate-item .certificate-block .image img{
    /*height: 200px;*/
    margin-bottom: 20px;
    text-align: center;
}


.main-certificates .right-block #certificate-block {
    overflow: hidden;
    flex-wrap: nowrap;
    padding: 0;
    display: flex;
    width: 100%;
}
.main-certificates .right-block #certificate-block .certificate-item{
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    /*flex-grow: 1;
    flex: 1;*/
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33%;
}


/*Main Certificates*/

/*Main References*/
.main-references{
    margin-top: 120px;
}
#owl-partners .item img {
    filter: grayscale(100%);
    width: auto;
}
#owl-partners .owl-stage-outer {
    height: 522px;
    margin-top: -50px;
}
#owl-partners.owl-carousel .owl-dots{
    text-align: center;
}
#owl-partners.owl-carousel button.owl-dot{
    width: 14px;
    height: 10px;
    background-color: var(--dark-gray);
    border-radius: 8px;
    margin-left: 5px;
    margin-right: 5px;
}
#owl-partners.owl-carousel button.owl-dot.active{
    width: 21px;
    background-color: #5f4f3a;
}
.partner-box {
    border: 2px solid rgba(0, 0, 0, .05);
    border-radius: 5px;
    transition: all .3s ease;
    /*width: 190px;*/
    height: 190px;
    margin-bottom: 30px;
    margin-right: 10px;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: center;
}
.partner-box:hover {
    cursor: pointer;
    border: 1px solid var(--solid-green);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}
#owl-partners .owl-item:first-child{
    margin-top: 0;
}
#owl-partners .owl-item:nth-child(2n){
    margin-top: 100px;
}
#owl-partners .owl-item:nth-child(3n){
    margin-top: 50px;
}
/*Main References*/



/*Main Gallery*/
.main-gallery{
    margin-top: 120px;
}
#owl-gallery .item img {
    border-radius: 5px;
    height: 100%;
}
#owl-gallery .owl-stage-outer {
    height: 522px;
    margin-top: -50px;
}
#owl-gallery.owl-carousel .owl-dots{
    text-align: center;
}
#owl-gallery.owl-carousel button.owl-dot{
    width: 14px;
    height: 10px;
    background-color: var(--dark-gray);
    border-radius: 8px;
    margin-left: 5px;
    margin-right: 5px;
}
#owl-gallery.owl-carousel button.owl-dot.active{
    width: 21px;
    background-color: #5f4f3a;
}
.gallery-box {
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 5px;
    transition: all .3s ease;
    width: 95%;
    height: 190px;
    margin-bottom: 30px;
    margin-right: 10px;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.gallery-box:hover {
    cursor: pointer;
    border: 2px solid var(--solid-green);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}
#owl-gallery .owl-item:first-child{
    margin-top: 0;
}
#owl-gallery .owl-item:nth-child(2n){
    margin-top: 100px;
}
#owl-gallery .owl-item:nth-child(3n){
    margin-top: 50px;
}
/*Main Gallery*/


/*Global*/

