@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

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-section-title {
  font-size: 20px;
  color: #333333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.AZ-section-title span {
  font-weight: 700;
}
.AZ-section-title .circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #5D8AA6;
  position: relative;
  margin-right: 5px;
  display: inline-block;
}
.AZ-section-title .circle::before, .AZ-section-title .circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 125%;
  height: 125%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #5D8AA6;
  background: transparent;
}
.AZ-section-title .circle::before {
  width: 150%;
  height: 150%;
}

.AZ-section-text {
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}

.AZ-field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.AZ-field-group label {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 8px;
}
.AZ-field-group input,
.AZ-field-group textarea {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid #CFCFCF;
  background: #F5F5F5;
  padding: 10px;
}
.AZ-field-group input:focus,
.AZ-field-group textarea:focus {
  border: 1px solid #E57373;
}

.AZ-primary-btn,
.AZ-secondary-btn {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  padding: 8px 20px;
  transition: all 0.2s linear;
  border-radius: 3px;
  background: #E57373;
  position: relative;
  border: 0;
  z-index: 1;
}
.AZ-primary-btn:hover,
.AZ-secondary-btn:hover {
  color: #ffffff;
}
.AZ-primary-btn:hover::after,
.AZ-secondary-btn:hover::after {
  transform: translate(-50%, -50%) rotate(0);
}
.AZ-primary-btn::after,
.AZ-secondary-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 105%;
  height: 120%;
  transform: translate(-50%, -50%) rotate(-5.776deg);
  border-radius: 3px;
  border: 1px solid #E57373;
  transition: all 0.2s linear;
}

.AZ-secondary-btn {
  color: #333333;
  background: #D9D9D9;
}
.AZ-secondary-btn:hover {
  color: #333333;
}
.AZ-secondary-btn::after {
  border: 1px solid #D9D9D9;
}

.AZ-navbar .navbar-brand {
  font-size: 20px;
  color: #5D8AA6;
  font-weight: 700;
}
.AZ-navbar .navbar-nav {
  border-bottom: 1px solid #F5F5F5;
}
.AZ-navbar .offcanvas-start {
  width: 300px;
  background: #5F7F93;
  border: 0;
}
.AZ-navbar .offcanvas-start .close-canvas {
  color: #fff;
}
.AZ-navbar .offcanvas-start .navbar-brand {
  font-size: 16px;
  color: #CFCFCF;
  font-weight: 700;
}
.AZ-navbar .overlay {
  position: absolute;
  z-index: -1;
  width: 100px;
  transition: all 0.2s linear;
  border-radius: 50px;
  background: linear-gradient(90deg, #FFDB7E -8.85%, #0D89CF 88.5%);
  opacity: 0;
}
.AZ-navbar .overlay.active {
  opacity: 1;
}
.AZ-navbar .nav-top {
  height: 48px;
  width: 100%;
  background: #03052A;
}
.AZ-navbar .navbar-toggler {
  padding: 0;
}
.AZ-navbar .navbar-toggler:focus {
  box-shadow: none;
}
.AZ-navbar .navbar-container {
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0px 7px 4px -4px rgba(255, 250, 250, 0.24) inset;
  -webkit-backdrop-filter: blur(12.8999996185px);
          backdrop-filter: blur(12.8999996185px);
  margin: 35px 0;
  position: relative !important;
}
.AZ-navbar .navbar-container li {
  flex-grow: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-navbar .navbar-container li:hover .nav-link {
  color: #03052A;
}
.AZ-navbar .collapse {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  flex-direction: row;
}
.AZ-navbar .nav-link {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  padding: 15px 20px !important;
  transition: all 0.2s linear;
  overflow: hidden;
  position: relative;
}
.AZ-navbar .nav-link.active {
  border-bottom: 1px solid #5D8AA6;
}

.AZ-header-section {
  background-image: url("../img/bg-header.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  padding: 200px 0;
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}
.AZ-header-section .header-title {
  font-size: 30px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 20px;
}
.AZ-header-section .header-title span {
  font-weight: 700;
  color: #E57373;
}
.AZ-header-section .header-text {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 20px;
}

.search-wrapper {
  border-radius: 5px;
  background: #F3F3F3;
  padding: 6px 6px 6px 15px;
  height: 55px;
  position: relative;
}
.search-wrapper input {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  flex-grow: 2;
  background: transparent;
  height: 100%;
  border: 0;
}
.search-wrapper button {
  border-radius: 2px;
  background: #5D8AA6;
  padding: 8px 15px;
  color: #fff;
  border: 0;
}
.search-wrapper .search-result {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  margin-top: 5px;
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  z-index: 100;
  box-shadow: 0px 4px 20px 0px rgba(87, 100, 144, 0.14);
  max-height: 500px;
  overflow-y: auto;
}
.search-wrapper .search-result .anim-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E63946;
  position: relative;
  display: block;
}
.search-wrapper .search-result .anim-circle::after {
  content: "";
  background-color: #E63946;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  position: absolute;
  transition: all 0.2s linear;
  animation: alert_ani 2s infinite ease-in-out;
}
.search-wrapper .search-result .number-search-results {
  font-size: 12px;
  color: #1B262C;
  font-weight: 600;
}
.search-wrapper .search-result .search-list li {
  border-bottom: 1px solid #d4d4d4;
  padding: 10px 0;
}
.search-wrapper .search-result .search-list .search-result-img {
  min-width: 80px;
  border-radius: 3px;
}
.search-wrapper .search-result .search-list .search-result-img::after {
  padding-bottom: 80%;
}
.search-wrapper .search-result .search-result-title {
  font-size: 14px;
  color: #1B262C;
  font-weight: 500;
}

.AZ-footer {
  margin-top: 50px;
  margin-bottom: 20px;
}
.AZ-footer .footer-box {
  border-radius: 3px;
  background: #F3F3F3;
  padding: 6px;
  position: relative;
}
.AZ-footer .copyright-text {
  font-size: 14px;
  color: #333333;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  font-weight: 500;
}
.AZ-footer .footer-social a {
  color: #5F7F93;
  font-size: 18px;
}
.AZ-footer .footer-social a:hover {
  color: #E57373;
}

#backToTop {
  width: 45px;
  height: 45px;
  border-radius: 2px;
  background: #5D8AA6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  border: 0;
}

.AZ-reserch-card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  display: block;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.AZ-reserch-card .reserch-card-img {
  width: 100%;
}
.AZ-reserch-card .reserch-card-img::after {
  padding-bottom: 60%;
}
.AZ-reserch-card .reserch-card-body {
  padding: 15px;
}
.AZ-reserch-card .reserch-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}
.AZ-reserch-card .reserch-card-text {
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 15px;
}

.reserch-card-date {
  font-size: 12px;
  font-weight: 400;
  color: #A6A0A0;
}

.swiper-slide {
  height: auto;
}

.AZ-reserch-section .swiper-slide {
  padding: 20px 0;
}

.reserchSwiper {
  position: relative;
}
.reserchSwiper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100px;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
  z-index: 1;
}

.navs {
  position: relative;
  right: 0;
  top: 0;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev,
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: unset;
  right: unset;
}

.button-next,
.button-prev {
  width: 38px;
  height: 38px;
  position: relative;
  background: #D9D9D9;
  transition: all 0.2s linear;
  border-radius: 50%;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-next span,
.button-prev span {
  font-size: 20px;
  color: #675D57;
}
.button-next::after,
.button-prev::after {
  content: none;
}
.button-next::before,
.button-prev::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
}
.button-next:hover,
.button-prev:hover {
  background: #5D8AA6;
}
.button-next:hover span,
.button-prev:hover span {
  color: #fff;
}

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

.AZ-blog-card {
  border-radius: 10px;
  background: #D9D9D9;
  height: 100%;
}
.AZ-blog-card .blog-card-body {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(93, 138, 166, 0) 0%, #5D8AA6 100%);
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding: 20px;
}
.AZ-blog-card .blog-card-title {
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 10px;
}
.AZ-blog-card .blog-card-text {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 500;
}
.AZ-blog-card.AZ-blog-card-rectangle {
  width: 100%;
}
.AZ-blog-card.AZ-blog-card-rectangle::after {
  padding-bottom: 50%;
}

.AZ-members-page {
  padding: 50px 0;
  min-height: 80vh;
}

.AZ-member-card {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.15);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.AZ-member-card .profile-img {
  width: 183px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.AZ-member-card .profile-img::after {
  padding-bottom: 100%;
}
.AZ-member-card .member-name {
  font-size: 16px;
  color: #151618;
  font-weight: 600;
  margin-bottom: 5px;
}
.AZ-member-card .member- {
  font-size: 12px;
  color: #7B808C;
  font-weight: 500;
  margin-bottom: 15px;
}
.AZ-member-card .member-desc {
  font-size: 12px;
  color: #41444B;
  font-weight: 400;
}

.social-group a {
  color: #41444B;
  font-size: 20px;
  transition: all 0.2s linear;
}
.social-group a:hover {
  color: #E57373;
}
.social-group a:hover .icon-google-scholar-svgrepo-com .path1:before {
  color: #E57373;
  transition: all 0.2s linear;
}
.social-group .icon-google-scholar-svgrepo-com .path1:before {
  color: #41444B;
}

.AZ-contact-page {
  padding: 50px 0;
}
.AZ-contact-page .contact-title {
  font-size: 24px;
  color: #333333;
  font-weight: 700;
  position: relative;
  padding: 0 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.AZ-contact-page .contact-title::before, .AZ-contact-page .contact-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5D8AA6;
}
.AZ-contact-page .contact-title::before {
  left: unset;
  right: 0;
}
.AZ-contact-page .contact-form {
  border-radius: 15px;
  border: 1px solid #D4D4D4;
  background: rgba(255, 255, 255, 0.56);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  padding: 80px 35px 80px 50px;
  margin-left: -35px;
  width: 50%;
}
.AZ-contact-page .contact-us {
  border-radius: 10px;
  background: #5D8AA6;
  padding: 35px;
  width: 50%;
  height: 100%;
  padding: 35px 50px 35px 35px;
}
.AZ-contact-page .contact-us .contact-title {
  color: #FFFFFF;
}
.AZ-contact-page .contact-us .contact-title::before, .AZ-contact-page .contact-us .contact-title::after {
  background: #ffffff;
}
.AZ-contact-page .contact-item p {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 500;
}
.AZ-contact-page .contact-item p span {
  font-size: 20px;
}
.AZ-contact-page .contact-item a {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: underline;
}

.spinner-border {
  width: 1rem;
  height: 1rem;
}

.alert {
  padding: 0.5rem;
}
.alert p {
  font-size: 13px;
  color: #5D8AA6;
  font-weight: 400;
}
.alert p span {
  font-size: 25px;
}
.alert.alert-danger p {
  color: rgb(244, 106, 78);
}

.AZ-location {
  width: 100%;
  border-radius: 10px;
  z-index: 1;
  margin-top: 20px;
}
.AZ-location::after {
  padding-bottom: 55%;
}
.AZ-location .map {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.publications-box {
  border-radius: 16px;
  background: #F3F3F3;
  box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.15);
  padding: 25px;
  margin-bottom: 30px;
}
.publications-box .publications-title {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
}
.publications-box .publication-text {
  font-size: 14px;
  color: #333333;
  font-weight: 400;
  line-height: 1.8;
}
.publications-box .print-btn {
  color: #E57373;
  font-size: 20px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F3F3;
  border-radius: 50%;
  transition: all 0.2s linear;
  border: 1px solid #F3F3F3;
}
.publications-box .print-btn:hover {
  background: transparent;
}
.publications-box .publication {
  border-bottom: 1px solid #DBDBDB;
  padding: 15px 0;
}
.publications-box .publication:last-child {
  border-bottom: 0;
}

.AZ-publications-page {
  min-height: 80vh;
}
.AZ-publications-page .publications-box {
  background: #FFF;
}

.AZ-pagination-wrapper .page-link,
.AZ-pagination-wrapper .page-nav {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  border-radius: 5px;
  background: #F5F5F5;
  min-width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  transition: all 0.2s linear;
}
.AZ-pagination-wrapper .page-link:hover,
.AZ-pagination-wrapper .page-nav:hover {
  color: #E57373;
}
.AZ-pagination-wrapper .page-nav {
  background: transparent;
  border: 1px solid #dddcdc;
  min-width: 80px;
}
.AZ-pagination-wrapper .page-nav:hover {
  background: #dddcdc;
}
.AZ-pagination-wrapper .active {
  background: #E57373;
  color: #fff;
}

.modal-wrapper .modal-title {
  font-size: 16px;
  color: #354752;
  font-weight: 500;
}

.reserch-modal .gallery-img {
  width: 100%;
  border-radius: 5px;
}
.reserch-modal .gallery-img::after {
  padding-bottom: 70%;
}
.reserch-modal .gallery-navs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  background: red;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  height: 0;
}
.reserch-modal .button-next {
  left: 10px;
}
.reserch-modal .button-prev {
  right: 10px;
}

.AZ-news-page {
  padding: 50px 0;
  min-height: 80vh;
}

.AZ-news-card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  padding: 10px;
}
.AZ-news-card .news-card-img {
  min-width: 40%;
  border-radius: 10px;
}
.AZ-news-card .news-card-img::after {
  padding-bottom: 70%;
}
.AZ-news-card .news-card-title {
  font-size: 14px;
  color: #151618;
  font-weight: 600;
  margin-bottom: 10px;
}
.AZ-news-card .news-card-text {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}
.AZ-news-card .read-more-btn {
  font-size: 12px;
  color: #E57373;
  font-weight: 500;
}
.AZ-news-card .news-card-date {
  border-radius: 3px;
  background: rgba(217, 217, 217, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 3px 5px;
  font-size: 12px;
  color: #333333;
  font-weight: 500;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  white-space: nowrap;
}

.AZ-reserch-page {
  padding: 50px 0;
}
.AZ-reserch-page .customer-box {
  border-radius: 10px;
  border: 1px solid #E4E4E4;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  padding: 5px 10px;
  margin: -100px auto 80px;
  width: 90%;
  position: relative;
}
.AZ-reserch-page .customer-box a {
  filter: grayscale(50);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.AZ-reserch-page .customer-box a:hover {
  filter: grayscale(0);
}
.AZ-reserch-page .customer-box img {
  width: 90px;
}
.AZ-reserch-page .customer-navs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 5px;
  width: 100%;
  height: 0;
  z-index: 1;
}

.sort-title {
  font-size: 16px;
  color: #151618;
  font-weight: 600;
}

.sort-link {
  font-size: 14px;
  color: #41444B;
  font-weight: 500;
  background: #F3F3F3;
  padding: 5px 10px;
  border-radius: 3px;
  transition: all 0.2s linear;
}
.sort-link:hover, .sort-link.active {
  background: #5D8AA6;
  color: #fff;
}

.member-modal .member-img {
  width: 200px;
  border-radius: 5px;
}
.member-modal .member-img::after {
  padding-bottom: 120%;
}
.member-modal .member-name {
  font-size: 20px;
  color: #151618;
  font-weight: 600;
}
.member-modal .member-post {
  font-size: 16px;
  color: #7B808C;
  font-weight: 400;
  margin-bottom: 30px;
  display: block;
}
.member-modal .member-desc {
  font-size: 16px;
  color: #41444B;
  font-weight: 400;
}

.line {
  width: 100%;
  height: 2px;
  background: #F2F0ED;
  margin: 30px 0;
}

.AZ-search-page {
  padding: 50px 0;
  min-height: 80vh;
}
.AZ-search-page .scroll-nav {
  border-bottom: 1px solid #D9D9D9;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.AZ-search-page .scroll-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #7B808C;
}
.AZ-search-page .scroll-nav .nav-link.active {
  border-bottom: 2px solid #E57373;
  color: #151618;
  background: transparent;
  border-radius: unset;
}

.AZ-members-section {
  margin: 30px 0 100px;
}
.AZ-members-section .members-section-box {
  border-radius: 10px;
  background: #FFF;
  padding: 40px;
  position: relative;
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.04));
}
.AZ-members-section .members-section-box::after {
  content: "\e937";
  font-family: "icomoon";
  position: absolute;
  top: -80px;
  right: 30px;
  font-size: 100px;
  color: #DFDFDF;
}
.AZ-members-section .member-img {
  min-width: 78px;
  border-radius: 50%;
}
.AZ-members-section .member-img::after {
  padding-bottom: 100%;
}
.AZ-members-section .member-name {
  font-size: 14px;
  color: #212121;
  font-weight: 500;
  margin: 10px 0;
}
.AZ-members-section .member-post {
  font-size: 16px;
  color: #929292;
  font-weight: 500;
}
.AZ-members-section .member-left {
  width: 20%;
}

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

article h1 {
  font-size: 26px;
  color: #212121;
  font-weight: 700;
  margin-bottom: 30px;
}
article h2, article h3, article h4, article h5 {
  font-size: 22px;
  color: #212121;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 20px;
}
article img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  flex-grow: 1;
}
article p, article span {
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  margin-bottom: 10px;
}

@media screen and (max-width: 980px) {
  .w-md-100 {
    width: 100%;
  }
  .AZ-navbar {
    border-bottom: 1px solid #F5F5F5;
  }
  .AZ-navbar .nav-link {
    color: white;
  }
  .AZ-navbar .navbar-brand {
    font-size: 16px;
    color: #5D8AA6;
    font-weight: 700;
  }
  #backToTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .AZ-footer .copyright-text {
    position: unset;
    transform: unset;
  }
  .AZ-header-section {
    padding: 30px 0 200px 0;
  }
  .AZ-header-section .header-content {
    padding: 20px;
    border: 1px solid #E4E4E4;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 5px;
  }
  .AZ-contact-page .contact-form,
  .AZ-contact-page .contact-us {
    width: 100%;
    padding: 35px 35px 50px;
  }
  .AZ-contact-page .contact-form {
    width: 95%;
    padding: 80px 35px 35px;
    margin-top: -35px;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .AZ-news-card .news-card-img {
    min-width: 100%;
  }
  .AZ-news-card .news-card-date {
    font-size: 10px;
  }
  .button-next, .button-prev {
    width: 30px;
    height: 30px;
  }
  .AZ-section-text {
    font-size: 14px;
  }
  .AZ-section-title {
    font-size: 16px;
  }
  .AZ-reserch-page .customer-box img {
    width: 80px;
  }
  .sort-title {
    font-size: 14px;
    font-weight: 500;
  }
  .sort-link {
    font-size: 12px;
  }
  .AZ-primary-btn, .AZ-secondary-btn {
    font-size: 10px;
    padding: 8px 10px;
  }
  .AZ-blog-card .blog-card-body {
    padding: 10px;
  }
  .AZ-blog-card .blog-card-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .AZ-blog-card .blog-card-text {
    font-size: 10px;
  }
  .AZ-publications-section .publication-text {
    font-size: 13px;
    line-height: 1.5;
  }
  .AZ-publications-section .publications-box {
    padding: 15px;
  }
  .AZ-header-section .header-text {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .AZ-header-section .header-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .search-wrapper {
    height: 45px;
  }
  .search-wrapper button {
    padding: 5px 10px;
  }
  .search-wrapper input {
    font-size: 10px;
  }
  .AZ-contact-page .contact-form,
  .AZ-contact-page .contact-us {
    width: 100%;
    padding: 20px 20px 50px;
  }
  .AZ-contact-page .contact-form {
    padding: 50px 20px 20px;
  }
  .AZ-contact-page .contact-title {
    font-size: 18px;
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .AZ-contact-page .contact-title::before,
  .AZ-contact-page .contact-title::after {
    width: 6px;
    height: 6px;
  }
  .AZ-contact-page .contact-item p {
    font-size: 12px;
  }
  .AZ-contact-page .contact-item a {
    font-size: 14px;
  }
  .AZ-field-group label {
    font-size: 12px;
  }
  .AZ-field-group input, .AZ-field-group textarea {
    font-size: 14px;
  }
  .AZ-footer .footer-box {
    padding: 10px;
  }
  .AZ-footer .copyright-text {
    font-size: 11px;
  }
  .member-modal .member-img {
    width: 100%;
  }
  .w-sm-100 {
    width: 100%;
  }
  .AZ-search-page .scroll-nav .nav-link {
    font-size: 12px;
    padding: 5px 8px;
  }
  .AZ-members-section .member-left {
    width: 100%;
  }
  .AZ-members-section .members-section-box::after {
    top: -30px;
    font-size: 50px;
    color: #DFDFDF;
  }
  .AZ-members-section .members-section-box {
    padding: 25px;
  }
}