:root {
  --primary-color: #2E2425;
  --secondary-color: #fff;
  --red:#B31917;
  --gray: #7A7D8A;
  --yellow: #FFC600;
  --blue: #0690CE;
  --navy-blue:#2B3050;
}

@media (min-width: 1360px) {
  .container {
    max-width: 1290px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
}
@media (max-width: 1360px) {
  .container {
    max-width: 1050px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 98%;
    margin: 0 auto;
  }
}
.img__style {
  position: absolute;
  min-width: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.link__style {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
}

a {
  cursor: pointer;
}

body {
  overflow-x: hidden;
  position: relative;
  margin: 0;
}

p, h1, h2, h3, h4, h5, a, span, div, * {
  font-family: roboto;
}

.wrapper {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.main_container {
  pointer-events: none;
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
}

section {
  pointer-events: all;
  padding-top: 88px;
  padding-bottom: 70px;
}

*, ::after, ::before {
  box-sizing: border-box;
}

.img_box {
  position: relative;
}

.head__style {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 40px;
}
.head__style h2 {
  font-family: Inter-black;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 2.375rem + 0.625vw, 3.125rem);
  margin-bottom: 18px;
}
.head__style h3 {
  font-family: Inter-semiBold;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
}
@media (max-width: 992px) {
  .head__style {
    max-width: 90%;
    margin-inline-end: auto;
    margin-inline-start: auto;
  }
  .head__style h3 {
    text-align: center;
  }
}

.button_style {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 50px;
  background: var(--red);
  border-radius: 5px;
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.1s linear;
  z-index: 99;
  overflow: hidden;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  margin: 50px auto 0 auto;
}
.button_style:hover {
  background-color: #931513;
  color: white;
}

@media (max-width: 1360px) {
  .button_style {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 50px;
    background: var(--red);
    border-radius: 5px;
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.1s linear;
    z-index: 99;
    overflow: hidden;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  }
  .button_style:hover {
    background-color: #931513;
    color: white;
  }
}
@media (max-width: 992.99px) {
  .navigation_desktop {
    display: none;
  }
  .button_style {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    background: var(--red);
    border-radius: 5px;
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.1s linear;
    z-index: 99;
    overflow: hidden;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  }
  .button_style:hover {
    background-color: #931513;
    color: white;
  }
}
h4 {
  color: var(--secondary-color);
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 500;
  margin-top: 20px;
}

h5 {
  font-family: roboto-regular;
  color: var(--secondary-color);
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  font-weight: 400;
}

.text__normal {
  color: var(--primary-color);
  font-size: 1rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
}

.date {
  color: var(--gray);
  font-family: roboto-regular;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}

.flickity-page-dots {
  bottom: -45px;
}

.flickity-page-dots .dot {
  width: 12px;
  height: 6px;
  background-color: var(--gray);
  border-radius: 5px;
  opacity: 1;
  margin: 0;
  margin-inline-end: 5px;
}

.flickity-page-dots .dot.is-selected {
  background-color: var(--red);
  width: 30px;
}

.header--fixed {
  transition: transform 0.2s ease-in, opacity 0.2s ease-in;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  background-color: #2B3050;
  max-width: 100%;
}

@media (max-width: 992px) {
  .header--fixed {
    padding-bottom: 15px;
  }
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  z-index: 9999999;
}
.header .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header .container .logo_box {
  margin-inline-end: 45px;
}
.header .container .logo_box > span, .header .container .logo_box h1 {
  display: inline-block;
  width: 100px;
  height: 100px;
  position: relative;
}
@media (max-width: 1360px) {
  .header .container .logo_box > span, .header .container .logo_box h1 {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 1200px) {
  .header .container .logo_box > span, .header .container .logo_box h1 {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 992px) {
  .header .container .logo_box > span, .header .container .logo_box h1 {
    width: 65px;
    height: 65px;
  }
}
.header .container .logo_box > span span, .header .container .logo_box h1 span {
  margin-inline-start: 20px;
}
@media (max-width: 1360px) {
  .header .container .logo_box {
    margin-inline-end: 15px;
  }
}
.header .container .header__menu nav > ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.header .container .header__menu nav > ul li {
  margin-inline-start: 10px;
}
.header .container .header__menu nav > ul li a {
  color: var(--secondary-color);
  font-family: Roboto;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  cursor: pointer;
}
.header .container .header__menu nav > ul li a:hover {
  color: var(--yellow);
}
.header .container .header__menu nav > ul .has-dropdown::after {
  content: "\e902";
  font-family: niafam;
  font-size: 0.8125rem;
  vertical-align: middle;
  color: var(--secondary-color);
  font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.9375rem);
  margin-inline-start: 5px;
  margin-inline-end: 0;
}
.header .container .highlighted {
  color: var(--yellow) !important;
}
.header .container .sm-simple .sm-nowrap > li > a {
  color: black;
  font-size: 0.875rem;
  font-size: clamp(0.85rem, 0.85rem + 0.125vw, 1rem) !important;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}
.header .container .sm-simple .sm-nowrap > li > a:hover {
  color: var(--yellow) !important;
}
.header .container .sm .niafam::before {
  content: "\e902";
  font-family: niafam;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.9375rem);
}
.header .container .sm .niafam {
  margin-inline-start: 5px;
  margin-inline-end: 0;
}
@media (min-width: 768px) {
  .header .container .sm-simple > li > a {
    margin-inline-start: 10px;
  }
}
.header .container form {
  width: 300px;
  height: 30px;
  position: relative;
  margin-inline-start: auto;
}
.header .container form #search {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(3.5px);
  outline: none;
  border: none;
  height: 100%;
  width: 100%;
  padding: 7px 15px;
  color: var(--secondary-color);
}
.header .container form #search::placeholder {
  color: var(--secondary-color);
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 400;
  font-family: roboto-regular;
}
.header .container form .niafam {
  position: absolute;
  inset-inline-end: 10px;
  top: 5px;
  color: var(--yellow);
  font-size: 1rem;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
}
@media (max-width: 1360px) {
  .header .container form {
    width: 200px;
  }
}
.header .container .language {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-inline-start: 10px;
  background-color: rgba(244, 239, 239, 0.18);
  backdrop-filter: blur(3.5px);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--yellow);
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 400;
  font-family: roboto-regular;
}
@media (max-width: 560px) {
  .header .container .logo_box {
    margin-inline-end: 45px;
    width: 100%;
    margin-bottom: 20px;
  }
}
.header .dropdown {
  position: absolute;
  width: 100%;
  height: 315px;
  display: none;
  align-items: start !important;
  padding-top: 60px;
  left: 0;
  right: 0;
  top: 110px;
  background-color: white;
  list-style: none;
}
.header .dropdown .container {
  align-items: start;
}
.header .dropdown .list__dropdown {
  width: calc(25% - 30px);
  max-width: 264px;
}
.header .dropdown h2 {
  color: var(--red);
  font-family: Inter-bold;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  margin-bottom: 10px;
}
.header .dropdown p, .header .dropdown li > a {
  color: var(--primary-color) !important;
  font-family: Inter !important;
  font-size: 0.75rem !important;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem) !important;
  margin-bottom: 8px;
}
.header .dropdown li > a:hover {
  color: var(--yellow) !important;
}

.sec_1 {
  position: fixed;
  top: -195px;
  left: 0;
  width: 100%;
  padding-top: 0;
}
.sec_1 .full_slider {
  z-index: 9;
}
.sec_1 .full_slider_item {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: calc(100vh + 195px);
  z-index: 99;
}
.sec_1 .full_slider_item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #2B3050 1.04%, rgba(43, 48, 80, 0.23) 100%);
}
.sec_1 .full_slider_item .text_box {
  position: absolute;
  z-index: 9;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
.sec_1 .full_slider_item .text_box p {
  width: fit-content;
  padding: 40px 20px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(3.5px);
  font-family: roboto-Bold;
  color: var(--secondary-color);
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 1.6875rem + 0.3125vw, 2.0625rem);
}

.sec_2 {
  background-color: #F9F6EF;
}
.sec_2 .list_professors {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sec_2 .list_professors .item_professors {
  background-color: white;
  width: min(24.2%, 300px);
  height: 435px;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  border-bottom: 1px solid #DEDFE4;
}
.sec_2 .list_professors .item_professors:before, .sec_2 .list_professors .item_professors::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(50% - 10px);
  height: 1px;
  transition: 0.8s;
}
.sec_2 .list_professors .item_professors:before {
  background-color: var(--red);
  inset-inline-end: -50%;
}
.sec_2 .list_professors .item_professors:after {
  background-color: var(--blue);
  inset-inline-start: -50%;
}
.sec_2 .list_professors .item_professors .img_box {
  aspect-ratio: 300/350;
  width: 100%;
  height: unset;
  position: relative;
  overflow: hidden;
}
.sec_2 .list_professors .item_professors .img_box::before {
  content: "";
  background: rgba(14, 18, 33, 0.55);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.sec_2 .list_professors .item_professors .img_box .social_media {
  z-index: 9;
  position: absolute;
  bottom: -125px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.sec_2 .list_professors .item_professors .img_box .social_media a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: white;
  border-radius: 50%;
}
.sec_2 .list_professors .item_professors .img_box .social_media a:not(:last-child) {
  margin-inline-end: 10px;
}
.sec_2 .list_professors .item_professors .img_box .social_media a .niafam {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  color: var(--gray);
}
.sec_2 .list_professors .item_professors h4 {
  color: var(--primary-color);
}
.sec_2 .list_professors .item_professors h5 {
  color: var(--gray);
}
.sec_2 .list_professors .item_professors:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(50% - 10px);
  height: 1px;
  background-color: var(--red);
  inset-inline-end: 0;
  transition: 0.8s;
}
.sec_2 .list_professors .item_professors:hover:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(50% - 10px);
  height: 1px;
  background-color: var(--blue);
  inset-inline-start: 0;
  transition: 0.8s;
}
.sec_2 .list_professors .item_professors:hover .img_box::before {
  visibility: visible;
  opacity: 1;
}
.sec_2 .list_professors .item_professors:hover .img_box .social_media {
  bottom: 25px;
}
@media (max-width: 1360px) {
  .sec_2 .list_professors .item_professors {
    height: fit-content;
    padding-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .sec_2 .list_professors .item_professors {
    width: 32.5%;
    margin-inline-end: 15px;
  }
  .sec_2 .list_professors .item_professors .social_media {
    width: 98%;
  }
}
@media (max-width: 650px) {
  .sec_2 .list_professors .item_professors {
    width: 54.5%;
  }
}
@media (max-width: 992px) {
  .sec_2 .list_professors {
    display: block;
  }

  .sec_2 .list_professors .flickity-slider {
    width: 100%;
  }
  .sec_2 .list_professors .flickity-page-dots {
    bottom: -20px;
  }
}

.sec_3 {
  background-color: white;
  position: relative;
}
.sec_3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/uploads/en-beheshti/assets/images/pattern.png);
}
.sec_3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 79%;
  background-color: #D9D9D9;
}
.sec_3 .head, .sec_3 .button_style {
  z-index: 99;
  position: relative;
}
.sec_3 .list_articles {
  position: relative;
  z-index: 99;
  margin-top: 30px;
}
.sec_3 .list_articles .item_articles {
  width: min(24.5%, 300px);
  height: 350px;
  overflow: hidden;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  margin-inline-end: 30px;
  margin-bottom: 2px;
  margin-top: 10px;
  cursor: pointer;
}
.sec_3 .list_articles .item_articles .img_box {
  width: 100%;
  aspect-ratio: 300/350;
}
.sec_3 .list_articles .item_articles .img_box .detaial_box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  position: absolute;
  z-index: 999;
  transition: 0.8s;
}
.sec_3 .list_articles .item_articles .img_box .detaial_box h4 {
  width: 100%;
}
.sec_3 .list_articles .item_articles .img_box .detaial_box .niafam {
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.9375rem);
  color: white;
}
.sec_3 .list_articles .item_articles .img_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(43, 48, 80, 0.12) 0%, #2B3050 100%);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.sec_3 .list_articles .item_articles:hover .img_box::before {
  visibility: visible;
  opacity: 1;
}
.sec_3 .list_articles .item_articles:hover .img_box .detaial_box {
  bottom: 15px;
}
@media (max-width: 1360px) {
  .sec_3 .list_articles .item_articles {
    height: fit-content;
  }
}
@media (max-width: 992px) {
  .sec_3 .list_articles .item_articles {
    width: 32.5%;
  }
}
@media (max-width: 650px) {
  .sec_3 .list_articles .item_articles {
    width: 54.5%;
  }
}
.sec_3 .button_style {
  margin-top: 95px;
}

.sec_4 {
  background-color: var(--navy-blue);
}
.sec_4 .navy-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sec_4 .navy-box .right_box {
  flex: 1 0 50%;
  max-width: 685px;
  height: 380px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sec_4 .navy-box .right_box .img_box {
  width: 380px;
  height: 100%;
}
.sec_4 .navy-box .right_box .box__description {
  width: min(45%, 305px);
  background-color: white;
  height: 100%;
}
.sec_4 .navy-box .right_box .box__description p {
  max-width: min(90%, 265px);
  text-align: center;
  color: var(--gray);
  font-family: Inter;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 22px;
  margin-top: 70px;
  margin-inline-start: 10px;
}
.sec_4 .navy-box .right_box .box__description .button_style {
  width: min(60%, 250px);
}
.sec_4 .navy-box .left_box {
  flex: 1 0 39%;
  max-width: 561px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 380px;
}
.sec_4 .navy-box .left_box h2 {
  width: 100%;
  color: var(--secondary-color);
  font-family: Inter-black;
  font-size: 2.625rem;
  font-size: clamp(2.625rem, 2.525rem + 0.5vw, 3.125rem);
}
.sec_4 .navy-box .left_box p {
  margin-top: 15px;
  color: var(--secondary-color);
  font-family: Inter;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 22px;
}
.sec_4 .navy-box .left_box .button_style {
  margin-inline-start: 0;
  margin-top: auto;
}
@media (max-width: 1360px) {
  .sec_4 .navy-box .right_box {
    margin-inline-start: 15px;
  }
  .sec_4 .navy-box .right_box .img_box {
    width: 55%;
    height: 100%;
  }
}
@media (max-width: 992px) {
  .sec_4 .navy-box .right_box {
    flex: 100%;
    max-width: 100%;
    height: fit-content;
    margin-inline-start: 0;
  }
  .sec_4 .navy-box .right_box .box__description {
    width: 50%;
    padding-bottom: 15px;
  }
  .sec_4 .navy-box .right_box .box__description p {
    width: 100%;
    max-width: 80%;
    margin: 10px auto;
  }
  .sec_4 .navy-box .right_box .box__description .button_style {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .sec_4 .navy-box .right_box .img_box {
    width: 50%;
    height: unset;
    aspect-ratio: 3/2;
    border-radius: 5px 5px 0 0;
  }
  .sec_4 .navy-box .left_box {
    flex: 100%;
    max-width: 100%;
    height: fit-content;
    margin-bottom: 30px;
  }
  .sec_4 .navy-box .left_box .button_style {
    margin-top: 30px;
  }
}
@media (max-width: 678px) {
  .sec_4 .navy-box .right_box {
    flex: 100%;
    max-width: 100%;
    height: fit-content;
    margin-inline-start: 0;
  }
  .sec_4 .navy-box .right_box .box__description {
    width: 190%;
  }
  .sec_4 .navy-box .right_box .box__description p {
    width: 100%;
    max-width: 90%;
    margin: 10px auto;
  }
  .sec_4 .navy-box .right_box .img_box {
    width: 100%;
    height: unset;
    aspect-ratio: 3/2;
    border-radius: 5px 5px 0 0;
  }
  .sec_4 .navy-box .left_box {
    flex: 100%;
    max-width: 100%;
    height: fit-content;
    margin-bottom: 30px;
  }
  .sec_4 .navy-box .left_box .button_style {
    margin-top: 30px;
  }
}
@media (max-width: 520px) {
  .sec_4 .navy-box .right_box .box__description, .sec_4 .navy-box .right_box .img_box {
    width: 100%;
  }
}

.sec_5 {
  background-color: #F9F6EF;
}
.sec_5 .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sec_5 .container > div .head__style {
  align-items: flex-start;
  margin-bottom: 92px;
}
.sec_5 .container .left_box {
  flex: 2;
  max-width: 751px;
}
.sec_5 .container .left_box .carousel_news_item {
  background-color: white;
  width: min(49%, 360px);
  height: 360px;
  margin-inline-end: 30px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
  position: relative;
}
.sec_5 .container .left_box .carousel_news_item .img_box {
  width: 100%;
  aspect-ratio: 360/240;
}
.sec_5 .container .left_box .carousel_news_item .img_box::before {
  content: "";
  background: rgba(14, 18, 33, 0.55);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: 0.5s;
}
.sec_5 .container .left_box .carousel_news_item .text__normal {
  padding-inline-start: 20px;
  margin-top: 16px;
}
.sec_5 .container .left_box .carousel_news_item .date {
  margin-top: 15px;
  padding-inline-start: 20px;
}
.sec_5 .container .left_box .carousel_news_item > .niafam {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  position: absolute;
  inset-inline-end: 20px;
  bottom: 0;
  border-radius: 50%;
  background-color: #C4C0C0;
  font-size: 15px;
  color: white;
  transition: 0.5s;
}
.sec_5 .container .left_box .carousel_news_item:hover .img_box::before {
  visibility: visible;
  opacity: 1;
}
.sec_5 .container .left_box .carousel_news_item:hover > .niafam {
  background-color: var(--red);
}
@media (max-width: 992px) {
  .sec_5 .container .left_box .carousel_news_item {
    height: 290px;
  }
  .sec_5 .container .left_box .carousel_news_item .text__normal {
    -webkit-line-clamp: 4;
    padding: 0 10px;
  }
}
.sec_5 .container .left_box .button_style {
  margin-top: 95px;
}
.sec_5 .container .right_box {
  flex: 1;
  max-width: 509px;
}
.sec_5 .container .right_box .box_details {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  padding: 40px 25px;
  height: 506px;
}
.sec_5 .container .right_box .box_details .list_events {
  max-height: 341px;
  overflow-y: scroll;
  padding-inline-end: min(4%, 24px);
}
.sec_5 .container .right_box .box_details .list_events::-webkit-scrollbar {
  background-color: transparent;
  width: 5px;
}
.sec_5 .container .right_box .box_details .list_events::-webkit-scrollbar-thumb {
  background-color: #DEDBD1;
}
.sec_5 .container .right_box .box_details .list_events .events_item {
  position: relative;
  border-bottom: 1px solid rgba(220, 211, 211, 0.63);
  padding-bottom: 20px;
}
.sec_5 .container .right_box .box_details .list_events .events_item .text__normal {
  line-height: 21px;
  transition: 0.5s;
}
.sec_5 .container .right_box .box_details .list_events .events_item:not(:first-child) .text__normal {
  margin-top: 25px;
}
.sec_5 .container .right_box .box_details .list_events .events_item .date {
  margin-top: 20px;
}
.sec_5 .container .right_box .box_details .list_events .events_item:hover .text__normal {
  color: var(--red);
}
@media (max-width: 1360px) {
  .sec_5 .container .right_box {
    max-width: 35%;
    margin-inline-start: 20px;
  }
}
@media (max-width: 992px) {
  .sec_5 .container {
    display: block;
  }
  .sec_5 .container .left_box, .sec_5 .container .right_box {
    max-width: 100%;
    margin-inline-start: 0;
  }
  .sec_5 .container .head__style {
    margin-bottom: 30px !important;
  }
  .sec_5 .container .left_box {
    margin-bottom: 60px;
  }
}

.sec_6 {
  position: relative;
  background-color: #F9F6EF;
  height: 757px;
  padding-bottom: 0;
}
.sec_6::before, .sec_6::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 560px;
}
@media (max-width: 620px) {
  .sec_6::before, .sec_6::after {
    height: 640px;
  }
}
@media (max-width: 420px) {
  .sec_6::before, .sec_6::after {
    height: 660px;
  }
}
.sec_6::before {
  background-image: url("/uploads/en-beheshti/assets/images/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.sec_6::after {
  background: rgba(153, 153, 153, 0.7);
}
.sec_6 .details_box {
  position: relative;
  z-index: 9;
}
.sec_6 .details_box .head__style {
  align-items: flex-start;
  margin-bottom: 28px;
}
.sec_6 .details_box .head__style h2 {
  margin: 0;
}
.sec_6 .details_box p {
  color: var(--primary-color);
  font-family: Inter-semiBold;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  line-height: 33px;
  max-width: 1010px;
}
.sec_6 .details_box .button_box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.sec_6 .details_box .button_box .button_style {
  width: 250px;
  margin-inline-end: 25px;
  margin-inline-start: 0;
}
.sec_6 .statistics_box {
  background-color: white;
  padding: 25px 30px 5px 30px;
  position: absolute;
  bottom: 0;
  height: 300px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  border-radius: 5px;
}
.sec_6 .statistics_box .blue_box {
  background-color: var(--blue);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  border-radius: 5px;
}
.sec_6 .statistics_box .blue_box .statistics_item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  width: min(20%, 222px);
  height: 200px;
  border-inline-end: 1px solid rgba(220, 211, 211, 0.63);
}
.sec_6 .statistics_box .blue_box .statistics_item .niafam {
  font-size: 3.75rem;
  font-size: clamp(3.75rem, 3.625rem + 0.625vw, 4.375rem);
}
.sec_6 .statistics_box .blue_box .statistics_item h6 {
  font-family: Inter;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  margin-top: 30px;
}
.sec_6 .statistics_box .blue_box .statistics_item div {
  font-family: Inter-bold;
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
  margin-top: 15px;
}
@media (max-width: 992px) {
  .sec_6 .statistics_box {
    position: relative;
    margin-top: 30px;
    left: 0;
    transform: translateX(0) !important;
    z-index: 9999;
  }
  .sec_6 .statistics_box .statistics_item {
    width: 33% !important;
  }
  .sec_6 .statistics_box .flickity-viewport, .sec_6 .statistics_box .flickity-slider {
    width: 100%;
  }
}
@media (max-width: 678px) {
  .sec_6 .statistics_box .statistics_item {
    width: 49.5% !important;
  }
}
@media (max-width: 992px) {
  .sec_6 .head__style {
    margin-inline-start: 0;
  }
  .sec_6 .button_style {
    width: 150px !important;
  }
}
@media (max-width: 420px) {
  .sec_6 .button_style {
    width: 130px !important;
  }
}

.sec_7 {
  background-color: #F9F6EF;
}
.sec_7 .video_box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sec_7 .video_box .item_video {
  width: calc(50% - 15px);
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}
.sec_7 .video_box .item_video::after {
  content: "";
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1E1E1E 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.sec_7 .video_box .item_video p {
  position: absolute;
  bottom: 30px;
  color: var(--secondary-color);
  font-family: Inter;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  z-index: 999;
  width: 100%;
  padding: 0 min(10%, 50px);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
}
.sec_7 .video_box .item_video .niafam {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  inset-inline-end: 30px;
  width: 60px;
  height: 60px;
  background-color: white;
  font-size: 30px;
  color: var(--red);
  border-radius: 5px;
  transition: color 0.5s, background-color 0.5s;
}
.sec_7 .video_box .item_video:hover .niafam {
  background-color: var(--red);
  color: white;
}
.sec_7 .image_box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.sec_7 .image_box .item_img {
  width: calc(25% - 15px);
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}
.sec_7 .image_box .item_img::after {
  content: "";
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1E1E1E 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.sec_7 .image_box .item_img p {
  position: absolute;
  bottom: 25px;
  color: var(--secondary-color);
  font-family: Inter;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  z-index: 999;
  width: 100%;
  padding: 0 min(9%, 45px);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
}
.sec_7 .image_box .item_img .niafam {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  inset-inline-end: 15px;
  width: 40px;
  height: 40px;
  background-color: white;
  font-size: 20px;
  color: var(--red);
  border-radius: 5px;
  transition: color 0.5s, background-color 0.5s;
}
.sec_7 .image_box .item_img:hover .niafam {
  background-color: var(--red);
  color: white;
}
@media (max-width: 992px) {
  .sec_7 .video_box .item_video p {
    font-size: 0.87rem;
  }
  .sec_7 .image_box .item_img p {
    font-size: 0.84rem;
  }
  .sec_7 .image_box .item_img {
    width: calc(50% - 7.5px);
    margin-bottom: 15px;
  }
}
@media (max-width: 620px) {
  .sec_7 .video_box .item_video {
    width: 100%;
    margin-bottom: 15px;
  }
  .sec_7 .video_box .item_video p {
    font-size: 0.87rem;
  }
  .sec_7 .image_box .item_img p {
    font-size: 0.84rem;
  }
}

.sec_8 {
  background-color: var(--navy-blue);
}
.sec_8 .head__style {
  color: var(--secondary-color);
}
.sec_8 .list_services {
  width: 100%;
  height: 235px;
}
.sec_8 .list_services .item_services {
  width: calc(19.5% - 15px);
  max-width: 234px;
  margin-inline-end: 15px;
  background-color: white;
  height: 235px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}
.sec_8 .list_services .item_services .niafam {
  color: #7A7D8A;
  font-size: 4.0625rem;
  font-size: clamp(4.0625rem, 3.9125rem + 0.75vw, 4.8125rem);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  transition: 0.3s;
}
.sec_8 .list_services .item_services h4 {
  color: var(--primary-color);
  font-family: Inter;
  font-size: 1rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  transition: 0.3s;
}
.sec_8 .list_services .item_services:hover .niafam {
  background-color: var(--red);
  color: white;
}
.sec_8 .list_services .item_services:hover h4 {
  color: var(--red);
}
@media (max-width: 992px) {
  .sec_8 .list_services .item_services {
    width: 32%;
  }
  .sec_8 .list_services .item_services h2 {
    text-align: center;
    padding: 0 8px;
  }
}
@media (max-width: 520px) {
  .sec_8 .list_services .item_services {
    width: 78%;
  }
}

.sec_9 {
  background-color: #F9F6EF;
}
.sec_9 .head__style {
  max-width: 62%;
  margin: 0 auto 40px auto;
}
.sec_9 .list_research {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sec_9 .list_research .item_research {
  width: min(32.5%, 410px);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.sec_9 .list_research .item_research:not(:last-child) {
  margin-inline-end: 30px;
}
.sec_9 .list_research .item_research .img_box {
  aspect-ratio: 410/400;
  width: 100%;
}
.sec_9 .list_research .item_research .text_box {
  position: absolute;
  bottom: -250px;
  width: calc(100% - 70px);
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 35px;
  border-radius: 5px 5px 0 0;
  transition: 0.8s;
}
.sec_9 .list_research .item_research .text_box p {
  text-align: center;
  color: var(--primary-color);
  font-family: Inter;
  font-size: 1rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}
.sec_9 .list_research .item_research .text_box:before, .sec_9 .list_research .item_research .text_box::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(50% - 5px);
  height: 1px;
  transition: 1.8s;
}
.sec_9 .list_research .item_research .text_box:before {
  background-color: var(--red);
  inset-inline-end: -50%;
}
.sec_9 .list_research .item_research .text_box:after {
  background-color: var(--blue);
  inset-inline-start: -50%;
}
.sec_9 .list_research .item_research:hover .text_box {
  bottom: 0;
}
.sec_9 .list_research .item_research:hover .text_box::before {
  inset-inline-end: 0;
}
.sec_9 .list_research .item_research:hover .text_box::after {
  inset-inline-start: 0;
}
@media (max-width: 1360px) {
  .sec_9 .list_research .item_research {
    width: 30.5%;
  }
}
@media (max-width: 992px) {
  .sec_9 .list_research .item_research .text_box {
    bottom: -300px;
    width: calc(100% - 30px);
    padding: 8px;
  }
  .sec_9 .list_research .item_research .text_box p {
    font-size: 0.85rem;
  }
}
@media (max-width: 720px) {
  .sec_9 .list_research .item_research {
    width: 32%;
  }
  .sec_9 .list_research .item_research:not(:last-child) {
    margin-inline-end: 0 !important;
  }
}
@media (max-width: 992px) {
  .sec_9 .head__style {
    max-width: 90%;
  }
}
@media (max-width: 678px) {
  .sec_9 .list_research .item_research {
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
  }
  .sec_9 .list_research .item_research .img_box {
    aspect-ratio: 190/180;
  }
  .sec_9 .list_research .item_research .img_box img {
    object-fit: cover;
  }
}

.sec_10 {
  background-color: #F9F6EF;
  position: relative;
}
.sec_10::before, .sec_10::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec_10::before {
  background-image: url("/uploads/en-beheshti/assets/images/bg2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.sec_10::after {
  background: rgba(217, 217, 217, 0.95);
}
.sec_10 .head__style {
  z-index: 99;
  position: relative;
}
.sec_10 .list_alumni {
  position: relative;
  z-index: 99;
}
.sec_10 .list_alumni .item_alumni {
  height: 350px;
  width: min(24%, 300px);
  margin: 10px 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 992px) {
  .sec_10 .list_alumni .item_alumni {
    width: 32%;
  }
}
@media (max-width: 620px) {
  .sec_10 .list_alumni .item_alumni {
    width: 44%;
  }
}
.sec_10 .list_alumni .item_alumni .img_box {
  width: 100%;
  aspect-ratio: 300/350;
}
.sec_10 .list_alumni .item_alumni .img_box:after {
  content: "";
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 5px 5px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
}
.sec_10 .list_alumni .item_alumni .box_details {
  position: absolute;
  z-index: 9999;
  bottom: 15px;
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sec_10 .list_alumni .item_alumni .box_details h5 {
  width: 100%;
  transition: 0.5s;
}
.sec_10 .list_alumni .item_alumni .box_details span {
  margin-top: 5px;
  color: var(--secondary-color);
  font-family: roboto-regular;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  font-weight: 400;
  transition: 0.5s;
}
.sec_10 .list_alumni .item_alumni .box_details span:last-child {
  margin-inline-start: auto;
}
.sec_10 .list_alumni .item_alumni:hover h5, .sec_10 .list_alumni .item_alumni:hover span {
  color: var(--yellow);
}

.sec_11 {
  background-color: var(--navy-blue);
  padding-top: 80px;
}
.sec_11 .list_quick_access {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .sec_11 .list_quick_access {
    display: block;
  }
}
.sec_11 .list_quick_access .item_quick_access {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 5px;
  width: calc(14.2857142857% - 30px);
  height: 234px;
  position: relative;
}
.sec_11 .list_quick_access .item_quick_access:not(:last-child) {
  margin-inline-end: 30px;
}
.sec_11 .list_quick_access .item_quick_access .niafam {
  font-size: 4rem;
  font-size: clamp(4rem, 3.8375rem + 0.8125vw, 4.8125rem);
  color: var(--primary-color);
  transition: 0.5s;
}
.sec_11 .list_quick_access .item_quick_access p {
  color: var(--primary-color);
  font-family: Inter;
  font-size: 1rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  text-align: center;
  margin-top: 35px;
  max-width: 85%;
  margin-inline-end: auto;
  margin-inline-start: auto;
  transition: 0.5s;
}
@media (max-width: 1200px) {
  .sec_11 .list_quick_access .item_quick_access {
    width: calc(14.2857142857% - 15px);
  }
  .sec_11 .list_quick_access .item_quick_access:not(:last-child) {
    margin-inline-end: 15px;
  }
}
@media (max-width: 992px) {
  .sec_11 .list_quick_access .item_quick_access {
    width: calc(33.3333333333% - 15px);
  }
}
@media (max-width: 520px) {
  .sec_11 .list_quick_access .item_quick_access {
    width: calc(50% - 15px);
  }
}
.sec_11 .list_quick_access .item_quick_access:hover p, .sec_11 .list_quick_access .item_quick_access:hover .niafam {
  color: var(--red);
}

.sec_12 {
  background-color: #F9F6EF;
}
.sec_12 .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sec_12 .container .img_user {
  position: relative;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  overflow: hidden;
}
.sec_12 .container .comments {
  max-width: 745px;
  width: 65%;
}
.sec_12 .container .comments .comments_details {
  max-width: 586px;
  background-color: white;
  padding: 25px;
  color: var(--primary-color);
  font-family: Inter-semiBold;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  margin: 0 auto;
}
.sec_12 .container .comments .virgol {
  border-radius: 50%;
  background-color: var(--red);
  width: 80px;
  height: 80px;
  position: relative;
}
.sec_12 .container .comments .virgol span {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: EB Garamond;
  font-weight: 400;
  color: var(--secondary-color);
  font-size: 6.875rem;
  font-size: clamp(6.875rem, 6.5875rem + 1.4375vw, 8.3125rem);
}
@media (max-width: 768px) {
  .sec_12 .container .comments .virgol span {
    font-size: 86px;
  }
}
.sec_12 .container .comments .virgol_bottom {
  margin-inline-start: auto;
  transform: rotate(180deg);
}
.sec_12 .container .comments .button_style {
  margin-top: -35px;
}
@media (max-width: 992px) {
  .sec_12 .container {
    justify-content: center;
  }
  .sec_12 .container .img_user {
    width: 320px;
    height: 320px;
  }
  .sec_12 .container .comments {
    width: 92%;
  }
  .sec_12 .container .comments .virgol {
    width: 50px;
    height: 50px;
  }
  .sec_12 .container .comments .virgol span {
    font-size: clamp(5.875rem, 5.5875rem + 1.4375vw, 7.3125rem);
  }
  .sec_12 .container .comments .comments_details {
    max-width: 100%;
    font-size: 1rem;
  }
}

.footer {
  background-color: #EDEBEC;
  position: relative;
  z-index: 99999;
  pointer-events: all;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 80px;
}
.footer .container .col_footer {
  list-style: none;
}
.footer .container .col_footer:not(:last-child) {
  width: calc(25% - 30px);
  margin-inline-end: 30px;
}
.footer .container .col_footer:last-child {
  width: 25%;
}
.footer .container .col_footer h4 {
  color: var(--color-5, #B31917);
  font-family: Inter-bold;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  margin-bottom: 10px;
  margin-top: 0;
}
.footer .container .col_footer li a {
  color: var(--primary-color);
  font-family: Inter;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  margin-bottom: 8px;
  transition: 0.5s;
}
.footer .container .col_footer li a:hover {
  color: var(--red);
}
.footer .container .col_footer p {
  color: var(--primary-color);
  font-family: Inter;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  margin-bottom: 10px;
}
.footer .container .col_footer p:not(:nth-child(2)) {
  text-decoration: underline;
}
.footer .bottom_footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 52px;
  margin-bottom: 35px;
}
.footer .bottom_footer .social_media_footer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.footer .bottom_footer .social_media_footer .niafam, .footer .bottom_footer .social_media_footer a {
  font-size: 1.3125rem;
  font-size: clamp(1.3125rem, 1.2625rem + 0.25vw, 1.5625rem);
  color: var(--navy-blue);
  margin-inline-end: 7px;
  transition: 0.3s;
}
.footer .bottom_footer .social_media_footer .niafam:hover, .footer .bottom_footer .social_media_footer a:hover {
  color: var(--red);
}
.footer .bottom_footer .location {
  border-radius: 5px;
  border: 1px solid var(--red);
  position: relative;
  padding: 15px;
  transition: 0.5s;
}
.footer .bottom_footer .location span {
  color: var(--navy-blue);
  font-family: Inter;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  transition: 0.8s;
}
.footer .bottom_footer .location .niafam {
  font-size: 1.625rem;
  font-size: clamp(1.625rem, 1.575rem + 0.25vw, 1.875rem);
  margin-inline-start: 10px;
  vertical-align: middle;
  transition: 0.8s;
}
.footer .bottom_footer .location:hover {
  background-color: var(--red);
}
.footer .bottom_footer .location:hover span, .footer .bottom_footer .location:hover .niafam {
  color: var(--secondary-color);
}
.footer .copy_right {
  background-color: var(--navy-blue);
  height: 100px;
}
.footer .copy_right .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  height: 100%;
}
.footer .copy_right .container img {
  width: 70px;
  height: 70px;
  margin-inline-end: 20px;
}
.footer .copy_right .container p {
  color: var(--secondary-color);
  font-family: Inter;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.6625rem + 0.125vw, 0.8125rem);
}
@media (max-width: 992px) {
  .footer .container .col_footer {
    width: 44% !important;
    margin-inline-end: 15px !important;
    margin-bottom: 30px;
  }
  .footer .copy_right {
    height: fit-content;
  }
  .footer .copy_right .container {
    flex-direction: column !important;
    padding: 20px 0 !important;
  }
  .footer .copy_right .container img {
    width: 55px;
    height: 55px;
  }
  .footer .copy_right .container p {
    margin-top: 10px;
    text-align: center;
    width: 95%;
    margin-inline-end: auto;
    margin-inline-start: auto;
  }
}
@media (max-width: 525px) {
  .footer .container .location {
    margin-top: 15px;
  }
}
@media (max-width: 500px) {
  .footer .container .col_footer {
    width: 90% !important;
  }
}