html {
  color: #222222;
}

* {
  box-sizing: border-box;
}

:root {
  --extra-color: #427de5;
  --border-color: #e7e7e77d;
  --text-color: rgb(88, 89, 91);
  --main-color: #262262;
  --block-bg: #2C62AE;
  --body-color: #f6f6f6;
  --button-color: #ff8412;
  --bg-color:#e4e5e1;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Helvetica/helvetica-neue-regular.ttf");
  src: url("fonts/Helvetica/helvetica-neue-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/Helvetica/helvetica-neue-medium.ttf");
  src: url("fonts/Helvetica/helvetica-neue-medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/Helvetica/helvetica-neue-bold.ttf");
  src: url("fonts/Helvetica/helvetica-neue-bold.ttf") format("truetype");
}
@font-face {
  font-family: "MarcellusRegular";
  src: url("../fonts/Marcellus-Regular.ttf");
}
@font-face {
  font-family: "JostMedium";
  src: url("../fonts/Jost-Medium.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Montserrat-Light.otf");
  src: url("../fonts/Montserrat-Light.otf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.otf");
  src: url("../fonts/Montserrat-Regular.otf") format("truetype");
}
@font-face {
  font-family: "MontserratBold";
  src: url("../fonts/Montserrat-Bold.otf");
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
legend,
input,
button,
textarea,
p,
blockquote {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", "Roboto", Helvetica, Arial, "DejaVu Sans", "Liberation Sans", Freesans, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #e4e5e1;
  font-size: 16px;
  color: #2a2d33;
  line-height: 23px;
}

.fieldset {
  margin: 0;
  padding: 10px;
}

th,
td {
  margin: 0;
}

a {
  color: #333;
  text-decoration: none;
  -moz-transition: all 0.2s ease-in 0;
  -webkit-transition: all 0.2s ease-in;
  -webkit-transition-delay: 0;
  transition: all 0.2s ease-in 0;
}

.menu_search .page-button {
  margin: 0 0px 0.2rem 30px;
}

.page-button,
.small-screen-button {
  transition: all 0.5s ease-in-out;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: right;
}
.page-button:hover a,
.small-screen-button:hover a {
  color: #fff;
  background-color: var(--block-bg);
}
.page-button a,
.small-screen-button a {
  text-transform: uppercase;
  line-height: 22px;
  padding: 12px 40px;
  background-color: var(--button-color);
  font-weight: 600;
}
@media screen and (max-width: 990px) {
  .page-button,
  .small-screen-button {
    display: block;
  }
}

a:hover {
  color: var(--main-color);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.hide {
  display: none;
}

.show {
  width: 30%;
}

.red,
.label_error {
  color: red;
}

.redborder {
  border: 1px solid red;
}

.bold {
  font-weight: bold;
}

.comments {
  margin-bottom: 30px;
}

img {
  border: 0;
  max-width: 100%;
  transition: 0.4s;
}

input[type=checkbox] {
  position: absolute;
  z-index: -99999;
  opacity: 0;
  visibility: hidden;
  display: none !important;
  visibility: hidden !important;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var,
optgroup {
  font-style: inherit;
  font-weight: inherit;
}

del,
ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

.small-screen-button {
  display: none;
}

h2 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: "MarcellusRegular";
  font-size: 50px;
  font-weight: 400;
  line-height: 56px;
}
@media screen and (max-width: 990px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 25px;
    line-height: 40px;
  }
}
@media screen and (max-width: 400px) {
  h2 {
    font-size: 22px;
    line-height: 40px;
  }
}

h3 {
  line-height: 30px;
  font-family: "MarcellusRegular";
}
@media all and (max-width: 990px) {
  h3 {
    font-size: 18px;
  }
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000000;
  font-weight: bold;
  padding: 0 8px;
}

figure {
  margin: 0;
  text-align: center;
  margin-bottom: 12px;
}

.figcaption {
  font-style: italic;
}

input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  outline: none;
}

input,
button,
textarea,
select {
  *font-size: 100%;
}

table {
  font: 100%;
  border-collapse: collapse;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

select {
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #333333 50%), linear-gradient(135deg, #333333 50%, transparent 50%), linear-gradient(to right, #fff, #fff);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
}
select:focus {
  background-image: linear-gradient(45deg, white 50%, transparent 50%), linear-gradient(135deg, transparent 50%, white 50%), linear-gradient(to right, gray, gray);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  border-color: grey;
  outline: 0;
}

.clear,
.clearfix {
  clear: both;
}

.cls::after {
  content: "";
  display: block;
  clear: both;
}

.hidden,
.hide,
.hiden {
  display: none;
}

.pagination {
  text-align: center;
  margin: 20px 0;
}

.pagination .current {
  background: none repeat scroll 0 0 var(--button-color);
  color: #FFFFFF;
  border: 1px solid var(--main-color);
  display: inline-block;
  font-size: 14px;
  margin-left: 6px;
  padding: 6px 12px;
  box-sizing: border-box;
}

.pagination a,
.pagination b {
  background: none repeat scroll 0 0 #ffffff;
  color: #4C4C4C;
  display: inline-block;
  font-size: 13px;
  margin-left: 6px;
  padding: 6px 12px;
  /* border-radius: 4px; */
  text-decoration: none;
  border: 1px solid #eee;
  box-sizing: border-box;
}

.pagination a:hover,
.pagination b:hover {
  background: none repeat scroll 0 0 var(--block-bg);
  color: #FFFFFF;
  transition: 0.15s ease-in-out all;
}

.next-page {
  padding: 6px 13px 6px !important;
}

.pre-page {
  padding: 6px 13px 6px !important;
}

.next-page:hover {
  transition: 0.15s ease-in-out all;
}

.pre-page:hover {
  transition: 0.15s ease-in-out all;
}

.left {
  float: left;
}

.right {
  float: right;
}

.right-col .block {
  background: #fff;
  margin-top: 20px;
  box-sizing: border-box;
  padding: 20px;
}

.page_title {
  text-align: center;
  /* position: absolute; */
  width: 100%;
}
.page_title .title_sv {
  letter-spacing: 1px;
  text-transform: capitalize;
}
.page_title .summary_sv {
  line-height: 22px;
  margin: 0px auto 15px;
  font-size: 18px;
  max-width: 100%;
}
@media all and (max-width: 414px) {
  .page_title .summary_sv {
    font-size: 14px;
  }
}
.page_title .summary_sv div,
.page_title .summary_sv div {
  letter-spacing: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
@media screen and (max-width: 400px) {
  .page_title .summary_sv div,
  .page_title .summary_sv div {
    font-size: 15px;
  }
}
.page_title .btn_detail a {
  background-color: #ffc022;
  display: inline-block;
  font-size: 16px;
  line-height: 40px;
  margin-top: 15px;
  padding: 0 25px;
  border-radius: 50px;
  font-weight: 700;
  text-shadow: 0px 1px 0px #999;
  transition: 0.5s all ease;
  color: #fff;
}
@media all and (max-width: 850px) {
  .page_title .btn_detail a {
    font-size: 14px;
    line-height: 36px;
  }
}
.page_title .btn_detail a:hover {
  background-color: var(--main-color);
}

h1 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 400;
  line-height: 56px;
  font-family: "MarcellusRegular";
}
@media screen and (max-width: 990px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 30px;
    line-height: 35px;
  }
}

@media screen and (max-width: 400px) {
  .general-introduced-title h1 {
    font-size: 30px;
    line-height: 35px;
    margin-top: 10px;
  }
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.benmarch {
  display: none;
}

.hide {
  display: none;
}

.submit_bt,
.reset_bt {
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
}

.submit_bt {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #FFF;
}

.submit_bt:hover {
  border: 1px solid #C90008;
  background: #C90008;
}

.reset_bt {
  border: 1px solid #b3b1b1;
  background: #f9f9f9;
  color: #000;
}

.reset_bt:hover {
  border: 1px solid #b3b1b1;
  background: #cecdcd;
}

.redborder {
  border-color: #ED1C24 !important;
}

.scroll-bar::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: #fff;
}

.scroll-bar::-webkit-scrollbar {
  height: 6px;
  width: 3px;
  background-color: var(--main-color);
  border-radius: 15px;
}
@media all and (max-width: 650px) {
  .scroll-bar::-webkit-scrollbar {
    height: 2px;
  }
}

.scroll-bar::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--main-color);
}

.scroll-bar2::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: #fff;
}

.scroll-bar2::-webkit-scrollbar {
  height: 6px;
  width: 3px;
  background-color: var(--main-color);
  border-radius: 15px;
}

.scroll-bar2::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--main-color);
}

.right-col {
  width: 290px;
  float: right;
  position: relative;
}

.main-area-2col-right {
  width: calc(100% - 290px);
  float: left;
  padding-right: 20px;
  box-sizing: border-box;
}

.main-area {
  padding-top: 20px;
}

/****** end COMMON ***********/
.container {
  width: 1170px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.container_lg {
  display: flex;
  flex-wrap: wrap;
  width: 1303px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media all and (max-width: 990px) {
  .container_lg {
    padding: 5px 20px;
    width: 1170px;
  }
}
@media all and (max-width: 400px) {
  .container_lg {
    padding: 5px 10px 2px;
    width: 1170px;
  }
}

.lazy,
.owl-lazy {
  display: none;
}

.disable-js {
  display: inline;
  opacity: 0;
}

.fixed_menu {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 99999;
  transform: translate(0, -50%);
}

/*****header *********/
.header_wrapper_wrap {
  position: fixed;
  top: 0px;
  z-index: 999999;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background: rgba(228, 229, 225, 0.79);
  padding: 10px 0;
}
@media all and (max-width: 990px) {
  .header_wrapper_wrap {
    padding: 6px 0 7px 0;
  }
}
@media all and (max-width: 768px) {
  .header_wrapper_wrap {
    padding: 6px 0;
  }
}
@media all and (max-width: 480px) {
  .header_wrapper_wrap {
    padding: 7px 0;
  }
}
.header_wrapper_wrap .header_right {
  width: 60%;
  flex-grow: 3;
  display: flex;
  justify-content: right;
  align-items: center;
}
@media all and (max-width: 990px) {
  .header_wrapper_wrap .page-button {
    display: none;
  }
}
@media all and (max-width: 990px) {
  .header_wrapper_wrap .small-screen-button {
    display: block;
    text-align: center;
    margin-top: 15px;
  }
  .header_wrapper_wrap .small-screen-button a {
    padding: 12px 32%;
  }
}
.header_wrapper_wrap .logo_top {
  width: 100px;
  transition: all 0.5s;
  flex-grow: 1;
}
.header_wrapper_wrap .logo_top img {
  width: 110px;
  height: auto;
  margin-top: 2px;
}
@media all and (max-width: 990px) {
  .header_wrapper_wrap .logo_top img {
    width: 100px;
  }
}
@media all and (max-width: 768px) {
  .header_wrapper_wrap .logo_top img {
    width: 90px;
  }
}
@media all and (max-width: 480px) {
  .header_wrapper_wrap .logo_top {
    margin: 0 0 0 5px;
  }
  .header_wrapper_wrap .logo_top img {
    width: 70px;
  }
}
.header_wrapper_wrap .search_top {
  margin-left: 10px;
  margin-top: 2px;
  margin-right: 10px;
}
@media all and (max-width: 1025px) {
  .header_wrapper_wrap .search_top {
    margin: 2px 5px 0px;
  }
}
.header_wrapper_wrap .menu_search {
  position: relative;
}
.header_wrapper_wrap .menu_top_t {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  display: none;
}
.header_wrapper_wrap .menu_top_t a {
  color: #a7a7a7;
}
.header_wrapper_wrap .menu_top_t a font {
  color: #fff;
}
.header_wrapper_wrap .menu_top_t a.hotline svg {
  width: 11px;
  height: 11px;
  fill: #a7a7a7;
  margin-left: 15px;
  margin-right: 3px;
}
.header_wrapper_wrap .menu_top_t a.hotline font {
  font-size: 15px;
  letter-spacing: 1px;
}

.multilanguage {
  position: absolute;
  right: 0;
  width: 40px;
  background: #fff;
  display: none;
}
.multilanguage a {
  color: #000;
  position: relative;
  font-size: 13px;
  transition: 0.3s;
  display: block;
  padding: 5px;
  text-align: center;
}
@media all and (max-width: 990px) {
  .multilanguage a {
    font-size: 12px;
  }
}
.multilanguage a:hover {
  background: var(--main-color);
  color: #fff;
}
.multilanguage a .icon_left {
  position: absolute;
  left: -1px;
  top: 0px;
}
@media all and (max-width: 990px) {
  .multilanguage a .icon_left {
    top: 0px;
  }
}
.multilanguage a .icon_left svg {
  width: 14px;
  height: 14px;
  fill: var(--main-color);
}
.multilanguage .lang-item.active {
  background: var(--main-color);
  color: #fff;
}

.language {
  margin-left: 18px;
  cursor: pointer;
  position: relative;
}
.language > svg {
  width: 20px;
  fill: var(--main-color);
}
.language:hover .multilanguage {
  display: block;
}

.nav_home {
  position: fixed;
  top: 0px;
}

.nav_fix_zoom {
  background: rgba(228, 229, 225, 0.79);
  margin-top: 0;
  border-bottom: 1px solid #eee;
}
.nav_fix_zoom .logo_top {
  transition: all 0.5s;
  width: 180px;
}
.nav_fix_zoom .menu_top_t {
  display: none;
}

.nav_fix_zoom_mb .menu_top .dcjq-mega-menu {
  top: 60px;
}
@media all and (max-width: 650px) {
  .nav_fix_zoom_mb .menu_top .dcjq-mega-menu {
    top: 48px;
  }
}

.main_wrapper_page_mb {
  margin-top: 0px;
}
@media all and (max-width: 650px) {
  .main_wrapper_page_mb {
    margin-top: 35px;
  }
}
@media all and (max-width: 480px) {
  .main_wrapper_page_mb {
    margin-top: 0px;
  }
}

.sb-toggle-left {
  float: right;
  padding: 4px 2px 0 9px;
  cursor: pointer;
  margin-top: 10px;
  margin-right: 11px;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 600px) {
  .sb-toggle-left {
    padding: 0px;
  }
}

.navicon-line {
  width: 24px;
  height: 4px;
  border-radius: 1px;
  margin-bottom: 4px;
  background-color: #FFF;
}

.modal-menu-full-screen {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -99;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.5s;
}

.modal-menu-full-screen_white {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -99;
  background: rgba(255, 255, 255, 0.7882352941);
  transition: 0.5s;
}

.show_screen {
  z-index: 9999;
  opacity: 1;
}

.text-compare {
  margin-top: 4px;
  text-align: right;
}

.text-compare a {
  color: #999999;
  /* margin-top: 12px; */
  display: block;
  font-size: 12px;
}

@media all and (max-width: 650px) {
  .menu-top-2 {
    display: none;
  }
}

/*****end header *********/
/***** slideshow and countdown *********/
.wrap_circle1 {
  position: absolute;
  left: 3%;
  bottom: 50px;
}

.wrap_circle {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrap_circle span {
  position: absolute;
  border-radius: 50%;
  animation: a1 2.5s linear infinite;
}
.wrap_circle span:nth-child(1) {
  animation-delay: 0s;
}
.wrap_circle span:nth-child(2) {
  animation-delay: 0.5s;
}
.wrap_circle span:nth-child(3) {
  animation-delay: 1s;
}
.wrap_circle span:nth-child(4) {
  animation-delay: 1.5s;
}
.wrap_circle span:nth-child(5) {
  animation-delay: 2s;
}
.wrap_circle span:nth-child(6) {
  animation-delay: 2.5s;
}

.slideshow_countdown {
  position: relative;
}
.slideshow_countdown .slideshow {
  width: 100%;
  position: relative;
}

@keyframes type {
  0% {
    width: 0;
  }
  70% {
    width: 100%;
  }
  90% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.download_file {
  padding: 20px;
  margin-bottom: 30px;
}
@media all and (max-width: 990px) {
  .download_file {
    padding: 0px;
    margin-bottom: 20px;
  }
}

.black_by_fast {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  top: 0;
  left: 0;
  padding-top: 50px;
  box-sizing: border-box;
}

.box_utilities_home {
  position: relative;
  margin-top: 35px;
}
@media all and (max-width: 650px) {
  .box_utilities_home {
    margin-top: 30px;
  }
}
.box_utilities_home .summary {
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 27px;
}
.box_utilities_home .summary span {
  position: relative;
  white-space: nowrap;
  color: transparent;
}
.box_utilities_home .summary span:after {
  position: absolute;
  content: attr(data-text);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: var(--main-color);
  border-right: 1px solid #000;
  animation: type 10s steps(14) infinite;
  white-space: nowrap;
  overflow: hidden;
}
.box_utilities_home .utilities_home_bot {
  text-align: center;
  margin-top: 25px;
  position: relative;
  margin: 25px auto 0;
  display: none;
}
@media all and (max-width: 650px) {
  .box_utilities_home .utilities_home_bot {
    margin: 20px auto 0;
  }
}
@media all and (max-width: 1025px) {
  .box_utilities_home .utilities_home_bot img {
    max-width: 512px;
  }
}
@media all and (max-width: 850px) {
  .box_utilities_home .utilities_home_bot img {
    max-width: 450px;
  }
}
@media all and (max-width: 650px) {
  .box_utilities_home .utilities_home_bot img {
    max-width: 350px;
  }
}
.box_utilities_home .utilities_home_bot:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transition: 2s;
  background: #fff;
}

.hello .utilities_home_bot:after {
  width: 0;
}

.pos1 {
  margin: 40px 0;
  position: relative;
}
.pos1 .container {
  width: 1312px;
  text-align: center;
}
@media all and (max-width: 990px) {
  .pos1 {
    margin: 60px 0;
  }
}
.pos1 .block_title {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}
@media all and (max-width: 1025px) {
  .pos1 .block_title {
    width: 80%;
  }
}
@media all and (max-width: 650px) {
  .pos1 .block_title {
    width: 92%;
  }
}
.pos1 .container {
  position: relative;
}
.pos1 .svg_settings:after {
  width: 36%;
  height: 36%;
  background: #f6f6f6;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  /* padding: 10%; */
  border: 55px solid #fff;
}
@media all and (max-width: 850px) {
  .pos1 .svg_settings:after {
    border: 30px solid #fff;
  }
}
@media all and (max-width: 650px) {
  .pos1 .svg_settings:after {
    border: 20px solid #fff;
  }
}
.pos1 .svg_1,
.pos1 .svg_2 {
  position: absolute;
  width: 650px;
  fill: #f6f6f6;
  left: -53%;
  bottom: -57%;
  animation: streng_svg 22s linear infinite;
}
@media all and (max-width: 1025px) {
  .pos1 .svg_1,
  .pos1 .svg_2 {
    width: 560px;
    left: -45%;
  }
}
@media all and (max-width: 850px) {
  .pos1 .svg_1,
  .pos1 .svg_2 {
    width: 300px;
    left: -25%;
    bottom: -40%;
  }
}
@media all and (max-width: 650px) {
  .pos1 .svg_1,
  .pos1 .svg_2 {
    width: 200px;
    left: -34%;
    bottom: -30%;
  }
}
.pos1 .svg_2 {
  right: -40%;
  bottom: -47%;
  left: unset;
}
@media all and (max-width: 1025px) {
  .pos1 .svg_2 {
    right: -30%;
    bottom: -50%;
  }
}
@media all and (max-width: 850px) {
  .pos1 .svg_2 {
    right: -21%;
    bottom: -30%;
  }
}
@media all and (max-width: 650px) {
  .pos1 .svg_2 {
    right: -25%;
    bottom: -20%;
  }
}
.pos1 .svg_3 {
  width: 260px;
  fill: #fff;
  position: absolute;
  left: -4%;
  bottom: -28%;
  animation: streng_svg 10s linear infinite;
}
@media all and (max-width: 1025px) {
  .pos1 .svg_3 {
    left: 5%;
    bottom: -30%;
    width: 200px;
  }
}
@media all and (max-width: 850px) {
  .pos1 .svg_3 {
    left: 12%;
    bottom: -20%;
    width: 110px;
  }
}
@media all and (max-width: 650px) {
  .pos1 .svg_3 {
    left: 18%;
    bottom: -13%;
    width: 80px;
  }
}
.pos1 .svg_3:after {
  border: 20px solid #f6f6f6;
  background: #fff;
}
@media all and (max-width: 850px) {
  .pos1 .svg_3:after {
    border: 15px solid #f6f6f6;
  }
}
@media all and (max-width: 650px) {
  .pos1 .svg_3:after {
    border: 8px solid #f6f6f6;
  }
}

@keyframes streng_svg {
  100% {
    transform: rotate(-360deg);
  }
}
.pos2 {
  background-color: var(--block-bg);
  padding: 44px 0;
}
.pos2 .container {
  width: 1260px;
}

.pos3 {
  padding-top: 60px;
  background-color: #e9e9e9;
}
@media all and (max-width: 768px) {
  .pos3 {
    margin-top: 40px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.pos4 {
  padding: 60px 0px;
  /* background-color: #f7f7f7; */
  /* margin-top: 67px; */
  /* background-repeat: no-repeat; */
  /* background-position: right; */
  /* background-attachment: fixed; */
  overflow: hidden;
}
@media all and (max-width: 1025px) {
  .pos4 {
    padding-top: 55px;
    margin-top: 0px;
  }
}
@media all and (max-width: 768px) {
  .pos4 {
    padding: 20px 0;
    margin-top: 20px;
  }
}

@keyframes svg_pos2 {
  0% {
    right: -40%;
  }
  100% {
    right: -20%;
  }
}
@keyframes fade-bg1112 {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.75, 0.85);
  }
  51% {
    transform: scale(0.75, 0.85);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes fade-bg1111 {
  0% {
    transform: translate(0px);
    opacity: 0.5;
  }
  100% {
    transform: translate(-100%);
    opacity: 1;
  }
}
@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes type {
  0% {
    width: 0;
  }
  40% {
    width: 100%;
  }
  90% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes type2 {
  0% {
    width: 0;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.pos5 {
  margin-bottom: 30px;
  padding-bottom: 40px;
}
@media all and (max-width: 768px) {
  .pos5 {
    padding: 0;
    margin: 20px 0;
  }
}
@media all and (max-width: 650px) {
  .pos5 {
    overflow: unset;
    padding: 0px;
  }
}
.pos5 .title_delectech_block {
  margin-bottom: 55px;
}
@media all and (max-width: 768px) {
  .pos5 .title_delectech_block {
    margin-bottom: 25px;
  }
}

.block_title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #5f646b;
  letter-spacing: 1px;
  text-align: center;
}

.pos6 {
  padding: 0px 0 50px;
}
@media all and (max-width: 1025px) {
  .pos6 {
    overflow: hidden;
  }
}
@media all and (max-width: 650px) {
  .pos6 {
    padding: 30px 0 50px;
    overflow: unset;
  }
}
.pos6 .block_title {
  margin-bottom: 40px;
}
@media all and (max-width: 1025px) {
  .pos6 .block_title {
    margin-bottom: 25px;
  }
}
.pos6 .pos6a {
  width: calc(100% - 360px);
  float: left;
  box-sizing: border-box;
  padding-right: 40px;
}
@media all and (max-width: 1025px) {
  .pos6 .pos6a {
    padding-right: 30px;
  }
}
@media all and (max-width: 650px) {
  .pos6 .pos6a {
    width: 100%;
    float: none;
    padding-right: 0px;
  }
}
.pos6 .pos6b {
  width: 360px;
  float: left;
}
@media all and (max-width: 650px) {
  .pos6 .pos6b {
    width: 100%;
    float: none;
    margin-top: 30px;
  }
}

.pos7 {
  padding: 30px 0px;
}
@media all and (max-width: 1025px) {
  .pos7 {
    overflow: hidden;
  }
}
@media all and (max-width: 990px) {
  .pos7 {
    padding: 0;
  }
}

.pos7a {
  width: calc(50% - 0px);
  float: left;
  padding-left: calc((100% - 1170px) / 2);
  box-sizing: border-box;
  background-color: #29265a;
  padding-top: 67px;
  padding-bottom: 37px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media all and (max-width: 1025px) {
  .pos7a {
    width: 100%;
    float: none;
    padding: 60px 10px 20px;
  }
}
@media all and (max-width: 650px) {
  .pos7a {
    padding: 35px 10px 20px;
  }
}
.pos7a > div {
  position: relative;
  z-index: 9;
}
.pos7a:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(26, 30, 85, 0.9019607843);
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
}

.pos7b {
  width: calc(50% - 0px);
  float: right;
}
@media all and (max-width: 1025px) {
  .pos7b {
    width: 100%;
    float: none;
  }
}

.banner-new-home {
  background-color: var(--block-bg);
  padding-top: 60px;
  padding-bottom: 60px;
}
.banner-new-home .container {
  width: 1305px;
}
.banner-new-home .container .page_title {
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 990px) {
  .banner-new-home .container .page_title {
    padding: 35px 0;
  }
}
@media screen and (max-width: 990px) {
  .banner-new-home {
    padding: 0px;
  }
}

.banner-new-home, .banner-stories-home, .slideshow_countdown, .banner-overlay {
  margin-top: 40px;
}

.pos8 {
  margin: 30px 0;
}
@media all and (max-width: 850px) {
  .pos8 {
    padding: 30px 0 30px;
  }
}

.pos9 {
  margin-top: 70px;
  overflow: hidden;
}
@media all and (max-width: 1025px) {
  .pos9 {
    margin-top: 50px;
  }
}
@media all and (max-width: 650px) {
  .pos9 {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.pos10 {
  background: #f7f7f7;
  padding: 61px 0 75px;
  margin-top: 70px;
}
@media all and (max-width: 1025px) {
  .pos10 {
    background: #f7f7f7;
    padding: 45px 0 45px;
    margin-top: 50px;
  }
}
@media all and (max-width: 650px) {
  .pos10 {
    padding: 30px 0 30px;
    margin-top: 30px;
  }
}

.pos11 {
  padding-top: 50px;
}
@media all and (max-width: 650px) {
  .pos11 {
    padding-top: 30px;
  }
}

/*****end slideshow and countdown *********/
.main_wrapper .left-col .block,
.main_wrapper .right-col .block {
  margin-bottom: 20px;
  border: 1px solid #EBEBEB;
}

.right-col .block_title,
.left-col .block_title {
  color: var(--main-color);
  cursor: pointer;
  font-size: 16px;
  border-bottom: 1px #F5F5F5 solid;
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 500;
  text-align: center;
}

.title_delectech_block {
  text-align: center;
  margin-bottom: 34px;
}
.title_delectech_block .summary_block {
  font-size: 18px;
  margin-top: 10px;
}
@media all and (max-width: 650px) {
  .title_delectech_block .summary_block {
    font-size: 14px;
    padding: 0px 15px;
    box-sizing: border-box;
  }
}

/*********** pos *********/
@media all and (max-width: 1200px) {
  .block_title {
    z-index: 1;
    position: relative;
  }
}
@media all and (max-width: 768px) {
  .block_title {
    font-size: 16px;
    line-height: 32px;
  }
}
@media all and (max-width: 400px) {
  .block_title {
    font-size: 14px;
    padding: 0px 0 0;
    line-height: 16px;
  }
}
.block_title strong {
  color: var(--main-color);
}
.block_title a,
.block_title span {
  display: inline-block;
}

/*********** FOOTER *********/
footer {
  background-color: #111;
  padding-bottom: 40px;
}
footer .container {
  width: 1310px;
}
@media all and (max-width: 850px) {
  footer {
    margin-top: 25px;
  }
}
@media all and (max-width: 650px) {
  footer {
    margin-top: 30px;
    font-size: 14px;
  }
}
footer .footer_top {
  padding-top: 50px;
}
@media all and (max-width: 1170px) {
  footer .footer_top {
    padding: 20px 10px 30px;
  }
}
@media all and (max-width: 990px) {
  footer .footer_top {
    padding: 50px 10px 30px;
  }
}
@media all and (max-width: 650px) {
  footer .footer_top {
    padding: 30px 10px 20px;
  }
}
footer .menu_footer {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 1025px) {
  footer .menu_footer {
    width: 58%;
  }
}
@media screen and (max-width: 480px) {
  footer .menu_footer {
    margin-left: 10px;
  }
}
footer .footer_address {
  width: 30%;
  margin: 0 40px;
}
footer .footer_service {
  width: 35%;
}
@media screen and (max-width: 600px) {
  footer .footer_service {
    width: 45%;
  }
}
footer .name_ctn {
  font-size: 16px;
  font-weight: 700;
  display: block;
  color: var(--button-color);
  margin-bottom: 25px;
}
@media screen and (max-width: 600px) {
  footer .name_ctn {
    margin: 10px 10px;
  }
}
footer .share_bottom {
  width: 20%;
}
@media screen and (max-width: 600px) {
  footer .share_bottom {
    width: 40%;
  }
}
footer .facebook {
  width: 260px;
  float: right;
  padding-top: 33px;
}
footer .facebook .block_facebook {
  padding: 4px;
  background: #fff;
}
footer .facebook .block_title {
  padding: 0;
  font-size: 23px;
  color: #e8e8e8;
  text-align: left;
  text-transform: none;
  margin-bottom: 40px;
}
@media all and (max-width: 990px) {
  footer .facebook {
    display: none;
  }
}
footer .facebook .icon_tb {
  height: 55px;
  margin-top: 20px;
}
footer .box_menu_footer {
  display: flex;
  padding-bottom: 40px;
  box-sizing: border-box;
}
footer .box_menu_footer img {
  width: 110px;
  height: 36px;
}
@media all and (max-width: 600px) {
  footer .box_menu_footer {
    display: block;
  }
  footer .box_menu_footer .footer_r,
  footer .box_menu_footer .menu_footer {
    width: 100%;
  }
}
footer .footer_r {
  width: 40%;
  float: left;
  box-sizing: border-box;
  margin-right: 150px;
}
@media all and (max-width: 1025px) {
  footer .footer_r {
    width: 42%;
    padding-right: 40px;
  }
}
@media all and (max-width: 768px) {
  footer .footer_r {
    width: 55%;
    padding-right: 0px;
    float: none;
  }
  footer .footer_r img {
    width: 90px;
    height: 29px;
  }
  footer .footer_r .info_bottom {
    line-height: 24px;
    color: #e4e5e1;
  }
}
footer .footer_r .info_bottom {
  margin-top: 20px;
  line-height: 26px;
  max-height: 200px;
  overflow: auto;
  padding-right: 10px;
  color: #fff;
  font-size: 15px;
}
@media all and (max-width: 650px) {
  footer .footer_r .info_bottom {
    line-height: 24px;
    color: #e4e5e1;
  }
}
footer .footer_r .info_bottom p {
  margin-top: 9px;
}
footer .footer_r .info_bottom a {
  transition: 0.4s;
}
footer .footer_r .info_bottom a:hover {
  color: var(--main-color);
}
footer .tags_footer {
  box-sizing: border-box;
  width: 62%;
  float: right;
  display: flex;
  justify-content: flex-end;
}
@media all and (max-width: 650px) {
  footer .tags_footer {
    width: 100%;
    float: none;
    margin-bottom: 15px;
    justify-content: center;
  }
}
footer .tags_footer a {
  margin: 0 5px;
  line-height: 21px;
  transition: 0.4s;
  font-size: 14px;
  color: #fff;
}
footer .tags_footer a:hover {
  color: var(--button-color);
}
footer .footer_bottom {
  font-size: 14px;
  margin-top: -35px;
  color: #fff;
  padding-top: 20px;
  border-top: 1px solid #6c6c6c;
  width: 87%;
  margin: auto;
}
footer .footer_bottom .copyright {
  display: inline-block;
  width: 28%;
  display: block;
  text-align: left;
  float: left;
}
@media all and (max-width: 650px) {
  footer .footer_bottom .copyright {
    display: none;
  }
}
footer .footer_bottom .copyright_mb {
  display: none;
}
@media all and (max-width: 650px) {
  footer .footer_bottom .copyright_mb {
    display: block;
    width: 100%;
    text-align: center;
  }
}
footer .footer_bottom .share_youtube {
  float: right;
}
footer .footer_bottom .developer {
  float: left;
  margin-top: 12px;
  display: inline-block;
}

footer a {
  color: #fff;
  transition: 0.4s;
  font-size: 15px;
}
footer a:hover {
  color: var(--button-color);
}

#cfacebook a.chat_fb_openned:before {
  content: "x";
  position: absolute;
  right: 10px;
  color: #fff;
}

.home_pos_2 {
  margin: 0 -15px;
  margin-top: 16px;
}
@media all and (max-width: 1200px) {
  .home_pos_2 {
    margin: 0 -10px;
    margin-top: 16px;
  }
}
.home_pos_2 .item {
  width: calc(50% - 30px);
  margin: 0 15px;
  float: left;
}
@media all and (max-width: 1200px) {
  .home_pos_2 .item {
    width: calc(50% - 20px);
    margin: 0 10px;
  }
}
@media all and (max-width: 600px) {
  .home_pos_2 .item {
    width: calc(100% - 20px);
  }
}
.home_pos_2 .item img {
  width: 100%;
}

#fixed-bar > div {
  float: left;
  max-width: 22%;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  width: 35px;
}

#fixed-bar > div .wrap_icon {
  margin-top: 5px;
  margin-bottom: 3px;
}

#fixed-bar > div .wrap_icon i {
  padding: 5px 15px;
}

#fixed-bar .buy_now_bt .wrap_icon i {
  background-position: 0px -351px;
}

#fixed-bar .call .wrap_icon i {
  background-position: -34px -351px;
}

#fixed-bar #bar-inner .wrap_icon i {
  background-position: -64px -351px;
}

.certified_bct {
  background-position: 0px -92px;
  content: " ";
  height: 36px;
  display: block;
  /* border-top: 1px solid #CCC; */
  margin-top: 11px;
  padding-top: 12px;
  width: 131px;
}

.mainmenu_wrapper_mobile .logo_mb {
  width: 120px;
  float: left;
}
@media all and (max-width: 650px) {
  .mainmenu_wrapper_mobile .logo_mb {
    width: 100px;
  }
}
.mainmenu_wrapper_mobile .logo_mb a.logo .logo_img {
  width: 120px;
}
@media all and (max-width: 650px) {
  .mainmenu_wrapper_mobile .logo_mb a.logo .logo_img {
    width: 100px;
  }
}
.mainmenu_wrapper_mobile .search_mb {
  width: calc(100% - 240px);
  float: left;
  margin-top: 5px;
}
@media all and (max-width: 650px) {
  .mainmenu_wrapper_mobile .search_mb {
    width: calc(100% - 165px);
    padding-left: 22px;
    margin-top: 2.5px;
  }
}
.mainmenu_wrapper_mobile .menu_mb {
  width: 120px;
  float: right;
  text-align: right;
}
@media all and (max-width: 650px) {
  .mainmenu_wrapper_mobile .menu_mb {
    width: 40px;
  }
}

/*********** end FOOTER *********/
/****** PHONE ANIMATION **********/
.suntory-alo-phone {
  background-color: transparent;
  cursor: pointer;
  height: 120px;
  position: fixed;
  transition: visibility 0.5s ease 0s;
  width: 120px;
  z-index: 200000 !important;
  left: 0px;
  bottom: -25px;
}

.suntory-alo-ph-circle {
  animation: 1.2s ease-in-out 0s normal none infinite running suntory-alo-circle-anim;
  background-color: transparent;
  border: 2px solid var(--button-color);
  border-radius: 100%;
  height: 100px;
  left: 0px;
  opacity: 0.1;
  position: absolute;
  top: 0px;
  transform-origin: 50% 50% 0;
  transition: all 0.5s ease 0s;
  width: 100px;
}

.suntory-alo-phone.suntory-alo-green .suntory-alo-ph-circle {
  border-color: var(--button-color);
  opacity: 1;
}

.suntory-alo-ph-circle-fill {
  animation: 2.3s ease-in-out 0s normal none infinite running suntory-alo-circle-fill-anim;
  border: 2px solid transparent;
  border-radius: 100%;
  height: 70px;
  left: 15px;
  position: absolute;
  top: 15px;
  transform-origin: 50% 50% 0;
  transition: all 0.5s ease 0s;
  width: 70px;
}

.suntory-alo-phone.suntory-alo-green .suntory-alo-ph-circle-fill {
  background-color: var(--button-color);
}

.suntory-alo-ph-img-circle {
  /* animation: 1s ease-in-out 0s normal none infinite running suntory-alo-circle-img-anim; */
  border: 2px solid transparent;
  border-radius: 100%;
  height: 50px;
  left: 25px;
  position: absolute;
  top: 25px;
  transform-origin: 50% 50% 0;
  width: 50px;
}

.suntory-alo-phone.suntory-alo-green .suntory-alo-ph-img-circle {
  background-color: var(--button-color);
}

.suntory-alo-ph-img-circle svg {
  position: absolute;
  top: 13px;
  left: 13px;
}

@keyframes suntory-alo-circle-anim {
  0% {
    opacity: 0.1;
    transform: rotate(0deg) scale(0.5) skew(1deg);
  }
  30% {
    opacity: 0.5;
    transform: rotate(0deg) scale(0.7) skew(1deg);
  }
  100% {
    opacity: 0.6;
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@keyframes suntory-alo-circle-img-anim {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@keyframes suntory-alo-circle-fill-anim {
  0% {
    opacity: 0.2;
    transform: rotate(0deg) scale(0.7) skew(1deg);
  }
  50% {
    opacity: 0.2;
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  100% {
    opacity: 0.2;
    transform: rotate(0deg) scale(0.7) skew(1deg);
  }
}
/****** PHONE ANIMATION **********/
/********* FACEBOOK  CHAT ONLINE ************/
#cfacebook .fchat {
  float: left;
  width: 100%;
  height: 270px;
  overflow: hidden;
  display: none;
  background-color: #fff;
}

#cfacebook .fchat .fb-page {
  margin-top: -130px;
  float: left;
}

#cfacebook a.chat_fb:hover {
  color: #ff0;
  text-decoration: none;
}

#cfacebook {
  position: fixed;
  bottom: 5%;
  right: 27px;
  z-index: 99999;
  height: auto;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
}
@media all and (max-width: 650px) {
  #cfacebook {
    bottom: 1%;
    right: 15px;
  }
}

#cfacebook a.chat_fb {
  float: left;
  padding: 6px 6px 0px 6px;
  /* width: 50px; */
  color: #fff;
  text-decoration: none;
  /* height: 59px; */
  /* line-height: 59px; */
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  background-repeat: repeat-x;
  background-size: auto;
  background-position: 0 0;
  background-color: var(--main-color);
  border: 0;
  /* border-bottom: 1px solid #133783; */
  z-index: 9999999;
  /* margin-right: 12px; */
  font-size: 15px;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
  border-radius: 50%;
  display: block;
  position: relative;
}
#cfacebook a.chat_fb:after {
  display: block;
  width: 19px;
  height: 19px;
  color: #FFF;
  content: "2";
  position: absolute;
  top: 0px;
  right: 0px;
  background: red;
  border-radius: 50%;
  font-size: 13px;
  line-height: 18px;
}
#cfacebook a.chat_fb svg {
  width: 45px;
  height: 45px;
}

#cfacebook a.chat_fb span {
  display: none;
}

#cfacebook .fchat .fb-page {
  margin-top: 0px;
  float: left;
}

#cfacebook a.chat_fb_openned {
  border-radius: 0;
  width: 100%;
}
#cfacebook a.chat_fb_openned svg {
  display: none;
}

#cfacebook a.chat_fb_openned i {
  display: none;
}

#cfacebook a.chat_fb_openned::after {
  display: none;
}

#cfacebook a.chat_fb_openned span {
  display: block;
}

/********* end FACEBOOK  CHAT ONLINE ************/
@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  70% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes fade-bg1111 {
  0% {
    transform: translate(30px);
    opacity: 0, 5;
  }
  50% {
    transform: translate(-140px);
    opacity: 1;
  }
  51% {
    transform: translate(-140px);
    opacity: 0.5;
  }
  100% {
    transform: translate(30px);
    opacity: 1;
  }
}
@keyframes fade-bg1113 {}
@keyframes fade-bg1112 {
  0% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(0.7, 0.8);
  }
  51% {
    transform: scale(0.7, 0.8);
  }
  100% {
    transform: scale(0.9, 1.1);
  }
}
@keyframes chang-rotage-anim-2-bh {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  45% {
    transform: rotate(-25deg) scale(1.3) skew(1deg);
  }
  60% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  65% {
    transform: rotate(-25deg) scale(1.3) skew(1deg);
  }
  70% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  85% {
    transform: rotateY(360deg) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}

#fixed-bar {
  margin: 0;
  padding: 0;
  z-index: 100;
  right: 0;
  transform: translate(-50%);
  border-radius: 50%;
}
@media all and (max-width: 600px) {
  #fixed-bar {
    display: none !important;
  }
}

#fixed-bar #bar-inner {
  height: 50px;
  /* line-height: 20px; */
  margin: 0 10px 0 auto;
}

#fixed-bar #bar-inner a {
  background: var(--button-color);
  opacity: 0.5;
  display: block;
  border-radius: 50%;
  text-decoration: none;
  -moz-transition: all 0.2s ease-in 0;
  -webkit-transition: all 0.2s ease-in;
  -webkit-transition-delay: 0;
  transition: all 0.2s ease-in 0;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  box-sizing: border-box;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

#fixed-bar #bar-inner a svg {
  width: 20px;
  height: 20px;
  margin-top: 10px;
  fill: #fff;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

#fixed-bar:hover #bar-inner a {
  opacity: 1;
}
#fixed-bar:hover #bar-inner a svg {
  fill: #fff;
}

/******** Alert *************/
#modal_alert {
  position: fixed;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999999;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.modal_alert_inner {
  width: 350px;
  background: white;
  border-radius: 2px;
  max-width: 96%;
  margin: 2% auto;
}

.modal_alert_title {
  background: var(--main-color);
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
  padding: 7px 0;
  font-size: 17px;
  position: relative;
  border-radius: 2px 2px 0 0;
}
.modal_alert_title .close {
  position: absolute;
  right: 0px;
  padding: 0px 10px 8px;
  top: 7px;
  color: #FFF;
  font-size: 22px;
}

.modal_alert_body {
  background: white;
  color: #616161;
  padding: 20px;
  -moz-user-select: text;
  -webkit-user-select: text;
  -o-user-select: text;
  user-select: text;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

/******** END Alert *************/
.breadcrumbs {
  font-size: 16px;
}
@media all and (max-width: 1025px) {
  .breadcrumbs {
    margin-top: 0px;
  }
}
@media all and (max-width: 650px) {
  .breadcrumbs {
    font-size: 15px;
  }
}
@media all and (max-width: 385px) {
  .breadcrumbs {
    font-size: 13px;
  }
}

.pos_contact {
  background: #df1a23;
  padding: 18px 0;
}

.no_nav_home .dcjq-mega-menu .menu_item_a {
  color: #333;
}
.no_nav_home .chk_search_mobile svg {
  fill: #333;
}
.no_nav_home .chk_search_mobile_hide svg {
  fill: #333;
}
.no_nav_home #search_form {
  background: #f6f6f6;
}
.banner_breadcrumbs {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.banner_breadcrumbs .banner_overlay {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(17, 17, 17, 0.8);
}
.banner_breadcrumbs .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
@media all and (max-width: 990px) {
  .banner_breadcrumbs .container {
    min-height: 230px;
    display: block;
  }
}

.home_pos_new {
  margin-top: 25px;
}
@media all and (max-width: 850px) {
  .home_pos_new {
    margin-top: 25px;
  }
}
.home_pos_new .block_title {
  font-size: 32px;
  margin-bottom: 18px;
  text-transform: none;
}
@media all and (max-width: 1025px) {
  .home_pos_new .block_title {
    font-size: 26px;
  }
}
@media all and (max-width: 850px) {
  .home_pos_new .block_title {
    font-size: 22px;
  }
}
@media all and (max-width: 650px) {
  .home_pos_new .block_title {
    font-size: 18px;
  }
}

.pos8_no_home {
  padding: 40px 0 40px;
}

.main_wrapper_page_mb .banner_breadcrumbs {
  margin-top: 0;
}

.right_b {
  width: 30%;
  float: right;
}
@media all and (max-width: 850px) {
  .right_b {
    width: 100%;
    float: none;
    margin-top: 20px;
  }
}
.right_b .block {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 25px 25px;
  border: 1px solid var(--body-color);
  border-radius: 4px;
  box-sizing: border-box;
}
@media all and (max-width: 850px) {
  .right_b .block {
    padding: 15px 20px;
  }
}
.right_b .block_title {
  text-align: left;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--body-color);
  position: relative;
  padding: 0;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 35px;
}
.right_b .block_title :after {
  position: absolute;
  bottom: -1px;
  left: 0px;
  content: "";
  height: 2px;
  width: 40px;
  background: #000;
}

.section {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.section .mouse_home,
.section .mouse_home2 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0px);
  bottom: -70px;
  z-index: 1;
  /* animation: animationFrames infinite 2.5s; */
  width: 95px;
  height: 95px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media all and (max-width: 768px) {
  .section .mouse_home,
  .section .mouse_home2 {
    width: 70px;
    height: 70px;
    bottom: -45px;
  }
}
.section .mouse_home svg,
.section .mouse_home2 svg {
  fill: #dee2e5;
  width: 40px;
  height: 40px;
  transition: 0.5s all ease;
}
.section .mouse_home:hover svg,
.section .mouse_home2:hover svg {
  fill: var(--extra-color);
}

@keyframes animationFrames {
  0% {
    bottom: 6px;
  }
  15% {
    bottom: 10px;
  }
  30% {
    bottom: 6px;
  }
  45% {
    bottom: 10px;
  }
  60% {
    bottom: 6px;
  }
  75% {
    bottom: 10px;
  }
  100% {
    bottom: 6px;
  }
}
.pos1 .mouse_home,
.pos6 .mouse_home {
  background: #f7f7f7;
}

.pos_parner {
  margin: 30px 0px 80px;
  padding: 0px 60px;
}
@media all and (max-width: 414px) {
  .pos_parner {
    margin: 30px 0px 40px;
    padding: 0px 10px;
  }
}
.pos_parner .partners {
  margin-top: 55px;
}

.descrip_images_f {
  display: flex;
  align-items: center;
}

blockquote {
  quotes: "" "";
  padding: 0px 1.2em;
  margin: 1.2em 0 1em 0;
  border-left: 3px solid #ffb501;
  font-style: italic;
}

.description h2,
.description h3,
.description h4 {
  font-weight: 500;
  color: #000;
  font-size: 26px;
  margin: 0px 0px 15px;
  line-height: 33px;
}
.description .content_title {
  margin-bottom: 15px;
}
.description .content_title p,
.description .content_title span,
.description .content_title div {
  text-align: unset !important;
  line-height: 1.2em;
}
.description .content_inner {
  margin-top: 20px;
}
.description .image_r,
.description .dess_no {
  margin-bottom: 30px;
}
@media all and (max-width: 650px) {
  .description .image_r,
  .description .dess_no {
    margin-bottom: 10px;
  }
  .description .image_r .frame_image,
  .description .image_r .content,
  .description .dess_no .frame_image,
  .description .dess_no .content {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .description .image_r .content_title,
  .description .dess_no .content_title {
    font-size: 24px !important;
  }
  .description .image_r .content_title span,
  .description .dess_no .content_title span {
    font-size: 24px !important;
  }
}
.description em {
  font-style: italic;
}
@media all and (max-width: 650px) {
  .description #image_l .frame_image {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .description #image_l .content {
    width: 100% !important;
  }
}
@media all and (max-width: 650px) {
  .description #image_r .frame_image {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .description #image_r .content {
    width: 100% !important;
  }
}
@media all and (max-width: 650px) {
  .description .descrip_images_f {
    display: block !important;
    padding: 0px 10px;
    box-sizing: border-box;
  }
}
@media all and (max-width: 650px) {
  .description .content_title span {
    font-size: 24px !important;
  }
}

.team_pos {
  background: #f7f7f7;
  margin: 0px 0px 50px;
  padding: 90px 0px 70px;
}
@media all and (max-width: 650px) {
  .team_pos {
    padding: 60px 0px 60px;
  }
}

.slideshow_countdown canvas {
  height: 50% !important;
  width: 100% !important;
  position: absolute;
  z-index: 10;
}

footer .newsletter_ft {
  margin-bottom: 25px;
}

@media screen and (max-width: 990px) {
  .container {
    padding: 0 20px;
  }
  footer .box_menu_footer {
    display: block;
  }
  footer .footer_r {
    width: 100%;
    margin-bottom: 60px;
    margin-left: 10px;
  }
  footer .menu_footer {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  footer .menu_footer {
    display: block;
  }
  footer .menu_footer .footer_service {
    width: 100%;
  }
  footer .menu_footer .footer_address {
    width: 100%;
    margin: 0px;
  }
  footer .menu_footer .share_bottom {
    width: 100%;
  }
}/*# sourceMappingURL=template.css.map */