.flex{display: flex;}
.flex-wrap{flex-wrap: wrap;}
.flex-nowrap{flex-wrap: nowrap;}
.flex-wrap-reverse{flex-wrap: wrap-reverse;}
.flex-row{flex-direction: row;}
.flex-row-reverse{flex-direction: row-reverse;}
.flex-col {flex-direction: column;}
.flex-col-reverse{flex-direction: column-reverse;}

/* .flex-1{flex:1 1 0%;}
.flex-auto{flex:1 1 auto;}
.flex-intial{flex: 0 1 auto;}
.flex-none{flex:none;} */

.content-center{align-content: center;}
.content-start{align-content: flex-start;} 
.content-end{align-content: flex-end;}
.content-between{align-content: space-between;}
.content-around {align-content: space-around;}
.content-stretch {align-content: stretch;}
/* .content-normal  align-content: normal;
.content-evenly  align-content: space-evenly;
.content-baseline  align-content: baseline; */

.justify-start{justify-content: start;}
.justify-end{justify-content: end;}
.justify-center{justify-content: center;}
.justify-between{justify-content: space-between;}
.justify-around{justify-content: space-around;}
.justify-evenly{justify-content: space-evenly;}

.items-start{align-items: flex-start;}
.items-end{align-items: flex-end;}
.items-center{align-items: center;}
.items-baseline{align-items: baseline;}
.items-stretch{align-items: stretch;}

.seft-start{align-self: flex-start;}
.seft-end{align-self: flex-end;}
.seft-center{align-self: center;}
.seft-stretch{align-self: stretch;}
.seft-baseline{align-self: baseline;}

.gap-1{gap:0.25rem;/*4px*/}
.gap-x-1{column-gap: 0.25rem;}
.gap-y-1{row-gap: 0.25rem;}
.gap-2{gap:0.5rem;/*8px*/}
.gap-x-2{column-gap: 0.5rem;}
.gap-y-2{row-gap: 0.5rem;}
.gap-3{gap:0.75rem/*12px*/}
.gap-x-3{column-gap:0.75rem;}
.gap-y-3{row-gap: 0.75rem;}
.gap-4{gap:1rem;/*16px*/}
.gap-x-4{column-gap: 1rem;}
.gap-y-4{row-gap: 1rem;}
.gap-5{gap:1.25rem;/*20px*/}
.gap-x-5{column-gap: 1.25rem;}
.gap-y-5{row-gap: 1.25rem;}

.grow{flex-grow: 1;}
.grow-0{flex-grow: 0;}
.shrink{flex-shrink: 1;}
.shrink-0{flex-shrink: 0;}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.col-1 {
    max-width:8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%
}

.col-2 {
    max-width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
}

.col-3 {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%
}

.col-4 {
    max-width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%
}

.col-5 {
    max-width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%
}

.col-6 {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
}

.col-7 {
    max-width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%
}

.col-8 {
    max-width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%
}

.col-9 {
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%
}

.col-10 {
    max-width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%
}

.col-11 {
    max-width: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%
}

.col-12 {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
}
.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

@media (max-width: 767px) {
  .sm\:flex-wrap{flex-wrap: wrap;}
  .sm\:flex-nowrap{flex-wrap: nowrap;}
  .sm\:flex-wrap-reverse{flex-wrap: wrap-reverse;}
  .sm\:flex-row{flex-direction: row;}
  .sm\:flex-row-reverse{flex-direction: row-reverse;}
  .sm\:flex-col {flex-direction: column;}
  .sm\:flex-col-reverse{flex-direction: column-reverse;}
  
  .sm\:col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .sm\:col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .sm\:col-1 {
    max-width:8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%
  }
  .sm\:col-2 {
    max-width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
  }
  .sm\:col-3 {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%
  }
  .sm\:col-4 {
    max-width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%
  }
  .sm\:col-5 {
    max-width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%
  }
  .sm\:col-6 {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
  }
  .sm\:col-7 {
    max-width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%
  }
  .sm\:col-8 {
    max-width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%
  }
  .sm\:col-9 {
      max-width: 75%;
      -ms-flex-preferred-size: 75%;
      flex-basis: 75%
  }
  .sm\:col-10 {
      max-width: 83.33333%;
      -ms-flex-preferred-size: 83.33333%;
      flex-basis: 83.33333%
  }
  .sm\:col-11 {
      max-width: 91.66667%;
      -ms-flex-preferred-size: 91.66667%;
      flex-basis: 91.66667%
  }
  .sm\:col-12 {
      max-width: 100%;
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%
  }
  .sm\:order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  }
  .sm\:order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .sm\:order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .sm\:order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .sm\:overflow-hidden{overflow: hidden;}
  .sm\:block{display: block !important;}
  .sm\:hidden{display: none !important;}   
}

@media (min-width: 768px) {
  .md\:flex-wrap{flex-wrap: wrap;}
  .md\:flex-nowrap{flex-wrap: nowrap;}
  .md\:flex-wrap-reverse{flex-wrap: wrap-reverse;}
  .md\:flex-row{flex-direction: row;}
  .md\:flex-row-reverse{flex-direction: row-reverse;}
  .md\:flex-col {flex-direction: column;}
  .md\:flex-col-reverse{flex-direction: column-reverse;}
  .md\:col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  }
  .md\:col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  }
  .md\:col-1 {
      max-width:8.33333%;
      -ms-flex-preferred-size: 8.33333%;
      flex-basis: 8.33333%
  }
  .md\:col-2 {
      max-width: 16.66667%;
      -ms-flex-preferred-size: 16.66667%;
      flex-basis: 16.66667%;
  }
  .md\:col-3 {
      max-width: 25%;
      -ms-flex-preferred-size: 25%;
      flex-basis: 25%
  }
  .md\:col-4 {
      max-width: 33.33333%;
      -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%
  }
  .md\:col-5 {
      max-width: 41.66667%;
      -ms-flex-preferred-size: 41.66667%;
      flex-basis: 41.66667%
  }
  .md\:col-6 {
      max-width: 50%;
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%
  }
  .md\:col-7 {
      max-width: 58.33333%;
      -ms-flex-preferred-size: 58.33333%;
      flex-basis: 58.33333%
  }
  .md\:col-8 {
      max-width: 66.66667%;
      -ms-flex-preferred-size: 66.66667%;
      flex-basis: 66.66667%
  }
  .md\:col-9 {
      max-width: 75%;
      -ms-flex-preferred-size: 75%;
      flex-basis: 75%
  }
  .md\:col-10 {
      max-width: 83.33333%;
      -ms-flex-preferred-size: 83.33333%;
      flex-basis: 83.33333%
  }
  .md\:col-11 {
      max-width: 91.66667%;
      -ms-flex-preferred-size: 91.66667%;
      flex-basis: 91.66667%
  }
  .md\:col-12 {
      max-width: 100%;
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%
  }
  .md\:order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  }
  .md\:order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .md\:order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .md\:order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }   
  .md\:block{display: block !important;}
  .md\:hidden{display: none !important;}     
}

@media (min-width: 1024px) {
   .lg\:col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  }
  .lg\:col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  }
  .lg\:col-1 {
      max-width:8.33333%;
      -ms-flex-preferred-size: 8.33333%;
      flex-basis: 8.33333%
  }
  .lg\:col-2 {
      max-width: 16.66667%;
      -ms-flex-preferred-size: 16.66667%;
      flex-basis: 16.66667%;
  }
  .lg\:col-3 {
      max-width: 25%;
      -ms-flex-preferred-size: 25%;
      flex-basis: 25%
  }
  .lg\:col-4 {
      max-width: 33.33333%;
      -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%
  }
  .lg\:col-5 {
      max-width: 41.66667%;
      -ms-flex-preferred-size: 41.66667%;
      flex-basis: 41.66667%
  }
  .lg\:col-6 {
      max-width: 50%;
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%
  }
  .lg\:col-7 {
      max-width: 58.33333%;
      -ms-flex-preferred-size: 58.33333%;
      flex-basis: 58.33333%
  }
  .lg\:col-8 {
      max-width: 66.66667%;
      -ms-flex-preferred-size: 66.66667%;
      flex-basis: 66.66667%
  }
  .lg\:col-9 {
      max-width: 75%;
      -ms-flex-preferred-size: 75%;
      flex-basis: 75%
  }
  .lg\:col-10 {
      max-width: 83.33333%;
      -ms-flex-preferred-size: 83.33333%;
      flex-basis: 83.33333%
  }
  .lg\:col-11 {
      max-width: 91.66667%;
      -ms-flex-preferred-size: 91.66667%;
      flex-basis: 91.66667%
  }
  .lg\:col-12 {
      max-width: 100%;
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%
  } 
  .lg\:order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  }
  .lg\:order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .lg\:order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .lg\:order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }     
  .lg\:block{display: block !important;}
  .lg\:hidden{display: none !important;}  
}

@media (min-width: 1280px) {
   .xl\:col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  }
  .xl\:col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  }
  .xl\:col-1 {
      max-width:8.33333%;
      -ms-flex-preferred-size: 8.33333%;
      flex-basis: 8.33333%
  }
  .xl\:col-2 {
      max-width: 16.66667%;
      -ms-flex-preferred-size: 16.66667%;
      flex-basis: 16.66667%;
  }
  .xl\:col-3 {
      max-width: 25%;
      -ms-flex-preferred-size: 25%;
      flex-basis: 25%
  }
  .xl\:col-4 {
      max-width: 33.33333%;
      -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%
  }
  .xl\:col-5 {
      max-width: 41.66667%;
      -ms-flex-preferred-size: 41.66667%;
      flex-basis: 41.66667%
  }
  .xl\:col-6 {
      max-width: 50%;
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%
  }
  .xl\:col-7 {
      max-width: 58.33333%;
      -ms-flex-preferred-size: 58.33333%;
      flex-basis: 58.33333%
  }
  .xl\:col-8 {
      max-width: 66.66667%;
      -ms-flex-preferred-size: 66.66667%;
      flex-basis: 66.66667%
  }
  .xl\:col-9 {
      max-width: 75%;
      -ms-flex-preferred-size: 75%;
      flex-basis: 75%
  }
  .xl\:col-10 {
      max-width: 83.33333%;
      -ms-flex-preferred-size: 83.33333%;
      flex-basis: 83.33333%
  }
  .xl\:col-11 {
      max-width: 91.66667%;
      -ms-flex-preferred-size: 91.66667%;
      flex-basis: 91.66667%
  }
  .xl\:col-12 {
      max-width: 100%;
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%
  }    
  .xl\:order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  }
  .xl\:order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xl\:order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xl\:order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }   
  .xl\:block{display: block !important;}
  .xl\:hidden{display: none !important;} 
}

@media (min-width: 1536px) {
  .\2xl:col-1 {
      max-width:8.33333%;
      -ms-flex-preferred-size: 8.33333%;
      flex-basis: 8.33333%
  }
  .\2xl:col-2 {
      max-width: 16.66667%;
      -ms-flex-preferred-size: 16.66667%;
      flex-basis: 16.66667%;
  }
  .\2xl:col-3 {
      max-width: 25%;
      -ms-flex-preferred-size: 25%;
      flex-basis: 25%
  }
  .\2xl:col-4 {
      max-width: 33.33333%;
      -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%
  }
  .\2xl:col-5 {
      max-width: 41.66667%;
      -ms-flex-preferred-size: 41.66667%;
      flex-basis: 41.66667%
  }
  .\2xl:col-6 {
      max-width: 50%;
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%
  }
  .\2xl:col-7 {
      max-width: 58.33333%;
      -ms-flex-preferred-size: 58.33333%;
      flex-basis: 58.33333%
  }
  .\2xl:col-8 {
      max-width: 66.66667%;
      -ms-flex-preferred-size: 66.66667%;
      flex-basis: 66.66667%
  }
  .\2xl:col-9 {
      max-width: 75%;
      -ms-flex-preferred-size: 75%;
      flex-basis: 75%
  }
  .\2xl:col-10 {
      max-width: 83.33333%;
      -ms-flex-preferred-size: 83.33333%;
      flex-basis: 83.33333%
  }
  .\2xl:col-11 {
      max-width: 91.66667%;
      -ms-flex-preferred-size: 91.66667%;
      flex-basis: 91.66667%
  }
  .\2xl:col-12 {
      max-width: 100%;
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%
  }    
}
/* padding */
.pt-0{padding-top: 0px !important;}
.pt-15{padding-top: 15px !important;}
.pt-30{padding-top: 30px !important;}
.pt-45{padding-top: 45px !important;}
.pt-60{padding-top: 60px !important;}

.pb-0{padding-bottom: 0px !important;}
.pb-15{padding-bottom: 15px !important;}
.pb-30{padding-bottom: 30px !important;}
.pb-45{padding-bottom: 45px !important;}
.pb-60{padding-bottom: 60px !important;}

/* Display */
.block{display: block;}
.hidden{display: none;}
.grid{display: grid;}

.m-auto{margin: auto;}
.text-center{text-align: center;}

.relative{position: relative !important;}
.absolute{position: absolute !important;}
.fixed{position: fixed !important;}
.sticky{position: sticky !important;}
.static{position: static !important;}
.overflow-hidden{overflow: hidden !important;}
.fill {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-fill {
  background-size: cover;
  background-origin: content-box;
  background-position: 50% 50%;
  background-repeat: no-repeat !important;
}
.overlay{
  background: rgba(0,0,0,0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index:79;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms linear;
}
.overlay.open{
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(10px);
  z-index:999;
}
.order-done{
  background: #fff;
  margin: 0 auto;
  max-width: 767px;
  padding: 1rem;
  overflow-y: auto;
  height: 100vh;
}
/* icon svg */
.ic {
  width: 16px;
  height: 16px;
  fill: #757575;
  display: inline-block;
  vertical-align: middle;
}
.ic-check{
  width: 32px;
  height: 32px;
  fill: #fff;
}
.ic-phone{
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  outline: none;
}

blockquote{
  background-color: #FBF6C9;
  padding: 40px;
  margin-bottom: 1.3em;
  position: relative;
}
blockquote::before{
  content: "“";
  font-size: 60px;
  position: absolute;
  top: 32px;
  left: .4em;
  font-weight: 400;
  line-height: 29px;
}
hr {
  margin: 1rem auto;
  color: inherit;
  border: 0;
  background-color: transparent;
  background-image: linear-gradient(90deg,rgba(206,211,246,0) 0,#CED3F6 38%,#CED3F6 64%,rgba(206,211,246,0) 99%);
  opacity: .3;
  width: 50%;
}
hr:not([size]) {height: 1px;}
p{/*Disable selection*/
  margin-bottom: 20px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
p:empty {display: none}
strong, b{font-weight: 800;}
ul{ list-style: none; }
ul.linum{list-style: disc;margin:0 0 16px 16px;}
ul.linum li{margin-bottom: 8px;}
ul.linum li::marker{
  color: var(--primary-3);
}
ol.counter{
  counter-reset: my-awesome-counter;
  margin: 0;
  padding: 0;
}
ol.counter li {
  counter-increment: my-awesome-counter;
  position: relative;
  display: block;
  padding-left: 40px;
  margin-bottom: 10px;
}
ol.counter li::before {
  content: counter(my-awesome-counter);
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}
sup{vertical-align: super !important;font-size: 12px;}

table { 
  border-collapse: collapse; 
  border-spacing: 0;
  margin: 20px auto;
  width: 100%;
  text-align:center;
}
table th{background:var(--primary);padding:5px;color:var(--white);border:1px solid var(--black15);}
table td{border:1px solid var(--black15);padding: 5px;box-sizing: border-box;}

.clear{clear:both}
.clearfix::after{clear:both;content:" ";display:table; -webkit-box-sizing:border-box;-moz-box-sizing:border-box; box-sizing:border-box;}


::-webkit-scrollbar {background: rgba(255, 255, 255, 0.5);width: 8px;}
::-webkit-scrollbar-thumb {background: rgba(28,28,30,.32);border-radius: 50px;}
::-webkit-scrollbar-thumb:hover {background: rgba(28,28,30,.5); width: 8px;}
::selection {
  background: var(--primary);
  color: var(--primary-text);
}
/* end reset CSS  */

/* font */
@font-face {
    font-family: 'UTMYenTu';
    src: url("../fonts/utmyentu.woff2") format("woff2"),url("../fonts/utmyentu.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}
@font-face {
  font-family: "Canela-Bold";
  src: url("../fonts/canela-bold.ttf") format("truetype");
}

:root{
  --primary: #ffbb00;
  --primary-2: #0E1824;
  --primary-3: #e43603;
  --second: #f20544;
  --primary-text:#1b2a57;
  --link:#f20544;
  
  --black10: rgba(0, 0, 0, 0.1);
  --black15: rgba(0, 0, 0, 0.15);
  --black30: rgba(0, 0, 0, 0.3);
  --black40: rgba(0, 0, 0, 0.4);
  --black50: rgba(0, 0, 0, 0.5);
  --black60: rgba(0, 0, 0, 0.6);
  --black80: rgba(0, 0, 0, 0.8);
  --black90: rgba(0, 0, 0, 0.9);
  --red: #e10531;
  --yellow: #ffc900;
  --white: #fff;
  --success: #1aa84c;
  --info: #1886f7;
  --warning: #ff703e;
  --danger: #d34236;
  --font-1: 'Inter',  -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, SF Pro Display, Helvetica Neue, Arial, sans-serif;
  --font-2: 'Playfair Display';
  --font-3: 'Be Vietnam Pro';
  --font-4: 'Great Vibes';
  --font-5: 'Canela-Bold';
  --gradient-1: linear-gradient(45deg, #F20544 30%, #FFBB00 60%);
}
body{ 
  background:var(--white);
  color: var(--black90); 
  font: 400 16px/1.5 var(--font-1);
  outline: none;
  zoom: 1;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;/*khu rang cua font */
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /*-moz-user-select: none !important;
  -webkit-touch-callout: none!important;
  -webkit-user-select: none!important;
  -khtml-user-select: none!important;
  -moz-user-select: none!important;
  -ms-user-select: none!important;
  user-select: none!important;*/
}
.section{max-width: 1366px;margin: 0 auto;overflow: hidden;}
.container {
  width:100%;
  margin: 0 auto;
  padding: 0 1rem;
  clear: both;
}
/* @media (min-width: 576px) {
  .container {
    max-width:540px
  }
} */
@media (max-width: 767px) {
  .container {
    max-width:420px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width:720px
  }
}

@media (min-width: 992px) {
  .container {
    max-width:960px
  }
}

@media (min-width: 1200px) {
  .container {
    max-width:1140px
  }
}



img {
  max-width: 100%;
  display: inline-block;
}
a{
  color:var(--primary);
  text-decoration: none;
}
a.menu{
  color: var(--primary);
  display: block;
  padding: 3px 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
a.menu:hover{color:var(--link);}
h1,h2,h3,h4,h5,h6{word-break: break-word;line-height: 1.3;}
h1{font-size:30px;}
h2{font-size:28px;}
h3{font-size:26px;}
h4{font-size:24px;}
h5{font-size:20px;}
h6{font-size:18px;}

/* Form */
::placeholder{color:#777;font-weight: 400;}
::-webkit-input-placeholder{color:#777;}
::-moz-placeholder{color:#777;}
::-ms-input-placeholder{color:#777;}
input, select, textarea{
  border: 1px solid var(--black10);
  padding: 12px 10px;
  margin-top: 1rem;
  border-radius: .5rem;
  color: var(--primary-2);
  box-shadow: inset 3px 3px 5px 0 rgba(0, 0, 0, 0.03) !important;
  background: var(--light);
  font-family: inherit; 
  font-weight:500;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  width: 100%;
}
input:focus, select:focus{border-color: var(--yellow);}
fieldset dd {
  min-height: 25px;
  padding: 3px 0;
}
fieldset dt{
  clear: left;
  float: left;
  margin-right: 10px;
  min-width: 12em;
  padding: 5px 0;
  text-align: right;
}
button, .btn {
  background: linear-gradient(to right, #ffbb00, #e43603, #ff6290, #ff5000);
  background-size: 300% 100%;
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  border: 0 none;
  border-radius: 7px;
  font-weight: 600;
  padding: 10px 25px;
  font-family: var(--font-family);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
.btn-readmore{
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid var(--black50);
  color: #333;
  display: block;
  line-height: 16px;
  margin: 16px auto;
  padding: 16px 8px;
  text-align: center;
}
.btn-readmore span {
  position: relative;
  padding-right: 10px;
}
.btn-readmore span::before{
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--black80);
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
}
select{
  background:url('../images/icon.svg') no-repeat right 0;
  background-size: auto 30%;
  background-position: 98%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 20px;
}
option:disabled{
  color: var(--danger);
  font-size: 16px;
  padding: 10px 0;
}
.form-message, .error{
  color: var(--warning);
  font-size: 13px;
}
.form-group.invalid input, .form-group.invalid select{border: 1px solid var(--warning);}
/* end form */

/*footer*/
/* Footer */
#footer {background-image: radial-gradient(circle, #B10129 40%, #99002E 100%); color:var(--primary);padding: 2rem 0;}
.foorter-copyright{
  padding: 1rem 0;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 767px){
  #footer .info img{width: 100px;}
}
/* end footer */
/* contact us */
ul.contactus li {display: block;margin-bottom: 16px;padding-left: 35px !important;min-height:23px;position:relative;}
ul.contactus li a:hover{color: #fff;text-decoration: underline;}
ul.contactus li::before{position:absolute;content:"";background: url(../images/icon.png) no-repeat -312px 0px;width:20px;height:20px;left:0;top: calc(50% - 10px);}
ul.contactus li.diachi::before {background-position:-312px -60px;}
ul.contactus li.email::before { background-position:-312px -146px;}
ul.contactus li.phone::before { background-position:-312px -5px;}
ul.contactus li.dienthoai::before { background-position:-312px -33px;}
ul.contactus li.website::before { background-position:-285px -115px;width: 32px;height: 32px;}
ul.contactus li.fax::before { background-position:-312px -90px;}
ul.contactus li.diachi .chiduong{font-weight:bold; text-decoration: underline;}
/* end contact us */
/* Contact */
.contact-h1{
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0;
  position: relative;
}
.contact-h1::before{
  position: absolute;
  background:url('../images/bg-line-contact.png') repeat-x -17px bottom;
  width: 50px;
  height: 6px;
  content: '';
  left: calc(50% - 25px);
  bottom: -10px;
}
.contact-content {
  float: left;
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.contact-content h3 {
  text-transform: uppercase;
  font-size: 15px;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
}
.contact-content h3.address::before, .contact-content h3.phone::before, .contact-content h3.email::before {
  position: absolute;
  content: '';
  background: url('../images/icon.png') no-repeat -308px -60px;
  width: 25px;
  height: 25px;
  left: 0;
}
.contact-content h3.phone::before {background-position: -310px -4px;}
.contact-content h3.email::before {background-position: -310px -145px;}
.contact-description {
    font-size: 13px;
    text-align: justify;
}
dd.sendmail{text-align: center;margin-top: 10px;}
/* end contact */

/* Pagination */
.pagination ul {text-align: right;float: right;margin: 0;display: block;width: 100%;}
.pagination ul li {display: inline-block;padding: 0px;margin: 0 5px 0 0;background: #e5e6e7; line-height: normal;float: none;}
.pagination ul li.pagination-start { border-left: solid 1px #e5e6e7; }
.pagination ul li .pagenav {padding: 5px 9px;display: inline-block;color: #999;cursor: pointer;}
.pagination ul li a:hover,
.pagination ul li a:focus,
.pagination ul li a:active {color: #fff;background:#ed1b2f;}
.pagination ul li span.pagenav {color: #fff;cursor: pointer;background:#ed1b2f;}
.pagination ul li.pagination-next span.pagenav,
.pagination ul li.pagination-end span.pagenav,
.pagination ul li.pagination-start span.pagenav,
.pagination ul li.pagination-prev span.pagenav {border-top-color: #353637;color: #999;cursor: auto;}
.vm-pagination{float: left;width: 100%;}
/* end Pagination */

/* breadcrumbs */
.breadcrumbs img{padding:0 2px; width: 6px;height: 8px;}
.breadcrumbs a{color:var(--primary-2);padding:5px 0;display: block;font-size: 14px;}
.breadcrumbs a:hover{text-decoration: underline;text-decoration-skip: ink;}
.breadcrumbs svg{
        width: 7px;
  height: 7px;
  padding: 0 5px;
  fill: var(--black80);
}
/* end breadcrumbs */

/* Blog Featured */
.blog-featured.index h1{
        text-indent:-9999px;
        margin-top:-30px;
}
/* End Blog Featured */

/* Hotline Footer fixed */
.hotline-debug{
        bottom: 10px;
        left: 10px;
  position: fixed;
  z-index: 2;
  height: 40px;
        width: 170px;
        background-image: linear-gradient(90deg,#0aa5f9,#0f80f6);
        border-radius: 30px;
}
.hotline-debug a{
  display: flex;
  align-items: center;
  justify-content:space-between;
  color: #fff;
}
.hotline-debug span{
  font-weight: 600;
  font-size: 17px;
  padding-right: 10px;
}
/*.hotline-debug [class^="icon-"], .hotline-debug [class*="icon-"] {
        background-image:url("../images/icon.png");
        background-repeat:no-repeat;
    background-size:500px auto;
        height: 32px;
    width: 32px;
        display:inline-block;
}
.icon-messager{background-position: -243px -35px;}*/
.icon-phone{
  position: relative;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-image: linear-gradient(to right, #0596e7 0%, #015cd0 100%);
        display: flex;
    align-items: center;
    justify-content: center;
}
.icon-phone::before{
  position: absolute;
  content: '';
  background: url(../images/icon-phone1.svg) no-repeat center center / 100%;
  height: 20px;
  width: 20px;
  animation: 1s ease-in-out 0s normal none infinite running quick-alo-circle-img-anim;
}
.icon-phone1{position: relative;}
.icon-phone1::before{
    width: 30px;
    height: 30px;
    background-size: 80% !important;
    top: calc(50% - 15px);
    left:-30px;
    position: absolute;
    content: '';
    background: rgba(30, 30, 30, 0.1) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAABNmlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjarY6xSsNQFEDPi6LiUCsEcXB4kygotupgxqQtRRCs1SHJ1qShSmkSXl7VfoSjWwcXd7/AyVFwUPwC/0Bx6uAQIYODCJ7p3MPlcsGo2HWnYZRhEGvVbjrS9Xw5+8QMUwDQCbPUbrUOAOIkjvjB5ysC4HnTrjsN/sZ8mCoNTIDtbpSFICpA/0KnGsQYMIN+qkHcAaY6addAPAClXu4vQCnI/Q0oKdfzQXwAZs/1fDDmADPIfQUwdXSpAWpJOlJnvVMtq5ZlSbubBJE8HmU6GmRyPw4TlSaqo6MukP8HwGK+2G46cq1qWXvr/DOu58vc3o8QgFh6LFpBOFTn3yqMnd/n4sZ4GQ5vYXpStN0ruNmAheuirVahvAX34y/Axk/96FpPYgAAACBjSFJNAAB6JQAAgIMAAPn/AACA6AAAUggAARVYAAA6lwAAF2/XWh+QAAAB/ElEQVR42uya7W3CMBCG31QM4A1aNggTlG6QbpBMkHYC1AloJ4BOABuEDcgGtBOETnD9c1ERCH/lwxeaV8oPFGP86Hy+DxMREW5Bd7gRjSDSNGn4/RiAOvm8C0ZCRD5PSkQVXSr1nK/xE3mcWimA1ZV3JYBZCIO4giQANoYxMwYS6+xKY4lT5dJPreWZY+uspqSCKPYN27GJVBDXheVSQe494ksiEWTuMXcu1dld9SARxDX1OAJ4lgjy4zDnFsC076A4adEiRwAZg4hOUSpNoCsBPDGM+HqkNGynYBCuILuWj+dgWysGsNe8nwL4GsrW0m2fxZBq9rW0rNcX5MOQ9eZD8JFahcG5g/iKT671alGAYQggpYWvpEPYWrU/HDTOfeRIX0q2SL3QN4tGhZJukVobQyXYWw7WtLDKDIuM+ZSzscyCE9PCy5IttCvnZNaeiGLNHKuz8ZVh/MXTVu/1xQKmIqLEAuJ0fNo3iG5B51oSkeKnsBi/4bG9gYB/lCytU5G9DryFW+3Gm+JLwU7ehbJrwTjq4DJU8bHcVbEV9dXXqqP6uqO5e2/QZRYJpqu2IUAA4B3tXvx8hgKp05QZW6dJqrLTNkB6vrRURLRwPHqtYgkC3cLWQAcDQGGKH13FER/NATzi786+BPDNjm1dMkfjn2pGkBHkf4D8DgBJDuDHx9BN+gAAAABJRU5ErkJggg==) no-repeat center center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    animation: 1s ease-in-out 0s normal none infinite running quick-alo-circle-img-anim;
}
/* Debug */


/* Bulletin */
.bulletin {position: relative;overflow: hidden;margin:10px;}
.bulletin ul li {position: relative;width: 100%;line-height: normal;float:left;box-sizing: border-box;}
.bulletin.newsale{margin: 0;}
.bulletin ul li a { color: #333;display: block;padding: 5px 0;overflow: hidden;}
.bulletin ul.newsale li a{padding: 0 0 15px 0;}
.bulletin ul li h3 { font-size: 14px; font-weight:500;}
.bulletin ul li p { margin: 10px 0 0; }
.bulletin ul li a:hover,
.bulletin ul li a:focus {color:#e10531;}
.bulletin ul img { float: left;margin-right:10px;border-radius: 7px;}
.bulletin ul div { line-height: 1.2; display: block; }
.bulletin ul span { font-size: 85%; color: #999; font-weight: normal; }
/* end bulletin */

/* load */
/* .loading-ajax{
  background: url('../images/loading.svg') no-repeat center 0;
  width: 100px;
  height: 60px;
  margin: 0 auto;
  display: none;
  position: relative;
}
.loading-ajax::after {
  position: absolute;
  content: 'Đang tải';
  bottom: 0;
  width: 100px;
  height: 20px;
  text-align: center;
} */
.load{
  position: absolute;
  content: '';
  background: rgba(0,0,0,.15) url('../images/loading.svg') no-repeat center center / 20%;
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
  left: 0;
}
.load1,
.load2 {
    position: absolute;
    background: url('../images/loading.png') no-repeat center center / 100%;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
    margin: 0;
    border-radius: 50%;
    animation: Rotate 1s linear infinite;
    display: none;
    z-index: 110000;
}
.load2{
  background: url('../images/loading-blue.png') no-repeat center center / 100%;
  width: 82px;
  height: 82px;
}
/* .loading{
  background: rgba(248,248,248,.6) url('../images/loading2.gif') no-repeat center center;
  width: 150px;
  height: 30px;
  display: none;
  position: absolute;
} */
.load3{
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  font-size: 4px;
  animation: loader 1.1s infinite ease;
  text-indent: -9999em;
  transform: translateZ(0);
  margin: 0 16px 0 5px;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.load4{
  width: 2rem;
  height: 2rem;
  border: 5px solid var(--second);
  border-top: 5px solid #f3f3f3;
  border-radius: 100%;
  animation: spin 1s infinite linear;
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  z-index: 1;
  display: none;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Video Responsive - bao ngoài iframe youtube */
.video-container {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

/* go to top */
#go-top {
  background-color: var(--black10);
  border-radius: 8px;
  cursor: pointer;
  height: 48px;
  width: 48px;
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index:2;
  opacity: 0;
  transform: translateY(100px);
  transition: transform .3s, opacity .3s;
}
#go-top.show{
  transform: translateY(0);
  opacity: 1;
}
#go-top:hover{background-color: var(--primary);}
#go-top svg{width: 20px;height: 20px;}
@media screen and (min-width:2000px){
  #go-top {right: calc(calc(100% - 1350px) / 2);}
}
/* end go to top */


/* rating plugin */
.rating{                
        height: 30px;
        position: relative;
        float: left;
}
.rating li{
        float: left;
        line-height: 1;
        background: url('../images/actia_star.png') no-repeat 0 0;
        width: 28px;
        height: 28px;
        cursor: pointer;
}
.rating li span.star_yellow{
        width: 28px;
        height: 28px;
        background: url('../images/actia_star.png') no-repeat 0 -28px;
        display: block;
} 
.rating .note-star, .show-rating{
  display: inline-block;
  margin-left: 10px;
  position: relative;
  background: #52b858;
  color: #fff;
  padding: 2px 8px;
  box-sizing: border-box;
  font-size: 12px;
  border-radius: 2px;
}
.rating .note-star::after, .show-rating::after{
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(82,184,88,0);
  border-right-color: #52b858;
  border-width: 6px;
  margin-top: -6px;
}


/* desktop 2k 2560x1900 px */
@media screen and (min-width:2560px) and (max-width:4320px){
  #slider .slider-bg {
    width: 100% !important;
    height: 100% !important;
    min-height: 498px !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: 0 0 !important;
  }
  .bg-image, .bg-image-right, .info-img{min-height: 768px !important;}
}



/*---------------- animation --------------------*/

@keyframes quick-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 Rotate {
  0% {
    transform: rotate(0deg) translateZ(0);
  }
  to {
    transform: rotate(1turn) translateZ(0);
  }
}
@keyframes bounce {
    0%{transform: translateY(0);}
    10%{
        transform: translateY(-4px);
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20%{
        transform: translateY(-6px);
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    40% {transform: translateY(-8px);}
    60% {transform: translateY(-10px);}
    100%{transform: translateY(0);}
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; } 
}
@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

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

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

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

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    10%,20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        -ms-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

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

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes loader {
  0%,
  100% {
      box-shadow: 0em -2.6em 0em 0em #777e90, 1.8em -1.8em 0 0em rgba(119,126,144, 0.2), 2.5em 0em 0 0em rgba(119,126,144, 0.2), 1.75em 1.75em 0 0em rgba(119,126,144, 0.2), 0em 2.5em 0 0em rgba(119,126,144, 0.2), -1.8em 1.8em 0 0em rgba(119,126,144, 0.2), -2.6em 0em 0 0em rgba(119,126,144, 0.5), -1.8em -1.8em 0 0em rgba(119,126,144, 0.7); }
  12.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(119,126,144, 0.7), 1.8em -1.8em 0 0em #777e90, 2.5em 0em 0 0em rgba(119,126,144, 0.2), 1.75em 1.75em 0 0em rgba(119,126,144, 0.2), 0em 2.5em 0 0em rgba(119,126,144, 0.2), -1.8em 1.8em 0 0em rgba(119,126,144, 0.2), -2.6em 0em 0 0em rgba(119,126,144, 0.2), -1.8em -1.8em 0 0em rgba(119,126,144, 0.5); }
  25% {
      box-shadow: 0em -2.6em 0em 0em rgba(119,126,144, 0.5), 1.8em -1.8em 0 0em rgba(119,126,144, 0.7), 2.5em 0em 0 0em #777e90, 1.75em 1.75em 0 0em rgba(119,126,144, 0.2), 0em 2.5em 0 0em rgba(119,126,144, 0.2), -1.8em 1.8em 0 0em rgba(119,126,144, 0.2), -2.6em 0em 0 0em rgba(119,126,144, 0.2), -1.8em -1.8em 0 0em rgba(119,126,144, 0.2); }
  37.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(119,126,144, 0.2), 1.8em -1.8em 0 0em rgba(119,126,144, 0.5), 2.5em 0em 0 0em rgba(119,126,144, 0.7), 1.75em 1.75em 0 0em #777e90, 0em 2.5em 0 0em rgba(119,126,144, 0.2), -1.8em 1.8em 0 0em rgba(119,126,144, 0.2), -2.6em 0em 0 0em rgba(119,126,144, 0.2), -1.8em -1.8em 0 0em rgba(119,126,144, 0.2); }
  50% {
      box-shadow: 0em -2.6em 0em 0em rgba(119,126,144, 0.2), 1.8em -1.8em 0 0em rgba(119,126,144, 0.2), 2.5em 0em 0 0em rgba(119,126,144, 0.5), 1.75em 1.75em 0 0em rgba(119,126,144, 0.7), 0em 2.5em 0 0em #777e90, -1.8em 1.8em 0 0em rgba(119,126,144, 0.2), -2.6em 0em 0 0em rgba(119,126,144, 0.2), -1.8em -1.8em 0 0em rgba(119,126,144, 0.2); }
  62.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(119,126,144, 0.2), 1.8em -1.8em 0 0em rgba(119,126,144, 0.2), 2.5em 0em 0 0em rgba(119,126,144, 0.2), 1.75em 1.75em 0 0em rgba(119,126,144, 0.5), 0em 2.5em 0 0em rgba(119,126,144, 0.7), -1.8em 1.8em 0 0em #777e90, -2.6em 0em 0 0em rgba(119,126,144, 0.2), -1.8em -1.8em 0 0em rgba(119,126,144, 0.2); }
  75% {
      box-shadow: 0em -2.6em 0em 0em rgba(119,126,144, 0.2), 1.8em -1.8em 0 0em rgba(119,126,144, 0.2), 2.5em 0em 0 0em rgba(119,126,144, 0.2), 1.75em 1.75em 0 0em rgba(119,126,144, 0.2), 0em 2.5em 0 0em rgba(119,126,144, 0.5), -1.8em 1.8em 0 0em rgba(119,126,144, 0.7), -2.6em 0em 0 0em #777e90, -1.8em -1.8em 0 0em rgba(119,126,144, 0.2); }
  87.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(119,126,144, 0.2), 1.8em -1.8em 0 0em rgba(119,126,144, 0.2), 2.5em 0em 0 0em rgba(119,126,144, 0.2), 1.75em 1.75em 0 0em rgba(119,126,144, 0.2), 0em 2.5em 0 0em rgba(119,126,144, 0.2), -1.8em 1.8em 0 0em rgba(119,126,144, 0.5), -2.6em 0em 0 0em rgba(119,126,144, 0.7), -1.8em -1.8em 0 0em #777e90; } 
}
@keyframes phone {
  0% {
    -webkit-box-shadow: 0 0 8px 6px rgba(255,200,23,0), 0 0 0px 0px transparent, 0 0 0px 0px rgba(255,200,23,0);
    box-shadow: 0 0 8px 6px rgba(255,200,23,0), 0 0 0px 0px transparent, 0 0 0px 0px rgba(255,200,23,0);
  }
  10% {
      -webkit-box-shadow: 0 0 8px 6px var(--primary-3), 0 0 12px 10px transparent, 0 0 12px 14px var(--primary-3);
      box-shadow: 0 0 8px 6px var(--primary-3), 0 0 12px 10px transparent, 0 0 12px 14px var(--primary-3);
  }
  100% {
      -webkit-box-shadow: 0 0 8px 6px rgba(255,200,23,0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(255,200,23,0);
      box-shadow: 0 0 8px 6px rgba(255,200,23,0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(255,200,23,0);
  }
}
@-webkit-keyframes move_wave {
  0% {
    transform: translateZ(0) translateY(0) scaleY(1); }
  100% {
    transform: translateZ(5px) translateY(-50%) scaleY(1); } 
}
@keyframes move_wave {
  0% {
    transform: translateZ(0) translateY(0) scaleY(1); }
  100% {
    transform: translateZ(5px) translateY(-50%) scaleY(1); } 
}
@keyframes flash {
  0%,100%,50% {opacity: 1}
  25%,75% {opacity: 0}
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}
.swing {
  -webkit-animation-name: swing;
  animation-name: swing;
}

