@charset "utf-8";

/* Call Fonts */
@import url(fonts.css);

:root {
  --primary_color: #00a583;
  --dark_primary_color: #058168;
  --title_color: #2c2c2c;
  --text_color: #535353;
  --bg: #e8faff;
}

/*Start Projects */
html {
	box-sizing: border-box;
  scroll-behavior: smooth !important;
}
* , *:before , *:after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
	text-decoration: none;
	font-weight: normal;
  border: none;
  outline: none;
  font-display: auto;
}
body {
  font-family: Vazir;
  overflow-x: hidden;
}
a {
  cursor: pointer;
}

/* Start PreLoader */
#loading {
  background-color: #fff;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
#loading #loading-center {
  height: 100vh;
  width: 100vw;
  position: relative;
}
#loading #loading-center{
  position: absolute;
  height: 50px;
  width: 50px;
  transform: rotate(45deg);
  animation: loading-center-absolute 1.5s infinite;
}
#loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes loading-center-absolute {
  100% {
      transform: rotate(-45deg);
  }
}
#loading #loading-center #loading-center-absolute .object {
  width: 25px;
  height: 25px;
  background-color: var(--primary_color);
  float: left;
}
#loading #loading-center #loading-center-absolute #object_one {
  animation: object_one 1.5s infinite;
}
@keyframes object_one {
  25% {
    transform: translate(0, -50px) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
  }
}
#loading #loading-center #loading-center-absolute #object_two {
  animation: object_two 1.5s infinite;
}
@keyframes object_two {
  25% {
    transform: translate(50px, 0) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
  }
}
#loading #loading-center #loading-center-absolute #object_three {
    animation: object_three 1.5s infinite;
}
@keyframes object_three {
  25% {
    transform: translate(-50px, 0) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
  }
}
#loading #loading-center #loading-center-absolute #object_four {
  animation: object_four 1.5s infinite;
}
@keyframes object_four {
  25% {
    transform: translate(0, 50px) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
.hidden {
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
}

/* Start Header */
header {
  height: 120px;
}
.nav_container {
  position: fixed;
  top: 15px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 5px;
  background-color:rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.05);
  z-index: 8;
}
.nav_items {
  display: flex;
  justify-content: start;
  list-style-type: none;
}
.nav_link {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0px 20px;
  padding-bottom: 4px;
}
.nav_link_text {
  color: var(--title_color);
  font-size: 18px;
  transition: all ease 0.3s;
}
.nav_active {
  color: var(--primary_color);
}
.nav_link_underline {
  position: absolute;
  bottom: 0px;
  width: 0%;
  height: 2px;
  border-radius: 10px;
  background-color: var(--primary_color);
  transition: all ease .3s;
}
.nav_link:hover .nav_link_underline {
  width: 80%;
}
.nav_link:hover .nav_link_text {
  color: var(--primary_color);
}
.dropdown .nav_link_text {
  display: flex;
  align-items: center;
}
.nav_dropdown_icon {
  font-size: 14px;
  transition: all ease 0.3s;
  padding-left: 0px;
  padding-right: 5px;
}
.nav_link:hover .nav_dropdown_icon {
  padding-right: 0px;
  padding-left: 5px;
  transform: rotate(180deg);
}
.nav_dropdown {
  position: absolute;
  right: -20px;
  top: 160%;
  z-index: -2;
  display: flex;
  flex-direction: column;
  width: 200px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.05);
  transition: all ease 0.3s;
  visibility: hidden;
  opacity: 0;
}
.nav_dropdown_link {
  position: relative;
  color: var(--title_color);
  font-size: 17px;
  padding: 8px 15px;
  transition: all ease 0.3s;
}
.nav_dropdown_link:first-child {
  padding-top: 15px;
}
.nav_dropdown_link:last-child {
  padding-bottom: 15px;
}
.nav_dropdown_link:hover {
  color: #fff;
}
.nav_dropdown_link::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  z-index: -1;
  background-color: var(--primary_color);
  transition: all ease 0.3s;
}
.nav_dropdown_link:hover::before {
  width: 100%;
}
.nav_dropdown_link:first-child:hover::before {
  border-radius: 6px 6px 0px 0px;
}
.nav_dropdown_link:last-child:hover::before {
  border-radius: 0px 0px 6px 6px;
}
.nav_link:hover .nav_dropdown {
  display: flex;
  visibility: visible;
  top: 120%;
  opacity: 100%;
}
.nav_logo {
  display: flex;
  padding: 0px 16px;
}
.nav_logo_img {
  max-width: 42px;
}

.nav_toggle_conatiner {
  position: fixed;
  top: 15px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: end;
  z-index: 6;
}
.nav_toggle {
  display: none;
}
.nav_toggle_logo {
  display: none;
  align-items: center;
  gap: 5px;
}
.nav_toggle_logo span {
  color: var(--text_color);
}
/* Start Main Slider */
.main_slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 100vh;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}


.slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider_controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 2;
}

.slider_btn {
  background: none;
  border: none;
  font-size: 40px;
  color: var(--title_color);
  cursor: pointer;
  transition: color 0.3s ease;
}

.slider_btn:hover {
  color: var(--primary_color);
}

/* Start Main(body) of Website */
main {
  margin-bottom: 80px;
}
.container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.section_margin {
  margin-top: 40px;
}
.section_title {
  font-size: 34px;
  color: var(--primary_color);
  margin-bottom: 14px;
}
.section_description {
  color: var(--text_color);
  font-size: 18px;
  margin-bottom: 30px;
}
.light_text {
  color: #fff;
}
/* Start Information Boxs */
.info_boxs_container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  transform: translateY(-80px);

}
.info_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-basis: 32.5%;
  width: 100%;
  padding: 50px 30px;
  background-image: url(../Images/Info_Bg.webp);
  background-size: 80%;
  border-radius: 15px;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
  transition: all ease 0.3s;
  text-align: center;
}
.info_box:hover {
  transform: translateY(-20px);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
}
.info_icon {
  width: 24px;
  height: 24px;
  padding: 10px;
  color: #fff;
  background-color:var(--primary_color);
  border-radius: 100%;
}
.info_title {
  font-size: 24px;
  padding: 12px 0px 8px 0px;
  color: var(--title_color);
}
.info_description {
  color: var(--text_color);
  text-align: center;
}
.bg_light {
  background-color: var(--bg);
}
/* Start Introduction */
.intro_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}
.intro_content {
  flex-basis: 60%;
}
.intro_video {
  width: 400px;
  flex-basis: 45%;
  border-radius: 20px;
  overflow: hidden;
}
.intro_list {
  margin-bottom: 20px;
}
.intro_list_item {
  list-style-type: none;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  color: var(--title_color);
}
.fa-circle-check {
  padding-left: 5px;
  color: var(--primary_color);
}
.intro_more_button {
  padding: 8px 60px;
  font-size: 18px;
  color: #fff;
  background-color: var(--primary_color);
  border-radius: 50px;
  transition: all ease 0.3s;
}
.intro_more_button:hover {
  background-color: var(--dark_primary_color);
}

/* Start Timer */
.timer_section_container {
  width: 100%;
  background-color: var(--primary_color);
  padding: 60px 0px;
  color: #fff;
  text-align: center;
  border-radius: 100px 100px 0px 0px;
}
.timer_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.time_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.time_number {
  display: flex;
  justify-content: center;
  line-height: 100px;
  align-items: center;
  font-size: 50px;
  width: 100px;
  height: 100px;
  border: 4px solid #fff;
  border-radius: 15px;
  margin-bottom: 8px;
}
.timer_button {
  width: 100%;
  padding: 8px 100px;
  font-size: 18px;
  color: var(--primary_color);
  background-color: #fff;
  border-radius: 50px;
  transition: all ease 0.3s;
}
.timer_button:hover {
  background-color: var(--bg);
}
/* Start WorkRooms */
.workroom_section_container {
  padding: 60px 0px;
  text-align: center;
}
.workroom_text_wrapper {
  max-width: 70%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.workroom_items_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
}
.workroom_item {
  display: flex;
  flex-basis: 25%;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all ease 0.3s;
}
.workroom_item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
}

.workroom_img {
  width: 100%;
}

/* Start Hubs */
.hub_bg {
  padding: 60px 0px;
  text-align: center;
  border-radius: 0px 0px 100px 100px;
}
.carousel_container {
  position: relative;
  width: 100%;
  height: 500px;
  padding: 40px;
  background-color: var(--dark_primary_color);
  text-align: start;
  color: #fff;
  border-radius: 25px;
  overflow: hidden;
}
.carousel_items {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 40px;
  transition: opacity ease 0.3s;
}
.carousel_img {
  flex-basis: 35%;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
}
.carousel_img img {
  width: 100%;

}
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 2;
}
.carousel_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  font-size: 25px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  color: var(--primary_color);
  background-color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;

}
.carousel_btn:hover {
  background-color: var(--bg);
}

.hub_content {
  flex-basis: 65%;
  padding-left: 20px;
}
.hub_name_title {
  font-size: 26px;
  padding-bottom: 15px;
}
.hub_description {
  line-height: 30px;
}
.active {
  opacity: 1;
  z-index: 1;
}

/* Start Blog Section*/
.blog_sec_container {
  padding: 60px 0px;
}
.blog_sec_text_wrapper {
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}
.blog_sec_boxs_conatiner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.blog_sec_item {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 15px;
  border-radius: 18px;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
  transition: all ease 0.3s;
  cursor: pointer;
}
.blog_sec_item:hover {
  transform: translateY(-15px);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.25);
}
.blog_sec_item_img_wrapper {
  display: flex;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.blog_sec_img {
  width: 100%;
  object-fit: cover;
  transition: all ease 0.3s;
}
.blog_sec_item:hover .blog_sec_img {
  transform: scale(1.1);
}

.blog_sec_item_text_wrapper {
  padding: 10px 0 ;
}
.blog_sec_item_title {
  color: var(--primary_color);
  font-size: 22px;
  padding-bottom: 10px;
}
.blog_sec_item_date {
  display: flex;
  align-items: center;
  color: var(--text_color);
  padding-bottom: 10px;
}
.blog_sec_item_date .fa-calendar-days {
  font-size: 14px;
  padding-left: 5px;
}
.blog_sec_item_description {
  color: var(--text_color);
  line-height: 28px;
  margin-bottom: 10px;
}
.blog_sec_item_description {
  display: -webkit-box;
  max-width: 390px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_sec_item_button {
  display: flex;
  align-items: center;
  color: var(--text_color);
  transition: all ease 0.3s;
}
.blog_sec_item_button span {
  padding: 0 5px;
}
.blog_sec_item:hover  .blog_sec_item_button {
  color: var(--primary_color);
}
.b_chev {
  font-size: 17px;
  transition: all ease 0.3s;
}
.b_ang {
  font-size: 15px;
  opacity: 0;
  transform: translate(10px);
  transition: all ease 0.3s;
}
.blog_sec_item:hover .b_ang {
  opacity: 1;
  transform: translate(0px);
}
.blog_sec_item:hover .b_chev {
  opacity: 0;
  transform: translate(-10px);
}


/* Start cadre */
.cadre_container {
  padding: 60px 0px;
  margin-bottom: 10px;
  text-align: center;
}
.cadre_title {
  margin-bottom: 30px;
}
.cadre_items_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.cadre_item {
  position: relative;
  display: flex;
  justify-content: center;
  flex-basis: 24%;
  width: 100%;
  border-radius: 15px;
  transition: all ease 0.3s;
}
.cadre_item_img_wrapper {
  display: flex;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.cadre_item_img {
  width: 100%;
}
.cadre_item_text_container {
  position: absolute;
  top: 90%;
  background-color: #fff;
  padding: 10px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.07);
}
.cadre_item_title {
  color: var(--primary_color);
  font-size: 20px;
}
.cadre_item_description {
  color: var(--text_color);
}
.cadre_item:hover {
  transform: translateY(-15px);
  box-shadow: 0px 0px 14px 4px rgba(0, 0, 0, 0.1);
}

/* Start Footer */
.footer_bg {
  background-color: var(--primary_color);
  padding: 60px 0;
}
.footer_container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  color: #fff;
}
.footer_section {
  display: flex;
  flex-direction: column;
  flex-basis: 20%;
}
.footer_section_title {
  font-size: 24px;
  margin-bottom: 24px;
}
.footer_section_subset {
  display: flex;
  flex-direction: column;
}
.footer_section_subset_item {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
  font-size: 18px;
  color: #fff;
  transform: translate(15px);
  transition: all ease 0.3s;
}
.footer_section_subset_item:hover {
  transform: translate(0px);
}
.footer_section_subset_item .b_ang {
  padding-left: 5px;
}
.footer_section_subset_item:hover .b_ang{
  transform: translate(0px);
  opacity: 1;
}
.footer_logo_section_title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer_logo {
  width: 40px;
}
.footer_description_section {
  flex-basis: 40%;
}
.footer_section_subset_description {
  text-align: justify;
  line-height: 30px;
}
.copyright {
  padding: 15px 0px;
  background-color: var(--bg);
  text-align: center;
  color: var(--dark_primary_color);
}

/* Contact Us */
.title {
  font-size: 40px;
  text-align: center;
  color: var(--text_color);
  padding: 20px;
}
.page_description_text {
  text-align: center;
  color: var(--text_color);
}
.contact_social_boxs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 30px 0;
}
.contact_social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all ease 0.3s;
}

.contact_social svg {
  color: #00a583;
  transition: all ease 0.3s;
}
.contact_social span {
  color: var(--text_color);
}
.social_icon_eitaa {
  width: 30px;
}
.social_icon_telegram, .social_icon_youtube {
  font-size: 30px;
}
.social_icon_email {
  font-size: 26px;
}
.contact_social:hover  .social_icon_eitaa{
  color: rgb(255, 163, 57);
}
.contact_social:hover  .social_icon_telegram{
  color: rgb(36, 161, 222);
}
.contact_social:hover  .social_icon_youtube{
  color: rgb(255, 0, 0);
}
.contact_social:hover  .social_icon_email{
  color: rgb(44, 44, 44);
}

.eitaa:hover {
  box-shadow: 0 0 10px 2px rgba(255, 163, 57, 0.15);
}
.telegram:hover {
  box-shadow: 0 0 10px 2px rgba(36, 161, 222, 0.15);
}
.youtube:hover {
  box-shadow: 0 0 10px 2px rgba(255, 0, 0, 0.15);
}
.email:hover {
  box-shadow: 0 0 10px 2px rgba(44, 44, 44, 0.15);
}
.contact_info_boxs {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
}

.location {
  width: 100%;
  height: 500px;
}
.location iframe {
  width: 100%;
  height: 100%;
}



/* About Us */
.about_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  margin: 40px 0;
}
.about_description {
  font-size: 17px;
  color: var(--text_color);
  line-height: 30px;
  text-align: justify;
  flex-basis: 55%;
}
.about_img_wrapper {
  display: flex;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.about_workroom_section {
  padding: 60px 0;
  background-color: var(--bg);
}
.about_workroom_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about_workroom_section_text_wrapper {
  color: var(--text_color);
  flex-basis: 50%;
}
.about_workroom_title {
  color: var(--primary_color);
  font-size: 30px;
  padding-bottom: 15px;
}
.about_workroom_section_description {
  padding-bottom: 15px;
  line-height: 30px;
}
.about_workroom_section_button {
  padding: 8px 28px;
  color: #fff;
  background-color: var(--primary_color);
  border-radius: 20px;
  transition: all ease 0.3s;
}
.about_workroom_section_button:hover {
  background-color: var(--dark_primary_color);
}
.about_workroom_section_img_wrapper {
  display: flex;
  width: 700px;
  border-radius: 20px;
  overflow: hidden;
  flex-basis: 30%;
}
.about_workroom_section_img {
  width: 100%;
}




/*  School Cadre */
.cadre_item_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cadre_box {
  margin-bottom: 50px;
}


/* Workroom */
.workroom_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.workroom_box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-basis: 49%;
  border-radius: 17.5px;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.05);
  transition: all ease 0.3s;
}
.workroom_box_img_wrapper {
  display: flex;
  width: 50%;
  border-radius: 15px;
  overflow: hidden;
}
.workroom_box_img {
  width: 100%;
}
.workroom_box_title {
  font-size: 24px;
  padding-bottom: 10px;
  color: var(--text_color);
}
.workroom_box:hover {
  box-shadow: 0 0 16px 2px rgba(0, 0, 0, 0.1);
}


/* Blog */
.blog_sec_boxs_conatiner {
  flex-wrap: wrap;
}


/* Inside Blog */
.blog_container {
  margin: 0 auto;
  max-width: 1024px;
}
.blog_main_img_wrapper {
  width: 100%;
  height: 500px;
  border-radius: 25px;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.blog_main_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog_title {
  color: var(--primary_color);
  font-size: 28px;
  padding: 20px 0 6px 0;
}
.content {
  line-height: 36px;
  font-size: 17px;
  color: var(--text_color);
}


/*Start Responsive*/
@media only screen and (max-width: 1600px) {
  .main_slider {
    height: 800px;
  }
}
@media only screen and (max-width: 1400px) {
  .nav_container, .container {
    max-width: 1100px;
  }
  .main_slider {
    height: 720px;
  }
  .blog_sec_item {
    max-width: 352px;
  }
  .blog_sec_boxs_conatiner {
    gap: 22px;
  }

  /* inside news */
  .blog_container {
    max-width: 992px;
  }
}
@media only screen and (max-width: 1200px) {
  .nav_container, .container {
    max-width: 960px;
  }
  .main_slider {
    height: 640px;
  }
  .carousel_container {
    height: 420px;
  }
  .blog_sec_item {
    max-width: 306px;
  }
  .blog_sec_item_description {
    max-width: 270px;
  }
  .blog_sec_boxs_conatiner {
    gap: 21px;
  }

  /* workrooms */
  .workroom_container {
    gap: 19px;
  }

  /* inside news */
  .blog_container {
    max-width: 786px;
  }
  .blog_main_img_wrapper {
    height: 400px;
  }
}
@media only screen and (max-width: 992px) {
  .nav_container, .container, .blog_container {
    max-width: 720px;
  }
  .nav_link {
    margin: 0 15px;
  }
  .nav_link_text {
    font-size: 16px;
  }
  .main_slider {
    max-width: 800px;
    border-radius: 30px;
    margin: 120px auto 0 auto;
    height: 400px;
  }
  .slider_btn {
    font-size: 26px;
  }
  .section_title {
    font-size: 30px;
  }
  .title {
    font-size: 34px;
  }
  .section_description {
    font-size: 17px;
    line-height: 28px;
  }
  .info_boxs_container {
    transform: translateY(0px);
    margin: 50px 0;
  }
  .info_icon {
    display: none;
  }
  .info_description {
    line-height: 28px;
  }
  .timer_section_container {
    border-radius: 60px 60px 0px 0px;
  }
  .hub_bg {
    border-radius: 0px 0px 60px 60px;
  }
  .workroom_items_container {
    flex-wrap: wrap;
  }
  .workroom_item {
    flex-basis: 48%;
  }
  .workroom_text_wrapper {
    max-width: 80%;
  }
  .hub_name_title {
    font-size: 22px;
  }
  .hub_description {
    font-size: 15px;
  }
  .carousel_container {
    height: 360px;
  }
  .carousel_img {
    flex-basis: 40%;
  }
  .hub_content {
    flex-basis: 60%;
  }
  .blog_sec_item {
    max-width: 226px;
  }
  .blog_sec_item_description {
    max-width: 196px;
  }
  .blog_sec_boxs_conatiner {
    gap: 20px;
  }
  .blog_sec_item_img_wrapper {
    height: 150px;
  }
  .blog_sec_item_date p {
    font-size: 14px;
  }
  .blog_sec_item_description {
    font-size: 14px;
  }
  .cadre_items_container {
    flex-wrap: wrap;
  }
  .cadre_item {
    flex-basis: 48%;
    margin-bottom: 50px;
  }
  .footer_section_title {
    font-size: 18px;
  }
  .footer_section_subset_item, .footer_section_subset_description {
    font-size: 16px;
  }
  .footer_section {
    flex-basis: 20%;
  }
  .footer_description_section {
    flex-basis: 36%;
  }

  /* contact us */
  .contact_social span {
    font-size: 14px;
  }
  .social_icon_eitaa {
    width: 28px;
  }
  .social_icon_telegram, .social_icon_youtube {
    font-size: 28px;
  }
  .social_icon_email {
    font-size: 24px;
  }

  /* about us */
  .about_section {
    align-items: start;
  }
  .a_sec_2 {
    margin-top: 60px;
  }
  .about_description {
    font-size: 16px;
    flex-basis: 100%;
  }
  .about_workroom_section_img_wrapper {
    flex-basis: 40%;
  }

  /* workrooms */
  .workroom_box {
    flex-direction: column;
    padding: 24px;
    flex-basis: 48%;
  }
  .workroom_box_img_wrapper {
    width: 100%;
  }
  .workroom_box_texts {
    width: 100%;
  }

}
@media only screen and (max-width: 768px) {
  .nav_container, .container, .main_slider, .blog_container {
    max-width: 540px;
  }
  .nav_container {
    width: 0;
  }
  .nav_container {
    background-color:rgba(255, 255, 255, 0);
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.0);
    max-width: 100%;
  }
  .nav_logo {
    display: none;
  }
  .nav_toggle_logo {
    display: flex;
    margin-bottom: 40px;
  }
	.nav_items {
		position: fixed;
		top: 0;
		right: -62%;
		bottom: 0;
		flex-direction: column;
    align-items: start;
		padding: 28px 20px;
		background-color: #fff;
		box-shadow: 1px 1px 12px 2px rgba(0,0,0,0.2);
		width: 40%;
		transition: all ease 0.3s;
	}
	.nav_link {
    margin-bottom: 20px;
	}
  .nav_link_underline {
    display: none;
  }
	.nav_toggle {
		display: flex;
		background-color: #fff;
		border-radius: 5px;
		padding: 2px 4px;
	}
	.nav_toggle_icon {
    width: 32px;
    height: 32px;
    color: var(--primary_color);
		transition: all 0.3s ease;
		cursor: pointer;
	}
	.nav_toggle_icon:hover {
		color: var(--text_color);
	}
  .toggle_icon {
    stroke: var(--primary_color);
    stroke-width: 0.5px;
    transition: all ease 0.3s;
  }
  .nav_toggle_icon:hover .toggle_icon {
    stroke: var(--text_color);
  }
  .main_slider {
    margin: 0 auto;
    height: 300px;
  }
  .info_boxs_container, .contact_info_boxs {
    flex-wrap: wrap;
    justify-content: center;
  }
  .info_box {
    flex-basis: 48%;
  }
  .intro_container {
    flex-direction: column;
  }
  .intro_video, .intro_content {
    flex-basis: 100%;
    width: 100%;
  }
  .carousel_container {
    height: 90vh;
  }
  .carousel_item {
    flex-wrap: wrap;
    justify-content: space-between;
    
  }
  .carousel_img, .hub_content {
    flex-basis: 100%;
  }
  .hub_content {
    text-align: center;
  }
  .blog_sec_item {
    flex-basis: 100%;
    max-width: 100%;
  }
  .blog_sec_item_description {
    max-width: 100%;
  }
  .blog_sec_boxs_conatiner {
    gap: 22px;
  }
  .blog_sec_item_img_wrapper {
    height: 240px;
  }
  .blog_sec_item_date p {
    font-size: 16px;
  }
  .blog_sec_item_description {
    font-size: 16px;
  }
  .footer_container {
    flex-wrap: wrap;
  }
  .footer_section {
    flex-basis: 45%;
  }

  /* contact us */
  .contact_social {
    flex-basis: 48%;
  }

  /* about us */
  .about_section {
    flex-direction: column;
  }
  .about_img_wrapper {
    display: none;
  }
  .about_workroom_section_text_wrapper {
    flex-basis: 100%;
  }
  .about_workroom_section_img_wrapper {
    display: none;
  }

  /* inside news */
  .blog_main_img_wrapper {
    height: 300px;
  }
  .blog_title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 576px) {
  .nav_container, .container, .main_slider, .blog_container {
    max-width: 93%;
    margin: 0 20px;
  }
	.nav_items {
		position: fixed;
		top: 0;
		bottom: 0;
		flex-direction: column;
		padding: 28px 20px;
		background-color: #fff;
		box-shadow: 1px 1px 12px 2px rgba(0,0,0,0.2);
		width: 50%;
		transition: all ease 0.3s;
	}
  .main_slider {
    height: 240px;
  }
  .info_box {
    flex-basis: 100%;
  }
  .info_icon {
    display: inline-block;
    width: 18px;
    height: 18px;
  }
  .info_title {
    font-size: 20px;
  }
  .info_description {
    line-height: 28px;
  }
  
  .footer_section {
    flex-basis: 100%;
  }

  /* workrooms */
  .workroom_box {
    flex-basis: 100%;
  }

  /* inside news */
  .content {
    font-size: 15px;
  }
}
@media only screen and (max-width: 460px) {
	.nav_items {
		position: fixed;
		top: 0;
		bottom: 0;
		flex-direction: column;
		padding: 28px 20px;
		background-color: #fff;
		box-shadow: 1px 1px 12px 2px rgba(0,0,0,0.2);
		width: 60%;
		transition: all ease 0.3s;
	}
  .main_slider {
    display: none;
  }
  .time_number {
    font-size: 40px;
    width: 70px;
    height: 70px;
  }
  .timer_button {
    font-size: 17px;
    width: 80%;
    padding: 8px 60px;
  }
  .workroom_item {
    flex-basis: 100%;
  }
  .carousel_container {
    height: 80vh;
  }
  .blog_sec_item_title {
    max-width: 280px;
  }
  .cadre_item {
    flex-basis: 100%;
  }

  /* contact us */
  .contact_social {
    flex-basis: 100%;
  }

  /* about us */
  .about_description {
    font-size: 15px;
  }

  /* inside news */
  .blog_main_img_wrapper {
    height: 200px;
  }
}
