@import url("https://fonts.googleapis.com/css2?family=Fira+Code&family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif !important;
}



.product-section-wrapper {
  width: 100%;
  height: auto;
  background-color: transparent;
  margin-top: 100px;
  margin-bottom: 48px;
  padding: 0 36px;
}

.product-section-wrapper .product-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}

.product-section-wrapper .product-section .top-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
}
.product-section-wrapper .product-section .top-title span {
    color: #ee2c2c;
}

.product-section-wrapper .product-section .top-title h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: 0em;
    text-align: center;
    color: #023084;
}

.product-section-wrapper .product-section .swiper {
  width: 100%;
  height: 100%;
}
.product-section-wrapper .product-section .swiper .swiper-slide {
  height: auto;
  background-color: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  text-decoration: none;
}
.product-section-wrapper .product-section .swiper .swiper-slide .image-content {
  width: 100%;
  height: 250px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}
.product-section-wrapper .product-section .swiper .swiper-slide .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 12px;
}
.product-section-wrapper .product-section .swiper .swiper-slide .text {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 16px 24px;
}
.product-section-wrapper .product-section .swiper .swiper-slide .text h2 {
  color: #303030;
  font-weight: 600;
  font-size: 21px;
}



html,
body {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  background-color: whitesmoke !important;
}

.map-content-in-contact {
    margin-top:110px;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.map-content-in-contact iframe {
    width: 100%;
    height: 100%;
}


/*categories on the product*/

.products-container {
  width: 80%;
  margin-top: 110px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  animation: opacitybody 0.5s ease-out forwards normal;
}
.products-container h1 {
  color: #023084;
  font-weight: 600;
  font-size: 36px;
  text-align: start;
}

.products-container .categories-content {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 260px auto;
  gap: 20px;
  margin-top: 40px;
}
.products-container .categories-content .category {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;

  background-color: transparent;
  border-radius: 12px;
}
.products-container .categories-content .category .nav-category {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
  background: #dce8ff;
  box-shadow: 4px 4px 4px 0px #0230840d;
  padding: 20px;
}
.products-container .categories-content .category .nav-category a {
  text-decoration: none;
  background-color: #ffffff66;
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  line-height:20px;
  width: 100%;
  border-radius: 12px;
  padding: 10px 18px;
  text-align: start;
  list-style-type: none;
}
.products-container .categories-content .category .nav-category .active {
  background-color: #ffffff;
  color: #2559b7;
  font-weight: 600;
}
.products-container .categories-content .category-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.category-results .itemresult {
  width: 100%;
  background: #ffffff;
  box-shadow: 4px 4px 4px 0px #0000000d;
  display: flex;
  align-items: start;
  text-decoration: none;
  height:100%;
  flex-direction: column;
}
.category-results .itemresult .result-img-wrap {
  width: 100%;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.category-results .itemresult .result-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-results .itemresult span {
  color: #023084;
  font-weight: 500;
  font-size: 16px;
  line-height:24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 12px 10px;
}

@media only screen and (min-width: 1600px) {
  .products-container {
    max-width: 1440px;
    margin: 110px auto auto;
  }
  .products-container .categories-content .category-results {
      grid-template-columns: repeat(4, 1fr) !important; 
  }
}

@media only screen and (max-width: 1100px) and (min-width: 968px) {
    .products-container {
        height: auto !important;
    }
  .products-container .categories-content {
    grid-template-columns: repeat(1, 1fr);
    margin-top:30px;
  }
  .category-results .itemresult .result-img-wrap {
    height: 160px;
  }
}

@media only screen and (max-width: 968px) and (min-width: 568px) {
    .products-container .categories-content{
        margin-top:20px;
    }
    .products-container .categories-content .category-results{
        grid-template-columns: repeat(2, 1fr);
    }
     .products-container {
        height: auto !important;
    }
  .products-container .categories-content {
    grid-template-columns: repeat(1, 1fr);
  }
  .category-results .itemresult .result-img-wrap {
    height: 160px;
  }
}
@media only screen and (max-width: 768px){
    .products-container {
        margin-top:90px;
    }
}
@media only screen and (max-width: 568px) and (min-width: 268px) {
    .products-container .categories-content .category-results {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
    }
     .products-container {
        height: auto !important;
    }
  .products-container .categories-content {
      margin-top:20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .category-results .itemresult .result-img-wrap {
    height: auto;
  }
  .products-container h1 {
    font-size: 28px;
  }
}








.top-header {
  padding: 10px 150px;
  width: 100%;
  background-color: #ffffff;
  height: auto;
  display: none !important;
  align-items: center;
  justify-content: space-between;
}
.top-header .left {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.top-header .left .telephone,
.top-header .left .mail {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-header .left .telephone .logo-wrapper,
.top-header .left .mail .logo-wrapper {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #dce8ff;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.1s ease-out;
}
.top-header .left .telephone .logo-wrapper img,
.top-header .left .mail .logo-wrapper img {
  width: 100%;
  height: 10 0%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-header .left .telephone .logo-wrapper:hover,
.top-header .left .mail .logo-wrapper:hover {
  transform: scale(1.1);
}
.top-header .left .telephone span,
.top-header .left .mail span {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  padding-left: 5px;
}
.top-header .right {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.top-header .right .instagram,
.top-header .right .whatsapp,
.top-header .right .telegram,
.top-header .right .facebook {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-header .right .instagram .logo-wrapper,
.top-header .right .whatsapp .logo-wrapper,
.top-header .right .telegram .logo-wrapper,
.top-header .right .facebook .logo-wrapper {
  transition: 0.1s ease-out;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #dce8ff;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top-header .right .instagram .logo-wrapper img,
.top-header .right .whatsapp .logo-wrapper img,
.top-header .right .telegram .logo-wrapper img,
.top-header .right .facebook .logo-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-header .right .instagram .logo-wrapper:hover,
.top-header .right .whatsapp .logo-wrapper:hover,
.top-header .right .telegram .logo-wrapper:hover,
.top-header .right .facebook .logo-wrapper:hover {
  transform: scale(1.1);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 150px;
  background-color: #fff;
  box-shadow: 1px 9px 11px 0px rgba(0, 0, 0, 0.12);

}
.header .left {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.header .left .logo-wrapper-header {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.header .left .logo-wrapper-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .right {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .right .dropbtn {
  border-radius: 5px 5px 0px 0px;
  background-color: transparent;
  color: #000000;
  border: none;
  outline: none;
  padding: 5px 20px;
  font-size: 14px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .right .dropbtn svg {
  width: 15px;
  height: 15px;
  color: #444343;
  position: relative;
  left: 5px;
}
.header .right .dropdown {
  position: relative;
  display: inline-block;
}
.header .right .dropdown-content {
  z-index: 100000;
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 75px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  animation: tr 0.2s ease-out forwards normal;
}
@keyframes tr {
  from {
    transform: translateY(-2rem);
  }
  to {
    transform: translateY(0);
  }
}
.header .right .dropdown-content a {
  color: #000000;
  padding: 7px 16px;
  text-decoration: none;
  display: block;
}
.header .right .dropdown-content a:hover {
  background-color: #fff;
  color: mediumslateblue;
}
.header .right .dropdown:hover .dropdown-content {
  display: block;
}
.header .right .dropdown:hover .dropbtn {
  background-color: rgb(191, 180, 255);
}
.header .right a {
  text-decoration: none;
  padding: 5px 10px;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  color: #000000;
  transition: 0.1s ease-out;
}
.header .right a:hover {
  color: #180447;
}
.header .right .dropbtn-products {
  transition: 0.3s ease-out;
  background-color: transparent;
  color: #000000;
  padding: 5px 10px;
  font-size: 16px;
  border: none;
}
.header .right .products-dropdown {
  position: relative;
  display: inline-block;
}
.header .right .dropdown-content-products {
  z-index: 1000000;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.header .right .dropdown-content-products a {
  color: black;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
  animation: tr 0.3s ease-out forwards normal;
}
.header .right .dropdown-content-products a:hover {
  background-color: #ddd;
}
.header .right .products-dropdown:hover .dropdown-content-products {
  display: block;
}
.header .right .products-dropdown:hover .dropbtn-products {
  background-color: mediumslateblue;
  color: #fff;
}

.top-container {
margin-top:76px;
  height: auto;
  background-color: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 0px !important;
  width: 100%;
  animation: opacitybody 0.5s ease-out forwards normal;
  
}
@keyframes opacitybody {
  from {
    opacity: 0;
    transform: translateX(-10rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.home-hero-wrapper {
width: 100%;
height: 720px !important;
background: rgb(255, 255, 255);
background: linear-gradient(121deg, rgba(255, 255, 255, 0.062) 2%, rgba(220, 229, 243, 0.37) 81%);
display: flex;
align-items: center;
justify-content: center;
}
.home-hero-wrapper .swiper {
width: 100%;
height: 100%;
}
.home-hero-wrapper .swiper .swiper-button-next,.home-hero-wrapper .swiper .swiper-button-prev{
    color:#fff !important;
}
.home-hero-wrapper .swiper .swiper-slide {
text-align: center;
font-size: 18px;
height: auto !important;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
}

.home-hero-wrapper .swiper .swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: fill !important;
}
/* 1 */


.home-hero-wrapper .home-hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  position: relative;
}
.home-hero-wrapper .home-hero .home-news-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.home-hero-wrapper .home-hero .home-news-content .home-news-left {
  width: 100%;
  display: none;
}
.home-hero-wrapper .home-hero .home-news-content .home-news-left .home-news-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.home-hero-wrapper .home-hero .home-news-content .home-news-left .home-news-top .home-news-name {
  position: relative;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  text-align: left;
  padding-bottom: 6px;
  padding-right: 30px;
  border-bottom: 1px solid #00462b;
}
.home-hero-wrapper .home-hero .home-news-content .home-news-left .home-news-top .more {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #00462b;
  min-width: 111px;
}
.home-hero-wrapper .home-hero .home-news-content .home-news-left .home-news-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  margin-bottom: 60px;
}
.home-hero-wrapper .home-hero .home-news-content .home-news-left .home-news-text h1 {
  color: #023084;
  font-size: 40px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0em;
  text-align: left;
  padding: 10px;
}
.home-hero-wrapper .home-hero .home-news-content .home-news-left .home-news-text a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #2559b7;
  border-radius: 50px;
  padding: 10px 25px;
  text-decoration: none;
  margin-top: 35px;
  transition: 0.2s ease-out;
}
.home-hero-wrapper .home-hero .home-news-content .home-news-left .home-news-text h1 span {
  font-family: "Lora";
  color: #0f6b04;
  padding-right: 10px;
}
.home-hero-wrapper .home-hero .home-news-content .home-news-left .home-news-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
  padding: 10px;
}
.home-hero-wrapper .home-hero .home-news-content .home-news-active {
  display: block;
}


.home-hero-wrapper .home-hero .home-news-images {
  width: 600px;
  height: 300px;
}
/* 2 */




.home-hero-wrapper .home-hero .home-news-images .news-images-slide {
  width: 100%;
}
.home-hero-wrapper .home-hero .home-news-images .news-images-slide .news-images-item {
  width: 100%;
  height: 350px;
  border-radius: 10px;
}
.home-hero-wrapper .home-hero .home-news-images .news-images-slide .news-images-item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
/* 3 */


.home-hero-wrapper .home-hero .home-news-images .news-images-slide .swiper-button-next,
.home-hero-wrapper .home-hero .home-news-images .news-images-slide .swiper-button-prev {
  width: 23px;
  height: 23px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero-wrapper .home-hero .home-news-images .news-images-slide .swiper-button-next::after,
.home-hero-wrapper .home-hero .home-news-images .news-images-slide .swiper-button-prev::after {
  display: none;
}
.home-hero-wrapper
  .home-hero
  .home-news-images
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.home-hero-wrapper
  .home-hero
  .home-news-images
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #0f6b04 !important;
}
.home-hero-wrapper .home-hero .home-news-images .swiper-pagination-bullet-active {
  background-color: #0f6b04 !important;
}
.home-hero-wrapper .home-hero .hero-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 36px;
  box-shadow: 0px 4px 22px 0px rgba(15, 107, 4, 0.26);
  background: #fff;
  border-radius: 28px;
  bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  z-index: 10;
}
.home-hero-wrapper .home-hero .flag1 {
  position: absolute;
  top: 0;
  transform: rotate(0deg);
  left: 0;
}
.home-hero-wrapper .home-hero .flag2 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.home-hero-wrapper .home-hero .flag3 {
  position: absolute;
  bottom: -8rem;
  left: 0;
}



.top-container .container-wrapper {
  width: 100%;
  height: auto;
  background: rgb(255, 255, 255);
  background: linear-gradient(121deg, rgba(255, 255, 255, 0.062) 2%, rgba(220, 229, 243, 0.37) 81%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-container .container-wrapper .left {
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.top-container .container-wrapper .left h1 {
  color: #023084;
  font-size: 40px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0em;
  text-align: left;
  padding: 10px;
}
.top-container .container-wrapper .left span {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
  padding: 10px;
}
.top-container .container-wrapper .left .contact-our-top-container {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #2559b7;
  border-radius: 50px;
  padding: 10px 25px;
  text-decoration: none;
  margin-top: 35px;
  transition: 0.2s ease-out;
}
.top-container .container-wrapper .left .contact-our-top-container:hover {
  background-color: transparent;
  border: 2px solid mediumslateblue;
  transform: translateX(0.5rem);
  color: #000;
}
.top-container .container-wrapper .right {
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.top-container .container-wrapper .right .photo-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.top-container .container-wrapper .right .photo-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.top-container .container-wrapper .right .photo-wrapper:after {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f9fafd;
}
.top-container .statistics {
  width: 100%;
  height: auto;
  background-color: #fff;
  margin-top: 0 !important;
  padding: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0901960784);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  top: 4rem;
}
.top-container .statistics .quality-product,
.top-container .statistics .accept-person,
.top-container .statistics .order {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
}
.top-container .statistics .quality-product .logowrapper,
.top-container .statistics .accept-person .logowrapper,
.top-container .statistics .order .logowrapper {
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #dce8ff;
  border-radius: 50%;
}
.top-container .statistics .quality-product .logowrapper img,
.top-container .statistics .accept-person .logowrapper img,
.top-container .statistics .order .logowrapper img {
  border-radius: 50%;
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-container .statistics .quality-product span,
.top-container .statistics .accept-person span,
.top-container .statistics .order span {
  font-size: 15px;
  color: #2559b7;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  padding-left: 10px;
}

.about {
  width: 80%;
  height: auto;
  margin-top: 120px;
  display: flex;
  align-items: center;
  padding: 24px;
  justify-content: center;
  background-color: #fff;
  border-radius: 12px;
}
.about .about-wrapper {
  width: 100%;
  height: auto;
  border: 1px solid #dce8ff;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap:20px;
  padding: 36px;
}
.about .about-wrapper .left,
.about .about-wrapper .right {

  height: auto;
}
.about .about-wrapper .left {
      width: 60%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.about .about-wrapper .left span {
  color: #ee2c2c;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}
.about .about-wrapper .left h1 {
  color: #023084;
  font-size: 36px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 8px;
}
.about .about-wrapper .left p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  width: 100%;
  position: relative;
  top: 1rem;
}
.about .about-wrapper .left a {
  background-color: #2559b7;
  padding: 15px 50px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  margin-top: 40px;
  transition: 0.2s ease-out;
}
.about .about-wrapper .left a:hover {
  transform: translateX(1rem);
  background-color: transparent;
  border: 2px solid mediumslateblue;
  font-size: 16px;
  color: #000000;
}
.about .about-wrapper .right {
    width: 40%;
  display: flex;
  align-items: start;
    gap: 20px;
}
.about .about-wrapper .right .top-images {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about .about-wrapper .right .top-images .image-wrapper-1 {
  transition: 0.1s ease-out;
  overflow: hidden;
  border-radius: 10px;
}
.about .about-wrapper .right .top-images .image-wrapper-1 img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  width:100%;
}
.about .about-wrapper .right .top-images .image-wrapper-2 {
  transition: 0.1s ease-out;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.about .about-wrapper .right .top-images .image-wrapper-2 img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.about .about-wrapper .right .top-images .image-wrapper-1:hover {
  transform: scale(1.1);
}
.about .about-wrapper .right .top-images .image-wrapper-2:hover {
  transform: scale(1.1);
}
.about .about-wrapper .right .bottom-images {
    width:100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.about .about-wrapper .right .bottom-images .image-wrapper-2 {
  transition: 0.1s ease-out;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}
.about .about-wrapper .right .bottom-images .image-wrapper-2 img {
  border-radius: 10px;
  width:100%;
}
.about .about-wrapper .right .bottom-images .image-wrapper-1 {
  transition: 0.1s ease-out;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.about .about-wrapper .right .bottom-images .image-wrapper-1 img {
  border-radius: 10px;
  width:100%;
}
.about .about-wrapper .right .bottom-images .image-wrapper-1:hover {
  transform: scale(1.1);
}
.about .about-wrapper .right .bottom-images .image-wrapper-2:hover {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalanim 0.3s ease-out forwards normal;
}
@keyframes modalanim {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}

.modal-content {
  margin: auto;
  width: 80%;
  max-width: 600px;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close {
  color: #fff;
  position: absolute;
  top: 15px;
  right: 35px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.home_pro_boxes{
    width:100%;
    margin-top:48px;
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:20px;
}
.home_pro_boxes .home_pro_box{
    padding:40px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    background:#f8f8f8;
    box-shadow:0px 10px 15px -3px rgba(0,0,0,0.1);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: #023084;
    text-decoration:none;
    transition:.4s;
}
.home_pro_boxes .home_pro_box:hover{
    transform:scale(1.1);
}

.products-our {
  width: 80%;
  height: auto;
  margin-top: 150px;
  display: flex;
  align-items: flex-start;
  position: relative;
  justify-content: center;
  flex-direction: column;
}
.products-our .top-title {
  width: 100%;
  height: auto;
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.products-our .top-title span {
  color: #ee2c2c;
}
.products-our .top-title h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0em;
  text-align: center;
  color: #023084;
}
.products-our .swiper {
  width: 100%;
  height: 100%;
  position: initial;
  margin-top: 48px;
}
.products-our .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.1s ease-out;
}
.products-our .swiper-slide .image-wrapper {
  width: auto;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-our .swiper-slide .image-wrapper img {
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.products-our .swiper-slide span {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #023084;
}
.products-our .swiper-slide:hover {
  transform: scale(0.94);
}
.products-our .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-our .swiper-button-next,
.products-our .swiper-rtl .swiper-button-prev::after {
  display: none;
}
.products-our .swiper-button-next {
  background-color: #fff;
  width: 40px;
  height: 40px;
  right: -1rem;
  top: 64%;
  border-radius: 50%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.products-our .swiper-button-next svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.products-our .swiper-button-next:after {
  display: none;
}
.products-our .swiper-button-prev {
  background-color: #fff;
  width: 40px;
  height: 40px;
  left: -1rem;
  top: 64%;
  border-radius: 50%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.products-our .swiper-button-prev svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.products-our .swiper-button-prev:after {
  display: none;
}

.news-our {
  width: 80%;
  height: auto;
  margin-top: 40px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  flex-direction: column;
}
.news-our .top-title-news-our {
  width: 100%;
  height: auto;
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.news-our .top-title-news-our span {
  color: #ee2c2c;
}
.news-our .top-title-news-our h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0em;
  text-align: center;
  color: #023084;
}
.news-our .swiper {
  width: 100%;
  height: 350px;
  position: initial;
  margin-top: 48px;
}
.news-our .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.1s ease-out;
}
.news-our .swiper-slide .background {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.news-our .swiper-slide .background img {
  width: 100%;
  height: 100%;
  /*-o-object-fit: contain;*/
     /*object-fit: contain;*/
     object-fit: cover;
}
.news-our .swiper-slide .background .blur {
  width: 60%;
  height: 100%;
  position: absolute;
  left: -1.5rem;
  top: 0;
}
.news-our .swiper-slide .background .text {
  width: 49%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background:rgba(255,255,255,.7);
}
.news-our .swiper-slide .background .text span {
  color: #000000;
  font-weight: 600;
  font-size: 14.7px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-our .swiper-slide .background .text p {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
  line-height: 22px;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-our .swiper-slide .background strong {
  position: absolute;
  left: 10px;
  bottom: 0rem;
  padding: 20px;
  font-weight: 500;
  color: #023084;
  font-size: 16px;
  text-decoration: underline;
}
.news-our .swiper-slide:hover {
  transform: scale(0.95);
}
.news-our .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-our .swiper-button-next,
.news-our .swiper-rtl .swiper-button-prev::after {
  display: none;
}
.news-our .swiper-button-next {
  background-color: #fff;
  width: 40px;
  height: 40px;
  right: -1.6rem;
  top: 56%;
  border-radius: 50%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.news-our .swiper-button-next svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.news-our .swiper-button-next:after {
  display: none;
}
.news-our .swiper-button-prev {
  background-color: #fff;
  width: 40px;
  height: 40px;
  left: -1.6rem;
  top: 56%;
  border-radius: 50%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.news-our .swiper-button-prev svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.news-our .swiper-button-prev:after {
  display: none;
}
.news-our .button-all-news {
  background: #2559b7;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  margin-top: 60px;
  transition: 0.3s ease-out;
}
.news-our .button-all-news:hover {
  transform: scale(1.1);
  background-color: transparent;
  border: 2px solid mediumslateblue;
  color: #000000;
}

.feedback-our-customers-wrapper {
  margin-top: 70px;
  position: initial;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.feedback-our-customers-wrapper .toptitle-feedback {
  width: 90%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 80px;
}
.feedback-our-customers-wrapper .toptitle-feedback span {
  color: #ee2c2c;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.2px;
}
.feedback-our-customers-wrapper .toptitle-feedback h1 {
  color: #023084;
  font-weight: 600;
  line-height: 54px;
  padding-top: 1rem;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers {
  position: relative;
  padding: 50px 0px 147px 0px;
  margin-top: 50px;
  width: 75%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-horizontal > .swiper-pagination-bullets,
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-pagination-bullets.swiper-pagination-horizontal,
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-pagination-custom,
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-pagination-fraction {
  top: 30rem;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-pagination-bullet {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.4666666667);
}
.swiper-pagination-bullet-active {
    background-color: #ad0101 !important;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-pagination-bullet-active {
  background-color: #ee2c2c;
  border: none;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper {
  position: initial;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide {
  text-align: center;
  border-radius: 12px;
  font-size: 18px;
  background: #f7f7f9;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  height: auto;
  padding: 50px;
  transition: 0.3s ease-out;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide .image-content-feedback {
  width: 100%;
  padding-top: 20px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide .image-content-feedback .img-wrapper-feedback {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide .image-content-feedback .img-wrapper-feedback img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide .information-user {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide .information-user .username {
  padding-top: 10px;
  color: #023084;
  font-weight: 600;
  font-size: 15px;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide .information-user .about-feedback {
  width: 80%;
  line-height: 24px;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 0px;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide .social-feedback {
  padding: 20px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide .social-feedback .icon {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: 0.5s ease-out;
  cursor: pointer;
  background-color: #f7f7f9;
  border-radius: 10px;
  border: 5px solid #dce8ff;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide .social-feedback .icon img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide .social-feedback .icon:hover {
  transform: rotate(180deg);
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-button-next {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 45%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -1.5rem;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-button-next svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-button-next:after {
  display: none;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-button-prev {
  position: absolute;
  left: -1.5rem;
  top: 45%;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-button-prev svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-button-prev:after {
  display: none;
}

.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-horizontal > .swiper-pagination-bullets,
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-pagination-bullets.swiper-pagination-horizontal,
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-pagination-custom,
.feedback-our-customers-wrapper .carousel-area-feedback-our-customers .swiper-pagination-fraction {
  top: 35rem;
}

.contact-us {
  width: 80%;
  height: auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
  margin-bottom: 50px;
}
.contact-us .contact-us-wrapper {
  width: 97%;
  height: auto;
  border: 1px solid #dce8ff;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-us .contact-us-wrapper .left {
  width: 50%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.contact-us .contact-us-wrapper .left .image-wrapper-contact {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-us .contact-us-wrapper .left .image-wrapper-contact iframe {
  width: 100%;
  height: 100%;
}
.contact-us .contact-us-wrapper .right {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: auto;
  flex-direction: column;
}
.contact-us .contact-us-wrapper .right .contact-ar {
  width: auto;
  height: auto;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.contact-us .contact-us-wrapper .right .contact-ar .location,
.contact-us .contact-us-wrapper .right .contact-ar .telephone-contact,
.contact-us .contact-us-wrapper .right .contact-ar .mail-contact {
  transition: 0.4s ease-out;
  text-decoration: none;
  margin-left: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
}
.contact-us .contact-us-wrapper .right .contact-ar .location .logo-wrap,
.contact-us .contact-us-wrapper .right .contact-ar .telephone-contact .logo-wrap,
.contact-us .contact-us-wrapper .right .contact-ar .mail-contact .logo-wrap {
  width: 35px;
  height: 35px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background-color: #dce8ff;
  border-radius: 50%;
}
.contact-us .contact-us-wrapper .right .contact-ar .location .logo-wrap img,
.contact-us .contact-us-wrapper .right .contact-ar .telephone-contact .logo-wrap img,
.contact-us .contact-us-wrapper .right .contact-ar .mail-contact .logo-wrap img {
  border-radius: 50%;
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-us .contact-us-wrapper .right .contact-ar .location span,
.contact-us .contact-us-wrapper .right .contact-ar .telephone-contact span,
.contact-us .contact-us-wrapper .right .contact-ar .mail-contact span {
  padding: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}
.contact-us .contact-us-wrapper .right .contact-ar .location:hover {
  transform: translateX(5rem);
}
.contact-us .contact-us-wrapper .right .contact-ar .telephone-contact:hover {
  transform: translateX(5rem);
}
.contact-us .contact-us-wrapper .right .contact-ar .mail-contact:hover {
  transform: translateX(5rem);
}
.contact-us .contact-us-wrapper .right .title-contact {
  color: #ee2c2c;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  padding: 6px;
  margin-left: 2rem;
}
.contact-us .contact-us-wrapper .right h2 {
  color: #023084;
  font-weight: 600;
  font-size: 35px;
  line-height: 48px;
  padding: 10px;
  margin-left: 1.7rem;
}
.contact-us .contact-us-wrapper .right p {
  margin-left: 2rem;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  padding: 10px;
}

.footer {
  width: 100%;
  height: auto;
  background-color: #00091a;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin-top: 100px;
}
.footer .footer-header {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 150px;
  background-color: transparent;
}
.footer .footer-header .left {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer .footer-header .left .logo-wrapper-header {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer .footer-header .left .logo-wrapper-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-header .right {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-header .right .dropbtn {
  border-radius: 5px;
  background-color: #fff;
  color: #000000;
  border: none;
  outline: none;
  padding: 5px 20px;
  font-size: 14px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-header .right .dropbtn svg {
  width: 15px;
  height: 15px;
  color: #444343;
  position: relative;
  left: 5px;
}
.footer .footer-header .right .dropdown {
  position: relative;
  display: inline-block;
}
.footer .footer-header .right .dropdown-content {
  z-index: 100000;
  display: none;
  position: absolute;
  background-color: #fff;
  border-radius: 5px;
  min-width: 75px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  animation: tr 0.2s ease-out forwards normal;
}
@keyframes tr {
  from {
    transform: translateY(-2rem);
  }
  to {
    transform: translateY(0);
  }
}
.footer .footer-header .right .dropdown-content a {
  color: #000000;
  padding: 7px 16px;
  text-decoration: none;
  display: block;
}
.footer .footer-header .right .dropdown-content a:hover {
  background-color: #fff;
  color: mediumslateblue;
}
.footer .footer-header .right .dropdown:hover .dropdown-content {
  display: block;
}
.footer .footer-header .right .dropdown:hover .dropbtn {
  background-color: rgb(159, 142, 255);
}
.footer .footer-header .right a {
  text-decoration: none;
  padding: 5px 10px;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  color: #fff;
  transition: 0.1s ease-out;
}
.footer .footer-header .right a:hover {
  color: #8b8b8b;
}
.footer .footer-header .right .dropbtn-products {
  transition: 0.3s ease-out;
  background-color: transparent;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  border: none;
}
.footer .footer-header .right .products-dropdown {
  position: relative;
  display: inline-block;
}
.footer .footer-header .right .dropdown-content-products {
  z-index: 1000000;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.footer .footer-header .right .dropdown-content-products a {
  color: black;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
  animation: tr 0.3s ease-out forwards normal;
}
.footer .footer-header .right .dropdown-content-products a:hover {
  background-color: #ddd;
}
.footer .footer-header .right .products-dropdown:hover .dropdown-content-products {
  display: block;
}
.footer .footer-header .right .products-dropdown:hover .dropbtn-products {
  background-color: mediumslateblue;
  color: #fff;
}
.footer .contact-footer {
  width: auto;
  height: auto;
  padding: 10px 130px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.footer .contact-footer .location,
.footer .contact-footer .telephone-contact,
.footer .contact-footer .mail-contact {
  transition: 0.4s ease-out;
  text-decoration: none;
  margin-left: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
}
.footer .contact-footer .location .logo-wrap,
.footer .contact-footer .telephone-contact .logo-wrap,
.footer .contact-footer .mail-contact .logo-wrap {
  width: 35px;
  height: 35px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b1933;
}
.footer .contact-footer .location .logo-wrap img,
.footer .contact-footer .telephone-contact .logo-wrap img,
.footer .contact-footer .mail-contact .logo-wrap img {
  border-radius: 50%;
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .contact-footer .location span,
.footer .contact-footer .telephone-contact span,
.footer .contact-footer .mail-contact span {
  padding: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}
.footer .contact-footer .location:hover {
  transform: translateX(5rem);
}
.footer .contact-footer .telephone-contact:hover {
  transform: translateX(5rem);
}
.footer .contact-footer .mail-contact:hover {
  transform: translateX(5rem);
}
.footer .social-footer {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
  padding: 28px 150px;
  position: relative;
}
.footer .social-footer .instagram-footer,
.footer .social-footer .whatsapp-footer,
.footer .social-footer .telegram-footer,
.footer .social-footer .facebook-footer {
  width: auto;
  text-decoration: none;
  height: auto;
}
.footer .social-footer .instagram-footer .logo-wrapper,
.footer .social-footer .whatsapp-footer .logo-wrapper,
.footer .social-footer .telegram-footer .logo-wrapper,
.footer .social-footer .facebook-footer .logo-wrapper {
  transition: 0.2s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid #0b1933;
}
.footer .social-footer .instagram-footer .logo-wrapper img,
.footer .social-footer .whatsapp-footer .logo-wrapper img,
.footer .social-footer .telegram-footer .logo-wrapper img,
.footer .social-footer .facebook-footer .logo-wrapper img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .social-footer .instagram-footer .logo-wrapper:hover,
.footer .social-footer .whatsapp-footer .logo-wrapper:hover,
.footer .social-footer .telegram-footer .logo-wrapper:hover,
.footer .social-footer .facebook-footer .logo-wrapper:hover {
  transform: scale(1.2);
  background-color: mediumslateblue;
}
.footer .social-footer::after {
  content: "";
  width: 76%;
  height: 1px;
  background-color: #0b1933;
  position: absolute;
  bottom: 0;
}
.footer .bottom-footer {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .bottom-footer span {
  padding: 10px 155px;
  color: #f5f5f5;
  font-size: 14px;
}
.footer .bottom-footer span #company-name {
  padding: 5px 5px;
  text-decoration: none;
  font-size: 15px;
  color: #d81213;
  transition: 0.2s ease-out;
}
.footer .bottom-footer span #company-name:hover {
  color: mediumslateblue;
  text-decoration: underline;
}

.about-content {
  animation: opacitybody 0.5s ease-out forwards normal;
  width: 80%;
  height: auto;
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  justify-content: center;
  padding: 60px;
  border-radius: 12px;
  margin-top: 110px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0509803922);
}
@keyframes opacitybody {
  from {
    opacity: 0;
    transform: translateX(-10rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.about-content .left {
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}
.about-content .left h1 {
  color: #023084;
  font-weight: 600;
  font-size: 35px;
  margin-top: 3rem;
  position: relative;
  right: 1rem;
}
.about-content .left p {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  top: 1rem;
  right: 1rem;
}
.about-content .right {
  width: 50%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-content .right .image-wrapper-about-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}
.about-content .right .image-wrapper-about-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}

.about-bottom-content {
  width: 80%;
  margin-top: 60px;
  height: auto;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 12px;
  display: grid;
  align-items: flex-start;
  justify-content: center;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
  padding: 10px;
}
.about-bottom-content .we-purpose {
  padding: 10px;
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.about-bottom-content .we-purpose .top-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-bottom-content .we-purpose .top-title .logo-wrapper-ab-bot-con {
  width: 35px;
  height: 35px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #dce8ff;
}
.about-bottom-content .we-purpose .top-title .logo-wrapper-ab-bot-con img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-bottom-content .we-purpose .top-title span {
  color: #023084;
  font-size: 15px;
  font-weight: 600;
  padding: 20px;
}
.about-bottom-content .we-purpose p {
  color: rgba(0, 9, 24, 0.8);
  font-size: 14px;
  padding: 5px;
}

.inner-content-product {
  width: 80%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 25px;
  margin-top: 110px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 12px;
}
.inner-content-product .left-swip-content {
  width: 80%;
  height: 700px !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.inner-content-product .left-swip-content .swiper-button-next,
.inner-content-product .left-swip-content .swiper-rtl .swiper-button-prev {
  display: none !important;
}
.inner-content-product .left-swip-content .swiper-button-prev,
.inner-content-product .left-swip-content .swiper-rtl .swiper-button-next {
  display: none !important;
}
.inner-content-product .left-swip-content .swiper {
  width: 100%;
  height: 100%;
  top: 0;
}
.inner-content-product .left-swip-content .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.inner-content-product .left-swip-content .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-content-product .left-swip-content .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.inner-content-product .left-swip-content .swiper-slide {
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.inner-content-product .left-swip-content .mySwiper2 {
  height: auto;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.inner-content-product .left-swip-content .mySwiper2 .swiper-wrapper img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.inner-content-product .left-swip-content .mySwiper2_2 {
  border-radius: 10px;
  height: auto;
  box-sizing: border-box;
  padding: 15px;
  width: 55%;
  position: relative;
  right: 4.5rem;
  cursor: pointer;
}
.inner-content-product .left-swip-content .mySwiper2_2 img {
  border-radius: 6px;
}
.inner-content-product .left-swip-content .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.inner-content-product .left-swip-content .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.inner-content-product .left-swip-content .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.inner-content-product .left-swip-content .swiper-slide-thumb-active {
  border: 2px solid red;
  border-radius: 6px;
  padding: 3px;
}
.inner-content-product .right-text-content {
  width: 50%;
  height: auto;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.inner-content-product .right-text-content h2 {
  color: #023084;
  font-weight: 600;
  font-size: 30px;
}
.inner-content-product .right-text-content p {
  position: relative;
  top: 20px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}
.about .about-wrapper .left .description-for-about {
    color: #303030;
    font-size: 16px;
    line-height: 24px;
    max-width: 500px;
    text-align: left;
    letter-spacing: -0.1px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    overflow: hidden;
}
.inner-content-product .share {
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-top: 30px;
  position: relative;
  top: 30px;
  border-top: 1px solid #dce8ff;
  width: 100%;
}
.inner-content-product .share .share-title {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.inner-content-product .share .social {
  margin-top: 1.5rem;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.inner-content-product .share .social .logo-wrapper-instagram {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #dce8ff;
  overflow: hidden;
  transition: 0.3s ease-out;
  cursor: pointer;
}
.inner-content-product .share .social .logo-wrapper-instagram img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.inner-content-product .share .social .logo-wrapper-instagram:hover {
  transform: scale(1.2);
  background-color: rgb(255, 255, 255);
}

.other-products-container {
  width: 80%;
  height: auto;
  margin-top: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.other-products-container .other-products-title {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.other-products-container .other-products-title .swiper-buttons {
  width: 125px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.other-products-container .other-products-title .swiper-buttons .swiper-button-next {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.other-products-container .other-products-title .swiper-buttons .swiper-button-next svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.other-products-container .other-products-title .swiper-buttons .swiper-button-next:after {
  display: none;
}
.other-products-container .other-products-title .swiper-buttons .swiper-button-prev {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.other-products-container .other-products-title .swiper-buttons .swiper-button-prev svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.other-products-container .other-products-title .swiper-buttons .swiper-button-prev:after {
  display: none;
}
.other-products-container .other-products-title span {
  color: #023084;
  font-weight: 700;
  font-size: 24px;
  margin-left: 1rem;
}
.other-products-container .carousel-other-products {
  margin-top: 2rem;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.other-products-container .carousel-other-products .swiper {
  width: 100%;
  height: 300px;
}
.other-products-container .carousel-other-products .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.18);
}
.other-products-container .carousel-other-products .swiper .swiper-slide .img-container {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.other-products-container .carousel-other-products .swiper .swiper-slide .img-container img {
  width: 100%;
  height: 100%;
  position: relative;
  top: 1.5rem;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.other-products-container .carousel-other-products .swiper .swiper-slide span {
  font-weight: 500;
  padding: 15px;
  color: #023084;
}
.other-products-container .carousel-other-products .swiper .swiper-button-next {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.other-products-container .carousel-other-products .swiper .swiper-button-next svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.other-products-container .carousel-other-products .swiper .swiper-button-next:after {
  display: none;
}
.other-products-container .carousel-other-products .swiper .swiper-button-prev {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.other-products-container .carousel-other-products .swiper .swiper-button-prev svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.other-products-container .carousel-other-products .swiper .swiper-button-prev:after {
  display: none;
}
.other-products-container .carousel-other-products .swiper .swiper-slide-news {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.18);
  position: relative;
}
.other-products-container .carousel-other-products .swiper .swiper-slide-news #blur {
  position: absolute;
  left: 0;
}
.other-products-container .carousel-other-products .swiper_news {
  width: 100%;
  height: 300px;
}
.other-products-container .carousel-other-products .swiper_news .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.18);
}
.other-products-container .carousel-other-products .swiper_news .swiper-slide img {
  width: 100%;
  height: 100%;
}
.other-products-container .carousel-other-products .swiper_news .swiper-slide #blur {
  position: absolute;
  left: 0;
  width: 50%;
}
.other-products-container .carousel-other-products .swiper_news .swiper-slide span {
  font-weight: 500;
  padding: 15px;
  color: #023084;
}
.other-products-container .carousel-other-products .swiper_news .swiper-slide .text {
  position: absolute;
  left: 0;
  z-index: 100;
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.other-products-container .carousel-other-products .swiper_news .swiper-slide .text span {
  color: #000000;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-align: start;
  line-height: 24px;
  margin-left: 0.5rem;
  position: relative;
  bottom: 2rem;
}
.other-products-container .carousel-other-products .swiper_news .swiper-slide .text p {
  position: relative;
  bottom: 2.5rem;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
  letter-spacing: -0.2px;
  text-align: start;
  margin-left: 1.5rem;
}
.other-products-container .carousel-other-products .swiper_news .swiper-slide a {
  color: #023084;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 1.5rem;
}
.other-products-container .carousel-other-products .swiper_news .swiper-button-next {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.other-products-container .carousel-other-products .swiper_news .swiper-button-next svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.other-products-container .carousel-other-products .swiper_news .swiper-button-next:after {
  display: none;
}
.other-products-container .carousel-other-products .swiper_news .swiper-button-prev {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}
.other-products-container .carousel-other-products .swiper_news .swiper-button-prev svg {
  width: 20px;
  height: 20px;
  color: #023084;
}
.other-products-container .carousel-other-products .swiper_news .swiper-button-prev:after {
  display: none;
}
.other-products-container .carousel-other-products .swiper_news .swiper-slide-news {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.18);
  position: relative;
}
.other-products-container .carousel-other-products .swiper_news .swiper-slide-news #blur {
  position: absolute;
  left: 0;
}

.news-container-in-newspage {
  animation: opacitybody 0.5s ease-out forwards normal;
  width: 80%;
  margin-top: 110px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
@keyframes opacitybody {
  from {
    opacity: 0;
    transform: translateX(-10rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.news-container-in-newspage .news-top-title {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.news-container-in-newspage .news-top-title h1 {
  color: #023084;
  font-weight: 600;
  font-size: 30px;
  margin-left: 1rem;
}
.news-container-in-newspage .news-boxes {
  width: 100%;
  height: auto;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.news-container-in-newspage .news-boxes .news-box {
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0823529412);
  border-radius: 12px;
  position: relative;
  transition: 0.1s ease-out;
  cursor: pointer;
  height:210px;
}
.news-container-in-newspage .news-boxes .news-box .background {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.news-container-in-newspage .news-boxes .news-box .background img {
  width: 100%;
  object-fit:cover;
  height: 100%;
}
.news-container-in-newspage .news-boxes .news-box .background .blur {
  width: 60%;
  height: 100%;
  position: absolute;
  left: -1.5rem;
  top: 0;
}
.news-container-in-newspage .news-boxes .news-box .background .text {
  width: 75%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background:rgba(255,255,255,.7);
}
.news-container-in-newspage .news-boxes .news-box .background .text span {
  color: #000000;
  font-weight: 600;
  font-size: 14.7px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-container-in-newspage .news-boxes .news-box .background .text p {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
  line-height: 18px;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-container-in-newspage .news-boxes .news-box .background strong {
  position: absolute;
  left: 10px;
  bottom: 0rem;
  padding: 20px;
  font-weight: 500;
  color: #023084;
  font-size: 16px;
  text-decoration: underline;
}
.news-container-in-newspage .news-boxes .news-box:hover {
  transform: scale(0.96);
}
.news-container-in-newspage .news-boxes .news-box:active {
  transform: translateY(1px);
}
.news-container-in-newspage .bottom-pagination {
  width: 100%;
  min-height: 60px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-container-in-newspage .bottom-pagination .pagination-box {
  min-width: 400px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-container-in-newspage .bottom-pagination .pagination-box .prevBtn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  outline: none;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.178);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.1s ease-out;
  cursor: pointer;
}
.news-container-in-newspage .bottom-pagination .pagination-box .prevBtn:hover {
  transform: translateX(-5px);
}
.news-container-in-newspage .bottom-pagination .pagination-box .prevBtn:active {
  transform: translateY(1px);
}
.news-container-in-newspage .bottom-pagination .pagination-box .nextBtn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  outline: none;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.178);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.1s ease-out;
  cursor: pointer;
}
.news-container-in-newspage .bottom-pagination .pagination-box .nextBtn:hover {
  transform: translateX(5px);
}
.news-container-in-newspage .bottom-pagination .pagination-box .nextBtn:active {
  transform: translateY(-1px);
}
.news-container-in-newspage .bottom-pagination .pagination-box .navs {
  width: 180px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-container-in-newspage .bottom-pagination .pagination-box .navs a {
  text-decoration: none;
  border-radius: 7px;
  background-color: #fff;
  list-style-type: none;
  width: 35px;
  height: 35px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s ease-out;
  cursor: pointer;
  color: #000000;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.025);
}
.news-container-in-newspage .bottom-pagination .pagination-box .navs a:hover {
  transform: scale(1.1);
}
.news-container-in-newspage .bottom-pagination .pagination-box .navs a:active {
  transform: translateY(1px);
}
.news-container-in-newspage .bottom-pagination .pagination-box .navs a:nth-child(1) {
  color: #fff;
  background-color: #ee2c2c;
}

.container-news-inner {
  width: 80%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top:110px;
}
.container-news-inner .left-content-news-inner {
  width: 70%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.container-news-inner .left-content-news-inner .news-title {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
}
.container-news-inner .left-content-news-inner .news-title span {
  color: #023084;
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
}
.container-news-inner .left-content-news-inner .content-news {
  width: 98%;
  padding: 25px;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.container-news-inner .left-content-news-inner .content-news .news-image-container {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.container-news-inner .left-content-news-inner .content-news .news-image-container .news-image-wrapper {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.container-news-inner .left-content-news-inner .content-news .news-image-container .news-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.container-news-inner .left-content-news-inner .content-news .top-content-text-and-date {
  margin-top: 30px;
  width: 96%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.container-news-inner .left-content-news-inner .content-news .top-content-text-and-date .news-sharing-date {
  width: 96%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.container-news-inner .left-content-news-inner .content-news .top-content-text-and-date .news-sharing-date span {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 13px;
  padding-top: 5px;
  padding-bottom: 10px;
}
.container-news-inner .left-content-news-inner .content-news .top-content-text-and-date .content-text {
  width: 96%;
  height: auto;
}
.container-news-inner .left-content-news-inner .content-news .top-content-text-and-date .content-text p {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.container-news-inner .left-content-news-inner .content-news .bottom-content-text-and-image {
  width: 96%;
  height: auto;
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.container-news-inner .left-content-news-inner .content-news .bottom-content-text-and-image .image-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}
.container-news-inner .left-content-news-inner .content-news .bottom-content-text-and-image .image-container .image-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.container-news-inner .left-content-news-inner .content-news .bottom-content-text-and-image .image-container .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.container-news-inner .left-content-news-inner .content-news .bottom-content-text-and-image .news-content-text-bottom {
  width: 96%;
  height: auto;
  margin-top: 20px;
}
.container-news-inner .left-content-news-inner .content-news .bottom-content-text-and-image .news-content-text-bottom p {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.container-news-inner .left-content-news-inner .content-news .bottom-share-content {
  width: 96%;
  height: auto;
  margin-top: 4.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.container-news-inner .left-content-news-inner .content-news .bottom-share-content .bottom-share-box {
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.container-news-inner .left-content-news-inner .content-news .bottom-share-content .bottom-share-box .title-bottom-share-box {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.container-news-inner .left-content-news-inner .content-news .bottom-share-content .bottom-share-box .title-bottom-share-box span {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #000000;
}
.container-news-inner .left-content-news-inner .content-news .bottom-share-content .bottom-share-box .share-icons {
  width: 50%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.container-news-inner .left-content-news-inner .content-news .bottom-share-content .bottom-share-box .share-icons .icon-wrapper {
  overflow: hidden;
  width: 30px;
  height: 30px;
  right: 0.5rem;
  margin-left: 0.5rem;
  display: flex;
  cursor: pointer;
  border-radius: 50%;
  background-color: #dce8ff;
  transition: 0.1s ease-out;
  align-items: center;
  justify-content: center;
  position: relative;
}
.container-news-inner .left-content-news-inner .content-news .bottom-share-content .bottom-share-box .share-icons .icon-wrapper img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.container-news-inner .left-content-news-inner .content-news .bottom-share-content .bottom-share-box .share-icons .icon-wrapper:hover {
  transform: scale(1.2);
  background-color: rgb(255, 255, 255);
}
.container-news-inner .left-content-news-inner .content-news .bottom-share-content .bottom-share-box .share-icons .icon-wrapper:active {
  transform: translateY(2px);
}
.container-news-inner .right-sidebar-news-inner {
  width: 30%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 115px;
}
.container-news-inner .right-sidebar-news-inner .toptitle-sidebar {
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.container-news-inner .right-sidebar-news-inner .toptitle-sidebar h2 {
  font-size: 21px;
  font-weight: 600;
  color: #023084;
  letter-spacing: -0.5px;
}
.container-news-inner .right-sidebar-news-inner .content-sidebar {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.container-news-inner .right-sidebar-news-inner .content-sidebar .box-content {
  transition: 0.3s ease-out;
  text-decoration: none;
  margin-top: 20px;
  cursor: pointer;
  width: 100%;
  height: auto;
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.container-news-inner .right-sidebar-news-inner .content-sidebar .box-content .date {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.container-news-inner .right-sidebar-news-inner .content-sidebar .box-content .date span {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 12px;
  padding-left: 16px;
  padding-top: 20px;
}
.container-news-inner .right-sidebar-news-inner .content-sidebar .box-content .title {
  width: 90%;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.container-news-inner .right-sidebar-news-inner .content-sidebar .box-content .title span {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.container-news-inner .right-sidebar-news-inner .content-sidebar .box-content .content {
  width: 90%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.container-news-inner .right-sidebar-news-inner .content-sidebar .box-content .content p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.container-news-inner .right-sidebar-news-inner .content-sidebar .box-content:hover {
  border: 1px solid rgba(158, 145, 235, 0.63);
  transform: translateX(0.5rem);
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.0509803922);
}
.container-news-inner .right-sidebar-news-inner .content-sidebar .box-content:active {
  transform: translateX(2px);
}
.container-news-inner .right-sidebar-news-inner .for-more-sidebar-button {
  width: 100%;
  height: 48px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2559b7;
  transition: 0.3s ease-out;
  box-shadow: 0px 0px 10px 0px rgba(0, 19, 53, 0.0784313725);
}
.container-news-inner .right-sidebar-news-inner .for-more-sidebar-button:hover {
  background-color: transparent;
  border: 1px solid #023084;
  color: #000000;
}
.container-news-inner .right-sidebar-news-inner .for-more-sidebar-button:active {
  transform: translateY(2px);
}

.contact-our {
  animation: opacitybody 0.5s ease-out forwards normal;
  width: 78%;
  height: auto;
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
@keyframes opacitybody {
  from {
    opacity: 0;
    transform: translateX(-10rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.contact-our h1 {
  color: #023084;
  font-weight: 600;
  font-size: 33px;
}
.contact-our .contact-info-box {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.06);
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-our .contact-info-box .box-tel,
.contact-our .contact-info-box .box-email,
.contact-our .contact-info-box .box-location {
  width: 23%;
  text-decoration: none;
  height: 135px;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.contact-our .contact-info-box .box-tel .title-box-tel,
.contact-our .contact-info-box .box-email .title-box-tel,
.contact-our .contact-info-box .box-location .title-box-tel {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contact-our .contact-info-box .box-tel .title-box-tel span,
.contact-our .contact-info-box .box-email .title-box-tel span,
.contact-our .contact-info-box .box-location .title-box-tel span {
  color: #ee2c2c;
  font-size: 16px;
  font-weight: 600;
}
.contact-our .contact-info-box .box-tel .icon-and-regular,
.contact-our .contact-info-box .box-email .icon-and-regular,
.contact-our .contact-info-box .box-location .icon-and-regular {
  transition: 0.1s ease-out;
  text-decoration: none;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contact-our .contact-info-box .box-tel .icon-and-regular .icon-wrapper,
.contact-our .contact-info-box .box-email .icon-and-regular .icon-wrapper,
.contact-our .contact-info-box .box-location .icon-and-regular .icon-wrapper {
  overflow: hidden;
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-our .contact-info-box .box-tel .icon-and-regular .icon-wrapper img,
.contact-our .contact-info-box .box-email .icon-and-regular .icon-wrapper img,
.contact-our .contact-info-box .box-location .icon-and-regular .icon-wrapper img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
}
.contact-our .contact-info-box .box-tel .icon-and-regular span,
.contact-our .contact-info-box .box-email .icon-and-regular span,
.contact-our .contact-info-box .box-location .icon-and-regular span {
  color: #023084;
  font-weight: 400;
  font-size: 14px;
  padding-left: 10px;
}
.contact-our .contact-info-box .box-tel .icon-and-regular:hover,
.contact-our .contact-info-box .box-email .icon-and-regular:hover,
.contact-our .contact-info-box .box-location .icon-and-regular:hover {
  transform: translateX(-10px);
}
.contact-our .contact-info-box .box-social-network {
  text-decoration: none;
  width: 23%;
  height: 135px;
  margin-left: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
}
.contact-our .contact-info-box .box-social-network .title-box-tel {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contact-our .contact-info-box .box-social-network .title-box-tel span {
  color: #ee2c2c;
  font-size: 16px;
  font-weight: 600;
}
.contact-our .contact-info-box .box-social-network .icon-wrapper {
  overflow: hidden;
  width: 30px;
  height: 30px;
  transition: 0.1s ease-out;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #dce8ff;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}
.contact-our .contact-info-box .box-social-network .icon-wrapper img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-our .contact-info-box .box-social-network .icon-wrapper:hover {
  transform: scale(1.1);
  background-color: #fff;
}
.contact-our .contact-info-box .box-social-network .icon-wrapper:active {
  transform: translateY(1px);
}
.contact-our .contact-info-box .box-social-network .icon-and-regular {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}
.contact-our .contact-container {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.025);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-our .contact-container .left {
  width: 50%;
  height: auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-our .contact-container .left .titles {
  width: 80%;
  min-height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.contact-our .contact-container .left .titles h1 {
  color: #ee2c2c;
  font-weight: 600;
  font-weight: 35px;
}
.contact-our .contact-container .left .titles h2 {
  color: #00235f;
  font-weight: 600;
  font-size: 35px;
}
.contact-our .contact-container .left .titles p {
  color: rgba(0, 9, 24, 0.8);
  font-size: 14px;
  line-height: 22px;
}
.contact-our .contact-container .right-form {
  width: 50%;
  height: auto;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact-our .contact-container .right-form .name-surname,
.contact-our .contact-container .right-form .email,
.contact-our .contact-container .right-form .telephone {
  width: 100%;
  height: 50px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-our .contact-container .right-form .name-surname input,
.contact-our .contact-container .right-form .email input,
.contact-our .contact-container .right-form .telephone input {
  width: 90%;
  height: 100%;
  border-radius: 12px;
  border: none;
  outline: none;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 14px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
}
.contact-our .contact-container .right-form .telephone {
  position: relative;
}
.contact-our .contact-container .right-form .telephone select {
  position: absolute;
  left: 2.5rem;
  width: 50px;
  height: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.1s ease-out;
}
.contact-our .contact-container .right-form .telephone select:hover {
  transform: scale(1.1);
}
.contact-our .contact-container .right-form .telephone input[type=tel] {
  padding-left: 4.5rem;
}
.contact-our .contact-container .right-form .message {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  height: auto;
}
.contact-our .contact-container .right-form .message textarea {
  width: 90%;
  height: 200px;
  padding: 1rem;
  resize: none;
  border: none;
  outline: none;
  border-radius: 12px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
}
.contact-our .contact-container .right-form .submitBtn {
  width: 90%;
  height: 50px;
  background-color: #2559b7;
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  outline: none;
  transition: 0.1s ease-out;
  cursor: pointer;
  margin-top: 40px;
}
.contact-our .contact-container .right-form .submitBtn:hover {
  background-color: transparent;
  border: 2px solid #2559b7;
  color: #000000;
}
.contact-our .contact-container .right-form .submitBtn:active {
  transform: translateY(2px);
}

.certificates-container {
  width: 80%;
  margin-top: 110px;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  animation: opacitybody 0.5s ease-out forwards normal;
}
@keyframes opacitybody {
  from {
    opacity: 0;
    transform: translateX(-10rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.certificates-container h1 {
  color: #023084;
  font-weight: 600;
  font-size: 30px;
  padding-left: 15px;
}
.certificates-container .certificates {
  width: 100%;
  height: auto;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}
.certificates-container .certificates .certificates-box {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0823529412);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.1s ease-out;
  cursor: pointer;
}
.certificates-container .certificates .certificates-box .certificate-image-wrapper {
  margin-top: 1rem;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.certificates-container .certificates .certificates-box .certificate-image-wrapper img {
  width: 100%;
  height: 100%;
     object-fit: contain;
}
.certificates-container .certificates .certificates-box .title {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificates-container .certificates .certificates-box .title span {
  color: #023084;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 10px;
}
.certificates-container .certificates .certificates-box:hover {
  transform: scale(1.02);
}
.certificates-container .certificates .certificates-box:active {
  transform: translateY(1px);
}
.certificates-container .bottom-pagination {
  width: 100%;
  min-height: 60px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificates-container .bottom-pagination .pagination-box {
  min-width: 400px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificates-container .bottom-pagination .pagination-box .prevBtn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  outline: none;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.178);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.1s ease-out;
  cursor: pointer;
}
.certificates-container .bottom-pagination .pagination-box .prevBtn:hover {
  transform: translateX(-5px);
}
.certificates-container .bottom-pagination .pagination-box .prevBtn:active {
  transform: translateY(1px);
}
.certificates-container .bottom-pagination .pagination-box .nextBtn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  outline: none;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.178);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.1s ease-out;
  cursor: pointer;
}
.certificates-container .bottom-pagination .pagination-box .nextBtn:hover {
  transform: translateX(5px);
}
.certificates-container .bottom-pagination .pagination-box .nextBtn:active {
  transform: translateY(-1px);
}
.certificates-container .bottom-pagination .pagination-box .navs {
  width: 180px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificates-container .bottom-pagination .pagination-box .navs a {
  text-decoration: none;
  border-radius: 7px;
  background-color: #fff;
  list-style-type: none;
  width: 35px;
  height: 35px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s ease-out;
  cursor: pointer;
  color: #000000;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.025);
}
.certificates-container .bottom-pagination .pagination-box .navs a:hover {
  transform: scale(1.1);
}
.certificates-container .bottom-pagination .pagination-box .navs a:active {
  transform: translateY(1px);
}
.certificates-container .bottom-pagination .pagination-box .navs a:nth-child(1) {
  color: #fff;
  background-color: #ee2c2c;
}/*# sourceMappingURL=style.css.map */