@font-face {
  font-family: "news706-Bold";
   src: url("Roboto_Bold.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "Tokyo";
  src: url("Roboto_Light.ttf") format("truetype");
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Tokyo";
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

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

.my-80 {
  margin: 80px 0;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.my-100 {
  margin: 100px 0;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.gap-2 {
  gap: 2px;
}

.gap-4 {
  gap: 4px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.AZ-img-container {
  position: relative;
  overflow: hidden;
  display: block;
}

.AZ-img-container::after {
  content: "";
  display: block;
}

.AZ-img-container-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.AZ-page-title {
  font-size: 30px;
  color: #222529;
  font-family: "KalamehFaNum-Bold";
  margin-bottom: 20px;
}

.AZ-page-text {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
  line-height: 141.2%;
  /* 22.592px */
  text-align: justify;
}

.AZ-field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.AZ-field-group label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8784313725);
  font-family: "news706-Bold";
  font-weight: 500;
  margin-bottom: 5px;
}

.AZ-field-group label span {
  color: red;
}

.AZ-field-group input,
.AZ-field-group textarea {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.61);
  box-shadow: 0px 2px 7px 0px rgba(8, 15, 46, 0.47);
  -webkit-backdrop-filter: blur(8.5px);
  backdrop-filter: blur(8.5px);
  padding: 4px 11px;
  transition: all 0.2s linear;
  flex-grow: 1;
  border: 1px solid rgba(255, 255, 255, 0.61);
  border-radius: 24px;
}

.AZ-field-group input:focus,
.AZ-field-group input:hover,
.AZ-field-group textarea:focus,
.AZ-field-group textarea:hover {
  border: 1px solid #A1DBE3;
}

.AZ-field-group .field-group_inner {
  background: rgba(255, 255, 255, 0.61);
  box-shadow: 0px 2px 7px 0px rgba(8, 15, 46, 0.47);
  -webkit-backdrop-filter: blur(8.5px);
  backdrop-filter: blur(8.5px);
  padding: 4px 11px;
  transition: all 0.2s linear;
  border: 1px solid rgba(255, 255, 255, 0.61);
}

.AZ-field-group .field-group_inner input,
.AZ-field-group .field-group_inner textarea {
  background: transparent;
  border: unset;
}

.AZ-field-group .field-group_inner input:hover,
.AZ-field-group .field-group_inner textarea:hover {
  border: none;
}

.AZ-field-group .field-group_inner span {
  padding: 0 10px;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.AZ-field-group .field-group_inner span:hover {
  color: #000;
}

.AZ-field-group .field-group_inner:hover,
.AZ-field-group .field-group_inner:focus-within {
  border: 1px solid var(--prmary-color);
}

.AZ-checkbox-group label {
  font-size: 12px;
  color: #222529;
  font-family: "KalamehFaNum-Bold";
  padding-right: 35px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.AZ-checkbox-group label::after {
  content: "";
  font-family: "icomoon";
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s linear;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.AZ-checkbox-group input {
  display: none;
}

.AZ-checkbox-group input:checked~label::after {
  content: "\e960";
  background: var(--prmary-color);
}

.AZ-title-wrapper {
  margin-bottom: 30px;
  gap: 15px;
  width: 100%;
}

.AZ-title-wrapper .line {
  flex-grow: 1;
  width: 100%;
  height: 1px;
  background: #000;
  margin-bottom: 15px;
}

.AZ-title-wrapper .namad {
  display: contents;
  position: absolute;
}

.AZ-title-wrapper .namad::after {
  content: "nj";
  position: absolute;
  top: 0;
  right: -30px;
  font-size: 28px;
  color: #EA002A;
}

.AZ-title {
  font-size: 64px;
  color: #000;
  font-family: "news706-Bold";
  white-space: nowrap;
  width: auto;
}

.AZ-section-title {
  font-size: 64px;
  color: #000;
  font-family: "news706-Bold";
  white-space: nowrap;
}

.AZ-quantity-field {
  min-width: 150px;
  overflow: hidden;
  height: 35px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.25) inset;
}

.AZ-quantity-field .value-button {
  font-size: 25px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
  width: 27%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid #d9d9d9;
}

.AZ-quantity-field .value-button span {
  font-size: 15px;
  color: #A0A0A0;
}

.AZ-quantity-field .number {
  border: none;
  margin: 0px;
  height: 100%;
  width: 46%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-align: center;
  box-shadow: none;
  padding: 0;
  font-size: 14px;
  font-family: "KalamehFaNum-Regular";
}

.AZ-quantity-field input::-webkit-outer-spin-button,
.AZ-quantity-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.AZ-quantity-field input[type=number] {
  -moz-appearance: textfield;
}

.AZ-quantity-field .number::-moz-selection {
  background: none;
}

.AZ-quantity-field .number::selection {
  background: none;
}

.AZ-primary-btn,
.AZ-secondary-btn {
  transition: all 0.2s linear;
  border: 1px solid #000000;
  font-size: 20px;
  color: #fff;
  border-radius: 0 30px 30px 0;
  background: #000000;
  height: 40px;
  padding: 4px;
  border-radius: 40px;
  font-weight: 400;
}

.AZ-primary-btn:hover,
.AZ-secondary-btn:hover {
  background: #404040;
  border: 1px solid #000000;
  color: #fff;
}

.AZ-primary-btn p,
.AZ-secondary-btn p {
  padding: 0 40px 5px;
}

.AZ-primary-btn .btn-icon,
.AZ-secondary-btn .btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #D9D9D9;
  color: #001B72;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.AZ-secondary-btn {
  background: #fff;
  border: 1px solid #fff;
  color: #001B72;
}

.AZ-secondary-btn:hover {
  color: #001B72;
}

.AZ-footer {
  background: #000;
  box-shadow: 0px 4px 30px 0px #080F2E;
  -webkit-backdrop-filter: blur(21.5px);
  backdrop-filter: blur(21.5px);
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.AZ-footer .footer-text {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 158%;
  /* 25.28px */
}

.AZ-footer .footer-title {
  font-size: 20px;
  color: #FFFFFF;
  font-family: "news706-Bold";
  margin-bottom: 25px;
}

.AZ-footer .footer-link {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 400;
  transition: all 0.2s linear;
}

.AZ-footer .footer-link:hover {
  color: #EA002A;
}

.AZ-footer .footer-brand img {
  width: 133px;
  margin-bottom: 20px;
}

.AZ-footer .AZ-social a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;

  overflow: hidden;
  position: relative;
}

.AZ-footer .AZ-social a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 23px;
  height: 13px;
  filter: blur(9px);
}



.AZ-footer .AZ-social a.facebook::after {
  background: #0A77E8;
}

.AZ-footer .AZ-social a.x::after {
  background: #11B0FF;
}

.AZ-footer .AZ-social a.telegram::after {
  background: #1893D1;
}

.AZ-footer .search-wrapper input {
  font-size: 16px;
  color: #FFFFFF;
  background: rgba(242, 242, 242, 0.56);
  height: 34px;
  padding: 5px 10px;
  border: 0;
  border-radius: 40px;
}

.AZ-footer .search-wrapper button {
  min-width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0px 1px 4px 0px #00CE7C inset, 0px 0px 2px 0px rgba(255, 255, 255, 0.67) inset, 0px 0px 6px 0px rgba(79, 185, 255, 0.68) inset;
}

.AZ-search-wrapper {
  min-width: 197px;
  width: 197px;
  height: 32px;
  border-radius: 30px 0 0 30px;
  border: 1px solid #000;
  background: #fff;
}

.AZ-search-wrapper input {
  font-size: 14px;
  color: #222529;
  background: transparent;
  padding: 5px 10px;
  flex-grow: 1;
  height: 100%;
  border: 0;
}

.AZ-search-wrapper input:focus {
  box-shadow: none;
}

.AZ-search-wrapper button {
  background: transparent;
  height: 100%;
  padding: 5px 10px;
  font-size: 18px;
  color: #000;
  border: 0;
}

.AZ-location {
  width: 100%;
  height: 350px;
  position: relative;
  z-index: 1;
}

.AZ-location .map {
  position: relative;
  width: 100%;
  height: 100%;
}

.AZ-header {
  padding: 20px 0;
  position: absolute;
  top: 30px;
  width: 100%;
  left: 0;
  z-index: 100;
}

.AZ-header .navbar-collapse {
  justify-content: center;
}

.AZ-header .navbar {
  padding: 0;
}

.AZ-header .container {
  border-radius: 0px 48px 48px 0px;
  background: #FFF;
  padding: 10px 28px;
}

.AZ-header .navbar-brand img {
  width: 73px;
}

.AZ-header .nav-link {
  font-size: 15px;
  color: #000;
  font-family: "news706-Bold";
  transition: all 0.2s linear;
  padding: 10px 15px !important;
  white-space: nowrap;
}

.AZ-header .nav-link:hover {
  color: #EA002A;
}

.AZ-header .nav-icon {
  background: transparent;
  border: 0;
  font-size: 24px;
  color: #001B72;
}

.AZ-header .nav-icon::after {
  content: none;
}

.AZ-header .navbar-toggler {
  font-size: 24px;
  color: #001B72;
  padding: 0;
}

.AZ-header .navbar-toggler:focus {
  box-shadow: none;
}

.AZ-header .header-btn {
  background: #D13E3B;
  height: 32px;
  border-radius: 0 30px 30px 0;
  border: 0;
  color: #FFF;
  font-weight: 700;
}

.AZ-contact-page {
  position: relative;
}

.AZ-contact-page .AZ-primary-btn,
.AZ-contact-page .AZ-secondary-btn {
  border: 1px solid #D13E3B;
  color: #ffffff;
  background: #D13E3B;
  padding: 0;
}

.AZ-contact-page .header-contact {
  padding-top: 300px;
  position: relative;
  top: 0;
}

.AZ-contact-page .header-contact img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.AZ-contact-page .header-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: linear-gradient(180deg, #000 0%, #015874 100%);
}

.AZ-contact-page .contact-box {
  position: relative;
  z-index: 10;
  background: #FFF;
  box-shadow: 5px 15px 35px 0px rgba(0, 0, 0, 0.4);
  padding: 0 44px;
  margin-bottom: -50px;
  border-radius: 24px;
}

.AZ-contact-page .col-left {
  background: linear-gradient(180deg, #000 0%, #3a3a3a 100%);
  box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.62);
  margin-top: -50px;
  height: 100%;
  padding: 41px 76px 100px;
  border-radius: 24px;
}

.AZ-contact-page .col-right {
  padding: 74px 100px;
}

.AZ-contact-page .col-right .AZ-title {
  font-size: 32px;
  color: #626262;
  font-family: "news706-Bold";
  white-space: nowrap;
  width: auto;
}

.AZ-contact-page .contaact-list-title {
  font-size: 48px;
  color: #FFFFFF;
  font-family: "news706-Bold";
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  white-space: nowrap;
}

.AZ-contact-page .contaact-list-item {
  padding: 10px 0;
}

.AZ-contact-page .contaact-list-item a,
.AZ-contact-page .contaact-list-item span {
  font-size: 20px;
  color: #FFFFFF;
  transition: all 0.2s linear;
}

.AZ-contact-page .contaact-list-item a:hover,
.AZ-contact-page .contaact-list-item span:hover {
  color: #EA002A;
}

.AZ-contact-page .contaact-list-item span {
  font-size: 22px;
}

.AZ-contact-page .social a {
  font-size: 16px;
  color: #fff;
  transition: all 0.2s linear;
}

.AZ-contact-page .social a:hover {
  color: #EA002A;
}

.AZ-about-section {
  margin: 100px 0;
}

.AZ-about-section .img-1 {
  width: 100%;
  border-radius: 24px;
}

.AZ-about-section .img-1::after {
  padding-bottom: 150%;
}

.AZ-about-section .img-2 {
  width: 100%;
  border-radius: 24px;
}

.AZ-about-section .img-2::after {
  padding-bottom: 130%;
}

.AZ-about-section .img-3 {
  width: 100%;
  border-radius: 24px;
}

.AZ-about-section .img-3::after {
  padding-bottom: 80%;
}

.AZ-about-section .counter-box {
  padding: 4px 38px;
  width: 213px;
  border-radius: 24px;
  background: #000000;
  box-shadow: -5px 8px 15px 0px rgba(0, 0, 0, 0.31);
  margin-top: -30px;
  z-index: 1;
}

.AZ-about-section .counter-box_title {
  font-size: 40px;
  color: #ffffff;
  font-family: "news706-Bold";
}

.AZ-about-section .counter-box_text {
  font-size: 16px;
  color: #ffffff;
  font-family: "news706-Bold";
}

.AZ-about-section .counter-box_top_right {
  position: absolute;
  bottom: unset;
  top: 0;
  right: 0;
  left: unset;
  margin-top: 0;
}

.AZ-about-section .counter-box_top_left {
  position: relative;
  padding: 0;
  margin-bottom: -40px;
  margin-left: -40px;
  width: 89px;
  height: 89px;
  background: transparent;
  box-shadow: unset;
}

.AZ-about-section .counter-box_top_left .img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, #313131 0%, #787878 100%);
  box-shadow: 0px 0px 24.6px 0px rgba(0, 28, 112, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.AZ-about-section .counter-box_top_left .img img {
  width: 62px;
}

.AZ-about-section .counter-box_top_left::after,
.AZ-about-section .counter-box_top_left::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 110.449px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.48) 0%, rgba(0, 28, 112, 0) 100%);
  box-shadow: 0px 0px 24.6px 0px rgba(0, 28, 112, 0.22);
}

.AZ-about-section .counter-box_top_left::after {
  width: 128px;
  height: 128px;
}

.AZ-services-section {
  margin: 150px 0;
  background: linear-gradient(180deg, #373737 0%, #000000 192.58%);
  padding: 34px;
}

.AZ-services-section .AZ-section-title {
  color: #fff;
}

.AZ-services-section .AZ-title-wrapper .line {
  height: 2px;
  background: #fff;
}

.AZ-services-section .services-box {
  width: 100%;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0px 4px 7px 1px rgba(0, 0, 0, 0.25);
  padding: 14px 26px 30px;
  height: 244px;
  overflow: hidden;
}

.AZ-services-section .services-box_img {
  background-image: url("../img/Isolation_Mode.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  position: relative;
  width: 63px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.AZ-services-section .services-box_img img {
  width: 30px;
  position: relative;
  z-index: 1;
}

.AZ-services-section .services-box_title {
  font-size: 20px;
  color: #000;
  margin-bottom: 11px;
  font-weight: 700;
}

.AZ-services-section .services-box_text {
  font-size: 20px;
  color: #000;
  font-family: "JJameel Noori Kasheeda";
  font-weight: 400;
  text-align: justify;
  line-height: 105.8%;
  /* 21.16px */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.AZ-services-section .services-box-big {
  height: unset;
}

.AZ-services-section .services-box-big::after {
  padding-bottom: 90%;
}

.AZ-services-section .services-box-big .services-box_body {
  width: 100%;
  position: absolute;
  height: 100%;
  background: rgba(255, 192, 203, 0.322);
  left: 0;
  top: 0;
  padding: 14px 18px 20px;
}

.AZ-services-section .services-box-big .services-box_title {
  background: #fff;
  border: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
}

.AZ-services-section .services-box-big .services-box_title p {
  padding: 5px;
}

.AZ-services-section .services-box-big .services-box_text {
  border-radius: 24px;
  background: #D13E3B;
  color: #fff;
  padding: 13px 33px;
}

.AZ-services-section .AZ-title-wrapper {
  min-height: 76px;
}

.AZ-hero-section {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  height: 888px;
  background-image: url("../img/wave.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
}

.AZ-hero-section .hero-bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.AZ-hero-section .hero-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  mix-blend-mode: hue;
}

.AZ-hero-section .slider-content {
  position: relative;
  z-index: 10;
}

.AZ-hero-section .slider-title {
  font-size: 64px;
  color: #FFFFFF;
  font-family: "news706-Bold";
  margin-bottom: 21px;
}

.AZ-hero-section .slider-text {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 139%;
  /* 27.8px */
  margin-bottom: 20px;
}

.AZ-hero-section .slider-link {
  font-size: 16px;
  color: #FFFFFF;
  padding-right: 30px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.6901960784);
}

.AZ-hero-section .AZ-primary-btn,
.AZ-hero-section .AZ-secondary-btn {
  background: transparent;
  border: 2px solid #fff;
}

.AZ-hero-section .AZ-primary-btn:hover,
.AZ-hero-section .AZ-secondary-btn:hover {
  background: #fff;
  color: #000;
}

.AZ-testimonial-secction {
  margin: 50px 0;
}

.AZ-testimonial-secction .testimonial-card {
  background: linear-gradient(180deg, #383838 0%, #000000 100%);
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.25);
  padding: 0 24px 24px 24px;
  border-radius: 24px;
}

.AZ-testimonial-secction .testimonial-card .bg {
  padding: 47px 0 34px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.AZ-testimonial-secction .testimonial-card_img {
  width: 105px;
  border-radius: 50%;
}

.AZ-testimonial-secction .testimonial-card_img::after {
  padding-bottom: 100%;
}

.AZ-testimonial-secction .testimonial-card .testimonial-title {
  font-size: 16px;
  color: #FFFFFF;
  font-family: "news706-Bold";
}

.AZ-testimonial-secction .testimonial-card .testimonial-text {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 128%;
  /* 20.48px */
  margin: 15px 0;
  position: relative;
}

.AZ-testimonial-secction .testimonial-card .testimonial-text::after {
  content: "\e900";
  font-family: "icomoon";
  position: absolute;
  left: 0;
  top: -15px;
  font-size: 8px;
  color: #fff;
}

.AZ-testimonial-secction .testimonial-card .testimonial-text::before {
  content: "\e901";
  font-family: "icomoon";
  position: absolute;
  right: 0;
  bottom: -15px;
  font-size: 8px;
  color: #fff;
}

.AZ-testimonial-secction .stars span {
  font-size: 18px;
  color: #EAA800;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}

.AZ-bestOffers-section {
  margin: 150px 0;
}

.AZ-bestOffers-section .bestOffers-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.AZ-bestOffers-section .bestOffers-img {
  max-width: 80%;
  max-height: 550px;
  float: right;
}

.AZ-bestOffers-section .bestOffersSwiper {
  margin: -200px 0 0;
  width: 100%;
}

.AZ-bestOffers-section .swiper-content {
  width: 60%;
  margin: 0 auto;
}

.AZ-bestOffers-section .navs {
  width: 80%;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.AZ-bestOffers-section .swiper-button-next:after,
.AZ-bestOffers-section .swiper-button-prev:after {
  font-size: 25px;
  color: #001B72;
}

.AZ-bestOffers-section .AZ-title-wrapper .line {
  flex-grow: unset;
  width: 30%;
}

.AZ-transport-section {
  margin: 150px 0;
}

.AZ-transport-section .transport-Solutions-box {
  border-radius: 64px 0px 0px 64px;
  border: 1px solid #001B72;
  padding: 24px;
  flex-grow: 1;
}

.AZ-transport-section .transport-Solutions-box_title {
  font-size: 24px;
  color: #000;
  font-weight: 400;
}

.AZ-transport-section .transport-Solutions-box-img {
  width: 47px;
}

.AZ-transport-section .transport-Solutions-box_text {
  font-size: 16px;
  color: #000000;
}

.AZ-transport-section .transport-Solutions-box:last-child {
  border-radius: 0 64px 64px 0;
}

.AZ-transport-section .transport-title {
  font-size: 40px;
  margin-top: 10px;
  color: #000000;
  font-family: "news706-Bold";
}

.AZ-transport-section .transport-number {
  font-size: 96px;
  color: #000;
  font-family: "news706-Bold";
}

.AZ-transport-section .transport-desc {
  font-size: 20px;
  color: #737373;
  font-family: "news706-Bold";
}

.AZ-transport-section .succesTransport {
  font-size: 64px;
  color: #000;
  font-family: "news706-Bold";
}

.AZ-about-page {
  padding-bottom: 80px;
}

.AZ-header-about {
  height: 420px;
  position: relative;
}

.AZ-header-about::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(0, 28, 112, 0.62);
  mix-blend-mode: multiply;
}

.AZ-header-about img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.AZ-header-about .about-title {
  font-size: 48px;
  color: #FFFFFF;
  font-family: "news706-Bold";
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}

.AZ-header-about .header-about-content {
  position: relative;
  z-index: 10;
  padding-bottom: 130px;
}

.AZ-counter-section {
  padding: 50px 0;
}

.AZ-counter-section .counter-num {
  font-size: 48px;
  font-family: "news706-Bold";
  color: #000;
  margin-bottom: 10px;
}

.AZ-counter-section .counter-title {
  font-size: 20px;
  font-family: "news706-Bold";
  color: #000;
  margin-bottom: 5px;
}

.AZ-counter-section .counter-text {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.AZ-team-section {
  padding: 50px 0;
}

.AZ-team-section .team-img {
  width: 100%;
  border-radius: 24px;
}

.AZ-team-section .team-img::after {
  padding-bottom: 150%;
}

.AZ-team-section .team-box {
  background: #FFF;
  box-shadow: -6px 11px 15px 0px rgba(8, 15, 46, 0.3);
  -webkit-backdrop-filter: blur(8.5px);
  backdrop-filter: blur(8.5px);
  width: 90%;
  margin: -20px auto 0;
  padding: 20px 10px;
  border-radius: 24px;
}

.AZ-team-section .team-name {
  font-size: 16px;
  color: #000;
  font-family: "news706-Bold";
  margin-bottom: 5px;
}

.AZ-team-section .organizationLevel-name {
  font-size: 20px;
  color: #1395F3;
  font-weight: 400;
}

.AZ-mission-section {
  padding: 50px 0;
}

.AZ-mission-section .mission-icon {
  font-size: 86px;
  color: #000;
  margin-bottom: 10px;
}

.AZ-mission-section .mission-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.AZ-mission-section .mission-text {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.AZ-history-section {
  padding: 150px 0;
}

.AZ-history-section .history-section-right {
  position: relative;
  background-image: url("../img/image 7 (1).png");
  background-repeat: no-repeat;
  background-size: 222px;
  background-position: right top;
}

.AZ-history-section .img-top {
  width: 60%;
  border-radius: 24px;
}

.AZ-history-section .img-top::after {
  padding-bottom: 80%;
}

.AZ-history-section .img-bottom {
  position: absolute;
  width: 50%;
  top: 150px;
  right: 100px;
  border-radius: 24px;
}

.AZ-history-section .img-bottom::after {
  padding-bottom: 90%;
}

.AZ-history-section .history-btn {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding: 22px 38px;
  position: absolute;
  top: -30px;
  left: 50%;
  border-radius: 24px;
  background: #000000;
  box-shadow: -5px 8px 6px 0px rgba(0, 0, 0, 0.4);
}

.post-ditails-wrapper {
  position: relative;
  padding: 28px 50px;
  border-radius: 16px 0 0 16px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0px 4px 30px 0px #080F2E;
  -webkit-backdrop-filter: blur(8.5px);
  backdrop-filter: blur(8.5px);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.post-ditails-wrapper .post-ditails {
  font-size: 18px;
  color: #001B72;
  font-weight: 500;
}

.AZ-post-page {
  padding: 50px 0;
}

.AZ-post-page .AZ-social a {
  background: linear-gradient(180deg, #000 0%, #0036D6 100%);
  padding: 5px;
  border-radius: 50%;
}

.AZ-post-page .AZ-social img {
  margin: 0;
  padding: 0;
}

.AZ-post-page .author {
  font-size: 18px;
  margin: 0;
}

.AZ-post-page .post-title {
  font-size: 32px;
  color: #000;
  font-family: "news706-Bold";
  line-height: 50px;
}

.AZ-post-page .post-details {
  font-size: 16px;
  color: #000000;
  font-family: "news706-Bold";
}

.AZ-post-page .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
  font-size: 24px;
}

.AZ-post-page .tag {
  font-size: 16px;
  color: #595959;
  font-family: "news706-Bold";
  border-radius: 4px;
  background: #F2F2F2;
  padding: 5px;
  border-radius: 10px;
}

.AZ-post-page .tag-text {
  font-size: 16px;
  color: #595959;
  font-family: "news706-Bold";
  margin: 0;
  white-space: nowrap;
}

article h1,
article h2,
article h3 {
  font-size: 24px;
  color: #000;
  font-family: "rokh-Bold";
  line-height: 50px;
  margin-bottom: 15px;
}

article h2,
article h3 {
  margin-top: 30px;
}

article h4,
article h5 {
  font-size: 20px;
  color: #000;
  font-family: "rokh-Bold";
  margin-bottom: 15px;
  margin-top: 30px;
}

article p {
  font-size: 16px;
  color: #000000;
  font-family: "news706-Bold";
  margin-bottom: 10px;
  line-height: 258%;
  /* 41.28px */
}

article img {
  width: 100%;
  margin-bottom: 30px;
  padding-right: 20px;
  padding-bottom: 20px;
  position: relative;
  background-image: url("../img/Vector (4).png");
  background-repeat: no-repeat;
  background-size: 220px;
  background-position: right bottom;
}

.AZ-comments .comment-box {
  margin-bottom: 30px;
}

.AZ-comments .comment-img {
  min-width: 110px;
  border-radius: 50%;
}

.AZ-comments .comment-img::after {
  padding-bottom: 100%;
}

.AZ-comments .comment-name {
  font-size: 16px;
  color: #000000;
  font-family: "rokh-Bold";
}

.AZ-comments .comment-text {
  font-size: 16px;
  color: #262626;
  font-family: "rokh-Medium";
}

.AZ-comments .reply-btn {
  font-size: 16px;
  color: #262626;
  font-family: "rokh-Bold";
  transition: all 0.2s linear;
}

.AZ-comments .reply-btn:hover {
  color: #FFC700;
}

.AZ-comments .reply-box {
  padding-right: 50px;
}

.AZ-popular-articles-section {
  margin: 50px 0;
}

.AZ-header-blog {
  padding: 50px 0;
}

.AZ-header-blog .blog-header-big-img {
  width: 100%;
}

.AZ-header-blog .blog-header-big-img::after {
  padding-bottom: 80%;
}

.AZ-header-blog .header-img {
  width: 100%;
  background: #2F5959;
  padding: 20px;
  flex-grow: 1;
}

.AZ-header-blog .header-img .AZ-section-text {
  color: #ffffff;
}

.AZ-header-blog .overlay-big-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28%;
  height: 48%;
  background: #D9D9D9;
  padding: 20px;
  z-index: 1;
  border-left: 20px solid #fff;
  border-top: 20px solid #fff;
}

.AZ-blog-page {
  padding: 50px 0;
}

.latest-news-list li {
  border-bottom: 1px solid rgba(130, 130, 130, 0.6);
  padding: 10px 0;
}

.latest-news-list li:last-child {
  border-bottom: 0;
}

.latest-news-list .latest-news_title {
  font-size: 18px;
  color: #000000;
  font-family: "Peyda-Bold";
}

.latest-news-list .latest-news_btn,
.latest-news-list .latest-news_date,
.latest-news-list .latest-news_text {
  font-size: 16px;
  color: #000000;
  font-family: "Peyda-Regular";
}

.latest-news-list .latest-news_btn {
  text-decoration: underline;
}

.AZ-video-section {
  position: relative;
  height: 700px;
}

.AZ-video-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0) 35.41%, rgba(0, 0, 0, 0.25) 100%);
}

.AZ-video-section .video-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
}

.AZ-video-section .icon-Video-player {
  font-size: 60px;
  color: #fff;
}

.AZ-video-section .video-section-title {
  font-size: 36px;
  color: #FFFFFF;
  font-family: "news706-Bold";
}

.AZ-video-section .video-content {
  position: relative;
  z-index: 1;
}

.breadcrumb-wrapper .breadcrumb-link {
  font-size: 16px;
  color: #080F2E;
  font-family: "news706-Bold";
}

.AZ-post-card .post-bg {
  position: relative;
}

.AZ-post-card .post-card-img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
}

.AZ-post-card .post-card-img::after {
  padding-bottom: 80%;
}

.AZ-post-card .rating {
  font-size: 16px;
  color: #000000;
  font-family: "news706-Bold";
}

.AZ-post-card .rating span {
  font-size: 18px;
  color: #C87A29;
}

.AZ-post-card .post-card-text {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
}

.AZ-comment-box {
  padding: 20px 0;
}

.AZ-comment-box .comment-img {
  min-width: 110px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1411764706);
}

.AZ-comment-box .comment-img::after {
  padding-bottom: 100%;
}

.AZ-comment-box .comment-name {
  font-size: 16px;
  color: #000000;
  font-family: "news706-Bold";
  margin-bottom: 10px;
}

.AZ-comment-box .comment-text {
  font-size: 16px;
  color: #262626;
  font-family: "news706-Bold";
  line-height: 36px;
  /* 225% */
}

.AZ-comment-box_reply {
  padding-left: 120px;
}

.AZ-comment-box_reply .comment-body {
  padding: 24px;
  background: #F3F3F3;
}

.AZ-comment-box_reply .comment-reply-icon {
  font-size: 30px;
  color: #000;
}

.AZ-styled-select {
  min-width: 200px;
  height: 34px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: 0;
  background: #000;
  border-radius: 40px;
}

.AZ-styled-select::before {
  content: "\e926";
  font-family: "icomoon";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 16px;
  color: #FFFFFF;
}

.AZ-styled-select select {
  font-size: 16px;
  color: #FFFFFF;
  font-family: "news706-Bold";
  padding: 0 10px;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  z-index: 1;
}

.AZ-styled-select option {
  background: #000;
}

.pagination .page-link {
  font-size: 18px;
  color: #0036D6;
  font-family: "news706-Bold";
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
  padding-bottom: 3px;
}

.pagination .page-link.active,
.pagination .page-link:hover {
  background: #D9D9D9;
}

.pagination .page-link:focus {
  box-shadow: none;
}

.pagination .page-nav {
  background: #001B72;
  color: #fff;
  font-size: 20px;
  padding-bottom: 5px;
  border: 0;
}

.pagination .page-item:last-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination .page-item:first-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.circle-btn {
  position: relative;
  background: transparent;
  padding: 10px;
}

.circle-btn:hover span::after {
  height: 61px;
  width: 61px;
}

.circle-btn p {
  font-size: 48px;
  color: #000000;
  font-weight: 700;
  background: transparent;
  position: relative;
  z-index: 1;
  text-align: left;
  line-height: 47px;
  /* 97.917% */
}

.circle-btn .circle__line {
  width: 64px;
  height: 64px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  transition: all 0.2s linear;
}

.circle-btn .circle__line img {
  width: 45px;
}

.circle-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 70px;
  width: 70px;
}

.AZ-categoryBlog-section {
  margin: 150px 0;
}

.AZ-categoryBlog-section .services-box {
  width: 100%;
  border-radius: 8px;
}

.AZ-categoryBlog-section .services-box::after {
  padding-bottom: 70%;
}

.AZ-categoryBlog-section .services-box_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 30px 0px #080F2E;
  -webkit-backdrop-filter: blur(8.5px);
  backdrop-filter: blur(8.5px);
}

.AZ-categoryBlog-section .services-box_title {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.AZ-categoryBlog-section .services-box_text {
  font-size: 12px;
  color: #FFFFFF;
  text-align: justify;
  font-weight: 400;
}

.AZ-categoryBlog-section .services-box-big {
  height: 100%;
}

#accordian .level-two {
  left: 100%;
  top: 0;
}

#accordian .show-dropdown {
  display: flex;
  align-items: center;
}

#accordian .has-dropdown {
  position: relative;
  width: 100%;
  margin-top: 4px;
}

#accordian .has-dropdown a {
  padding: 8px 24px 8px 54px;
  margin-bottom: 4px;
  position: relative;
}

#accordian ul {
  padding: 0;
  margin: 0;
  width: 100%;
}

#accordian ul li {
  position: relative;
  width: 100%;
}

#accordian>ul.show-dropdown>li.active>a,
#accordian>ul>li>ul.show-dropdown>li.active>a,
#accordian>ul>li>ul>li>ul.show-dropdown>li.active>a,
#accordian>ul>li>ul>li>ul>li>ul.show-dropdown>li.active>a,
#accordian>ul>li>ul>li>ul>li>ul>li>ul.show-dropdown>li.active>a {
  width: 100%;
}

#accordian>ul>li>ul,
#accordian>ul>li>ul>li>ul,
#accordian>ul>li>ul>li>ul>li>ul,
#accordian>ul>li>ul>li>ul>li>ul>li>ul {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #000;
  border-radius: 20px;
}

#accordian>ul>li.active>ul.show-dropdown,
#accordian>ul>li>ul>li.active>ul.show-dropdown,
#accordian>ul>li>ul>li>ul>li.active>ul.show-dropdown,
#accordian>ul>li>ul>li>ul>li>ul>li.active>ul.show-dropdown {
  display: block;
}

#accordian a:not(:only-child):after {
  content: "\e926";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #323232;
  font-family: "icomoon";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  transition: 0.2s;
}

#accordian>ul>li>ul li a,
#accordian>ul>li>ul>li>ul li a,
#accordian>ul>li>ul>li>ul>li>ul li a,
#accordian>ul>li>ul>li>ul>li>ul>li>ul li a {
  font-size: 14px;
  font-family: "news706-Bold";
  color: #000;
  width: 100%;
  padding: 10px 10px 10px 20px !important;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
}

#accordian>ul>li>ul li a::after,
#accordian>ul>li>ul>li>ul li a::after,
#accordian>ul>li>ul>li>ul>li>ul li a::after,
#accordian>ul>li>ul>li>ul>li>ul>li>ul li a::after {
  top: 5px;
  right: 0 !important;
}

#accordian>ul>li>ul li a:hover,
#accordian>ul>li>ul>li>ul li a:hover,
#accordian>ul>li>ul>li>ul>li>ul li a:hover,
#accordian>ul>li>ul>li>ul>li>ul>li>ul li a:hover {
  color: #c9050c;
}

@media screen and (max-width: 1200px) {
  .AZ-section-title {
    font-size: 44px;
  }

  .AZ-title {
    font-size: 44px;
  }

  .AZ-header .nav-link {
    font-size: 14px;
    padding: 10px !important;
  }

  .AZ-header .AZ-primary-btn,
  .AZ-header .AZ-secondary-btn {
    font-size: 14px;
  }

  .AZ-header .AZ-primary-btn p,
  .AZ-header .AZ-secondary-btn p {
    padding: 5px 20px;
  }

  .AZ-search-wrapper {
    min-width: 170px;
    width: 170px;
  }

  .AZ-services-section .services-box_title {
    font-size: 16px;
  }

  .AZ-services-section .services-box_text {
    font-size: 14px;
  }

  .AZ-transport-section .succesTransport {
    font-size: 44px;
  }

  .AZ-transport-section .transport-number {
    font-size: 80px;
  }
}

@media screen and (max-width: 991px) {
  .AZ-header {
    top: 0;
  }

  .AZ-header .navbar-collapse {
    position: fixed;
    top: 0;
    left: -350px;
    width: 250px;
    background: #fff;
    height: 100vh;
    box-shadow: 0px 4px 30px 0px #080F2E;
    padding: 30px;
    transition: all 0.2s linear;
    z-index: 10;
  }

  .AZ-header .navbar-collapse.show {
    left: 0;
  }

  .AZ-header .close-sidebar {
    font-size: 22px;
    color: #080F2E;
  }

  #accordian>ul>li>ul,
  #accordian>ul>li>ul>li>ul,
  #accordian>ul>li>ul>li>ul>li>ul,
  #accordian>ul>li>ul>li>ul>li>ul>li>ul {
    position: relative;
  }

  #accordian .show-dropdown {
    align-items: start;
    flex-direction: column;
  }

  #accordian .level-two {
    left: 0;
    top: unset;
  }

  #accordian .has-dropdown a {
    padding: 10px 0;
  }

  #accordian a:not(:only-child):after {
    right: 0;
    color: #000;
  }

  #accordian>ul>li>ul,
  #accordian>ul>li>ul>li>ul,
  #accordian>ul>li>ul>li>ul>li>ul,
  #accordian>ul>li>ul>li>ul>li>ul>li>ul {
    padding-left: 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  #accordian>ul>li>ul::before,
  #accordian>ul>li>ul>li>ul::before,
  #accordian>ul>li>ul>li>ul>li>ul::before,
  #accordian>ul>li>ul>li>ul>li>ul>li>ul::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: #036193;
    border-radius: 10px;
    height: 100%;
    width: 1px;
    z-index: 1;
  }

  #accordian>ul>li>ul li a,
  #accordian>ul>li>ul>li>ul li a,
  #accordian>ul>li>ul>li>ul>li>ul li a,
  #accordian>ul>li>ul>li>ul>li>ul>li>ul li a {
    font-size: 14px;
    padding: 10px 10px 10px 10px !important;
  }

  #accordian>ul>li>ul li a::after,
  #accordian>ul>li>ul>li>ul li a::after,
  #accordian>ul>li>ul>li>ul>li>ul li a::after,
  #accordian>ul>li>ul>li>ul>li>ul>li>ul li a::after {
    top: 5px;
    right: 0 !important;
  }

  #accordian>ul>li>ul li a:hover,
  #accordian>ul>li>ul>li>ul li a:hover,
  #accordian>ul>li>ul>li>ul>li>ul li a:hover,
  #accordian>ul>li>ul>li>ul>li>ul>li>ul li a:hover {
    color: #000;
  }

  .AZ-contact-page .header-contact {
    padding-top: 250px;
  }

  .AZ-contact-page .col-right {
    padding: 40px 0;
  }

  .AZ-contact-page .col-left {
    height: unset;
    padding: 40px 30px;
  }

  .AZ-contact-page .contaact-list-title {
    font-size: 30px;
  }

  .AZ-bestOffers-section {
    margin: 80px 0;
  }

  .AZ-bestOffers-section .swiper-content {
    width: 85%;
  }

  .AZ-bestOffers-section .bestOffers-content {
    padding: 0 10px;
  }

  .AZ-bestOffers-section .bestOffersSwiper {
    margin-top: unset;
  }

  .AZ-bestOffers-section .bestOffers-box {
    padding: 0;
  }

  .AZ-bestOffers-section .navs {
    width: 100%;
    bottom: 50px;
  }

  .AZ-bestOffers-section .swiper-button-prev,
  .AZ-bestOffers-section .swiper-rtl .swiper-button-next {
    left: 0;
  }

  .AZ-bestOffers-section .swiper-button-next,
  .AZ-bestOffers-section .swiper-rtl .swiper-button-prev {
    right: 0;
  }

  .AZ-bestOffers-section .AZ-title-wrapper .line {
    flex-grow: unset;
    width: 100%;
  }

  .AZ-bestOffers-section .bestOffers-img {
    max-width: 100%;
    max-height: unset;
  }

  .AZ-services-section {
    margin: 80px 0;
  }

  .AZ-transport-section {
    margin: 100px 0;
  }

  .AZ-transport-section .transport-title {
    font-size: 22px;
  }

  .AZ-transport-section .transport-Solutions-box_text {
    font-size: 14px;
  }

  .AZ-transport-section .transport-Solutions-box {
    padding: 24px 10px;
  }

  .AZ-transport-section .transport-Solutions-box img {
    width: 30px;
  }

  .AZ-transport-section .succesTransport {
    font-size: 28px;
  }

  .AZ-transport-section .transport-number {
    font-size: 60px;
  }

  .AZ-hero-section .slider-title {
    font-size: 44px;
  }

  .AZ-hero-section .slider-text {
    font-size: 14px;
  }

  .AZ-hero-section .swiper-pagination-bullets,
  .AZ-hero-section .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 30px;
  }

  .AZ-hero-section .swiper-pagination-bullet {
    font-size: 30px;
  }

  .row-scroll {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .row-scroll .col-lg-3 {
    width: 300px;
  }

  .row-scroll .col-lg-4 {
    width: 300pxs;
  }

  .AZ-history-section {
    padding: 80px 0 150px;
  }

  .AZ-history-section .img-bottom {
    position: absolute;
    width: 50%;
    top: 130px;
    right: 20px;
  }

  .AZ-history-section .history-section-right::after {
    font-size: 200px;
  }

  .AZ-history-section .history-btn {
    font-size: 14px;
    padding: 10px 20px;
    top: -10px;
    left: 50%;
  }

  .AZ-post-page .post-title {
    font-size: 16px;
    line-height: 30px;
  }

  .AZ-post-page .tag {
    font-size: 12px;
  }

  .AZ-post-page .tag-text {
    font-size: 12px;
  }

  .AZ-post-page .social a {
    width: 30px;
    height: 30px;
  }

  .AZ-post-page .AZ-title-wrapper.author-wrapper {
    width: 100%;
  }

  article h1,
  article h2,
  article h3 {
    font-size: 16px;
  }

  article h2,
  article h3 {
    margin-top: 20px;
  }

  article h4,
  article h5 {
    font-size: 18px;
  }

  article p {
    font-size: 14px;
    line-height: 30px;
  }

  .AZ-video-section {
    position: relative;
    height: 300px;
  }

  .AZ-video-section .video-section-title {
    font-size: 20px;
  }

  .AZ-video-section .play-video span {
    font-size: 40px;
  }

  .AZ-header-blog {
    padding: 50px 0 0;
  }

  .AZ-header-blog .overlay-big-img {
    padding: 10px;
    border-left: 10px solid #fff;
    border-top: 10px solid #fff;
  }

  .AZ-header-blog .AZ-section-text {
    font-size: 11px;
  }

  .AZ-comments .comment-img {
    min-width: 50px;
  }

  .AZ-comments .comment-name {
    font-size: 14px;
  }

  .AZ-comments .comment-text {
    font-size: 12px;
  }

  .AZ-comments .reply-btn {
    font-size: 12px;
  }

  .AZ-comments .reply-box {
    padding-right: 10px;
  }

  .AZ-blog-section {
    padding: 30px 0 50px 0;
  }

  .AZ-post-card .rating {
    font-size: 14px;
  }

  .AZ-post-card .rating span {
    font-size: 14px;
  }

  .AZ-post-card .post-card-text {
    font-size: 14px;
  }

  .post-ditails-wrapper {
    padding: 15px;
    border-radius: 16px 16px 0 0;
    width: 100%;
  }

  .AZ-comment-box .comment-img {
    min-width: 80px;
  }

  .AZ-comment-box .comment-text {
    font-size: 14px;
    line-height: 20px;
  }

  .AZ-comment-box .comment-name {
    font-size: 14px;
  }

  .AZ-comment-box_reply {
    padding-left: 20px;
  }

  .AZ-primary-btn p,
  .AZ-secondary-btn p {
    padding: 5px 20px;
  }

  .circle-btn p {
    font-size: 28px;
    line-height: 40px;
  }
}

@media screen and (max-width: 576px) {
  .AZ-page-text {
    font-size: 16px;
  }

  .AZ-title {
    font-size: 34px;
  }

  .AZ-section-title {
    font-size: 28px;
  }

  .AZ-header .container {
    padding: 28px 10px 10px;
    margin: 0 10px;
  }

  .AZ-footer .footer-link {
    font-size: 14px;
  }

  .AZ-footer .footer-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .AZ-footer .footer-brand img {
    width: 100px;
  }

  .AZ-about-section .counter-box_title {
    font-size: 16px;
  }

  .AZ-about-section .counter-box_text {
    font-size: 14px;
  }

  .AZ-about-section .counter-box {
    width: unset;
    border-radius: 16px;
    padding: 4px 20px;
  }

  .AZ-about-section .counter-box_top_left {
    padding: 0;
    margin-bottom: -20px;
    margin-left: 20px;
    min-width: 60px;
    height: 60px;
  }

  .AZ-about-section .counter-box_top_left .img img {
    width: 40px;
  }

  .AZ-about-section .counter-box_top_left::before {
    width: 90px;
    height: 90px;
  }

  .AZ-about-section .counter-box_top_left::after {
    width: 70px;
    height: 70px;
  }

  .AZ-counter-section .counter-title {
    font-size: 16px;
  }

  .AZ-counter-section .counter-num {
    font-size: 30px;
  }

  .AZ-mission-section .mission-title {
    font-size: 16px;
  }

  .AZ-mission-section .mission-text {
    font-size: 14px;
  }

  .AZ-team-section .team-img::after {
    padding-bottom: 110%;
  }

  .AZ-header-about .about-title {
    font-size: 32px;
  }
}

@media screen and (max-width: 480px) {
  .AZ-section-title {
    font-size: 24px;
  }

  .AZ-title {
    font-size: 24px;
  }

  .AZ-header .container {
    padding: 10px 28px 10px 10px;
  }

  .AZ-header .navbar-brand img {
    width: 45px;
  }

  .AZ-header .AZ-primary-btn,
  .AZ-header .AZ-secondary-btn {
    font-size: 14px;
  }

  .AZ-header .AZ-primary-btn p,
  .AZ-header .AZ-secondary-btn p {
    padding: 10px;
  }

  .AZ-contact-page .contact-box {
    padding: 0 30px;
  }

  .AZ-contact-page .col-right .AZ-title {
    font-size: 22px;
  }

  .AZ-hero-section .track-your-cargo_search {
    width: 100%;
  }

  .AZ-hero-section .track-your-cargo {
    width: 100%;
    padding: 28px;
  }

  .row-scroll .col-lg-3 {
    width: 250px;
  }

  .row-scroll .col-lg-4 {
    width: 250px;
  }

  .AZ-hero-section {
    height: 600px;
  }

  .AZ-hero-section .slider-title {
    font-size: 22px;
  }

  .circle-btn .circle__line img {
    width: 30px;
  }

  .circle-btn svg {
    height: 50px;
    width: 50px;
  }

  .circle-btn p {
    font-size: 20px;
    line-height: 25px;
  }
}