﻿@charset "UTF-8";
* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

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

.container-custom-80 {
  width: 90%;
  max-width: 1900px;
  margin-right: auto;
  margin-left: auto;
}

.container-custom-100 {
  width: 100%;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

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

/******* 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é****/
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
}
ul, li {
  list-style: none;
}

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

a:hover {
  text-decoration: none;
}

/* ===================== BASE ===================== */
.section-divider {
  width: 36px;
  height: 3px;
  background: #036bd6;
  border-radius: 3px;
  margin: 8px 0 18px;
}

.section-divider.accent {
  background: #d8312b;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a2332;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.section-sub {
  font-size: 14px;
  color: #6b7a90;
}

.btn-primary-custom {
  background: linear-gradient(105deg, #488cfa 20%, #60a5fa 100%);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-primary-custom:hover {
  filter: brightness(0.95);
  color: #fff;
}

.btn-outline-custom {
  background: rgba(255, 255, 255, 0.5);
  color: #488cfa;
  border: 1.5px solid #488cfa;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-outline-custom:hover {
  filter: brightness(0.95);
  color: #488cfa;
}

/* ===================== HEADER ===================== */
#header-top {
  color: #036bd6;
  padding: 12px 0;
  border-bottom: 2px solid #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
@media only screen and (max-width: 769px) {
  #header-top .header-contaienr {
    flex-direction: column;
    gap: 12px;
  }
}
#header-top .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
#header-top .logo-box {
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 769px) {
  #header-top .logo-box {
    width: 40px;
    height: 40px;
  }
}
#header-top .logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#header-top .site-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}
@media only screen and (max-width: 769px) {
  #header-top .site-name {
    font-size: 16px;
  }
}
#header-top .site-sub {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}
@media only screen and (max-width: 769px) {
  #header-top .site-sub {
    font-size: 16px;
  }
}
#header-top .navbar-nav .nav-link {
  color: #036bd6;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 3px solid transparent;
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
}
#header-top .navbar-nav .nav-link:hover, #header-top .navbar-nav .nav-link.active {
  color: #488cfa;
  border-bottom-color: #488cfa;
}
#header-top .navbar-nav .nav-link svg {
  font-size: 14px;
}
#header-top .header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  #header-top .header-actions {
    width: 100%;
  }
}
#header-top .header-actions .search-box {
  position: relative;
}
@media only screen and (max-width: 769px) {
  #header-top .header-actions .search-box {
    flex: 1;
  }
}
#header-top .header-actions .search-box input {
  padding: 8px 35px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 350px;
  font-size: 15px;
  outline: none;
}
@media only screen and (max-width: 769px) {
  #header-top .header-actions .search-box input {
    width: 100%;
    font-size: 14px;
    padding: 7px 35px 7px 12px;
  }
}
#header-top .header-actions .search-box button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #666;
}
@media only screen and (max-width: 769px) {
  #header-top .header-actions .search-box button {
    font-size: 14px;
  }
}
#header-top .header-actions .btn-notification {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#header-top .header-actions .btn-notification svg {
  font-size: 20px;
}
#header-top .header-actions .btn-notification span {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d03b3b;
  border: 1.5px solid #fff;
}
#header-top .header-actions .btn-login {
  background: linear-gradient(105deg, #488cfa 20%, #60a5fa 100%);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.22s ease;
  white-space: nowrap;
}
@media only screen and (max-width: 769px) {
  #header-top .header-actions .btn-login {
    padding: 10px;
    font-size: 14px;
  }
}
#header-top .header-actions .btn-login svg {
  font-weight: 600;
}
#header-top .header-actions .btn-login:hover {
  filter: brightness(0.95);
  color: #fff;
}
