/* [Master Stylesheet] */
/* ----------------------------------------------------------
    :: Template
    :: Author: Turbo
    :: Author URL:www.boo-code.com
    :: Version: 1.0
    :: Created: 10 2024
    :: Last Updated: 10 2024
    ---------------------------------------------------------- */
/* -------------------------------------------------
    ============ PLACE YOUR CUSTOM CSS HERE ============
    ------------------------------------------------- */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: unset;
}

.main-button {
  background-color: #2CACE2;
  border: 1px solid #2CACE2;
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem 3rem;
  text-align: center;
  text-decoration: none;
  border-radius: calc(1rem - 5px);
}

.dark-button {
  background-color: #1E526A;
  border: 2px solid #1E526A;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 3rem;
  text-align: center;
  text-decoration: none;
  border-radius: calc(1rem - 5px);
  box-shadow: 0px 2px 7.9px 0px rgba(0, 0, 0, 0.2509803922);
  transition: all 0.5s ease;
}
.dark-button:hover {
  background: #fff;
  color: #1E526A;
}

.terriatry-btn {
  background: transparent;
  border: none;
  color: #9B9B9B;
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.terriatry-btn:hover {
  color: #494949;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
header .top-header {
  background: #F5F5F5;
  display: flex;
  color: #9B9B9B;
  align-items: center;
  gap: 2rem;
  font-size: 1rem;
  padding: 0.5rem 4rem;
  justify-content: flex-end;
  height: 42px;
}
header .top-header .actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding-inline-end: 2rem;
  border-inline-end: 1px solid #9B9B9B;
  margin: 0;
}
header .top-header img.icon {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 2px;
}
header .logo-box {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 2;
  box-shadow: 0px 4px 17.8px 0px rgba(0, 0, 0, 0.1607843137);
  padding: 2rem;
  padding-inline-end: 12rem;
  -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
}
header .logo-box .logo {
  height: 80px;
}
header .navbar-box {
  position: absolute;
  top: 42px;
  right: 0;
  z-index: 3;
  background: #1E526A;
  width: 72%;
  padding-inline-end: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: url("../images/navbar-bg.png") no-repeat left center;
}
header .search-btn {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
header .navbar {
  background: transparent;
}
header .navbar .nav-link {
  color: #fff;
}
header .navbar .nav-link.active,
header .navbar .show > .nav-link {
  color: #fff;
}
header .navbar-expand-lg .navbar-nav {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.slider {
  padding-top: 4rem;
}
.slider .carousel-control-next-icon,
.slider .carousel-control-prev-icon {
  background: #fff;
  border-radius: 0.3rem;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  width: 3rem;
  height: 3rem;
}
.slider .slide {
  display: grid;
  align-items: center;
}
.slider .carousel-control-prev {
  height: -moz-fit-content;
  height: fit-content;
  top: auto;
  bottom: auto;
}
.slider .carousel-control-prev-icon {
  color: #1E526A;
  align-content: center;
}
.slider .carousel-control-next {
  height: -moz-fit-content;
  height: fit-content;
  top: auto;
  bottom: auto;
}
.slider .carousel-control-next-icon {
  color: #1E526A;
  align-content: center;
}
.slider .carousel-control-next,
.slider .carousel-control-prev {
  opacity: 1;
  transition: all 0.5s ease;
}
.slider .carousel-control-next:focus,
.slider .carousel-control-next:hover,
.slider .carousel-control-prev:focus,
.slider .carousel-control-prev:hover {
  transform: scale(1.1);
}
.slider .carousel-item {
  position: relative;
  height: 100vh;
}
.slider .carousel-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider .caption {
  position: absolute;
  top: 50%;
  left: 15rem;
  right: 15rem;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  text-align: start;
  padding-inline-start: 2.5rem;
}
.slider .caption h1 {
  font-size: 3rem;
  font-weight: bold;
  width: 70%;
  margin-bottom: 2rem;
}
.slider .caption p {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.5;
  width: 60%;
}
.slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  background: linear-gradient(270deg, rgba(44, 172, 226, 0) 0%, rgba(38, 147, 193, 0.145) 41%, rgba(0, 0, 0, 0.65) 100%);
}

.more-button-baner {
  width: 256px;
  height: 58px;
}

.image-box {
  border: 1px solid rgb(217, 217, 217);
  border-radius: 19px;
  padding: 0;
}

.news {
  padding: 4rem 0;
}
.news h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  padding-inline-start: 1rem;
  position: relative;
  margin-bottom: 3rem;
}
.news .news-slider-box {
  border-radius: 1rem;
  box-shadow: 0px 0px 17.3px 0px rgba(0, 0, 0, 0.1607843137);
  position: relative;
}
.news .news-slider-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(44, 172, 226, 0.09) 34.5%, rgba(20, 83, 110, 0.5490196078) 100%);
  z-index: 1;
}
.news .news-slider-box .carousel {
  border-radius: 1rem;
  overflow: hidden;
}
.news .news-slider-box .carousel-item img {
  width: 100%;
  border-radius: 1rem;
  height: 529px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .news-slider-box .carousel-item .carousel-caption {
  z-index: 1;
  position: absolute;
  right: 5%;
  bottom: 0rem;
  left: 5%;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  color: #fff;
  text-align: start;
  width: 70%;
}
.news .news-slider-box .carousel-item .carousel-caption h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news .news-slider-box .carousel-item .carousel-caption p {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #fff;
}
.news .news-slider-box .carousel-indicators {
  position: absolute;
  right: 1rem;
  bottom: 0.5rem;
  left: unset;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 2%;
  margin-bottom: 1rem;
  margin-left: 2%;
  list-style: none;
}
.news .news-slider-box .carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  opacity: 0.5;
  border-radius: 3px;
}
.news .news-slider-box .carousel-indicators .active {
  opacity: 1;
  width: 36px;
}
.news .new-box {
  display: flex;
  gap: 1rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0px 0px 17.3px 0px rgba(0, 0, 0, 0.1607843137);
  align-items: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.news .new-box a {
  display: flex;
  flex-shrink: 0;
}
.news .new-box img {
  width: 100%;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 1rem 0 0 1rem;
  transition: all 0.3s ease-in-out;
}
.news .new-box img:hover {
  transform: scale(1.1);
}
.news .new-box .news-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.news .new-box .news-content h2 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2CACE2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 0;
}
.news .new-box .news-content p {
  font-size: 1rem;
  color: #434446;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}
.news .new-box .news-content .news-date {
  font-size: 1rem;
  color: #9B9B9B;
}
.news .dark-button {
  margin-top: 2rem;
  width: 350px;
}
.news .dark-button i {
  font-size: 0.8rem;
  margin-top: 3px;
}

.card-library {
  width: 390px;
}

.statistics {
  padding: 5rem 0;
  background: rgb(28, 29, 30);
  background: linear-gradient(90deg, rgb(28, 29, 30) 0%, rgb(72, 117, 135) 100%);
  background-size: cover;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.statistics h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 4rem;
}
.statistics .statistics-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.statistics .statistics-wrapper .statistics-item {
  gap: 1.5rem;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
}
.statistics .statistics-wrapper .statistics-item .icon-box {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1803921569);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transition: all 0.3s ease-in-out;
}
.statistics .statistics-wrapper .statistics-item .icon-box:hover {
  transform: scale(1.1);
}
.statistics .statistics-wrapper .statistics-item .icon-box img {
  width: 100%;
}
.statistics .statistics-wrapper .statistics-item h2 {
  font-size: 2rem;
  font-weight: bold;
}
.statistics .statistics-wrapper .statistics-item p {
  font-size: 1rem;
  margin-bottom: 0;
}

.box-partenar {
  border: 1px solid rgb(184, 184, 184);
  border-radius: 10px;
}

.partenar-button {
  width: 100%;
  height: 10px;
  font-size: 16px;
}

.partners {
  background-size: 300px;
  background-position: right 220px;
  background-repeat: no-repeat;
}

.partners .trip {
  background-color: unset;
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
  padding-bottom: 20px;
}

.partners .box {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.partners .partners-slider {
  padding-bottom: 40px;
  padding-top: 40px;
}

.partners .partners-slider .item img {
  height: 140px;
  -o-object-fit: fill;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  display: block;
  cursor: pointer;
  width: 270px;
  transition: all 0.3s ease-in-out;
}

.partners .partners-slider .item img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.partners .partners-slider .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 60px;
}

.partners .partners-slider .owl-theme .owl-dots .owl-dot span {
  background: #ccc;
  height: 8px;
  width: 40px;
  border-radius: 10px 0 10px 0;
  margin-left: 3px;
  margin-right: 3px;
}

.partners .partners-slider .owl-theme .owl-dots .owl-dot.active span {
  background: #00344A;
  width: 60px;
}

footer {
  background: linear-gradient(86.42deg, #1E526A 0%, #00344A 99.62%);
  position: relative;
}
footer .top-footer {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  gap: 4rem;
}
footer .top-footer .logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 0 1rem 1rem 0;
  padding: 3rem 4rem;
}
footer .top-footer .logo-box img {
  width: 100%;
}
footer .top-footer .links-box {
  padding-inline-end: 4rem;
}
footer .top-footer .links-box h2 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}
footer .top-footer .links-box .links-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
footer .top-footer .links-box .links-list li {
  transition: all 0.3s ease-in-out;
}
footer .top-footer .links-box .links-list li a {
  color: #D0F1FF;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .top-footer .links-box .links-list li a i {
  font-size: 1rem;
}
footer .top-footer .links-box .links-list li:hover {
  transform: translateX(5px);
}
footer .bottom-footer {
  background: #fff;
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
}
footer .bottom-footer h5 {
  font-size: 1rem;
  color: #9B9B9B;
  margin: 0;
}
footer .social-box {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #1A7FAA;
  height: 70px;
  width: 52%;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  -webkit-clip-path: polygon(7% 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(7% 0, 100% 0%, 100% 100%, 0% 100%);
  box-shadow: 0px -7px 14.7px 0px rgba(0, 0, 0, 0.2);
}
footer .social-box h4 {
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
  font-weight: bold;
}
footer .social-box .social-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-self: center;
}
footer .social-box .social-links a {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
footer .social-box .social-links a:hover {
  color: #00344A;
}
footer .social-box .social-links a:not(:last-child) {
  border-inline-end: 1px solid #fff;
  padding-inline-end: 2rem;
}
footer .social-box .col-12 {
  justify-items: center;
  display: inline-grid;
}
footer .social-box .col-4 {
  justify-items: end;
  padding-inline-end: 0;
}

.mian-content {
  padding-top: 10rem;
  min-height: 48vh;
}

.bg-baneer1 {
  background: linear-gradient(84.59deg, rgba(0, 0, 0, 0.84) 2.32%, rgba(51, 107, 133, 0.84) 99.01%);
  width: 100%;
  height: 100%;
}

.img-sections {
  width: 100%;
  height: 279.25px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.side-bar {
  background-color: #F6F6F6;
  padding: 1.3rem;
  font-size: 16px;
  border-radius: 15px;
  font-weight: 600;
  opacity: 0px;
}

.title-pargrav-aboutUs {
  color: #00344A;
}

.title-pargrav2 {
  color: #00344A;
  margin-top: 5rem;
}

.bg-card {
  padding: 1px;
  gap: 0px;
  border-radius: 16px;
  opacity: 0px;
  background: rgb(246, 246, 246);
  height: 275.66px;
}

.search-modal .container-search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.search-modal h1 {
  font-size: 50px;
  font-weight: 900;
}

.search-modal .lable-search {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.search-modal .input-search {
  width: 100%;
  height: 50px;
  border-radius: 30px;
  margin-bottom: 2rem;
}

.search-modal .but-search {
  height: 60px;
  font-size: 25px;
  border-radius: 30px;
}

.search-modal .but-search1 {
  background-color: rgba(19, 46, 59, 0.4156862745);
  color: #ffffff;
  border-radius: 50px;
  border: none;
  padding: 1rem 1rem;
  min-width: 150px;
}

.search-modal.modal {
  --bs-modal-width: 100%;
  width: 100%;
  background-color: rgba(30, 82, 106, 0.7764705882);
  background-image: linear-gradient(45deg, rgba(94, 26, 212, 0.2) 0%, rgba(0, 0, 0, 0.4117647059) 100%);
  background-size: 300% 300%;
}

.search-modal .modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.search-modal .modal-content {
  background-color: transparent;
  width: 100%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.search-modal .btn-close {
  position: absolute;
  right: 4rem;
  top: 4rem;
  background-color: #ffffff;
}

.image-members {
  border-radius: 19px;
  padding: 0.5rem;
  width: 186px;
  border-radius: 10px;
  opacity: 0px;
}

.jop-name {
  font-size: 12px;
}

.Partner-car {
  border-radius: 15px;
  height: 82px;
  width: 248px;
  border: 1px solid rgb(230, 230, 230);
  box-shadow: 5px 5px 5px rgb(243, 243, 243);
}

.img-partner {
  width: 100%;
  height: 24vh;
}

.h1-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  font-size: 55px;
  font-weight: 700;
  line-height: 62px;
  text-align: center;
}

.pragrav-1 {
  font-size: 17px;
  font-weight: 300;
  line-height: 24px;
  text-align: justify;
}

.but-sidbar {
  border: none;
  background-color: #F6F6F6;
  font-weight: 300;
  height: 30px;
  text-align: center;
}

.but-sidbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 50%;
  height: 100%;
  /* background-color: #333; */
  /* transition: left 0.4s ease; */
  z-index: -1;
}

.but-sidbar:hover::before {
  left: 0%;
}

.but-sidbar:hover {
  transition: 0.4s ease;
  background-color: rgb(30, 82, 106);
  color: white;
  width: -moz-available;
  width: -webkit-fill-available;
  height: 100%;
  border-radius: 5px;
}

.but-sidbar-gcc {
  height: 40px;
  text-align: start;
}

.icons-header {
  color: #00344A;
}

.icons-header.active {
  color: #ffffff;
}

.but-sidbar.active {
  background-color: rgb(30, 82, 106);
  color: white;
  width: -moz-available;
  width: -webkit-fill-available;
  height: 100%;
  border-radius: 5px;
}

.p-members {
  padding: 1rem;
  font-weight: 300;
}

.div-image-new-detalls {
  width: 100%;
  height: auto;
  border-radius: 34px;
  opacity: 0px;
  background-color: rgb(246, 246, 246);
}

.content {
  width: 90%;
  height: auto;
}

.image1-new-detalls {
  width: 100%;
  height: 511px;
  top: 435px;
  left: 377px;
  gap: 0px;
  border-radius: 23px;
  opacity: 0px;
}

.title-pargrav-news {
  color: #00344A;
}

.title-pargrav-new-detalls {
  color: #00344A;
  font-weight: 700;
  justify-self: center;
}

.pragrav-new-detalls {
  font-size: 17px;
  font-weight: 300;
  line-height: 24px;
  text-align: justify;
}

.colmn-new-detalls {
  width: 100%;
  height: 302px;
  border-radius: 16px;
  border: 1px 0px 0px 0px;
  opacity: 0px;
  border: 1px solid rgb(217, 217, 217);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.image-card {
  width: 100%;
  height: 154px;
}

.date-card {
  color: gray;
  font-weight: 100;
  margin-top: -1rem;
}

.img-sections {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.bg-img-sections {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7294117647), rgba(2, 67, 87, 0.705));
  width: 100%;
  height: 100%;
}

.shado-div {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.66));
  width: 768px;
  height: 100px;
  margin-left: -2rem;
  margin-bottom: -8.5rem;
  border-radius: 16px;
  color: rgba(0, 0, 0, 0);
}

.shado-div2 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.66));
  width: 358px;
  height: 100px;
  margin-left: -1rem;
  border-radius: 16px;
  margin-top: -6rem;
  color: rgba(0, 0, 0, 0);
}

.h1-img-sections {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  font-size: 60px;
}

.h3-secions1 {
  width: 100%;
  margin-top: 1rem;
}

.p-card-left {
  font-weight: 500;
}

.title-pargrav {
  font-size: 50px;
  text-align: center;
  margin-top: 3rem;
  font-weight: 500;
}

.pragrav-2 {
  font-size: 171px;
  font-weight: 300;
  line-height: 24px;
  text-align: justify;
}

.colmn-2 {
  width: 100%;
  height: 50%;
  border-radius: 16px;
  border: 1px 0px 0px 0px;
  opacity: 0px;
  border: 1px solid rgb(217, 217, 217);
}

.image-card {
  width: 100%;
}

.date-card {
  color: gray;
  font-weight: 100;
}

.bg-Organization {
  background-color: white;
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgb(217, 217, 217);
  box-shadow: 1px 1px 10px rgb(209, 209, 209);
}

.imag-chart {
  width: 100%;
  height: 100%;
}

.bg-baneer1 {
  background: linear-gradient(84.59deg, rgba(0, 0, 0, 0.84) 2.32%, rgba(51, 107, 133, 0.84) 99.01%);
  width: 100%;
  height: 100%;
}

.img-sections {
  width: 100%;
  height: 279.25px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.title-pargrav {
  color: red;
}

.div-image {
  width: 100%;
  height: 471px;
}

.image1 {
  width: 100%;
  height: 471px;
  border-radius: 30px;
}

.div-image2 {
  width: 100%;
  height: 471px;
}

.image2 {
  width: 100%;
  height: 47%;
  border-radius: 20px;
}

.title-box {
  font-size: 20px;
}

.date-box {
  font-weight: 300;
  color: gray;
  font-size: 15px;
}

.imag-div-2 {
  width: 100%;
  height: 354px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.posion {
  font-weight: 500;
}

.my-link {
  color: black;
  text-decoration: none;
}

.div-image3 {
  width: 100%;
  height: 360px;
  border: 1px solid rgb(217, 217, 217);
  border-radius: 15px;
}

.p-image2 {
  font-size: 23px;
}

.div-all {
  height: 360px;
  border: 1px solid rgb(217, 217, 217);
  border-radius: 15px;
}

.div-image-4 {
  width: 100%;
  height: 463px;
  border: 1px solid rgb(217, 217, 217);
  border-radius: 15px;
}

.articles .card {
  border: none;
  background-color: rgba(255, 255, 255, 0);
}

.text-article {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title-article {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.img-4 {
  height: 443px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-5 {
  width: 357px;
  height: 443px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.div-text {
  margin-top: -17rem;
}

.text-image1 {
  font-weight: 200;
}

.p-box {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 300px;
  text-wrap: wrap;
}

.div-fill {
  border-radius: 15px;
  width: 300px;
  height: 72px;
}

.dropdown-menu {
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.bg-grey {
  background-color: rgb(246, 246, 246);
}

.nav-cearch {
  width: auto;
  height: 114px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-search {
  width: 789px;
  height: 59px;
  border-radius: 13px;
  border: 1px solid #e6e6e6;
}

.pagination {
  border: none;
}

.search-button {
  width: 200px;
  height: 60px;
}

input::-moz-placeholder {
  color: rgb(153, 153, 153);
  opacity: 0.5;
  padding: 2rem;
  font-size: 19px;
}

input::placeholder {
  color: rgb(153, 153, 153);
  opacity: 0.5;
  padding: 2rem;
  font-size: 19px;
}

.card-jonUs {
  border: 1px solid rgb(209, 209, 209);
  border-radius: 16px;
  width: 100%;
  height: 245px;
  box-shadow: 10px 10px 30px rgba(177, 177, 177, 0.359);
  display: grid;
  align-content: space-between;
}

.title-job1 {
  font-size: 20px;
}

.descrbion-job {
  font-size: 16px;
}

.text-more {
  font-size: 19px;
  color: #00344A;
  font-weight: 700;
}

.row-icons {
  margin-top: -1.5rem;
}

.my-lenk {
  color: #00344A;
}

.title-job {
  font-size: 40px;
  font-weight: 700;
}

.Jop-details {
  font-weight: 400;
  font-size: 19px;
  width: 859px;
}

.Responsibilities {
  font-weight: 700;
  font-size: 20px;
  color: #00344A;
}

.ul-details-event {
  list-style-type: square;
}

.map {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: url("../images/map/bg.png") no-repeat bottom center;
  background-size: cover;
}
.map h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2CACE2;
  margin-bottom: 2rem;
  margin-top: 0;
}
.map p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #434446;
}
.map a.dark-button {
  margin-top: 4rem;
}
.map #chartdiv {
  width: 100%;
  height: 100%;
}
.map .am5exporting-icon {
  display: none;
}

.gulfCity:hover {
  fill: #539fc2 !important;
  /* Darker shade of the original color */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Optional: Add active state for click feedback */
.gulfCity:active {
  fill: #539fc2 !important;
}

.amcharts-map-image-container,
.marker {
  pointer-events: none;
}

.countryModal .modal-body {
  padding: 3rem;
}

.countryModal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 1;
  border: 2px solid #E04F5F;
  border-radius: 50%;
  padding: 0.5rem;
  z-index: 10;
}

.countryModal .country-flag {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 2rem;
  border-radius: 1rem;
  box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.0901960784);
}

.countryModal .country-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}

.countryModal .country-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.countryModal .country-details-list h5 {
  font-size: 1rem;
  color: #4d4d4d;
  margin: 0;
}

.countryModal .country-details-list h4 {
  font-size: 1rem;
  color: #000;
  font-weight: bold;
  margin: 0;
}

.gulfCity:hover {
  fill: #539fc2 !important;
  /* Darker shade of the original color */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Optional: Add active state for click feedback */
.gulfCity:active {
  fill: #539fc2 !important;
}

.amcharts-map-image-container,
.marker {
  pointer-events: none;
}

.countryModal .modal-body {
  padding: 3rem;
}
.countryModal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 1;
  border: 2px solid #E04F5F;
  border-radius: 50%;
  padding: 0.5rem;
  z-index: 10;
}
.countryModal .country-flag {
  height: 150px;
  width: 220px;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 1rem;
  box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.0901960784);
}
.countryModal .country-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}
.countryModal .country-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.countryModal .country-details-list h5 {
  font-size: 1rem;
  color: #4d4d4d;
  margin: 0;
}
.countryModal .country-details-list h4 {
  font-size: 1rem;
  color: #000;
  font-weight: bold;
  margin: 0;
}

.Apply-button {
  width: 245px;
  height: 58px;
}

.supplier-wrapper {
  padding: 4rem 0;
}
.supplier-wrapper h4 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}
.supplier-wrapper p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 4rem;
  color: #434446;
  width: 80%;
}
.supplier-wrapper .step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}
.supplier-wrapper .step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #2CACE2;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer;
  /* Added cursor pointer */
}
.supplier-wrapper .step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #2CACE2;
  z-index: -1;
}
.supplier-wrapper #multi-step-form {
  overflow-x: hidden;
}
.supplier-wrapper .fields-box {
  background: #F6F6F6;
  padding: 2rem;
  border-radius: 1rem;
}
.supplier-wrapper .fields-box h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}
.supplier-wrapper .fields-box label {
  font-size: 1rem;
  font-weight: 600;
  color: #434446;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}
.supplier-wrapper .fields-box input[type=text],
.supplier-wrapper .fields-box input[type=email],
.supplier-wrapper .fields-box input[type=number],
.supplier-wrapper .fields-box select {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #E6E6E6;
  padding: 1rem 0.3rem;
  margin-bottom: 1rem;
  text-indent: 0.5rem;
  color: #C9C9C9;
}
.supplier-wrapper .fields-box select {
  padding: 0.75rem 0.3rem;
}
.supplier-wrapper .step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}
.supplier-wrapper .button-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
  margin-top: 2rem;
}
.supplier-wrapper .next-button {
  width: 250px;
}
.supplier-wrapper .back-button {
  background: transparent;
  border: none;
  color: #ABABAB;
  transition: all 0.3s ease-in-out;
}
.supplier-wrapper .back-button:hover {
  color: #000;
}
.supplier-wrapper .progress-bar {
  background: #2CACE2;
}

.div-img-eventDetails {
  width: 1054px;
  height: 679px;
  border-radius: 16px;
}

.img-event-detalis {
  width: 1015px;
  height: 640px;
  border-radius: 16px;
}

.title-event {
  font-size: 30px;
}

.text-event {
  font-size: 19px;
  font-weight: 400;
  width: 1015px;
  text-align: justify;
}

.Requirements {
  font-size: 20px;
  font-weight: 700;
  color: #00344A;
}

.ul-details {
  list-style-type: square;
  margin-left: -0.5rem;
}

.h1-contactUs {
  height: 50px;
}

.h2-contactUs {
  height: 30px;
}

.p-contact-head {
  font-size: 19px;
  font-weight: 400;
  color: rgb(67, 68, 70);
}

.box-contact {
  width: 287px;
  height: 134px;
  border: 1px solid rgb(217, 217, 217);
  border-radius: 16px;
  margin-top: 6rem;
  box-shadow: 2px 2px 10px rgb(217, 217, 217);
}

.icons-contact {
  height: 10px;
  width: 10px;
  background-color: rgb(245, 245, 245);
  border-radius: 50%;
}

.Call-us {
  font-size: 19px;
  margin-top: 2rem;
  margin-bottom: 0;
}

.email-us {
  margin-top: 1rem;
}

.email-email {
  margin-top: -1rem;
}

.dd {
  margin-top: -1rem;
}

.Location {
  margin-top: -1rem;
  font-size: 16px;
}

.becomeSpliyer {
  font-size: 19px;
  margin-bottom: -1rem;
}

.div-cercol {
  margin-top: 1rem;
  border-radius: 50px;
  width: 50px;
  height: 50px;
}

.icons-contact-us {
  font-size: 20px;
  color: green;
}

.number {
  margin-top: -0.5rem;
}

.Become-but {
  width: 143px;
  height: 38px;
  font-size: 16px;
}

.bg-map {
  width: 1193px;
  height: 560px;
  border: 1px solid rgb(217, 217, 217);
  border-radius: 16px;
  box-shadow: 2px 2px 10px rgb(217, 217, 217);
}

.img-map {
  width: 1176px;
  height: 540px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.div-img-contactUs {
  width: 596px;
  height: 631px;
  background-color: rgb(246, 246, 246);
  border-radius: 16px;
}

.img-contactUs {
  border-radius: 16px;
  width: 570px;
  height: 608.7px;
}

.form-control {
  border-radius: 15px;
}

.input-search {
  width: 470px;
}

.modal-body-serach {
  border-radius: 20px;
}

.name-input {
  font-size: 19px;
  margin-bottom: -5px;
  margin-left: 0.5rem;
}

.form-control-massage {
  border-radius: 15px;
  height: 350px;
  width: 100%;
  border: 1px solid rgb(209, 209, 209);
}

.contact-Us-button {
  width: 256px;
  height: 58px;
}

.search-show-button {
  font-size: 12px;
  width: 170px;
  height: 20px;
}

.pragrav-Terms {
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
  font-size: 19px;
}

.but-news {
  width: 150px;
}

.accordion-button {
  width: 901px;
  height: 72px;
  font-size: 18px;
}

.accordion-button1 {
  width: auto;
  height: auto;
}

.photo-biq {
  width: 375px;
  height: 457px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.photo-smole {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mar-bm {
  margin-top: -6rem;
}

.mar-row {
  margin-top: 2rem;
}

.job-section .container {
  margin-top: 5rem;
  margin-bottom: 8rem;
}

.bg-div-job {
  border-radius: 15px;
  background-color: rgb(246, 246, 246);
  height: 436px;
  width: 85%;
  margin-inline-end: -6rem;
}

.col-job {
  margin-top: -5rem;
  margin-inline-start: -9rem;
  width: auto;
}

.col-job-search {
  padding-inline-end: 2rem;
  margin-top: -1rem;
}

.border-red {
  margin-inline-start: 20rem;
  font-size: 41px;
  font-weight: 700;
}

.p-search {
  font-size: 19px;
  text-align: justify;
  margin-top: 3rem;
}

.aboutUs-bar {
  height: 60px;
  border-radius: 16px;
}

.input-div-job {
  height: 19rem;
}

.bg-whait1-job {
  padding-inline: 1rem;
  width: 70%;
  height: auto;
  background-color: white;
  border-radius: 15px;
  border: 1px solid rgb(230, 230, 230);
  box-shadow: 5px 5px 30px rgb(227, 227, 227);
}

.paragrav-1-job {
  margin-left: -14rem;
  margin-left: 3rem;
  font-weight: 300;
  font-size: 19px;
}

.input-div1-job {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  background-color: white;
  border-radius: 15px;
  border: 1px solid rgb(230, 230, 230);
  box-shadow: 10px 10px 10px rgb(227, 227, 227);
}

.img-job {
  width: 22rem;
  height: 20rem;
  background-size: cover;
  border-radius: 16px;
}

.input-search-job {
  width: 100%;
  height: 59px;
  border-radius: 13px;
  border: 1px solid #e6e6e6;
  margin-top: 3rem;
  text-align: center;
}

.container-all {
  margin-bottom: 20rem;
}

.search-button-job {
  height: 59px;
  margin-top: 3rem;
}

.job-section .dark-button {
  padding: 1rem 1rem;
}

.lable-aplly {
  font-size: 19px;
  font-weight: 600;
  width: 100%;
}

.selct-apply {
  margin-top: 1rem;
  width: 569px;
  height: 59px;
}

.emali-apply {
  width: 569px;
}

.events {
  padding: 4rem 0;
}
.events .events-wrapper {
  position: relative;
  padding-bottom: 3rem;
  border-radius: 1rem;
}
.events .events-wrapper .events-bg {
  width: 80%;
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 3rem;
  z-index: -1;
}
.events .events-wrapper .events-box {
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
  box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.0901960784);
  margin-inline-end: 1.5rem;
  margin-inline-start: 1.5rem;
  margin-top: 7rem;
}
.events .events-wrapper .events-box img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.events .events-wrapper .events-box h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.events .events-wrapper .events-box .date,
.events .events-wrapper .events-box .location {
  font-size: 1rem;
  color: #9D9D9D;
  margin-bottom: 0.5rem;
}
.events .events-wrapper .events-box .more {
  margin-top: 1rem;
  color: #00344A;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.5rem;
}
.events .events-wrapper .events-box .more:hover {
  color: #001017;
}

.image-members-pop {
  width: 350px;
  height: 100%;
  justify-content: center;
}

.viduo {
  width: 375px;
  height: 270px;
}

.modale-bg {
  padding: 60px 0;
  padding-bottom: 10px;
  background-color: rgba(30, 82, 106, 0.7764705882);
  background-image: linear-gradient(45deg, rgba(94, 26, 212, 0.2) 0%, rgba(0, 0, 0, 0.4117647059) 100%);
  background-size: 300% 300%;
  animation: color 10s ease-in-out infinite;
  color: #000000;
}

@keyframes color {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.container-search {
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.h1-2 {
  font-size: 50px;
  font-weight: 900;
}

.lable-search {
  font-size: 30px;
  font-weight: 700;
  color: white;
}

.input-search {
  width: 55vh;
  height: 6vh;
  border-radius: 30px;
}

.but-search {
  width: 250px;
  height: 60px;
  font-size: 25px;
  border-radius: 30px;
}

.but-search1 {
  background-color: rgba(19, 46, 59, 0.4156862745);
  color: #ffffff;
  border-radius: 50px;
  border: none;
}

.btn-close-search {
  color: white;
  background: white;
}

.input-Apply-name {
  width: 390px;
}

.map-contact {
  width: 97%;
  height: 97%;
}

.ul-sitmap {
  list-style-type: none;
  color: #000;
}

.li-sitmap {
  list-style-type: none;
  color: #000;
  border: 1px solid rgb(225, 225, 225);
  padding: 0.75rem;
  box-shadow: 12px 12px 2px 1px rgba(219, 219, 219, 0.2);
}

.li-sitmap-ol {
  border: 1px solid rgb(225, 225, 225);
  padding: 0.75rem;
  box-shadow: 12px 12px 2px 1px rgba(205, 205, 205, 0.2);
}

.but-login {
  background-color: #fff;
  border-radius: 16px;
  color: #00344A;
  width: 130px;
}

.imag-pop-about {
  width: 100%;
}

.faq .accordion-item {
  display: grid;
  justify-items: center;
}

.image-about-project {
  width: 30rem;
  height: 17rem;
  border-radius: 16px;
  box-shadow: 5px 5px 10px rgb(155, 155, 155);
}

.span-totle {
  color: #00344A;
}

.image-about-project2 {
  width: 80%;
  height: 90%;
  border-radius: 16px;
}

@media only screen and (max-width: 649px) {
  .imag-pop-about {
    width: 302px;
    max-height: 300px;
  }
  .logo-partenar {
    width: 100%;
  }
  .h1-img-sections {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    font-size: 28px;
  }
  .job-section .container {
    margin-top: 7rem;
    margin-bottom: 20rem;
    padding: 0rem !important;
  }
  .bg-div-job {
    border-radius: 15px;
    background-color: rgb(246, 246, 246);
    height: 436px;
    width: 85%;
    margin-inline-end: 0rem;
  }
  .col-job {
    margin-top: -3rem;
    margin-inline-start: -1rem;
    width: 100%;
  }
  .col-job-mobile {
    width: auto;
    padding-left: 0.7rem !important;
  }
  .title-phono {
    font-size: 20px !important;
  }
  .col-job-search {
    padding-inline-end: 2rem;
    margin-top: 0rem;
  }
  .bg-div-job .row {
    justify-content: center;
  }
  .bg-whait1-job {
    padding-inline: 2rem;
    width: 100%;
    height: auto;
    background-color: white;
    border-radius: 15px;
    border: 1px solid rgb(230, 230, 230);
    box-shadow: 5px 5px 30px rgb(227, 227, 227);
  }
  .input-div-job {
    height: auto;
  }
  .input-div-job .col-9 {
    width: 100%;
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .input-div-job .col-3 {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-inline: 1rem;
  }
  .search-button-job {
    height: 59px;
    margin-top: 1rem;
  }
  .job-section .dark-button {
    padding: 0.5rem 1rem;
    width: 45%;
  }
  .p-search {
    font-size: 19px;
    text-align: justify;
    margin-top: 1rem;
  }
  .lable-aplly {
    font-size: 19px;
    font-weight: 600;
    width: 162px;
  }
  .selct-apply {
    margin-top: 1rem;
    width: 330px;
    height: 59px;
  }
  .more-button-baner {
    width: 100px;
    height: 40px;
  }
  .image-members {
    border-radius: 19px;
    height: 300px;
    padding: 0.5rem;
    width: 300px;
    border-radius: 10px;
    opacity: 0px;
  }
  .bg-card {
    gap: 0px;
    border-radius: 16px;
    opacity: 0px;
    background: rgb(246, 246, 246);
  }
  .side-bar {
    background-color: #F6F6F6;
    font-size: 16px;
    border-radius: 15px;
    font-weight: 600;
  }
  .but-sidbar {
    border: none;
    font-weight: 300;
    width: -moz-available;
    width: -webkit-fill-available;
    height: 30px;
    text-align: start;
    color: #000;
  }
  .but-sidbar:focus {
    border: none;
    color: white;
    width: -moz-available;
    width: -webkit-fill-available;
    height: 30px;
    text-align: start;
    border-radius: 5px;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .but-sidbar:hover {
    transition: 0.4s ease;
    background-color: rgb(30, 82, 106);
    color: white;
    width: -moz-available;
    width: -webkit-fill-available;
    height: 30px;
    text-align: start;
    border-radius: 5px;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .about-section .w-25 {
    width: auto !important;
  }
  .column-xs {
    padding: 0px;
    text-align: start;
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .viduo {
    width: 100%;
    height: 270px;
  }
  .img-photo-sm {
    width: 100%;
  }
  .image-members-pop {
    width: 300px;
    height: 200px;
  }
  .mian-content {
    padding-top: 5rem;
    min-height: 48vh;
  }
  .img-job {
    width: 14rem;
    height: 12rem;
  }
  .paragrav-1-job {
    font-weight: 300;
    margin-left: -2rem;
    font-size: 19px;
  }
  .border-red {
    font-size: 30px;
    font-weight: 700;
    text-align: start;
    width: 100px;
  }
  .nav-cearch {
    width: 100px;
    height: 114px;
    display: flex;
    justify-content: start;
    align-items: start;
  }
  .navbar-toggler {
    background: #fff;
    padding: 0.3rem;
    margin-inline-start: auto;
  }
  .navbar-toggler-icon {
    width: 1em;
    height: 1em;
  }
  .slider {
    padding-top: 3rem;
  }
  header .navbar-expand-lg .navbar-nav {
    margin-top: 2rem;
  }
  header .logo-box {
    position: absolute;
    top: 0;
    left: unset;
    background: #fff;
    z-index: 4;
    box-shadow: 0px 4px 17.8px 0px rgba(0, 0, 0, 0.1607843137);
    padding: 0.3rem;
    padding-inline-end: 3rem;
    -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    width: 85%;
  }
  header .logo-box .logo {
    height: 42px;
  }
  header .navbar-box {
    position: relative;
    top: unset;
    right: unset;
    z-index: 3;
    background: #1E526A;
    width: 100%;
    padding-inline-end: unset;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }
  header .top-header {
    display: none;
  }
  .dark-button {
    font-size: 1rem;
    padding: 0.5rem 3rem;
  }
  .partenar-button {
    font-size: 10px;
    padding: 0;
    height: 30px;
  }
  .slider .caption {
    left: 4rem;
    right: 4rem;
    z-index: 2;
    padding-inline-start: 2.5rem;
  }
  .slider .caption p {
    font-size: 1rem;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .slider .caption h1 {
    font-size: 1.6rem;
    width: 100%;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .slider .carousel-control-next-icon,
  .slider .carousel-control-prev-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 7px;
  }
  .news h1 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .statistics h1 {
    font-size: 2rem;
    text-align: center;
  }
  .statistics .statistics-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    justify-items: center;
    text-align: center;
  }
  .news .news-slider-box .carousel-item img {
    height: 300px;
  }
  .news .news-slider-box .carousel-item .carousel-caption {
    width: 60%;
  }
  .news .new-box img {
    height: 8rem;
  }
  .news .new-box .news-content h2 {
    font-size: 1rem;
  }
  .news .news-slider-box {
    margin-bottom: 1.5rem;
  }
  .statistics {
    padding: 4rem 0;
  }
  .partners h1 {
    font-size: 1.5rem;
  }
  .partners h1:after,
  .partners h1:before {
    top: 0.8rem;
  }
  .partners p {
    width: 100%;
    margin-bottom: 2rem;
  }
  .statistics .statistics-wrapper .statistics-item .icon-box {
    width: 5rem;
    height: 5rem;
  }
  .statistics .statistics-wrapper .statistics-item {
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .news .new-box .news-content {
    padding: 0.3rem;
  }
  footer .top-footer {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  footer .top-footer .logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 0 1rem 1rem 0;
    padding: 1rem;
    width: 80%;
  }
  footer .top-footer .links-box h2 {
    font-size: 0.9rem;
  }
  footer .top-footer .links-box .links-list li a {
    font-size: 0.8rem;
  }
  footer .top-footer .links-box .links-list {
    margin-bottom: 2rem;
  }
  footer .bottom-footer {
    padding: 0.7rem;
    text-align: center;
  }
  footer .bottom-footer h5 {
    font-size: 0.8rem;
    color: #9B9B9B;
    margin: 0;
  }
  footer .social-box {
    bottom: 38px;
    height: 60px;
    width: 92%;
    font-size: 9px;
  }
  footer .social-box img {
    width: 52px;
  }
  footer .social-box h4 {
    font-size: 1.2rem;
  }
  footer .social-box .social-links a {
    font-size: 1.2rem;
  }
  .articles .container {
    width: 95%;
  }
  .articles .px-4 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .articles .col-md-4 {
    width: 100%;
  }
  .articles .col-md-8 {
    width: 100%;
  }
  .articles .mt-5 {
    margin-top: 1rem !important;
  }
  .div-image {
    width: 100%;
    height: 100%;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 19px;
  }
  .image1 {
    width: 100%;
    height: auto;
    border-radius: 30px;
  }
  .div-image2 {
    width: 320px;
    height: 100%;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 16px;
  }
  .image2 {
    width: 100%;
    height: 206px;
    border-radius: 20px;
  }
  .div-image3 {
    width: 100%;
    height: auto;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 15px;
    margin-left: 0.5rem;
  }
  .imag-div-2 {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  .div-all {
    width: 100%;
    height: auto;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 15px;
    margin-top: 1rem;
    margin-left: 0.5rem;
  }
  .p-box {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 250px;
  }
  .title-box {
    font-size: 20px;
    margin-top: -1rem;
  }
  .div-image-4 {
    width: 100%;
    height: auto;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 15px;
    margin-bottom: 1rem;
  }
  .img-4 {
    width: 100%;
    height: auto;
    border-radius: 15px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .img-5 {
    width: 312px;
    height: 455px;
    border-radius: 15px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .div-image2 {
    width: 100%;
    height: auto;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 16px;
  }
  .image2 {
    width: 100%;
    height: 206px;
    border-radius: 20px;
  }
  .div-image-new-detalls {
    width: 100%;
    height: 244px;
    border-radius: 34px;
    opacity: 0px;
    background-color: rgb(246, 246, 246);
  }
  .image1-new-detalls {
    width: 100%;
    height: 100%;
    top: 435px;
    left: 377px;
    gap: 0px;
    border-radius: 23px;
    opacity: 0px;
  }
  .content {
    width: 100%;
    height: 100%;
  }
  .title-pargrav-new-detalls {
    color: #00344A;
    font-weight: 500;
    font-size: 33px;
    text-align: center;
    margin-bottom: 1rem;
  }
  .colmn-new-detalls {
    width: 330px;
    min-height: 302px;
    max-height: 400px;
    border-radius: 16px;
    border: 1px 0px 0px 0px;
    opacity: 0px;
    border: 1px solid rgb(217, 217, 217);
    margin-bottom: 1rem;
  }
  .div-img-eventDetails {
    width: 700px;
    height: 400px;
    border-radius: 16px;
  }
  .img-event-detalis {
    width: 90%;
    height: 90%;
    border-radius: 16px;
  }
  .title-event {
    font-size: 20px;
    text-align: center;
    margin-left: -7rem;
    width: 400px;
  }
  .svg-icons {
    margin-left: -5rem;
    margin-top: 1rem;
  }
  .span-icons {
    width: 400px;
    text-align: justify;
    margin-left: -5rem;
  }
  .text-event {
    font-size: 16px;
    font-weight: 400;
    width: 300px;
    text-align: justify;
    margin-left: -4rem;
  }
  .Requirements {
    font-size: 20px;
    font-weight: 700;
    width: 350px;
    text-align: justify;
    color: #00344A;
  }
  .ul-details-event {
    margin-left: -5rem;
    width: 350px;
  }
  .nav-cearch {
    text-align: start;
  }
  .input-search {
    width: 350px;
    height: 50px;
    border-radius: 13px;
    border: 1px solid #e6e6e6;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: -2rem;
  }
  .search-button {
    width: 100px;
    height: 40px;
    text-align: center;
    justify-content: center;
    margin-left: 8rem;
  }
  .nav-cearch {
    flex-wrap: wrap;
  }
  .icons-serch {
    width: 1px;
  }
  .card-jonUs {
    border: 1px solid rgb(209, 209, 209);
    border-radius: 16px;
    width: 300px;
    height: 245px;
    box-shadow: 10px 10px 30px rgba(177, 177, 177, 0.359);
  }
  .name-input {
    font-size: 19px;
    margin-bottom: -5px;
    margin-left: 0.5rem;
  }
  .form-control-massage {
    border-radius: 15px;
    width: 290px;
    height: 285px;
    border: 1px solid rgb(209, 209, 209);
  }
  .contact-Us-button {
    width: 256px;
    height: 58px;
  }
  .img-contactUs {
    border-radius: 16px;
    width: 100%;
    height: 90%;
  }
  .div-img-contactUs {
    display: none;
  }
  .photo-biq {
    width: -moz-available;
    height: 457px;
    border-radius: 16px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 3rem;
  }
  .supplier-wrapper .fields-box {
    padding: 1rem;
  }
  .photo-smole {
    height: 329px;
    border-radius: 16px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 3rem;
  }
  .mar-bm {
    margin-top: -3rem;
  }
  .mar-row {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
  .mar-phone {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
  .btn-close {
    background-color: #1A7FAA;
  }
  .img-phone {
    width: 350px;
    height: 350px;
  }
  .img-modal {
    height: 90vh;
  }
  .events .events-wrapper .events-box {
    margin-inline-end: 0;
    margin-inline-start: 0;
    margin-top: 2rem;
  }
  .events .events-wrapper .events-bg {
    width: 90%;
    height: 100%;
    top: -1rem;
    right: -1rem;
    display: none;
  }
  .bg-map {
    width: 330px;
    height: 560px;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 16px;
    box-shadow: 2px 2px 10px rgb(217, 217, 217);
    margin-left: -1rem;
    margin-top: 1rem;
  }
  .faq .accordion-item {
    width: 100%;
  }
  .faq .accordion-button {
    width: 100%;
  }
  .faq .accordion-header {
    width: 100%;
  }
}
@media only screen and (min-width: 650px) and (max-width: 767px) {
  .imag-pop-about {
    width: 372px;
  }
  .job-section .container {
    margin-top: 5rem;
    margin-bottom: 20rem;
    padding: 0rem !important;
  }
  .bg-div-job {
    border-radius: 15px;
    background-color: rgb(246, 246, 246);
    height: 436px;
    width: 85%;
    margin-inline-end: -3rem;
  }
  .col-job {
    margin-top: -3rem;
    margin-inline-start: -8rem;
    width: 100%;
  }
  .col-job-mobile {
    width: auto;
    padding-left: 0.7rem !important;
  }
  .title-phono {
    font-size: 20px !important;
  }
  .col-job-search {
    padding-inline-end: 2rem;
    margin-top: 0rem;
  }
  .bg-div-job .row {
    justify-content: center;
  }
  .bg-whait1-job {
    padding-inline: 2rem;
    width: 95%;
    height: auto;
    background-color: white;
    border-radius: 15px;
    border: 1px solid rgb(230, 230, 230);
    box-shadow: 5px 5px 30px rgb(227, 227, 227);
  }
  .input-div-job {
    height: auto;
  }
  .input-div-job .col-9 {
    width: 100%;
  }
  .input-div-job .col-3 {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .search-button-job {
    height: 59px;
    margin-top: 1rem;
  }
  .job-section .dark-button {
    padding: 0.5rem 3rem;
  }
  .partenar-button {
    font-size: 10px;
    padding: 0;
    height: 40px;
  }
  .p-search {
    font-size: 19px;
    text-align: justify;
    margin-top: 1rem;
  }
  .lable-aplly {
    font-size: 19px;
    font-weight: 600;
    width: 162px;
  }
  .selct-apply {
    margin-top: 1rem;
    width: 330px;
    height: 59px;
  }
  .more-button-baner {
    width: 100px;
    height: 40px;
  }
  .image-members {
    border-radius: 19px;
    height: 300px;
    padding: 0.5rem;
    width: 300px;
    border-radius: 10px;
    opacity: 0px;
  }
  .bg-card {
    gap: 0px;
    border-radius: 16px;
    opacity: 0px;
    background: rgb(246, 246, 246);
  }
  .side-bar {
    background-color: #F6F6F6;
    font-size: 16px;
    border-radius: 15px;
    font-weight: 600;
    text-align: start;
  }
  .but-sidbar {
    border: none;
    font-weight: 300;
    height: 30px;
    text-align: start;
    color: #000;
  }
  .but-sidbar:focus {
    background-color: rgb(30, 82, 106);
    color: white;
    width: -moz-available;
    width: -webkit-fill-available;
    height: 30px;
    text-align: start;
    border-radius: 5px;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .but-sidbar:hover {
    transition: 0.4s ease;
    background-color: rgb(30, 82, 106);
    color: white;
    width: -moz-available;
    width: -webkit-fill-available;
    height: 30px;
    text-align: start;
    border-radius: 5px;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .about-section .w-25 {
    width: auto !important;
  }
  .column-xs {
    padding: 0px;
    text-align: start;
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .viduo {
    width: 300px;
    height: 270px;
  }
  .modal-body {
    height: 50vh;
  }
  .img-photo-sm {
    width: 100%;
  }
  .image-members-pop {
    width: 300px;
    height: 200px;
  }
  .mian-content {
    padding-top: 5rem;
    min-height: 48vh;
  }
  .img-job {
    width: 16rem;
    height: 14rem;
  }
  .paragrav-1-job {
    font-weight: 300;
    margin-left: -2rem;
    font-size: 19px;
  }
  .img-partner {
    width: 100%;
    height: 25vh;
  }
  .border-red {
    font-size: 30px;
    font-weight: 700;
    text-align: start;
    width: 100px;
  }
  .nav-cearch {
    width: 100px;
    height: 114px;
    display: flex;
    justify-content: start;
    align-items: start;
  }
  .navbar-toggler {
    background: #fff;
    padding: 0.3rem;
    margin-inline-start: auto;
  }
  .navbar-toggler-icon {
    width: 1em;
    height: 1em;
  }
  .slider {
    padding-top: 3rem;
  }
  header .navbar-expand-lg .navbar-nav {
    margin-top: 2rem;
  }
  header .logo-box {
    position: absolute;
    top: 0;
    left: unset;
    background: #fff;
    z-index: 4;
    box-shadow: 0px 4px 17.8px 0px rgba(0, 0, 0, 0.1607843137);
    padding: 0.5rem;
    padding-inline-end: 3rem;
    -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    width: 85%;
  }
  header .logo-box .logo {
    height: 42px;
  }
  header .navbar-box {
    position: relative;
    top: unset;
    right: unset;
    z-index: 3;
    background: #1E526A;
    width: 100%;
    padding-inline-end: unset;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }
  header .top-header {
    display: none;
  }
  .dark-button {
    font-size: 1rem;
    padding: 0.5rem 3rem;
  }
  .slider .caption {
    left: 4rem;
    right: 4rem;
    z-index: 2;
    padding-inline-start: 2.5rem;
  }
  .slider .caption p {
    font-size: 1rem;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .slider .caption h1 {
    font-size: 1.6rem;
    width: 100%;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .slider .carousel-control-next-icon,
  .slider .carousel-control-prev-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 7px;
  }
  .news h1 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .statistics h1 {
    font-size: 2rem;
    text-align: center;
  }
  .statistics .statistics-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    justify-items: center;
  }
  .news .news-slider-box .carousel-item img {
    height: 300px;
  }
  .news .news-slider-box .carousel-item .carousel-caption {
    width: 60%;
  }
  .news .new-box img {
    height: 8rem;
  }
  .news .new-box .news-content h2 {
    font-size: 1rem;
  }
  .news .news-slider-box {
    margin-bottom: 1.5rem;
  }
  .statistics {
    padding: 4rem 0;
  }
  .partners h1 {
    font-size: 1.5rem;
  }
  .partners h1:after,
  .partners h1:before {
    top: 0.8rem;
  }
  .partners p {
    width: 100%;
    margin-bottom: 2rem;
  }
  .statistics .statistics-wrapper .statistics-item .icon-box {
    width: 5rem;
    height: 5rem;
  }
  .news .new-box .news-content {
    padding: 0.3rem;
  }
  footer .top-footer {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  footer .top-footer .logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 0 1rem 1rem 0;
    padding: 1rem;
    width: 80%;
  }
  footer .top-footer .links-box h2 {
    font-size: 1.2rem;
  }
  footer .top-footer .links-box .links-list li a {
    font-size: 0.8rem;
  }
  footer .top-footer .links-box .links-list {
    margin-bottom: 2rem;
  }
  footer .bottom-footer {
    padding: 0.7rem;
    text-align: center;
  }
  footer .bottom-footer h5 {
    font-size: 0.9rem;
    color: #9B9B9B;
    margin: 0;
  }
  footer .social-box {
    bottom: 39.66px;
    height: 60px;
    width: 92%;
  }
  footer .social-box h4 {
    font-size: 1.2rem;
  }
  footer .social-box .social-links a {
    font-size: 1.2rem;
  }
  .div-image {
    width: 320px;
    height: 100%;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 19px;
  }
  .image1 {
    width: 320px;
    height: 471px;
    border-radius: 30px;
  }
  .text-image2 {
    width: 200px;
  }
  .div-image2 {
    width: 320px;
    height: 100%;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 16px;
  }
  .image2 {
    width: 100%;
    height: 206px;
    border-radius: 20px;
  }
  .div-image3 {
    width: 320px;
    height: 360px;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 15px;
    margin-left: 0.5rem;
  }
  .imag-div-2 {
    width: 320px;
    height: 354px;
    border-radius: 15px;
  }
  .div-all {
    width: 320px;
    height: 540px;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 15px;
    margin-top: 1rem;
    margin-left: 0.5rem;
  }
  .p-box {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 250px;
  }
  .title-box {
    font-size: 20px;
    margin-top: -1rem;
  }
  .div-image-4 {
    width: 330px;
    height: 471px;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 15px;
    margin-bottom: 1rem;
  }
  .img-4 {
    width: 312px;
    height: 455px;
    border-radius: 15px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .img-5 {
    width: 312px;
    height: 455px;
    border-radius: 15px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .div-image2 {
    width: 330px;
    height: 455px;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 16px;
  }
  .image2 {
    width: 330px;
    height: 206px;
    border-radius: 20px;
  }
  .div-image-new-detalls {
    width: 100%;
    height: 244px;
    border-radius: 34px;
    opacity: 0px;
    background-color: rgb(246, 246, 246);
  }
  .image1-new-detalls {
    width: 100%;
    height: 100%;
    top: 435px;
    left: 377px;
    gap: 0px;
    border-radius: 23px;
    opacity: 0px;
  }
  .content {
    width: 100%;
    height: 100%;
  }
  .title-pargrav-new-detalls {
    color: #00344A;
    font-weight: 500;
    font-size: 33px;
    text-align: center;
    margin-bottom: 1rem;
  }
  .container {
    width: 95%;
  }
  .colmn-new-detalls {
    border-radius: 16px;
    border: 1px 0px 0px 0px;
    opacity: 0px;
    border: 1px solid rgb(217, 217, 217);
  }
  .div-img-eventDetails {
    width: 700px;
    height: 400px;
    border-radius: 16px;
  }
  .img-event-detalis {
    width: 90%;
    height: 90%;
    border-radius: 16px;
  }
  .title-event {
    font-size: 20px;
    text-align: center;
    margin-left: -7rem;
    width: 400px;
  }
  .svg-icons {
    margin-left: -5rem;
    margin-top: 1rem;
  }
  .span-icons {
    width: 400px;
    text-align: justify;
    margin-left: -5rem;
  }
  .text-event {
    font-size: 16px;
    font-weight: 400;
    width: 300px;
    text-align: justify;
    margin-left: -4rem;
  }
  .Requirements {
    font-size: 20px;
    font-weight: 700;
    width: 350px;
    color: #00344A;
    text-align: justify;
  }
  .ul-details-event {
    margin-left: -5rem;
    width: 350px;
  }
  .nav-cearch {
    text-align: start;
  }
  .input-search {
    width: 350px;
    height: 50px;
    border-radius: 13px;
    border: 1px solid #e6e6e6;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: -2rem;
  }
  .search-button {
    width: 100px;
    height: 40px;
    text-align: center;
    justify-content: center;
    margin-left: 8rem;
  }
  .nav-cearch {
    flex-wrap: wrap;
  }
  .icons-serch {
    width: 1px;
  }
  .card-jonUs {
    border: 1px solid rgb(209, 209, 209);
    border-radius: 16px;
    width: 300px;
    height: 245px;
    box-shadow: 10px 10px 30px rgba(177, 177, 177, 0.359);
  }
  .name-input {
    font-size: 19px;
    margin-bottom: -5px;
    margin-left: 0.5rem;
  }
  .form-control-massage {
    border-radius: 15px;
    width: 290px;
    height: 285px;
    border: 1px solid rgb(209, 209, 209);
  }
  .contact-Us-button {
    width: 256px;
    height: 58px;
  }
  .form-control {
    border-radius: 15px;
    width: 330px;
    height: 59px;
  }
  .img-contactUs {
    border-radius: 16px;
    width: 100%;
    height: 90%;
  }
  .div-img-contactUs {
    display: none;
  }
  .photo-biq {
    width: 350px;
    height: 457px;
    border-radius: 16px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 3rem;
  }
  .supplier-wrapper .fields-box {
    padding: 1rem;
  }
  .photo-smole {
    width: 350px;
    height: 329px;
    border-radius: 16px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 3rem;
  }
  .mar-bm {
    margin-top: -3rem;
  }
  .mar-row {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
  .mar-phone {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
  .modal-body {
    width: 100px;
    height: 100px;
  }
  .btn-close {
    background-color: #1A7FAA;
  }
  .img-phone {
    width: 350px;
    height: 350px;
  }
  .img-modal {
    height: 90vh;
  }
  .events .events-wrapper .events-box {
    margin-inline-end: 0;
    margin-inline-start: 0;
    margin-top: 2rem;
  }
  .events .events-wrapper .events-bg {
    width: 90%;
    height: 100%;
    top: -1rem;
    right: -1rem;
    display: none;
  }
  .bg-map {
    width: 330px;
    height: 560px;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 16px;
    box-shadow: 2px 2px 10px rgb(217, 217, 217);
    margin-left: -1rem;
    margin-top: 1rem;
  }
  .faq .accordion-item {
    width: 100%;
  }
  .faq .accordion-button {
    width: 100%;
  }
  .faq .accordion-header {
    width: 100%;
  }
}
@media only screen and (min-width: 650px) and (max-width: 820px) {
  .lable-aplly {
    font-size: 19px;
    font-weight: 600;
    width: 162px;
  }
  .selct-apply {
    margin-top: 1rem;
    width: 330px;
    height: 59px;
  }
  .more-button-baner {
    width: 100px;
    height: 40px;
  }
  .image-members {
    border-radius: 19px;
    height: 300px;
    padding: 0.5rem;
    width: 300px;
    border-radius: 10px;
    opacity: 0px;
  }
  .bg-card {
    gap: 0px;
    border-radius: 16px;
    opacity: 0px;
    background: rgb(246, 246, 246);
  }
  .side-bar {
    background-color: #F6F6F6;
    font-size: 16px;
    border-radius: 15px;
    font-weight: 600;
    text-align: start;
  }
  .but-sidbar {
    border: none;
    font-weight: 300;
    height: 30px;
    text-align: start;
    width: -moz-available;
    width: -webkit-fill-available;
    color: black;
    border: none;
  }
  .img-partner {
    width: 100%;
    height: 25vh;
  }
  .but-sidbar:focus {
    background-color: rgb(30, 82, 106);
    color: white;
    width: -moz-available;
    width: -webkit-fill-available;
    height: 30px;
    text-align: start;
    border-radius: 5px;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .imag-pop-about {
    width: 302px;
  }
  .but-sidbar:hover {
    transition: 0.4s ease;
    background-color: rgb(30, 82, 106);
    color: white;
    width: -moz-available;
    width: -webkit-fill-available;
    height: 30px;
    text-align: start;
    border-radius: 5px;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .about-section .w-25 {
    width: auto !important;
  }
  .column-xs {
    padding: 0px;
    text-align: start;
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .viduo {
    width: 300px;
    height: 270px;
  }
  .modal-body {
    height: 50vh;
  }
  .img-photo-sm {
    width: 100%;
  }
  .image-members-pop {
    width: 300px;
    height: 200px;
  }
  .mian-content {
    padding-top: 5rem;
    min-height: 48vh;
  }
  .img-job {
    width: 14rem;
    height: 12rem;
  }
  .col-job {
    margin-top: -5rem;
    margin-inline-start: -4rem;
    width: auto;
  }
  .bg-div-job {
    border-radius: 15px;
    background-color: rgb(246, 246, 246);
    height: 22rem;
    width: 85%;
    margin-inline-end: 0rem;
  }
  .input-div-job .col-3 {
    padding-inline-start: 0rem;
  }
  .col-job-search {
    padding-inline-end: 2rem;
    margin-top: 1rem;
  }
  .title-phono {
    font-size: 20px !important;
  }
  .job-section .dark-button {
    padding: 0.5rem 1rem;
    width: 100%;
  }
  .bg-whait1-job {
    width: 75%;
  }
  .paragrav-1-job {
    font-weight: 300;
    margin-left: -2rem;
    font-size: 19px;
  }
  .border-red {
    font-size: 30px;
    font-weight: 700;
    text-align: start;
    width: 100px;
  }
  .nav-cearch {
    width: 100px;
    height: 114px;
    display: flex;
    justify-content: start;
    align-items: start;
  }
  .navbar-toggler {
    background: #fff;
    padding: 0.3rem;
    margin-inline-start: auto;
  }
  .navbar-toggler-icon {
    width: 1em;
    height: 1em;
  }
  .slider {
    padding-top: 3rem;
  }
  header .navbar-expand-lg .navbar-nav {
    margin-top: 2rem;
  }
  header .logo-box {
    position: absolute;
    top: 0;
    left: unset;
    background: #fff;
    z-index: 4;
    box-shadow: 0px 4px 17.8px 0px rgba(0, 0, 0, 0.1607843137);
    padding: 0.5rem;
    padding-inline-end: 3rem;
    -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    width: 85%;
  }
  header .logo-box .logo {
    height: 42px;
  }
  header .navbar-box {
    position: relative;
    top: unset;
    right: unset;
    z-index: 3;
    background: #1E526A;
    width: 100%;
    padding-inline-end: unset;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }
  header .top-header {
    display: none;
  }
  .dark-button {
    font-size: 1rem;
    padding: 0.5rem 3rem;
  }
  .slider .caption {
    left: 4rem;
    right: 4rem;
    z-index: 2;
    padding-inline-start: 2.5rem;
  }
  .slider .caption p {
    font-size: 1rem;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .slider .caption h1 {
    font-size: 1.6rem;
    width: 100%;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .slider .carousel-control-next-icon,
  .slider .carousel-control-prev-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 7px;
  }
  .news h1 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .statistics h1 {
    font-size: 2rem;
    text-align: center;
  }
  .statistics .statistics-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    justify-items: center;
  }
  .news .news-slider-box .carousel-item img {
    height: 300px;
  }
  .news .news-slider-box .carousel-item .carousel-caption {
    width: 60%;
  }
  .news .new-box a {
    display: flex;
    flex-shrink: 1;
  }
  .news .new-box img {
    height: 8rem;
  }
  .news .new-box .news-content h2 {
    font-size: 1rem;
  }
  .news .news-slider-box {
    margin-bottom: 1.5rem;
  }
  .statistics {
    padding: 4rem 0;
  }
  .partners h1 {
    font-size: 1.5rem;
  }
  .partners h1:after,
  .partners h1:before {
    top: 0.8rem;
  }
  .partners p {
    width: 100%;
    margin-bottom: 2rem;
  }
  .statistics .statistics-wrapper .statistics-item .icon-box {
    width: 5rem;
    height: 5rem;
  }
  .news .new-box .news-content {
    padding: 0.3rem;
  }
  footer .top-footer {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  footer .top-footer .logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 0 1rem 1rem 0;
    padding: 1rem;
    width: 80%;
  }
  footer .top-footer .links-box h2 {
    font-size: 1.2rem;
  }
  footer .top-footer .links-box .links-list li a {
    font-size: 0.8rem;
  }
  footer .top-footer .links-box .links-list {
    margin-bottom: 2rem;
  }
  footer .bottom-footer {
    padding: 0.7rem;
    text-align: center;
  }
  footer .bottom-footer h5 {
    font-size: 0.9rem;
    color: #9B9B9B;
    margin: 0;
  }
  footer .social-box {
    bottom: 39.66px;
    height: 60px;
    width: 92%;
  }
  footer .social-box h4 {
    font-size: 1.2rem;
  }
  footer .social-box .social-links a {
    font-size: 1.2rem;
  }
  .articles .px-4 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .articles .col-md-4 {
    width: 100%;
  }
  .articles .col-md-8 {
    width: 100%;
  }
  .articles .mt-5 {
    margin-top: 1rem !important;
  }
  .news-details .col-md-9 {
    width: 100%;
  }
  .news-details .col-md-3 {
    width: 100%;
  }
  .news-details .image-card {
    width: 100%;
    height: 15vh;
  }
  .div-image {
    width: 100%;
    height: 100%;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 19px;
  }
  .image1 {
    width: 100%;
    height: 471px;
    border-radius: 30px;
  }
  .text-image2 {
    width: 200px;
  }
  .div-image2 {
    width: 320px;
    height: 100%;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 16px;
  }
  .image2 {
    width: 100%;
    height: 206px;
    border-radius: 20px;
  }
  .div-image3 {
    width: 100%;
    height: 100%;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 15px;
  }
  .imag-div-2 {
    width: 100%;
    height: 100%;
    border-radius: 15px;
  }
  .div-all {
    width: 100%;
    height: auto;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 15px;
    margin-top: 1rem;
  }
  .p-box {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 250px;
  }
  .title-box {
    font-size: 20px;
  }
  .div-image-4 {
    width: 100%;
    height: auto;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 15px;
    margin-bottom: 1rem;
  }
  .img-4 {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .img-5 {
    width: 312px;
    height: 455px;
    border-radius: 15px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .div-image2 {
    width: 100%;
    height: 455px;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 16px;
  }
  .image2 {
    width: 100%;
    height: 60%;
    border-radius: 20px;
  }
  .text-article {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .title-article {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .div-image-new-detalls {
    width: 100%;
    height: 41vh;
    border-radius: 34px;
    opacity: 0px;
    background-color: rgb(246, 246, 246);
  }
  .image1-new-detalls {
    width: 100%;
    height: 100%;
    top: 435px;
    left: 377px;
    gap: 0px;
    border-radius: 23px;
    opacity: 0px;
  }
  .content {
    width: 100%;
    height: 100%;
  }
  .title-pargrav-new-detalls {
    color: #00344A;
    font-weight: 500;
    font-size: 33px;
    text-align: center;
    margin-bottom: 1rem;
  }
  .colmn-new-detalls {
    height: 352px;
    border-radius: 16px;
    border: 1px 0px 0px 0px;
    opacity: 0px;
    border: 1px solid rgb(217, 217, 217);
  }
  .div-img-eventDetails {
    width: 700px;
    height: 400px;
    border-radius: 16px;
  }
  .img-event-detalis {
    width: 90%;
    height: 90%;
    border-radius: 16px;
  }
  .title-event {
    font-size: 20px;
  }
  .svg-icons {
    margin-left: -5rem;
    margin-top: 1rem;
  }
  .span-icons {
    width: auto;
    text-align: start;
  }
  .text-event {
    font-size: 16px;
    font-weight: 400;
    width: 300px;
    text-align: justify;
    margin-left: -4rem;
  }
  .Requirements {
    font-size: 20px;
    font-weight: 700;
    width: 250px;
    text-align: justify;
    color: #00344A;
  }
  .ul-details-event {
    margin-left: -5rem;
    width: 350px;
  }
  .nav-cearch {
    text-align: start;
  }
  .input-search {
    width: 350px;
    height: 50px;
    border-radius: 13px;
    border: 1px solid #e6e6e6;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: -2rem;
  }
  .search-button {
    width: 100px;
    height: 40px;
    text-align: center;
    justify-content: center;
    margin-left: 8rem;
  }
  .nav-cearch {
    flex-wrap: wrap;
  }
  .icons-serch {
    width: 1px;
  }
  .card-jonUs {
    border: 1px solid rgb(209, 209, 209);
    border-radius: 16px;
    width: 300px;
    height: 245px;
    box-shadow: 10px 10px 30px rgba(177, 177, 177, 0.359);
  }
  .name-input {
    font-size: 19px;
    margin-bottom: -5px;
    margin-left: 0.5rem;
  }
  .form-control-massage {
    border-radius: 15px;
    width: 290px;
    height: 285px;
    border: 1px solid rgb(209, 209, 209);
  }
  .contact-Us-button {
    width: 256px;
    height: 58px;
  }
  .form-control {
    border-radius: 15px;
    width: 330px;
    height: 59px;
  }
  .img-contactUs {
    border-radius: 16px;
    width: 100%;
    height: 90%;
  }
  .div-img-contactUs {
    display: none;
  }
  .photo-biq {
    width: 350px;
    height: 457px;
    border-radius: 16px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 3rem;
  }
  .supplier-wrapper .fields-box {
    padding: 1rem;
  }
  .photo-smole {
    width: 350px;
    height: 329px;
    border-radius: 16px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 3rem;
  }
  .mar-bm {
    margin-top: -3rem;
  }
  .mar-row {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
  .mar-phone {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
  .modal-body {
    width: 100%;
    height: 100%;
  }
  .img-phone {
    width: 350px;
    height: 350px;
  }
  .img-modal {
    height: 90vh;
  }
  .events .events-wrapper .events-box {
    margin-inline-end: 0;
    margin-inline-start: 0;
    margin-top: 2rem;
  }
  .events .events-wrapper .events-bg {
    width: 90%;
    height: 100%;
    top: -1rem;
    right: -1rem;
    display: none;
  }
  .bg-map {
    width: auto;
    height: 25rem;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 16px;
    box-shadow: 2px 2px 10px rgb(217, 217, 217);
    margin-left: -1rem;
    margin-top: 1rem;
  }
  .faq .accordion-item {
    width: 100%;
  }
  .faq .accordion-button {
    width: 100%;
  }
  .faq .accordion-header {
    width: 100%;
  }
}
.partenar-button {
  padding: 0;
  height: 40px;
  font-size: 15px;
}

.box-partenar {
  border: 1px solid rgb(184, 184, 184);
  border-radius: 10px;
  height: 100%;
  display: grid;
  align-content: space-between;
}

.icons-search-job {
  display: none;
}

/* galaxy S5 */
/* iphone x, 6/7/8 */
/* iphone 6/7/8 plus */
@media only screen and (min-width: 821px) and (max-width: 1019px) {
  .img-partner {
    width: 100%;
    height: 25vh;
  }
  .but-sidbar {
    border: none;
    font-weight: 300;
    height: 30px;
    text-align: start;
    width: -moz-available;
    width: -webkit-fill-available;
  }
  .container {
    max-width: 95% !important;
  }
  header .navbar-expand-lg .navbar-nav {
    margin-top: 2rem;
    -moz-column-gap: 0rem;
         column-gap: 0rem;
  }
  header .logo-box {
    position: absolute;
    top: 0;
    left: unset;
    background: #fff;
    z-index: 4;
    box-shadow: 0px 4px 17.8px 0px rgba(0, 0, 0, 0.1607843137);
    padding: 0.9rem;
    padding-inline-end: 3rem;
    -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  }
  header .logo-box .logo {
    height: 45px;
  }
  header .navbar-box {
    position: relative;
    top: unset;
    right: unset;
    z-index: 3;
    background: #1E526A;
    width: 100%;
    padding-inline-end: unset;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }
  header .top-header {
    display: none;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .collapse:not(.show) {
    display: flex !important;
    justify-content: flex-end !important;
  }
  .navbar-toggler {
    display: none !important;
  }
  header .navbar .nav-link {
    font-size: 0.46rem;
  }
  .statistics .statistics-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .slider .caption {
    position: absolute;
    top: 50%;
    left: 6rem;
    right: 6rem;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
    text-align: start;
  }
  .slider .caption h1 {
    font-size: 2rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .slider .caption p {
    width: 70%;
    font-size: 1rem;
  }
  .img-job {
    width: 18rem;
    height: 16rem;
  }
  .bg-div-job {
    border-radius: 15px;
    background-color: rgb(246, 246, 246);
    height: 24rem;
    width: 100%;
    margin-inline-end: -9rem;
  }
  .input-div-job {
    height: 18rem;
  }
  .input-div-job .col-3 {
    padding-inline-start: 0rem;
  }
  .col-job-search {
    padding-inline-end: 2rem;
    margin-top: -3rem;
  }
  .title-phono {
    margin-inline-start: 1.5rem;
    font-size: 22px !important;
  }
  .job-section .dark-button {
    padding: 0.5rem 1rem;
    width: 100%;
  }
  .but-login {
    background-color: #fff;
    border-radius: 16px;
    color: #00344A;
    width: 75px;
  }
  .articles .px-4 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .news-details .col-md-9 {
    width: 100%;
  }
  .news-details .col-md-3 {
    width: 100%;
  }
  .news-details .image-card {
    width: 100%;
    height: 15vh;
  }
  footer .social-box {
    font-size: 12px;
  }
  footer .social-box img {
    width: 52px;
  }
  .faq .accordion-item {
    width: 100%;
  }
  .faq .accordion-button {
    width: 100%;
  }
  .faq .accordion-header {
    width: 100%;
  }
}
@media only screen and (min-width: 1020px) and (max-width: 1023px) {
  .mian-content {
    padding-top: 5rem;
  }
  .viduo {
    width: 100%;
    height: 350px;
  }
  .card-library {
    width: 1000px;
  }
  header .navbar-expand-lg .navbar-nav {
    margin-top: 2rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  header .navbar .nav-link {
    font-size: 0.65rem;
  }
  header .logo-box {
    position: absolute;
    top: 0;
    left: unset;
    background: #fff;
    z-index: 4;
    box-shadow: 0px 4px 17.8px 0px rgba(0, 0, 0, 0.1607843137);
    padding: 0.9rem;
    padding-inline-end: 3rem;
    -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  }
  header .logo-box .logo {
    height: 45px;
  }
  header .navbar-box {
    position: relative;
    top: unset;
    right: unset;
    z-index: 3;
    background: #1E526A;
    width: 100%;
    padding-inline-end: unset;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }
  header .top-header {
    display: none;
  }
  .slider {
    padding-top: 3rem;
  }
  .slider .caption {
    position: absolute;
    top: 50%;
    left: 6rem;
    right: 15rem;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
    text-align: start;
  }
  .slider .caption p {
    width: 70%;
    font-size: 1rem;
  }
  .slider .caption h1 {
    font-size: 2rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .img-job {
    width: 18rem;
    height: 16rem;
  }
  .bg-div-job {
    border-radius: 15px;
    background-color: rgb(246, 246, 246);
    height: 24rem;
    width: 85%;
    margin-inline-end: -9rem;
  }
  .input-div-job {
    height: 18rem;
  }
  .col-job-search {
    padding-inline-end: 2rem;
    margin-top: -3rem;
  }
  .title-phono {
    margin-inline-start: 1.5rem;
    font-size: xx-large !important;
  }
  .job-section .dark-button {
    padding: 0.5rem 1.5rem;
  }
  .statistics .statistics-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  footer .top-footer {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    gap: 2rem;
  }
  footer .top-footer .logo-box {
    padding: 2rem 2rem;
    width: 50%;
  }
  footer .social-box {
    height: 80px;
    width: 43%;
  }
  footer .top-footer .links-box h2 {
    font-size: 1.3rem;
  }
  footer .top-footer .links-box .links-list li a {
    font-size: 1rem;
  }
  .statistics {
    padding: 5rem 0;
  }
  footer .social-box h4 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1290px) {
  header .logo-box .logo {
    height: 56px;
  }
  header .navbar-expand-lg .navbar-nav {
    -moz-column-gap: 0.2rem;
         column-gap: 0.2rem;
  }
  header .navbar-box {
    top: 42px;
    width: 71%;
    padding-inline-end: 0rem;
  }
  header .logo-box {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-inline-end: 6rem;
    width: 40%;
  }
  header .navbar .nav-link {
    font-size: 0.55rem;
  }
  .terriatry-btn {
    font-size: 0.8rem;
  }
  .date span {
    font-size: 0.7rem;
  }
  header .top-header {
    padding-inline-end: 1rem;
    gap: 1rem;
  }
  header .top-header .actions {
    gap: 1rem;
    padding-inline-end: 1rem;
  }
  header .top-header img.icon {
    width: 1.2rem;
    height: 1.2rem;
  }
  .container {
    max-width: 1200px;
  }
  .slider .caption {
    left: 8rem;
    right: 8rem;
    z-index: 2;
  }
  .slider .caption p {
    width: 70%;
    font-size: 1rem;
  }
  .slider .caption h1 {
    font-size: 2rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .img-job {
    width: 20rem;
    height: 18rem;
  }
  .title-phono {
    margin-inline-start: 1rem;
    font-size: 32px !important;
  }
  .bg-div-job {
    margin-inline-end: -9rem;
  }
  .statistics .statistics-wrapper .statistics-item .icon-box {
    width: 5rem;
    height: 5rem;
  }
  .statistics .statistics-wrapper .statistics-item h2 {
    font-size: 1.5rem;
    font-weight: bold;
  }
  footer .top-footer {
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
    gap: 1.5rem;
  }
  footer .top-footer .links-box h2 {
    font-size: 1rem;
  }
  footer .top-footer .links-box .links-list li a {
    font-size: 0.8rem;
    gap: 0.3rem;
  }
  footer .top-footer .logo-box {
    padding: 2rem 2rem;
  }
  footer .social-box {
    font-size: 14px;
  }
  footer .social-box img {
    width: 56px;
  }
}
@media only screen and (min-width: 1291px) and (max-width: 1919px) {
  header .logo-box .logo {
    height: 56px;
  }
  header .top-header ul {
    z-index: 3;
  }
  header .logo-box .logo {
    height: 56px;
  }
  header .navbar-expand-lg .navbar-nav {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  header .navbar-box {
    top: 42px;
    width: 71%;
    padding-inline-end: 1rem;
  }
  header .logo-box {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-inline-end: 6rem;
    width: 40%;
  }
  header .navbar .nav-link {
    font-size: 0.8rem;
  }
  .container {
    max-width: 1200px;
  }
}
/* 17 inch */
@media only screen and (min-width: 1920px) and (max-width: 2500px) {
  header .logo-box {
    padding-inline-end: 8rem;
  }
  header .logo-box .logo {
    height: 74px;
  }
}/*# sourceMappingURL=style.css.map */