* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Almarai", sans-serif;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

:root {
  --white-01-color: #ffffff;
  --white-gray-01-color: #f4f4f4;
  --blue-01-color: #3366aa;
  --gradient-color: linear-gradient(
    89deg,
    #5dbc5c -34.85%,
    #5dbc5c 23.37%,
    #36a 116.75%
  );
  --overlay-bg: rgba(0, 0, 0, 0.4);
  --overlay-02-bg: rgba(0 0 0 / 70%);
  --dark-01-color: #0a0b0a;
  --gray-01-color: #8a8585;
  --gray-02-color: #4d4d4d;
  --gray-03-color: #667085;
  --green-01-color: #5dbc5c;
  --green-02-color: #1d461d;
  --border-01: 1px solid #ffffff;
  --border-02: 1px solid rgba(168, 177, 206, 0.5);
  --shadow-01: 0px 20px 50px 0px rgba(33, 55, 137, 0.12);
}

body {
  background: var(--white-gray-01-color);
  min-height: 100vh;
  padding: 0 !important;
  line-height: 1;
  overflow: hidden;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

.section-padding--1 {
  padding: 70px 0 0 0;
}

/* ==================================
START MAIN BUTTON
==================================== */
.btn-main {
  padding: 16px 30px;
  outline: 0 solid transparent;
  box-shadow: var(--shadow-01);
  border-radius: 6px;
  background-image: var(--gradient-color);
  color: var(--white-01-color);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  border: none;
}

.btn-blue {
  background: var(--blue-01-color);
}

.cursor-pointer-event {
  cursor: pointer;
}

/* ==================================
END MAIN BUTTON
==================================== */
/* ==========================================
START BUTTON SCROLL TOP TOP
==========================================*/
#scrollToTopBtn {
  position: fixed;
  bottom: 35px;
  right: -60px;
  background:var(--gradient-color);
  color: var(--white-01-color);
  border: var(--border-02);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 3;
  transition: all 0.5s;
}
#scrollToTopBtn.active {
  right: 20px !important;
}
/* ==========================================
END BUTTON SCROLL TOP TOP
==========================================*/
/* ========================================
START LOADER 
===========================================*/
.loader-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--white-01-color);
  bottom: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-wrapper.hidden {
  animation: hidden 1.5s;
  animation-fill-mode: forwards;
}
@keyframes hidden {
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

/* ========================================
END LOADER 
===========================================*/
/* =================================================================
START ALL HEADER BANNER 
================================================================ */
/* =========================
START NAVBER HEADER 
============================ */
.all-header-banner .navbar-menu {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.2s;
  background: var(--overlay-bg);
}

.all-header-banner .navbar-menu.active {
  animation: slideDown 0.7s ease;
  background: var(--white-01-color);
  box-shadow: var(--shadow-01);
}

.all-header-banner .navbar-toggler:focus {
  box-shadow: none;
}

.all-header-banner .navbar-toggler-icon {
  width: 2.5em;
  height: 2.5em;
}

/* ANIMATION FOR SCROLL NAVBAR */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.all-header-banner .navbar-menu .navbar {
  padding: 0;
}

.all-header-banner .navbar-menu .navbar-brand img {
  width: 110px;
}

.all-header-banner .navbar-menu .nav-item .nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--white-01-color);
  padding: 0 12px;
  position: relative;
}

.all-header-banner .navbar-menu.active .nav-item .nav-link {
  color: var(--dark-01-color);
  font-weight: 500;
}

.all-header-banner .navbar-menu.active .nav-item .nav-link.active {
  color: var(--white-01-color);
}

.all-header-banner .navbar-menu.active .btn-login {
  border: var(--border-02);
}

.all-header-banner .navbar-menu .nav-item .nav-link.active::after {
  position: absolute;
  content: "";
  width: 100%;
  top: -34px;
  width: 100%;
  height: 84px;
  background: #4f5052a3;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.all-header-banner .navbar-menu .btn-login {
  background: var(--white-01-color);
  color: var(--dark-01-color);
  transition: all 0.5s;
}

.all-header-banner .navbar-menu .btn-login:hover {
  background: var(--blue-01-color);
  color: var(--white-01-color);
}
.all-header-banner .navbar-menu .lang-nav :is(.icon-arrow-lang, .icon-globe) {
  font-size: 20px;
  color: var(--white-01-color);
}
.all-header-banner .navbar-menu .lang-nav :is(.icon-arrow-lang) {
  font-size: 14px;
}
.all-header-banner
  .navbar-menu.active
  .lang-nav
  :is(.icon-arrow-lang, .icon-globe) {
  color: var(--blue-01-color);
}

.all-header-banner .navbar-menu .menu-toggle-lang .lang-nav{
  display: none !important;
}
/* =========================
END NAVBER HEADER 
============================ */
/* ======================
START SECTION SLIDER BANNER
============================ */
.all-header-banner .banner-main-area {
  position: relative;
}

.all-header-banner .section-padding {
  padding: 120px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .all-header-banner .section-padding {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .all-header-banner .section-padding {
    padding: 60px 0;
  }
}

.all-header-banner .banner-main-area .banner-one {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 750px;
  padding: 50px 0;
}

.all-header-banner .banner-main-area .banner-one::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg);
  mix-blend-mode: multiply;
}

.all-header-banner .swiper-slide-active .banner-one::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--overlay-bg);
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.all-header-banner .bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.all-header-banner .bg-image {
  transition: opacity 1s ease-in-out;
}

.all-header-banner .swiper-slide-active .bg-image {
  opacity: 1;
}

.all-header-banner .banner-main-area .info-banner {
  padding: 125px 0 130px;
  position: relative;
}

.all-header-banner .info-banner {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.all-header-banner .swiper-slide-active .info-banner {
  opacity: 1;
}

.all-header-banner .info-banner .content-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 500px;
}

.all-header-banner .info-banner .content-slide .title-head {
  position: relative;
  font-size: 20px;
  color: var(--white-01-color);
  font-weight: 400;
}

.all-header-banner .info-banner .content-slide .title {
  font-size: 38px;
  color: var(--white-01-color);
  line-height: 140%;
  font-weight: 600;
  padding: 5px 0;
}

.all-header-banner .info-banner .content-slide .text {
  font-size: 17px;
  color: var(--white-01-color);
  line-height: 1.8;
}

.all-header-banner .info-banner .content-slide .buttons-slider {
  padding-top: 22px;
}

.all-header-banner .banner-main-area .swiper-container .swiper-pagination {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 7vw;
  width: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.all-header-banner
  .banner-main-area
  .swiper-container
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  margin-bottom: 15px;
}

.all-header-banner
  .banner-main-area
  .swiper-container
  .swiper-pagination
  .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--white-01-color);
  border-radius: 50%;
  top: 50%;
  left: 53.5%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.all-header-banner
  .banner-main-area
  .swiper-container
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}

.all-header-banner .swiper-slide-active .content-slide {
  animation: animationContent 2s both 0.3s;
}

@keyframes animationContent {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  60% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* SCREEN 1199PX */
@media screen and (max-width: 1199px) {
  .all-header-banner .swiper-slide-active .banner-one::before {
    display: none;
  }

  .all-header-banner .banner-main-area .banner-one::after {
    background: var(--overlay-02-bg);
  }

  .all-header-banner .info-banner .content-slide {
    max-width: 100%;
  }

  .all-header-banner .info-banner .content-slide .text {
    max-width: 750px;
  }
}

/* SCREEN 991PX */
@media screen and (max-width: 991px) {
  .all-header-banner .info-banner .content-slide .text {
    max-width: 670px;
  }

  .all-header-banner .navbar-menu .nav-item .nav-link {
    width: fit-content;
  }
  .all-header-banner .navbar-menu .nav-item .nav-link.active::after {
    top: initial;
    bottom: 6px;
    height: 4px;
    border-radius: 50px;
  }

  .all-header-banner .navbar-menu .nav-item .nav-link {
    padding: 0 0 22px 0;
    color: var(--dark-01-color);
  }

  .all-header-banner .navbar-menu.active .nav-item .nav-link.active {
    color: var(--dark-01-color);
  }

  .all-header-banner .navbar-menu .buttons-nav {
    padding-bottom: 22px;
  }

  .all-header-banner .navbar-menu .left-content-navbar .lang-nav {
    display: none !important;
  }
  .all-header-banner .navbar-menu .menu-toggle-lang .lang-nav{
    display:flex !important;
  }
  .all-header-banner .navbar-menu .lang-nav :is(.icon-arrow-lang, .icon-globe) {
    
    color: var(--blue-01-color);
  }
  .all-header-banner .navbar-menu .nav-item .nav-link {
    font-weight: 600;
  }


  .all-header-banner .navbar-menu {
    background: var(--white-01-color);
  }

  .all-header-banner .btn-login {
    border: var(--border-02);
  }
}

/* SCREEN 767PX */
@media screen and (max-width: 767px) {
  .all-header-banner .banner-main-area .info-banner {
    padding: 180px 0 100px 0;
  }

  .all-header-banner .info-banner .content-slide .text {
    max-width: 100%;
  }

  .all-header-banner .swiper-slide-active .content-slide,
  .all-header-banner .info-banner .content-slide .title-head,
  .all-header-banner .info-banner .content-slide .buttons-slider {
    text-align: center;
    margin: auto;
    align-items: center;
  }

  .all-header-banner .info-banner .content-slide {
    padding: 0 5px;
  }

  .all-header-banner .info-banner .content-slide .title {
    padding: 10px 0;
  }

  .all-header-banner .info-banner .content-slide .title-head {
    font-size: 25px;
  }

  .all-header-banner .banner-main-area .swiper-container .swiper-pagination {
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    top: initial;
    flex-direction: row;
    gap: 20px;
  }
}

/* SCREEN 550PX */
@media screen and (max-width: 575px) {
  .all-header-banner .banner-main-area .banner-one {
    height: auto;
  }

  .all-header-banner .banner-main-area .info-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }

  .all-header-banner .banner-main-area .info-banner {
    padding: 0px;
  }

  .all-header-banner .banner-main-area .banner-one {
    padding: 25px 0 0 0;
  }

  .all-header-banner .info-banner .content-slide .title {
    font-size: 27px;
  }

  .all-header-banner .info-banner .content-slide .text {
    font-size: 14px;
  }

  .all-header-banner .info-banner .content-slide .title-head {
    font-size: 18px;
  }
}

/* SCREEN 374PX */
@media screen and (max-width: 450px) {
  .all-header-banner .info-banner .content-slide .title {
    font-size: 24px;
  }

  .all-header-banner .navbar-menu .buttons-nav .btn-main,
  .all-header-banner .navbar-menu .buttons-nav {
    width: 100%;
  }
  .all-header-banner .navbar-menu .navbar-collapse {
    padding: 0 15px;
  }

}

/* SCREEN 383PX */
@media screen and (max-width: 383px) {
  .all-header-banner .info-banner .content-slide .buttons-slider {
    flex-wrap: wrap;
    width: 100%;
  }

  .all-header-banner .info-banner .content-slide .buttons-slider .btn-main {
    width: 100%;
  }

  .all-header-banner .navbar-menu .buttons-nav .btn-main {
    font-size: 14px;
    font-weight: 600;
  }
}

/* SCREEN 318PX */
@media screen and (max-width: 322px) {
  .all-header-banner .navbar-menu .buttons-nav {
    flex-wrap: wrap;
  }
}

/* ======================
END SECTION SLIDER BANNER
============================ */
/* =================================================================
END ALL HEADER BANNER 
================================================================ */
/* ===============================================================
START MAIN
================================================================ */
/* ======================================
START SECTION MAIN CARDS BOXS
======================================== */
.main-cards-boxs .all-main-cards-boxs {
  background: var(--white-01-color);
  border-radius: 40px;
  padding: 25px;
}

.main-cards-boxs .right-content-card-boxs .header-card-box {
  margin-bottom: 25px;
}

.main-cards-boxs .right-content-card-boxs .header-card-box .title {
  font-size: 22px;
  font-weight: 500;
  color: var(--dark-01-color);
  padding-bottom: 12px;
}

.main-cards-boxs .right-content-card-boxs .header-card-box .text {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-01-color);
  line-height: 1.7;
  padding-top: 10px;
}

.main-cards-boxs .card-box-one {
  background: var(--white-gray-01-color);
  padding: 25px;
  border-radius: 40px;
}

.main-cards-boxs .card-box-one .header-card-box-one .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--green-01-color);
  padding: 0 0 10px 0;
}

.main-cards-boxs .card-box-one .header-card-box-one .text,
.main-cards-boxs .card-box-one .list-box-one .list-box-item .text {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-01-color);
  line-height: 1.7;
}

.main-cards-boxs .card-box-one .list-box-one .list-box-item .text {
  font-weight: 500;
  padding-right: 10px;
}

.main-cards-boxs .card-box-one .list-box-one .list-box-item .icon-check {
  position: relative;
  color: var(--white-01-color);
  z-index: 1;
  font-size: 17px;
}

.main-cards-boxs .card-box-one .list-box-one .list-box-item .icon-check::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--blue-01-color);
  border-radius: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.main-cards-boxs
  .left-content-card-boxs
  .card-box-one
  .header-card-box-one
  .title {
  color: var(--blue-01-color);
}

.main-cards-boxs
  .left-content-card-boxs
  .card-box-one
  .list-box-one
  .list-box-item
  .icon-check::after {
  background: var(--green-01-color);
}

.main-cards-boxs .card-box-one .list-box-one .list-box-item {
  margin-bottom: 10px;
}

/* SCREEN 550PX */
@media screen and (max-width: 550px) {
  .main-cards-boxs .all-main-cards-boxs {
    padding: 17px;
  }

  .main-cards-boxs .right-content-card-boxs .header-card-box .title {
    font-size: 18px;
  }

  .main-cards-boxs .right-content-card-boxs .header-card-box .text {
    font-size: 14px;
  }

  .main-cards-boxs .card-box-one .header-card-box-one .text,
  .main-cards-boxs .card-box-one .list-box-one .list-box-item .text {
    font-size: 13px;
  }

  .main-cards-boxs .card-box-one {
    padding: 25px 15px;
  }
}

/* ======================================
END SECTION MAIN CARDS BOXS
======================================== */
/* ======================================
START SECTION SERVICES
======================================= */
.main-services .section-title-services .title {
  font-size: 24px;
  font-weight: 500;
  color: var(--dark-01-color);
  text-align: center;
}

.main-services .section-title-services .title .bg-title {
  background: var(--blue-01-color);
  padding: 7px 17px;
  color: var(--white-01-color);
  border-radius: 20px;
  margin-left: 5px;
}

.main-services .section-title-services .text {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-01-color);
  padding: 22px 0 0 0;
  max-width: 700px;
  width: 100%;
  text-align: center;
  line-height: 1.7;
  text-align: center;
  margin: auto;
}

.main-services .all-services {
  padding-top: 70px;
}

.main-services .card-service-one {
  text-align: center;
  margin-bottom: 15px;
  background: var(--white-01-color);
  padding: 25px;
  border-radius: 16px;
  height: 100%;
  border: var(--border-01);
  transition: all 0.5s;
}

.main-services .card-service-one:hover {
  border-color: var(--green-01-color);
}

.icon-card-green {
  border-radius: 8px;
  background: var(--green-01-color);
  box-shadow: 0px 0px 14px 4px rgba(255, 255, 255, 0.5) inset;
}

.icon-card-blue {
  border-radius: 8px;
  background: var(--Secondary-Secondary, #36a);
  box-shadow: 0px 0px 14px 4px rgba(255, 255, 255, 0.5) inset;
}

.main-services .card-service-one .icon-card {
  width: 50px;
  height: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-services .card-service-one .title {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-01-color);
  padding: 17px 0 10px 0;
}

.main-services .card-service-one .text,
.orders .all-orders-cards .card-order-one .text {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-02-color);
  line-height: 1.7;
}

/* SCREEN 575PX */
@media screen and (max-width: 575px) {
  .main-services .section-title-services .title {
    font-size: 16px;
    font-weight: 700;
  }

  .main-services .section-title-services .text {
    font-size: 13px;
    max-width: 100%;
  }
}

/* SCREEN 450PX */
@media screen and (max-width: 450px) {
  .main-services .card-service-one .title,
  .orders .all-orders-cards .card-order-one .title {
    font-size: 16px;
  }

  .main-services .card-service-one .text,
  .orders .all-orders-cards .card-order-one .text {
    font-size: 14px;
  }
}

/* ==============================
END SECTION SERVICES
================================== */
/* ===============================
START SECTION ORDER
================================= */
.orders .main-order-content {
  background: #f4fbf4;
  padding: 50px 0;
}

.orders .all-orders-cards .card-order-one {
  text-align: center;
}

.orders .all-orders-cards .card-order-one .icon-order {
  border-radius: 8px;
  background: var(--gradient-color);
  box-shadow: 0px 0px 14px 4px rgba(255, 255, 255, 0.5) inset;
  font-size: 20px;
  font-weight: 600;
  color: var(--white-01-color);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.orders .all-orders-cards .card-order-one .title {
  font-size: 20px;
  font-weight: 500;
  color: var(--green-02-color);
  padding: 17px 0 10px 0;
}

.content-header-title {
  width: fit-content;
}

.content-header-title {
  --radius: 0.4em;
  --color: var(--green-01-color);
  line-height: 1.8;
  padding: 0 1em calc(2 * var(--radius));
  border-radius: 0 29px 37px 0px;

  background: radial-gradient(100% 50% at left, var(--color) 98%, #0000 101%)
      100% 0/0.5lh calc(100% - 2 * var(--radius)),
    radial-gradient(100% 50% at right, #0005 98%, #0000 101%) 0 100% /
      var(--radius) calc(2 * var(--radius)),
    conic-gradient(
        from 90deg at var(--radius) calc(100% - 2 * var(--radius)),
        #0000 25%,
        var(--color) 0
      )
      0 0 / calc(101% - 0.5lh) 100%;
  background-repeat: no-repeat;
}

.content-header-title .text-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-01-color);
  padding: 1rem;
}

.custom-section .content-orders-info {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  padding-top: 35px;
}

.custom-section .content-orders-info .title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-01-color);
}

.custom-section .content-orders-info .text {
  font-size: 17px;
  font-weight: 500;
  color: var(--dark-01-color);
  line-height: 1.7;
  max-width: 800px;
  width: 100%;
}

/* SCREEN 575PX */
@media screen and (max-width: 575px) {
  .custom-section .content-orders-info .text {
    max-width: 100%;
  }
}

/* SCREEN 575PX */
@media screen and (max-width: 450px) {
  .custom-section .content-orders-info .title {
    font-size: 17px;
  }

  .custom-section .content-orders-info .text {
    font-size: 14px;
  }

  .content-header-title .text-title {
    font-size: 16px;
  }
}

/* ===============================
END SECTION ORDER
================================= */
/* ================================
START SECTION BLOG
==================================== */

.blogs {
  background: var(--white-01-color);
}

.blogs .all-info-blog {
  padding: 35px 0;
}

.blogs .header-blog-content {
  padding-bottom: 25px;
}

.blogs .header-blog-content .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-01-color);
  padding-bottom: 10px;
}

.blogs .header-blog-content .text {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-01-color);
  max-width: 700px;
  width: 100%;
  line-height: 1.8;
}

.blogs .header-blog-content .show-all {
  border: var(--border-02);
  padding: 12px 17px;
  background: var(--white-gray-01-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-01-color);
  text-decoration: none;
  transition: all 0.5s;
}

.blogs .header-blog-content .show-all:hover {
  background: var(--green-01-color);
  border-color: var(--green-01-color);
  color: var(--white-01-color);
}

.blogs .all-blogs .blog-card-one {
  height: 100%;
}

.blogs .all-blogs .blog-card-one .image-card-blog img {
  width: 100%;
  height: 300px;
  border-radius: 12px;
}

.blogs .all-blogs .blog-card-one .info-card-blog {
  padding-top: 15px;
}

.blogs .all-blogs .blog-card-one .info-card-blog .date-blog {
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-01-color);
}

.blogs .all-blogs .blog-card-one .info-card-blog .title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-01-color);
  padding: 15px 0;
  text-decoration: none;
  transition: all 0.5s;
  line-height: 1.6;
}

.blogs .all-blogs .blog-card-one .info-card-blog .title:hover,
.blogs .all-blogs .blog-card-one .info-card-blog .text .link-more:hover {
  color: var(--green-01-color);
}

.blogs .all-blogs .blog-card-one .info-card-blog .title:hover svg path {
  stroke: var(--green-01-color);
}

.blogs .all-blogs .blog-card-one .info-card-blog .text {
  font-size: 17px;
  font-weight: 500;
  color: var(--gray-03-color);
  line-height: 1.7;
}

.blogs .all-blogs .blog-card-one .info-card-blog .text .link-more {
  color: var(--dark-01-color);
  text-decoration: none;
  transition: all 0.5s;
}

.blogs .all-blogs .blog-card-one .info-card-blog .badge-blog {
  width: fit-content;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 500;
  color: var(--green-01-color);
  background: #e4f4e4;
  margin-top: 15px;
}

.blogs .main-left-content-blog {
  padding-right: 15px;
}

.blogs .main-left-content-blog .blog-card-one {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
  padding-bottom: 15px;
}

.blogs .main-left-content-blog .blog-card-one .info-card-blog {
  padding: 0 !important;
}

.blogs .main-left-content-blog .blog-card-one .image-card-blog {
  height: 100%;
}

.blogs .main-left-content-blog .blog-card-one .image-card-blog img {
  height: 100% !important;
  width: 200px !important;
}

.blogs
  .main-left-content-blog
  .row
  .col-12:nth-child(2)
  .blog-card-one
  .badge-blog {
  background: #dfe9f5;
  color: var(--blue-01-color);
}

/* SCREEN 1199PX */
@media screen and (max-width: 1199px) {
  .blogs .all-blogs .blog-card-one {
    height: auto;
  }

  .blogs .all-blogs .blog-card-one .image-card-blog,
  .blogs .main-left-content-blog .blog-card-one .image-card-blog img {
    width: 100% !important;
  }

  .blogs .all-blogs .blog-card-one .image-card-blog img {
    height: 350px;
  }

  .blogs .main-left-content-blog .blog-card-one {
    flex-direction: column;
    padding: 0;
    height: auto;
  }

  .blogs .main-left-content-blog {
    padding-right: 0;
  }

  .main-left-content-blog .blog-card-one .image-card-blog {
    height: auto;
  }

  .main-left-content-blog .blog-card-one .image-card-blog img {
    width: 100% !important;
    height: 220px !important;
  }
}
/* SCREEN 991PX */
@media screen and (max-width: 991px){
  .blogs .header-blog-content{
    gap: 35px !important;
    margin-bottom: 20px;
  }
}
/* SCREEN 767PX */
@media screen and (max-width: 767px) {
  .blogs .main-left-content-blog .blog-card-one .image-card-blog img,
  .blogs .all-blogs .blog-card-one .image-card-blog img {
    height: 280px !important;
  }
}

/* SCREEN 550PX */
@media screen and (max-width: 550px) {
  .blogs .all-blogs .blog-card-one {
    margin-bottom: 12px;
  }

  .blogs .all-blogs .blog-card-one .info-card-blog .title {
    font-size: 16px;
  }

  .blogs .all-blogs .blog-card-one .info-card-blog .title {
    font-size: 14px;
  }
}

/* ================================
END SECTION BLOG
==================================== */
/* ====================================
START SECTION JOIN US
===================================== */
.join-us .all-join-us {
  background: var(--white-01-color);
  border-radius: 40px;
  padding: 45px 15px;
}

.join-us .content-header-title {
  --color: var(--blue-01-color);
}

.join-us .content-orders-info {
  padding: 0;
}
p{
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.blog-view p{
  font-size: 15px;
  padding: 5px;
  margin: 5px;
  line-height: 24px;
}
.btn-pricing{
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
}
.dropdown-menu{
  padding: 10px;
}
.dropdown-item{
  text-align: end;
  font-size: 15px;
  border-radius: 5px;
  padding: 5px;
}
.dropdown-item:focus, .dropdown-item:hover{
  background-color: var(--blue-01-color);
  color: white;
}

/* ====================================
END SECTION JOIN US
===================================== */
/* ===============================================================
END MAIN
================================================================ */

/* ==============================================================
START FOOTER
================================================================ */
.footer {
  background: var(--gradient-color);
  padding: 20px 0;
  margin-top: 75px;
  height: 100%;
}

.footer .right-footer .icon-social-li .link-social img {
  width: 18px;
  height: 18px;
}

.footer .right-footer .icon-social-li .link-social {
  width: 38px;
  height: 38px;
  background: var(--white-01-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .left-content-footer .list-footer-links .link-one-li .link-footer-one,
.footer .middle-content-footer .text-info-footer {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-01-color);
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }

  .footer .row {
    gap: 22px;
  }
}

@media screen and (max-width: 450px) {
  .footer .left-content-footer .list-footer-links {
    gap: 20px !important;
  }

  .footer
    .left-content-footer
    .list-footer-links
    .link-one-li
    .link-footer-one {
    font-size: 14px;
    font-weight: 600;
  }
}

/* ==============================================================
END FOOTER
================================================================ */
