﻿@charset "UTF-8";
/******* RESPONSIVE ********/
/****Màn hình máy tính thông thường****/
/****Màn hình desktop loại bé****/
/**** Màn hình ipad hiển thị theo chiều ngang (Landscape) ****/
/****Màn hình ipad loại bé hiển thị theo chiều ngang (Landscape)****/
/****Màn hình ipad hiển thị theo chiều dọc (Portrait)****/
/****Màn hình ipad loại bé hiển thị theo chiều dọc (Portrait)****/
/****Màn hình điện thoại hiển thị theo chiều ngang (Landscape)****/
/****Màn hình điện thoại Iphone Plus****/
/****Màn hình điện thoại Iphone****/
/****Màn hình điện thoại loại bé****/
* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  box-sizing: border-box;
  font-size: 15px;
  line-height: 1.5;
  scroll-behavior: smooth;
}

p {
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@font-face {
  font-family: "manrope-regular";
  src: url("../../fonts/manrope/static/manrope-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Merriweather";
  src: url("../../fonts/merriweather/merriweather-variablefont_opsz,wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "fontawesome-webfont";
  src: url("../../fonts/fontawe4/fontawesome-webfont.ttf") format("truetype");
}
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/nunito/nunito-variablefont_wght.ttf") format("truetype");
}
ul, li {
  list-style: none;
}

body {
  color: #0a2540;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
}

p {
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

#loading {
  display: none;
  position: fixed;
  z-index: 1050;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
#loading .sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}
#loading .sk-chase .sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}
#loading .sk-chase .sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}
#loading .sk-chase .sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}
#loading .sk-chase .sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}
#loading .sk-chase .sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}
#loading .sk-chase .sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}
#loading .sk-chase .sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}
#loading .sk-chase .sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}
#loading .sk-chase .sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}
#loading .sk-chase .sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}
#loading .sk-chase .sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}
#loading .sk-chase .sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}
#loading .sk-chase .sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}
#loading .sk-chase .sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}
@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  80%, 100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  100%, 0% {
    transform: scale(1);
  }
}
