@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  outline: none;
}

body {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.AZ-img-container {
  position: relative;
  overflow: hidden;
  display: block;
}
.AZ-img-container::after {
  content: "";
  display: block;
}
.AZ-img-container .img-container-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.AZ-img-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.AZ-title__section {
  font-size: 36px;
  color: #585858;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.AZ-group-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.AZ-group-field input {
  height: 40px;
}
.AZ-group-field input, .AZ-group-field textarea {
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: #555;
  background: #FFFFFF;
  padding: 0 20px;
  border: 1px solid #dadada;
}
.AZ-group-field input:focus, .AZ-group-field textarea:focus {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.AZ-group-checkbox input {
  display: none;
}
.AZ-group-checkbox label {
  font-size: 16px;
  color: #212529;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-left: 25px;
}
.AZ-group-checkbox label::after {
  content: "";
  font: var(--fa-font-solid);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  font-size: 15px;
  border-radius: 5px;
  background: #FFFFFF;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 1px solid #dadada;
}
.AZ-group-checkbox input:checked ~ label::after {
  content: "\f00c";
  background: #050E59;
}

.AZ-primary-btn {
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  background: #050E59;
  padding: 15px 40px;
  transition: all 0.2s linear;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}
.AZ-primary-btn:hover {
  background: #091586;
  color: #FFFFFF;
}
.AZ-primary-btn span {
  font-size: 20px;
}

.AZ-footer {
  background: #706F6F;
  padding: 50px 0;
}
.AZ-footer .footer-slogan {
  font-size: 35px;
  color: #FFFFFF;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
.AZ-footer .footer-text {
  font-size: 17px;
  color: #FFFFFF;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
.AZ-footer .footer-title {
  font-size: 17px;
  color: #FFFFFF;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
.AZ-footer .footer-link {
  font-size: 14px;
  color: #d6d6d6;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
.AZ-footer .footer-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.AZ-footer .copyright,
.AZ-footer .footer-contact {
  font-size: 14px;
  color: #FFFFFF;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
.AZ-footer .footer-contact {
  border-right: 1px solid #fff;
  padding: 0 5px;
}
.AZ-footer .footer-contact i {
  margin-right: 5px;
}
.AZ-footer .footer-contact:last-child {
  border-right: none;
}
.AZ-footer .social a {
  font-size: 25px;
  color: #FFFFFF;
  transition: all 0.2s linear;
}
.AZ-footer .social a:hover {
  color: #091688;
}

.AZ-login-page {
  padding: 80px 0;
  overflow: hidden;
}
.AZ-login-page .login-title {
  font-size: 20px;
  color: #555555;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
.AZ-login-page .forget-pass {
  font-size: 16px;
  color: #050E59;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  margin-bottom: 30px;
  display: inline-block;
}
.AZ-login-page .login-box {
  padding: 0 150px;
}

.AZ-post-header {
  position: relative;
  height: 200px;
}
.AZ-post-header .header-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.AZ-post-header .post-header-title {
  font-size: 48px;
  color: #fefefe;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  position: relative;
  z-index: 10;
  bottom: 20px;
}

.AZ-post-page {
  padding: 50px 0;
}
.AZ-post-page .category-link {
  font-size: 14px;
  color: #003a70;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
.AZ-post-page .category-link:hover {
  text-decoration: underline;
}

.AZ-breadcrumb {
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.AZ-breadcrumb .breadcrumb-link {
  font-size: 14px;
  color: #050E59;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
.AZ-breadcrumb .breadcrumb-link:hover {
  text-decoration: underline;
}
.AZ-breadcrumb .active {
  color: #333;
}
.AZ-breadcrumb .active:hover {
  text-decoration: none;
}
.AZ-breadcrumb i {
  margin: 0 5px;
  font-size: 10px;
}

article h1 {
  font-size: 24px;
  color: #000000;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
article h2, article h3, article h4 {
  font-size: 20px;
  color: #050E59;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 30px;
}
article p {
  font-size: 16px;
  color: #585858;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}
article img {
  width: 100%;
  margin-bottom: 20px;
}
article .post-date {
  font-size: 14px;
  color: #7f7f7f;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  gap: 10px;
}

.AZ-slider {
  overflow: hidden;
}
.AZ-slider .slider-img {
  width: 100%;
  height: 700px;
}
.AZ-slider .slider-overlay {
  width: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.AZ-slider .slider-tag {
  font-size: 18px;
  color: #050E59;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  background: #ffffff;
  padding: 5px 20px;
  text-align: center;
}
.AZ-slider .slider-title {
  font-size: 40px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
.AZ-slider .slider-text {
  font-size: 18px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}
.AZ-slider .slider-link {
  font-size: 30px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.AZ-boxes-section .box-link {
  width: 100%;
}
.AZ-boxes-section .box-link::after {
  padding-bottom: 60%;
}
.AZ-boxes-section .box-link img {
  transition: all 0.2s linear;
}
.AZ-boxes-section .box-link:hover img {
  transform: scale(1.1);
}
.AZ-boxes-section .box-link-btn {
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}

.AZ-category-section {
  margin-bottom: 80px;
}
.AZ-category-section .category-card {
  padding: 40px 20px;
}
.AZ-category-section .category-card:hover {
  background: #ddd;
}
.AZ-category-section .category-card_title {
  font-size: 16px;
  color: #555555;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  margin-top: 20px;
}
.AZ-category-section .category-card_img {
  width: 40%;
  font-size: 80px;
  color: #091586;
}

.AZ-post-card {
  border-bottom: 1px solid #ddd;
}
.AZ-post-card .post-card-img {
  width: 100%;
}
.AZ-post-card .post-card-img::after {
  padding-bottom: 60%;
}
.AZ-post-card .post-card-title {
  font-size: 16px;
  color: #050E59;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.AZ-post-card .post-card-text {
  font-size: 14px;
  color: #7f7f7f;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}

.AZ-header {
  background: #050E59;
}
.AZ-header .arrow {
  transition: all 0.2s linear;
  display: none;
}
.AZ-header #accordian > ul > li.active > ul.show-dropdown,
.AZ-header #accordian > ul > li > ul > li.active > ul.show-dropdown,
.AZ-header #accordian > ul > li > ul > li > ul > li.active > ul.show-dropdown,
.AZ-header #accordian > ul > li > ul > li > ul > li > ul > li.active > ul.show-dropdown {
  display: none !important;
  padding-left: 20px;
}
.AZ-header .has-megamenu {
  position: relative;
}
.AZ-header .has-megamenu .megamenu-wrapper {
  padding-top: 20px;
  position: absolute;
  top: 100%;
  right: 0;
  width: 600px;
  z-index: 1;
  display: none;
}
.AZ-header .has-megamenu .megamenu {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  width: 100%;
}
.AZ-header .has-megamenu .megamenu .nav-bottom-link {
  color: #000000;
}
.AZ-header .has-megamenu .megamenu .nav-bottom-link:hover {
  color: #FF6831;
}
.AZ-header .has-megamenu .submenu {
  padding-top: 20px;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  display: none;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
}
.AZ-header .has-megamenu .submenu .nav-bottom-link {
  color: #000000;
  white-space: nowrap;
}
.AZ-header .has-megamenu .submenu .nav-bottom-link:hover {
  color: #FF6831;
}
.AZ-header .has-megamenu .submenu-level2 {
  position: absolute;
  top: 10px;
  left: 100%;
  right: unset;
  display: none;
}
.AZ-header .has-megamenu:hover .megamenu-wrapper {
  display: block;
}
.AZ-header .has-megamenu:hover > .submenu {
  display: block !important;
}
.AZ-header .nav-link {
  font-size: 13px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
.AZ-header .nav-link i {
  font-size: 10px;
}
.AZ-header .contact-link {
  font-size: 18px;
  color: #050E59;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  padding: 15px 10px;
}
.AZ-header .modal-backdrop {
  background-color: unset;
}
.AZ-header .close-canvas {
  position: absolute;
  right: -40px;
  top: 10px;
  color: #050E59;
  font-size: 35px;
}
.AZ-header .nav-bottom-link {
  font-size: 16px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  padding: 8px 20px;
  transition: all 0.2s linear;
}
.AZ-header .nav-bottom-link:hover {
  color: rgb(255, 131, 86);
}
.AZ-header .nav-bottom-link.active {
  background: rgb(255, 104, 49);
}
.AZ-header .nav-bottom-link.active:hover {
  color: #FFFFFF;
}
.AZ-header .login-btn {
  background: #ffffff;
  color: #050E59;
  border-radius: 5px;
  padding: 8px 20px;
}
.AZ-header .navbar-toggler {
  font-size: 25px;
  color: #fff;
}
.AZ-header .navbar-toggler:focus {
  box-shadow: none;
}

.AZ-search-box {
  border: 1px solid #050E59;
  width: 300px;
}
.AZ-search-box input {
  font-size: 14px;
  color: #333;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  padding: 0 15px;
}
.AZ-search-box button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #050E59;
}

.AZ-order-page {
  margin-bottom: 50px;
}
.AZ-order-page .order-title {
  color: #050E59;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  margin: 20px 0;
}
.AZ-order-page .order-img {
  width: 100%;
  border-radius: 50%;
  border: 1px solid #050E59;
  transition: all 0.2s linear;
}
.AZ-order-page .order-img .img-container-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-order-page .order-img::after {
  padding-bottom: 100%;
}
.AZ-order-page .order-img i {
  font-size: 50px;
  color: #212529;
}
.AZ-order-page .order-img:hover {
  background: #050E59;
}
.AZ-order-page .order-img:hover i {
  color: #FFFFFF;
}
.AZ-order-page .order-box-title {
  font-size: 12px;
  margin: 5px 0;
  color: #050E59;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
.AZ-order-page .order-box-text {
  font-size: 12px;
  color: #212529;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
.AZ-order-page .order-category-list {
  border-right: 1px solid #ddd;
  padding: 30px 0;
  height: 100%;
}
.AZ-order-page .order-category-list .order-category-link {
  font-size: 16px;
  color: #212529;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
  transition: all 0.2s linear;
}
.AZ-order-page .order-category-list .order-category-link:hover {
  background: #050E59;
  color: #FFFFFF;
}
.AZ-order-page .tabs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #ddd;
  width: 100%;
}
.AZ-order-page .tab-link {
  font-size: 16px;
  color: #050E59;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  padding: 10px 30px;
  background: #ddd;
  display: block;
}
.AZ-order-page .tab-link.active {
  background: #050E59;
  color: #ffffff;
}

.pagination .page-link {
  font-size: 14px;
  color: #706F6F;
  width: 35px;
  height: 35px;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
.pagination .page-link.active {
  background: #050E59;
  color: #FFFFFF;
}

.table-wrapper {
  overflow-x: auto;
}

.table {
  border: 1px solid rgb(219, 219, 219);
}
.table td {
  color: gray;
  font-size: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  white-space: nowrap;
  text-align: center;
}
.table td span {
  margin-right: 10px;
  font-size: 12px;
}
.table tr {
  border-bottom: 1px solid rgb(211, 211, 211);
  text-align: center;
}
.table tr:last-child {
  border-bottom: unset;
}
.table .head {
  background: #ddd;
  padding: 10px;
}
.table .head th {
  color: #212529;
  padding: 10px 20px 10px 10px;
  font-size: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .AZ-header .has-megamenu .submenu {
    position: unset;
    box-shadow: none;
    padding: 0;
  }
  .AZ-header .has-megamenu:hover .submenu {
    display: none !important;
  }
  .AZ-header #accordian > ul > li > ul,
  .AZ-header #accordian > ul > li > ul > li > ul,
  .AZ-header #accordian > ul > li > ul > li > ul > li > ul,
  .AZ-header #accordian > ul > li > ul > li > ul > li > ul > li > ul {
    display: none;
  }
  .AZ-header #accordian > ul > li.active > ul.show-dropdown,
  .AZ-header #accordian > ul > li > ul > li.active > ul.show-dropdown,
  .AZ-header #accordian > ul > li > ul > li > ul > li.active > ul.show-dropdown,
  .AZ-header #accordian > ul > li > ul > li > ul > li > ul > li.active > ul.show-dropdown {
    display: block !important;
    padding-left: 20px;
  }
  .AZ-header #accordian .active > a span {
    transform: rotate(180deg);
  }
  .AZ-header .navbar-nav {
    margin-top: 20px;
  }
  .AZ-header .navbar-nav li {
    width: 100%;
  }
  .AZ-header .login-btn {
    padding: 8px 20px;
    height: 40px;
  }
  .AZ-header .nav-bottom-link {
    font-size: 18px;
    color: #333;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    justify-content: space-between;
  }
  .AZ-header .sidebar-menu {
    width: 300px;
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 10;
    height: 100%;
    transition: all 0.2s linear;
    background: #fefefe;
  }
  .AZ-header .sidebar-menu.show {
    right: 0;
  }
  .AZ-header .sidebar-menu::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    content: " ";
  }
  .AZ-header .sidebar-close {
    font-size: 35px;
    position: absolute;
    left: -45px;
    top: 10px;
    color: #050E59;
    background: #fefefe;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .AZ-header .nav-link {
    font-size: 14px;
    color: #585858;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    gap: 10px;
    padding: 10px 10px;
  }
  .AZ-header .nav-link i {
    font-size: 10px;
  }
  .AZ-header .sidebar-menu_inner {
    width: 100%;
    overflow-y: auto;
    padding: 20px;
    flex-direction: column-reverse !important;
  }
  .AZ-order-page .order-category-list {
    border-right: 0;
  }
  .AZ-footer .footer-contact {
    border-right: 0;
  }
  .AZ-slider .slider-overlay {
    width: 80%;
  }
  .AZ-slider .slider-text {
    font-size: 14px;
  }
  .AZ-slider .slider-title {
    font-size: 22px;
  }
  .AZ-slider .slider-link {
    font-size: 14px;
  }
  .AZ-slider .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
  }
  .AZ-login-page {
    padding: 0 0 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .AZ-title__section {
    font-size: 22px;
  }
  .AZ-header .navbar-brand img {
    width: 100px;
  }
  .AZ-footer .footer-slogan {
    font-size: 20px;
  }
  .AZ-login-page .login-box {
    padding: 0 20px;
  }
  article h1 {
    font-size: 20px;
  }
  article h2, article h3, article h4 {
    font-size: 18px;
  }
  article p {
    font-size: 14px;
  }
  article .post-date {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .AZ-order-page .tabs {
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .AZ-order-page .tab-link {
    font-size: 14px;
    padding: 8px 10px;
    white-space: nowrap;
  }
  .AZ-header .sidebar-close {
    font-size: 20px;
    left: 5px;
    top: 0;
    color: #050E59;
  }
  .AZ-header .login-btn {
    font-size: 12px;
    padding: 5px 10px;
    height: 35px;
  }
  .AZ-search-box {
    width: 100%;
  }
  .AZ-slider .slider-text {
    font-size: 16px;
  }
  .AZ-slider .slider-title {
    font-size: 18px;
  }
  .AZ-slider .slider-link {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */