html {
  --golden: #edc52f;
  --golden-color: #FFD700;
  --main-font: #e5bb32;
  --secondary-font: #3c4a51;
  --section-padding: 3rem;
}
* {
  font-family: "Rubik", serif;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  font-display: swap;
}

html[lang="en"] section.blog-head,
html[lang="en"] section.blog-head * {
  direction: ltr;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Fustat", serif;
  font-weight: bold;
}

*:focus {
  outline: none !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}
.mobile{
  display: none !important;
}
@media screen and (max-width:768px) {
  .mobile{
    display: block !important;
  }
}
section{
  width: 100%;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
section > h2 {
  width: 100%;
  background: linear-gradient(to right, #dea420 55%, #af8012);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: 100%;
  margin: 0px auto 2rem;
}
.photo-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.popup-verlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 7;
  display: none;
}
.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}


button.send {
  direction: ltr;
  width: fit-content;
  margin: 0px auto;
  background: linear-gradient(to right, #dea420 55%, #af8012);
  color: white;
  padding: 0.7em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

button.send span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

button.send svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

button.send:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}



button.send:hover span {
  transform: translateX(180%);
}

button.send:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

.main {
  -webkit-overflow-scrolling: touch;
  position: relative;
  background-color: #f8f3ff;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  overflow-y: auto;
}

/* start toolbar-mobile */
.toolbar-mobile {
  padding: 10px;
  z-index: 80;
  display: none;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #dad479;
}
.toolbar-mobile a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .4rem;
}
.toolbar-mobile  a .svg {
  transition: all 0.3s;
    padding: .5rem;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    color: var(--golden);
    fill: currentColor;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3), inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
}
.toolbar-mobile  a span {
  font-size: .7rem;
  font-weight: 500;
  background: linear-gradient(to right, #dea420 55%, #af8012);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .toolbar-mobile {
    display: flex;
  }
}

/* START HEADER */
section.hero .header {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  z-index: 7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: .3s ease;
}
@media (min-width: 1110px) {
  section.hero .header {
    padding: 1.5rem 5rem;
  }
}
section.hero .header  .header-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: opacity 0.5s;
}
section.hero .header  .header-logo *  {
  transition: .3s;
}
section.hero .header  .header-logo:hover * {
  opacity: 0.8;
}

section.hero .header  .header-logo .logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

section.hero .header  .logo-text {
  width: 120px;
}
@media only screen and (min-width: 500px) {
  section.hero .header  .header-logo .logo-img {
    width: 70px;
    height: 70px;
  }

}
@media (min-width: 576px) {
  section.hero .header  .logo-text {
    width: 190px;
  }
}
@media (max-width: 374px) {
  section.hero .header  .logo-text {
    display: none;
  }
}
section.hero .header .header-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

section.hero .header .header-links a,
section.header-links a {
  display: inline-block;
  font-size: 1.3rem;
  color: #ffffff;
  padding: 7.5px 20px;
  transition: color 0.5s, background 0.5s;
}
section.hero .header .header-links a:hover,
section.header-links a:hover {
  color: var(--golden);
}
section.header-links {
  position: fixed;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 0px;
  width: 250px;
  height: 100vh;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: .3s ease;
  z-index: 99;
  
}
section.header-links .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}
section.header-links .title h4 {
  background: linear-gradient(to right, #dea420 55%, #af8012);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0px;
}
section.header-links .title .icon-x {
  color: var(--secondary-font);
  font-size: 1.7rem;
  cursor: pointer;
}
section.header-links a{
  color: var(--secondary-font);
  border-bottom: 1px solid #ccc;
  width: 100%;
}

section.header-links a i {
  color: var(--golden);
  font-size: 1.1rem;
}

section.hero .header .btn-background {
  border-radius: 16px;
  border: 1px solid #1a1a1a;
  background: rgba(74, 74, 74, 0.39);
  mix-blend-mode: luminosity;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(15px);
  width: fit-content;
  padding: .5rem;
  display: none;
  justify-content: center;
  align-items: center;
  margin-right: 1.2rem;
}
@media (max-width: 1100px) {
  section.hero .header .btn-background {
    display: flex;
  }
  section.hero .header .header-links {
    display: none;
  }
}

section.hero .header .menu__icon {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  width: 25px;
  height: 25px;
  padding: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s;
}

section.hero .header .menu__icon span {
  width: 100%;
  height: 0.15rem;
  border-radius: 0.125rem;
  background-color: rgb(222 164 32);
  box-shadow: 0 .5px 2px 0 hsla(0, 0%, 0%, .2);
  transition: width .4s, transform .4s, background-color .4s;
}

section.hero .header .menu__icon :nth-child(1) {
  width: 75%;
}

section.hero .header .menu__icon :nth-child(2) {
  width: 50%;
}

section.hero .header .btn-background:hover .menu__icon {
  transform: translateY(34%) rotate(-90deg);
}

section.hero .header .btn-background:hover .menu__icon span {
  width: .25rem;
  background-color: rgb(222 164 32);
}
.header .box-lang,
.header .box-lang div {
  color: #ffffff;
  width: fit-content;
}
.header .header-lang {
  width: fit-content;
  color: #FFD700;
  transition: color 0.5s;
}
.header .header-lang i {
  color: #dcb728;
  animation: rotate 5s linear infinite;

}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg); 
  }
}
/* START HERO */
section.hero .landing{
  height: 100vh;
}
section.hero .landing .content .landing-swiper {
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 100%;
    height: 50%;
    top:auto;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
    transition: 1s;
}
section.hero .landing .content .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 5;
    padding: 1rem 1rem 2rem;  
    color: #ffffff;
}
section.hero .landing .content .info h1 {
  font-size: 2rem;
}
@media (min-width: 992px) {
  section.hero .landing .content .info h1 {
    margin-top: 1rem;
    font-size: 50px;
  }
}
section.hero .landing .content .landing-swiper .slide,
section.hero .landing .content .banner .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
    overflow: hidden;
    z-index: 1;
}
section.hero .landing .content .banner .slide img {
  width: 100%; 
  object-fit: cover;
}
section.hero .landing .content .landing-swiper .slide.opa-city {
  opacity: 0;
  transition: .4s;
}
section.hero .landing .content .landing-swiper .slide.active {
  opacity: 1;
  transition: .4s;
}
section.hero .landing .content .banner{
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 83%, 0% 100%);
  height: 59%;
  z-index: 2;
  transition: 1s;
}
section.hero .landing .content  .landing-swiper.photo-overlay::after {
  background: rgba(0, 0, 0, 0.4);
}
section.hero .landing .content  .banner.photo-overlay::after {
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 320px) {
  section.hero .landing .content .info {
    padding-bottom: .5rem;
  }

}
@media (min-width: 768px) {
  section.hero .landing .content .banner {
    width: 69.8%;
    height: 100%;
    right: 0%;
    left: auto;
    clip-path: polygon(29% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  section.hero .landing .content .landing-swiper {
    clip-path: polygon(0 0, 100% 0, 59% 100%, 0% 100%);
    height: 100%;
    width: 50%;
  }
  section.hero .landing .content .info {
    padding: 1rem 1rem 1rem 95px;
    width: fit-content;
    justify-content: center;
  }
  section.hero .landing .content .banner .slide {
    background-image: url("/assets/img/dr/dr-14.webp");
    background-position: center 35%;
  }
  section.hero .landing .content .banner .slide img {
    display: none;
  }
}

section.hero .landing button.send {
  margin-top: 2rem;
  font-weight: bold;
  font-family: "Amiri", serif;
}

@media (max-width: 370px) {
  section.hero .landing .content .reserve-btn {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  section.hero .landing .content .banner .slide.banner-slide {
    height: 110% !important;
  }
  section.hero .landing .content .mobile-hide {
    display: none;
  }
  section.hero .landing .content .banner.banner-gallery {
    height: 100%;
  }
  section.gallery-main {
    padding-top: 0px;
  }
}
/* START ABOUT */
section.about-dr {
  background: #ffffff;
}

section.about-dr > .content.container {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
section.about-dr .content .box-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


section.about-dr .content .dr {
  width: 76%;
  border-radius: 15px;
  display: flex;
  position: relative;
}
@media (max-width: 576px) {
  section.about-dr .content .dr {
    margin-right: 4rem;
  }
}
section.about-dr .content .dr img:nth-of-type(2),
section.about-dr .content .dr img:nth-of-type(3) {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: .4s;
}
section.about-dr .content .dr img:nth-of-type(2) {
  transform: rotate(6deg);
  background-image: url("/assets/img/dr/transparent-prism-with-jeweld.jpg");
  top: 15px;
  left: 26px;
  z-index: 2;
}
section.about-dr .content .dr img:nth-of-type(3) {
  background-image: url("/assets/img/dr/dr-36.webp");
  transform: rotate(11deg);
  top: 35px;
  left: 47px;
  z-index: 1;
}
section.about-dr .content .dr.hover-effect img:nth-of-type(2),
section.about-dr .content .dr.hover-effect img:nth-of-type(3) {
  transform: rotate(0deg);
  top: 0;
  left: 0;
}
section.about-dr .content .dr img:nth-of-type(1) {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  transition: .4s;
}

section.about-dr .content .info {
  flex: 1;
  width: 100%;
}

@media (min-width: 768px) {
  section.about-dr .content .info {
    width: calc(60% - 4rem);
  }
  section.about-dr .content .info .text {
    font-size: 1.1rem;
  }
  section.about-dr .content .box-img {
    width: calc(40%);
  }
}
section.about-dr .content .info .dr-data,
section.about .dr-data {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

section.about-dr .content .info .toggle-container,
section.about .toggle-container {
  display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
      gap: 1rem .4rem;
      flex-wrap: wrap;
}

section.about-dr .content .info .toggle-container .item,
section.about .toggle-container .item {
  cursor: pointer;
  padding: 10px 20px;
  border: 2px solid gold;
  border-radius: 20px;
  color: #3c4a51;
  background-color: #fff;
  transition: all 0.3s;
}

section.about-dr .content .info .toggle-container .item.active,
section.about .toggle-container .item.active {
  background: linear-gradient(to right, #dea42096 55%, #af8012d4) !important;
}

section.about-dr .content .info .content,
section.about .content .content {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transform: scale(0);
  opacity: 0;
  transition: transform 1s ease, opacity .4s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

section.about-dr .content .info .content.active,
section.about .content .content.active {
  position: relative;
  transform: scale(1);
  opacity: 1;
}
section.about-dr .content .info .content ul,
section.about .content .content ul  {
  list-style: none;
  padding: 0;
  margin: 0;
}
section.about-dr .content .info .content ul i,
section.about .content .content ul i {
  padding-left: .4rem;
  color: #cea953;
}

/* START experiences  */
section.experiences {
  padding-bottom: 5rem;
  background: linear-gradient(135deg, #75746817, rgba(117, 116, 104, 0.1) );
}
section.experiences .con {
  min-height: 350px;
  width: 75%;
  margin: 0px auto;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  position: relative;
}

section.experiences .con .logo-face,
section.about .content.container .item .logo-face {
  position: absolute;
  top: -3%;
  opacity: .2;
  width: 101px;

}
section.about .content.container .item .logo-face {
  right: -27%;
  transform: scaleX(-1);
}
section.experiences .con.qatar .logo-face,
section.experiences .con.ksa .logo-face {
  right: -27%;
  transform: scaleX(-1);
}
section.experiences .con.kuwait .logo-face {
  left: -27%;

}

section.experiences .con .box-img {
  position: absolute;
  z-index: 6;
}

section.experiences .con .box-img .certificate {
  position: absolute;
  width: 134%;
  border-radius: 0px 15px;
  background: rgba(255, 255, 255, 35%);
  backdrop-filter: blur(35px);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  padding: .7rem;
  align-items: center;
  bottom: -16%;
  background: linear-gradient(to right, #c4c4c4 0, #fff 10%, #242020 20%);
  background-position: 0;
  -webkit-background-clip: text;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
}
@media (max-width: 350px) {
  section.experiences .con .box-img .certificate {
    max-width: 100%;
  }
}
@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}

section.experiences .con.qatar .box-img .certificate  {
  border-radius: 0px 15px;
}
section.experiences .con.kuwait .box-img .certificate  {
  border-radius: 15px 0px;
}
section.experiences .con .box-img .certificate ul {
  font-size: .8rem;
  padding: 0;
  margin: 0;
  margin-left: .5rem;
  flex: 1;
  list-style-position: inside;
  list-style: initial;
}
section.experiences .con .box-img .certificate ul li:not(:last-child) {
  margin-bottom: .5rem;

}
section.experiences .con .box-img .certificate ul li {
  margin-right: 22px;
}

section.experiences .con .box-img .certificate img {
  width: 30%;
}
section.experiences .con .box-img > img{
  width: 250px;
}

section.experiences .con .info {
  flex: 1;
  text-align: left;
  color: #3c4a51;
  background: linear-gradient(45deg, #e2e9da1f, #d8d69b96);
  position: relative;
  overflow: hidden;
  padding: 10px 0px 23px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 23px;
}
section.experiences .con.qatar .info,
section.experiences .con.ksa .info {
  padding-inline-end: 2rem;
  padding-inline-start: 7rem;
  text-align: left;
}
section.experiences .con.kuwait .info {
  padding-inline-start: 2rem;
  padding-inline-end: 7rem;
  text-align: right;
}
section.experiences .con .info div {
  font-family: "Playfair", serif;
}
section.experiences .con .info div:nth-of-type(2),
section.about .content.container .item-exper .text div:nth-of-type(1){
  font-size: 2.3rem;
    font-weight: 900;
    background: linear-gradient(to right, #d4af37, #f5b800, #f1c27d);
    -webkit-background-clip: text;
    color: transparent;
    font-family: "Fustat", serif;
}
section.experiences .con .info div:nth-of-type(3),
section.about .content.container .item-exper .text div:nth-of-type(2)  {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Fustat", serif;
}

section.experiences .con.qatar .info p,
section.experiences .con.ksa .info p {
  margin-right: auto;
}
section.experiences .con.kuwait .info p {
  margin-left: auto;
}
section.experiences button.send {
  margin: 0px;
  font-size: .9rem;
  font-weight: 600;
}
section.experiences button.send:hover svg,
section.hero .landing button.send:hover svg {
  transform: translateX(2.2em) rotate(45deg) scale(1.1);
}
html[lang="en"] section.experiences button.send:hover svg,
html[lang="en"] section.hero .landing button.send:hover svg {
  transform: translateX(4.5em) rotate(45deg) scale(1.1);
}
section.experiences .con.qatar button.send,
section.experiences .con.ksa button.send {
  margin-right: auto;
}
section.experiences .con.kuwait button.send {
  margin-left: auto;
}
@media (max-width: 768px) {
  section.experiences .con {
    flex-direction: column;
    gap: 6rem;
    width: 100%;
  }
  section.experiences .con.qatar {
    margin-top: -7rem;
  }
  section.experiences .con .box-img {
    position: relative;
  }
  section.experiences .con .info {
    padding: 1rem !important;
  }
  section.experiences .con .box-img .certificate {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 769px) {
  section.experiences .con .box-img {
    bottom: 5%;
  }
  section.experiences .con {
    margin-top: 5rem;
  }
  section.experiences .con.qatar .box-img, section.experiences .con.ksa .box-img {
    right: -10%;
  }
  section.experiences .con.kuwait .box-img {
    left: -10%;
  }
  section.experiences .con.qatar .box-img .certificate,
  section.experiences .con.ksa .box-img .certificate {
    left: -45%;
  }
  section.experiences .con.kuwait .box-img .certificate {
    left: 11%;
  }
  section.experiences .con .info p {
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  section.experiences .con {
    margin-top: 3rem;
  }
  section.experiences .con .box-img {
    bottom: 14%;
  }
}
section.experiences .box{
  position: relative;
  max-width: 80%;
  margin: 0px auto;
  min-height: 263px;
}
section.experiences .box:nth-of-type(1) {
  margin-top: 4rem;
}
section.experiences .box .box-img {
  width: fit-content;
  position: relative;
}

section.experiences .box:nth-of-type(2) .box-img {
  margin-right: auto;
}
section.experiences .box .box-img img {
  width: 250px;
  position: relative;
  z-index: 2;
}
section.experiences .box .box-img .certificate{
  position: absolute;
  width: 134%;
  border-radius: 0px 15px;
  background: rgba(255, 255, 255, 35%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: .7rem;
  align-items: center;
  background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  text-decoration: none;
}
@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 335px;
  }
  100% {
    background-position: 335px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 335px;
  }
  100% {
    background-position: 335px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 335px;
  }
  100% {
    background-position: 335px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 335px;
  }
  100% {
    background-position: 335px;
  }
}
section.experiences .box:nth-of-type(1) .box-img .certificate {
  bottom: -26%;
  left: -34%;
  z-index: 2;

}
section.experiences .box:nth-of-type(2) .box-img .certificate {
  bottom: -16%;
  left: 11%;
  border-radius: 15px 0px;
}
section.experiences .box:nth-of-type(3) .box-img .certificate {
  bottom: -11%;
  left: -45%;
}
section.experiences .box .box-img .certificate ul {
  font-size: .8rem;
  padding: 0;
  margin: 0;
  flex: 1;
  list-style-position: inside;
}
section.experiences .box .box-img .certificate img {
  width: 30%;
}
section.experiences .box > .text{
  padding: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
  text-align: left;
  color: #3c4a51;
  background: linear-gradient(135deg, rgb(117 116 104 / 1%), rgb(117 116 104 / 4%));
  padding-inline-end: 2rem;
  padding-inline-start: 7rem;
  background: linear-gradient(45deg, #e2e9da1f, #d8d69b96);
}
section.experiences .box .text div {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Playfair", serif;

}
section.experiences .box .text div:nth-of-type(1) {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(to right, #d4af37, #f5b800, #f1c27d);
  -webkit-background-clip: text;
  color: transparent;
}
section.experiences .box .text p {
  width: 80%;
  text-align: left;
  margin-right: auto;
}
section.experiences .box:nth-of-type(1) .text  {
  left: 0;
}
section.experiences .box:nth-of-type(2) .text  {
  right: 0;
}
section.experiences .box:nth-of-type(3) .text  {
  left: 0;
}
section.experiences .con .info .circle,
section.about .content.container .item .circle {
  width: 190px;
  height: 190px;
  position: absolute;
  top: 29%;
  left: 61%;
  border-radius: 50%;
  border: 35px solid rgba(255, 255, 255, 24%);
  transition: all .8s ease;
  filter: blur(.5rem);
  z-index: 5;
  pointer-events: none;
  filter: blur(0rem);
  overflow: hidden;
}
section.experiences .con.kuwait .info .circle {
  right: 61%;
}

@media (max-width: 768px) {
  section.about .content.container {
    width: 100% !important;
  }
  section.about .content.container .item {
    flex-direction: column !important;
    gap: 3rem !important;
    overflow: hidden;
  }
  section.about .content.container .item .box-img,
  section.about .content.container .item .text {
    width: 100% !important;
  }
  section.experiences .con .info div:nth-of-type(2),
  section.about .content.container .item-exper .text div:nth-of-type(1) {
    font-size: 2rem;
  }
  section.experiences .con .info div:nth-of-type(3), section.about .content.container .item-exper .text div:nth-of-type(2) {
    font-size: 1.5rem;
  }
}
section.videos {
  background-color: #ffffff;
}
section.videos .content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

section.videos .content .videos-con{
  width: 80%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}


section.videos .content .videos-con .swiper-slide {
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    position: relative;
}
@media (max-width: 568px) {
  section.videos .content .videos-con .swiper-slide {
    font-size: 14px;
  }
}
section.videos .content .videos-con .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 3;
  pointer-events: none;
}
section.videos .content .videos-con .swiper-slide .title {
  width: 100%;
  padding: .7rem;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-weight: bold;
  z-index: 4;
  pointer-events: none;
  background: #0000004a;
}
section.videos .content .videos-con .swiper-slide video {
  display: none;
}
  section.videos .content .videos-con .swiper-pagination {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 6;
  }
  section.videos .content .videos-con .swiper-pagination span {
    position: relative !important;
    z-index: 10 !important;
  }
  .main-video {
    position: absolute;
    top: -16%;
    right: -52%;
    width: 89%;
    height: 167%;
    border-radius: 100px;
    transform: rotate(33deg);
    overflow: hidden;
    display: none;
  }
  .main-video::after {
    background-color: rgba(0, 0, 0, 0.1);
  }
  @media (min-width: 1200px) {
    section.videos h2 {
      width: fit-content;
      transform: translateX(-90%);
    }
    .main-video {
      display: block;
    }
    section.videos .content .videos-con {
      transform: translateX(-22%);
    }
  }
  .main-video img {
    transform: rotate(-33deg);
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: -34%;
    left: -11%;
    object-fit: cover;
  }

/* START articles */
.last-articles {
  width: 100%;
  padding-top: 0;
  padding-bottom: 40px;
  background: #ffffff;
}
.last-articles h2 {
  color: var(--main-font);
  text-align: center;
  padding-top: var(--section-padding);
}

.last-articles .l-a-s-c {
  position: relative;
  margin-top: 50px;
}

.last-articles .blog-swiper {
  z-index: 0;
  position: static;
  width: 100%;
  overflow: hidden;
}

.last-articles .swiper-wrapper {
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.last-articles .blog-swiper .card {
  width: 100%;
  height: 230px;
  border-radius: 15px;
  background: #c0c0c085;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.last-articles .blog-swiper .card::before {
  content: "";
  height: 100px;
  width: 100px;
  position: absolute;
  top: -20%;
  left: -12%;
  border-radius: 50%;
  border: 35px solid rgba(255, 255, 255, 24%);
  transition: all .8s ease;
  filter: blur(.5rem);
  z-index: 5;
  pointer-events: none;
}

.last-articles .blog-swiper .text {
  flex-grow: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  color: aliceblue;
  font-weight: 900;
  font-size: 1.2em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.last-articles .blog-swiper .text::after { 
  background: rgba(0, 0, 0, 0.2); 
}
.last-articles .blog-swiper .text::before {
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.last-articles .blog-swiper .text .title {
  bottom: 7%;
  right: 5%;
  z-index: 3;
}
html[lang="en"] .last-articles .blog-swiper .text .title {
  direction: ltr;
  padding-left: .5rem;
}
.last-articles .blog-swiper .subtitle {
  font-size: .6em;
  font-weight: 300;
  color: rgba(240, 248, 255, 0.691);
}

.last-articles .blog-swiper .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px auto;
  padding: .3rem;
  width: 250px;
  border-radius: 0px 0px 15px 15px;
  overflow: hidden;
  background-color: rgba(247, 234, 234, 0.589);
}
.last-articles .blog-swiper .info i {
  color: #dcc33e;
}
.last-articles .blog-swiper .card:hover::before {
  width: 190px;
  height: 190px;
  top: -19%;
  left: 62%;
  filter: blur(0rem);
}
/* START location */
.contact-us {
  width: 100%;
  background-color: transparent;
  padding: 0px;
  position: relative;
  background-image: url("/assets/img/contact-bg.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.contact-us::after {
  background: rgba(0, 0, 0, 0.4);
}
.contact-us .content {
  flex-wrap: wrap;
  gap: 1.6rem 1rem;
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
  z-index: 4;
}
.contact-us .content .info,
.contact-us .content .form{
  width: 100%;
}
@media (min-width: 768px) {
  .contact-us .content .info,
  .contact-us .content .form{
  width: calc(50% - 1rem);
}
}
@media (min-width: 992px) {
  .contact-us .content .info{
    width: calc(70% - 1rem);
  }
  .contact-us .content .form {
    width: 30%;
  }
  .contact-us .content .info p {
    max-width: 500px;
  }
}
.contact-us .content .info *{
  color: #ffffff;
}
@media (max-width: 576px) {
  .contact-us .content .info p:first-of-type {
    display: none;
  }
}
.contact-us .content .form {
  display: flex;
  flex-direction: column;
  align-self: center;
  font-family: inherit;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-us .content .form-field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: .3rem 0.6em;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  color: #ffffff;
}
.contact-us .content .form-field input::placeholder {
  color: #ffffff;
}
.contact-us .content select.field {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #ffffff;
  padding-inline: 1em;
}
.contact-us .content .input-field {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #ffffff;
}
.contact-us .content .form-check {
  color: #ffffff;
}
.contact-us .content .form-check-input:checked {
  background-color: #c39018;
  border-color: #dea420;
}
.contact-us .content button.send  {
  font-size: 20px;
  font-family: inherit;
}
.contact-us .content button.send:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}
/* START BLOG PAGE */
section.blog-head {
  display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      margin-top: 30px;
      margin-bottom: 50px;
      width: 100%;
}
@media (max-width: 768px) {
  section.blog-head {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  section.blog-head {
    margin-bottom: 20px;
  }
}
section.blog-head h1 {
  position: absolute;
  color: white;
  top: 50%;
  z-index: 111;
  transform: translateY(-50%);
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  text-align: center;
  width: 100%;
}
.blog-img-container {
  width: 75%;
  height: 50vh;
  position: relative;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, .5);
  border-radius: 15px;
}
.blog-img-container::after {
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  section.blog-head .blog-img-container {
    height: 40vh;
    width: 90%;
  }
}
section.blog-head .blog-img-container img {
  width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
    position: relative;
}
.blog-img-container::before {
  z-index: 2;
  backdrop-filter: blur(2px);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.2);
}
section.blog-head .blog-information {
  width: fit-content;
  padding: .5rem 2rem;
  background-color: #f4f4f4;
  position: absolute;
  bottom: 0;
  left: 50%;
  border-radius: 5rem;
  transform: translate(-50%, 50%);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #707a8f;
  font-size: .9rem;
  font-weight: 500;
  direction: ltr;
  gap: 15px;
  z-index: 4;
}

.breadcrumbs a:not(:last-of-type),
.breadcrumbs span {
  font-weight: bold;
  transition: color 0.5s;
  background: linear-gradient(to right, #dea420 55%, #af8012);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.breadcrumbs a:hover {
  color: #e94f84;
}

.breadcrumbs a.active,
.breadcrumbs i {
  color: #444;
  font-weight: bold;
}
section.b-container {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: start;
  padding: 0 15px;
}
section.b-container .blog-content {
  width: 75%;
  margin-bottom: 30px;
}
section.b-container .blog-content .desc p {
  width: 100%;
  color: #3c4a51;
  font-weight: bold;
  font-size: 1.2rem;
}
section.b-container .blog-body{
  color: #3c4a51;
}
section.b-container .blog-body  div {
font-weight: bold;
font-size: 1.2rem;
margin: 1.5rem 0px;
font-family: "Fustat", serif;

background: linear-gradient(to right, #dea420 55%, #af8012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
section.b-container .blog-body ul {
  margin: .7rem 0px;
}

/* START ABOUT page */
.hero .box-imgs {
  height: 400px;
  gap: 2rem;
}
.hero .box-imgs .item{
  display: flex;
  flex-direction: column;
  height: 400px;
  width: calc((100% / 3) - 9rem);
}
/* gallery */
.group {
  display: flex;
      justify-content: center;
      align-items: center;
      width: fit-content;
      margin: 0 auto;
}
.group .item {
  background-color: #282828;
  color: white;
  padding: 12px 0px;
  width: 112px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  flex: 1;
  text-align: center;
  border-radius: 0;
  position: relative;
}
.group .item.left {
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}
.group .item.right {
  border-top-right-radius: 18px !important;
  border-bottom-right-radius: 18px !important;
}
.group .item.active {
  background: linear-gradient(to right, #dea420 55%, #af8012);
}
section.gallery-main .gallery-title {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.gallery-main .gallery-title h2 {
  font-size: 30px;
  font-family: "ash-font";
}

section.gallery-main {
  width: 100%;
  margin-bottom: 0px !important;
  background-color: transparent;
  margin-top: 2rem;
}


.gallery-main .gallery-body .gallery-image {
    max-width: 70%;
    min-width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-grow: 1;
    height: 324px;
    margin: 1rem 0.6rem;
    cursor: pointer;
    border: 2px solid var(--main-color);
    border-radius: 15px;
    position: relative; 
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.gallery-main .gallery-body .gallery-image:hover {
  z-index: 4;
}
.gallery-main .gallery-body .gallery-image:hover img {
  transform: scale(1.35);
  -webkit-transform: scale(1.35);
}
.gallery-main .gallery-body .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .gallery-main .gallery-body .gallery-image img {
    height: auto;
  }
}
.gallery-main .gallery-body,
.gallery-main .vidoes {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0rem;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  padding-top: 0rem;
  transform: scale(0);
  opacity: 0;
  transition: transform 1s ease, opacity .4s ease;
  gap: 1rem;
  position: absolute;
  top: 0;
  left: 0;
}
.gallery-main .vidoes {
  z-index: 5;
}
.gallery-show {
  position:  relative !important;
  transform: scale(1) !important;
  opacity: 1 !important;
}
.gallery-main .vidoes .item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #333;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 95%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .gallery-main .vidoes .item {
    width: 50%;
  }
  .gallery-main .gallery-body,
  .gallery-main .vidoes {
    padding: 0px 4rem;
  }
}
@media (min-width: 992px) {
  .gallery-main .vidoes .item {
    width: calc((100% / 3) - 1rem);
  }
  .gallery-main .gallery-body,
  .gallery-main .vidoes {
    padding: 0px 5rem;
  }
}
.gallery-main .vidoes .item  .title {
  width: 100%;
  padding: 1rem .7rem;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-weight: bold;
  z-index: 4;
  pointer-events: none;
  background: #00000026;
}
.gallery-main .vidoes .item  video {
  display: none;
}

/* START location-popup */
.location-popup {
position: fixed;
max-width: 800px;
padding: 2rem 1rem;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0);
display: flex;
align-items: center;
justify-content: center;
z-index: 99;
transition: transform 1s ease;
}
.popup-verlay {
  position: fixed;
  width: 100%;
  height: 100vh;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 88;
  display: none;
}
.location-popup .content {
  position: relative;
  margin: 0px auto;
  padding: 2rem;
  max-width: 100%;
  border-radius: 15px;
  background: #fffefe;

}
.location-popup .content .info {
  position: relative;
  flex: 1;
}
.location-popup .content .info div {
  position: relative;
}
.location-popup .content .info h3,
.location-popup .content .info h4,
.location-popup .content .info i{
  background: linear-gradient(to right, #dea420 55%, #af8012);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.location-popup .content .info img {
position: absolute;
width: 100%;
height: auto;
opacity: .5;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.location-popup .content .map {
  width: 50%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* START FOOTER */
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* background: #252a2f; */
    background: radial-gradient(circle, #271e22, #22151f);
  }
  @media (max-width: 767px) {
    footer {
      padding-bottom: 81px;
    }    
  }
  footer a:hover{
    background: linear-gradient(to right, #dea420 55%, #af8012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  footer::before,
  footer::after {
    width: 200px;
    height: 200px;
    content: "";
    background: rgba(255, 255, 255, 24%);
    position: absolute;
    z-index: 1;
    border-radius: 50%;
  }
  footer::before {
    right: -6%;
    top: -14%;
  }
  footer::after {
    left: -6%;
    bottom: -14%;
  }

  .about footer,
  .contracts footer,
  .blog footer,
  .feedback footer,
  .contact footer,
  .media footer {
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
  }
  
  footer .f-m {
    box-sizing: border-box;
    padding: 20px 30px;
    padding-bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    footer .f-m {
      flex-wrap: wrap;
      justify-content: center;
    }
    footer .f-i:not(:last-child) {
      align-items: flex-start;
    }
    
  }
  footer .f-c {
    position: relative;
    color: #dea420;
    padding: 20px 0;
    font-size: 14px;
    font-weight: bold;
    z-index: 9;
  }
  
  footer .f-c::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 3px;
    background-color: var(--golden);
  }
  
  footer .f-i {
    margin-bottom: 50px;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  footer .f-i:nth-of-type(3) {
    align-items: center;
  }

  
  footer .f-i.l {
    padding: 0;
    width: 100%;
  }
  
  footer .f-i.n {
    width: 100%;
  }
  
  footer .f-i .f-i-l {
    width: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
  }
  
  footer .f-i .f-i-l img {
    width: 100%;
    height: auto;
  }
  
  footer .f-i .f-i-l:hover {
    opacity: 0.6;
  }
  
  footer .f-i .f-l-c {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
  }
  
  footer .f-i.l .f-i-s-m {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
  }
  
  footer .f-i.l .f-i-s-m a {
    margin-right: 15px;
  }
  
  footer .f-i.l .f-i-s-m a:first-child {
    margin: 0;
  }
  
  footer .f-i .f-l {
    margin-top: 10px;
    /* color: #ffffff; */
    /* color: #af8012; */
    color: #dea420;
  }
  
  footer .f-i .f-l:first-child {
    margin: 0;
  }
  
  footer .f-i h2 {
    margin-top: 10px;
    background: linear-gradient(to right, #dea420 55%, #af8012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin: 0;
    margin-bottom: 45px;
    line-height: 1;
    align-self: flex-start;
  }
  
  footer .f-i span {
    font-size: 15px;
    color: #4a484e;
  }
  
  footer .f-i h2::before {
    content: "";
    position: absolute;
    margin-top: 10px;
    top: 100%;
    right: 0;
    width: 40%;
    height: 3px;
    background-color: var(--golden);
  }
  
  footer .f-i .f-i-c {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
  }
  
  footer .f-i .f-i-c input {
    flex-shrink: 1;
    min-width: 0;
    border: none;
    border-radius: 0 25px 25px 0;
    font-size: 16px;
    padding: 7.5px;
    padding-right: 25px;
    
    background-color: #ffffff;
    transition: background 0.5s;
  }
  
  footer .f-i .f-i-c input:focus {
    background-color: #efecf4;
  }
  
  footer .f-i .f-i-c button {
    font-size: 16px;
    padding: 7.5px 40px;
    border-radius: 25px 0 0 25px;
  }
  
  footer .f-r {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
  }
  
  footer a {
    
    transition: color 0.5s;
  }
  
  footer a:hover {
    color: var(--golden);
  }
  
  footer .f-r a {
    background: linear-gradient(to right, #dea420 55%, #af8012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  footer .f-r a:hover {
    opacity: .8;
  }
  @media only screen and (min-width: 767px) {
    footer .f-i {
      width: unset;
      padding: 0 30px;
      display: flex;
      justify-content: center;
    }
    footer .f-i.l {
      width: 400px;
      padding: 0 30px;
    }
  
    footer .f-i.n {
      width: 400px;
    }
  }
  
  @media only screen and (min-width: 1250px) {
    footer .f-m {
      padding: 2rem 70px;
      padding-bottom: 0;
    }
  
    footer .f-i.n {
      width: 500px;
    }
  }
  footer .social-media,
  .contact-us  .social-media,
  section.b-container .blog-content  .social-media {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.b-container .blog-content  .social-media {
    width: fit-content;
    height: auto;
    margin: 0px auto;
  
  }
  footer .social-media .child,
  .contact-us  .social-media .child,
  section.b-container .blog-content  .social-media .child {
  
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.68, 0.85, 0.265, 1.85);
    border-radius: 5px;
    margin: 0 5px;
    box-shadow:
      inset 1px 1px 2px #fff,
      0 0 5px #4442;
  }
  
  footer .social-media .child:hover,
  .contact-us  .social-media .child:hover,
  section.b-container .blog-content  .social-media .child:hover {
    background-color: white;
    background-position:
      -100px 100px,
      -100px 100px;
    transform: perspective(180px) rotateX(60deg) translateY(2px);
    -webkit-text-fill-color: unset;
  }
  footer .social-media .child-1 i,
  .contact-us  .social-media .child-1 i,
  section.b-container .blog-content  .social-media .child-1 i {
    color: #25D366;
    font-size: 1.5rem;
  }
  footer .social-media .child-1:hover,
  .contact-us  .social-media .child-1:hover,
  section.b-container .blog-content  .social-media .child-1:hover {
    box-shadow: 0px 10px 10px #25D366;
  } 
  footer .social-media .child-2 svg,
  .contact-us  .social-media .child-2 svg,
  section.b-container .blog-content  .social-media .child-2 svg{
    font-size: 1.5rem;
  } 
  footer .social-media .child-2:hover,
  .contact-us  .social-media .child-2:hover,
  section.b-container .blog-content  .social-media .child-2:hover {
    box-shadow: 0px 10px 10px #4267b2;
  }
  footer .social-media .child-3 svg,
  .contact-us  .social-media .child-3 svg,
  section.b-container .blog-content  .social-media .child-3 svg{
    font-size: 1.5rem;
  } 
  footer .social-media .child-3:hover,
  .contact-us  .social-media .child-3:hover,
  section.b-container .blog-content  .social-media .child-3:hover {
    box-shadow: 0px 10px 10px #E1306C;
  }
  footer .social-media .child-4 svg,
  .contact-us  .social-media .child-4 svg,
  section.b-container .blog-content  .social-media .child-4 svg{
    font-size: 1.5rem;
  } 
  footer .social-media .child-4:hover,
  .contact-us  .social-media .child-4:hover,
  section.b-container .blog-content  .social-media .child-4:hover {
    box-shadow: 0px 10px 10px #111111;
  }
  
  
  footer .social-media .button,
  .contact-us  .social-media .button,
  section.b-container .blog-content  .social-media .button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
    border-radius: 4px;
    font-size: 20px;
    transition-duration: transform 0.5s;
    transition-timing-function: cubic-bezier(0.68, -0.85, 0.265, 1.55);
    padding: 0px;
  }
  
  footer .social-media .child:hover > .button,
  .contact-us  .social-media .child:hover > .button,
  section.b-container .blog-content  .social-media .child:hover > .button {
    transform: translate3d(0px, 20px, 30px) perspective(80px) rotateX(-60deg)
      translateY(2px) translateZ(10px);
      background-color: transparent;
  }
  
  footer .tree img {
    position: absolute;
    top: -60%;
    left: 37px;
    width: 40px;
    transform: scale(0); 
    transition: transform .4s ease-in-out; 
  }
  
  footer .tree:hover img {
    transform: scale(1) rotate(360deg);
  }
  
  @keyframes rotate360 {
    from {
      transform: rotate(0deg); 
    }
    to {
      transform: rotate(360deg); 
    }
  }
/* START SOCIAL */
.f-c-l-r.card {
  right: 0;
}
.s-m-float.card,
.f-c-l-r.card {
  max-width: fit-content;
  background: transparent !important;
  border: none !important;
  border-radius: 15px;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  position: fixed !important;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.5s;
  display: none;
}

.s-m-float.card {
  left: 0;
  display: none;
}
.s-m-float.card:hover,
.f-c-l-r.card:hover {
  animation: ease-out 5s;
  background: rgba(173, 173, 173, 0.05);
}
.s-m-float.card ul,
.f-c-l-r.card ul {
  padding: 1rem;
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.f-c-l-r.card ul {
  gap: 2rem;
}
.s-m-float.card ul li,
.f-c-l-r.card ul li{
  cursor: pointer;
}

.s-m-float.card ul li svg,
.f-c-l-r.card ul li svg {
  transition: all 0.3s;
  padding: 1rem;
  height: 55px;
  width: 55px;
  border-radius: 100%;
  color: var(--golden);
  fill: currentColor;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
}

.s-m-float.card ul li .text,
.f-c-l-r.card ul li .text{
  opacity: 0;
  border-radius: 5px;
  padding: 5px;
  transition: all 0.3s;
  color: rgb(255, 174, 0);
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  z-index: 9999;
    pointer-events: none;
}
.s-m-float.card ul li .text {
  box-shadow: -5px 0 1px rgba(153, 153, 153, 0.2),
  -10px 0 1px rgba(153, 153, 153, 0.2),
  inset 0 0 20px rgba(255, 255, 255, 0.3),
  inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.082);
}
.f-c-l-r.card ul li .text {
  box-shadow: 5px 0 1px rgba(153, 153, 153, 0.2),
  10px 0 1px rgba(153, 153, 153, 0.2),
  inset 0 0 20px rgba(255, 255, 255, 0.3),
  inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.082);
}
/*isometric prooyection*/
.s-m-float.card .iso-pro,
.f-c-l-r.card .iso-pro {
  transition: 0.5s;
  backdrop-filter: blur(10px);
  border-radius: 50%;
}

.s-m-float.card .iso-pro .s-m-icon,
.f-c-l-r.card .iso-pro .s-m-icon {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.s-m-float.card .iso-pro:hover a > .svg ,
.f-c-l-r.card .iso-pro:hover a > .svg  {
  border-radius: 100%;
}
.s-m-float.card .iso-pro:hover a > .svg {
  transform: translate(15px, -15px);
}
.f-c-l-r.card .iso-pro:hover a > .svg  {
  transform: translate(-15px, -15px);
}

.s-m-float.card .iso-pro:hover .svg  {
  transform: translate(5px, -5px);
}
.f-c-l-r.card .iso-pro:hover .svg {
  transform: translate(-5px, -5px);
}
.s-m-float.card .iso-pro span ,
.f-c-l-r.card .iso-pro span  {
  opacity: 0;
  position: absolute;
  color: #1877f2;
  border-color: #1877f2;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
  border-radius: 50%;
  transition: all 0.3s;
  height: 55px;
  width: 55px;
}

.s-m-float.card .iso-pro:hover span ,
.f-c-l-r.card .iso-pro:hover span  {
  opacity: 1;
}

.s-m-float.card .iso-pro:hover span:nth-child(1) ,
.f-c-l-r.card .iso-pro:hover span:nth-child(1)  {
  opacity: 0.2;
}

.s-m-float.card .iso-pro:hover span:nth-child(2) ,
.f-c-l-r.card .iso-pro:hover span:nth-child(2)  {
  opacity: 0.4;

}
.s-m-float.card .iso-pro:hover span:nth-child(2) {
  transform: translate(5px, -5px);
}
.f-c-l-r.card .iso-pro:hover span:nth-child(2) {
  transform: translate(-5px, -5px);
}
.s-m-float.card .iso-pro:hover span:nth-child(3) ,
.f-c-l-r.card .iso-pro:hover span:nth-child(3)  {
  opacity: 0.6;

}
.s-m-float.card .iso-pro:hover span:nth-child(3) {
  transform: translate(10px, -10px);
}
.f-c-l-r.card .iso-pro:hover span:nth-child(3) {
  transform: translate(-10px, -10px);
}

@media only screen and (min-width: 767px) {
  .s-m-float.card,
  .f-c-l-r.card  {
    display: flex;
  }
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  width: 100%;
  background-color: #f4edfd;
  font-size: 17px;
}

.breadcrumbs div {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  
}

.breadcrumbs i {
  
  font-size: 13px;
  font-weight: bold;
  margin: 0 7.5px;
}
.breadcrumbs a:not(:last-of-type),
.breadcrumbs span {
  font-weight: bold;
  transition: color 0.5s;
  background: linear-gradient(to right, #dea420 55%, #af8012);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.breadcrumbs a:hover {
  color: #e94f84;
}

.breadcrumbs a.active,
.breadcrumbs i {
  color: #444;
  font-weight: bold;
}
.gallery-main .popup-photo {
    width: 100%;
    height: 100%;
    background-color: #0000005e;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 4;
}
.display-none {
    display: none !important;
  }
.gallery-main .popup-photo button {
    width: 70px;
    height: 45px;
    border-radius: 20px;
    background: linear-gradient(to right, #dea420 55%, #af8012);
    color: #fff;
    font-size: 30px;
    position: absolute;
    cursor: pointer;
    border: none;
    transition: 0.2s;
}
.gallery-main .popup-photo .left-btn {
    left: 10%;
    box-shadow: -2.5px 2px 1px;
}
.gallery-main .popup-photo .right-btn {
    right: 10%;
    box-shadow: 2.5px 2px 1px;
}
.gallery-main .popup-photo .right-btn:hover {
    transform: translateX(8px);
}
.gallery-main .popup-photo .left-btn:hover {
    transform: translateX(-8px);
}
.gallery-main .popup-photo .show-image {
    height: 75%;
    max-width: 89%;
    border: 1px solid var(--main-color);
    border-radius: 2px;
}
.gallery-main .popup-photo .show-image .description {
    display: none;
}
.gallery-main .popup-photo .show-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

/* start sevices */


/* start blogs */
section.breadcrumb{
  padding: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  color: #06529a;
  font-size: 16px;
  background: #dde2ec;
  width: 100%;
}
section.breadcrumb a{
  text-decoration: none;
  transition: color 0.35s;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: large;
  font-weight: bold;
  color: #cb961a;
}
section.breadcrumb a:hover {
  opacity: .8;
}
.navigation-banner i,
section.breadcrumb i {
  margin: 0 .5rem;
  color: #cb961a;
  font-size: 1rem;
}
section.breadcrumb span,
.navigation-banner span {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  color: #3c4a51;
}

section.breadcrumb .fw-500 {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

@media only screen and (min-width: 600px) {
section.breadcrumb {
  padding: 15px 30px;
}
}
@media only screen and (min-width: 992px) {
  section.breadcrumb {
    padding: 15px 12.5%;
  }
}


section.breadcrumb a, .navigation-banner a {
  text-decoration: none;
  transition: color 0.35s;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: large;
  font-weight: bold;
  color: #cb961a;
}
.navigation-banner i, section.breadcrumb i {
  margin: 0 .5rem;
  color: #cb961a;
  font-size: 1rem;
}
section.breadcrumb span, .navigation-banner span {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  color: #3c4a51;
}
.navigation-banner i, section.breadcrumb i {
  margin: 0 .5rem;
  color: #cb961a;
  font-size: 1rem;
}

section.blogs-container .blogs-search input:-ms-input-placeholder {
  color: #202124;
}
section.blogs-container .blogs-search input::-ms-input-placeholder {
  color: #202124;
}

.search-container .search .search-action .input-container button,
section.blogs-container .blogs-search button {
  cursor: pointer;
  background-color: transparent;
  color: #202124;
}

.search-container .search .search-action .input-container button img,
section.blogs-container .blogs-search button img {
  display: flex;
  height: 17px;
  width: auto;
}
section.blogs-container {
  padding: 50px 0;
  width: 85%;
}

section.blogs-container .blogs .blog {
  margin-bottom: 1rem;
  overflow: hidden;
  transition: .3s ease;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

section.blogs-container .blogs .blog:last-child {
  margin: 0;
}

section.blogs-container .blogs .blog .blog-img {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

section.blogs-container .blogs .blog .blog-img::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 1;
  padding-bottom: 10%;
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  transition: background 0.35s, opacity 0.35s, padding 0.35s;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0;
}

section.blogs-container .blogs .blog .blog-img:hover::after {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  padding: 0;
}

section.blogs-container .blogs .blog .blog-img img {
  display: flex;
  width: 100%;
  transition: transform 0.5s;
  object-fit: cover;
}

section.blogs-container .blogs .blog .blog-img:hover img {
  transform: scale(1.1);
}

section.blogs-container .blogs .blog .blog-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  text-align: start;
  pointer-events: none;
}
section.blogs-container .blogs .blog .blog-text a {
  font-size: 1.2rem;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.35s; 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

section.blogs-container.blogs-content .blogs .blog .blog-text a {
  font-weight: 700;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  width: fit-content;
  border-bottom: .5px solid #ccc;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  section.blogs-container.blogs-content .blogs .blog .blog-text {
    padding: .5rem;
  }
  section.blogs-container.blogs-content .blogs .blog .blog-text a{
    font-size: 1.2rem;
  }
}


section.blogs-container.blogs-content .blogs .blog .blog-text p {
  margin: 0;
  line-height: 1.1;
  color: #ffffff;
  white-space: normal;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

section.blogs-container .blogs .blog .blog-info {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #eaf1ff;
  border-top: 1px solid rgba(0, 0, 0, 0.075);
  font-weight: 500;
}

@media screen and (max-width:992px) {
  section.blogs-container .blogs .blog .blog-info {
    align-items: flex-end;
  }
}

section.blogs-container .blogs .blog .blog-info .b-i .calendar {
  text-align: start;
  width: fit-content;
  direction: ltr;
  padding-top: .1rem;
  display: inline-block;
  margin-right: -3px;
  font-size: .85rem;
  color: #ffffffd9;
  font-weight: bold;
}

section.blogs-container .blogs .blog .blog-info .b-i .author {
  text-align: start;
  display: flex;
  align-items: center;
}

section.blogs-container .blogs .blog .blog-info .b-i .author .text {
  font-size: .85rem;
  border-bottom: 1px solid #ccc;
  color: #ffffff;
  font-weight: 500;
}

section.blogs-container .blogs .blog .blog-info .b-i .author .image {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-bottom: 3px;
  overflow: hidden;
}

section.blogs-container .blogs .blog .b-i .author .image img {
  width: 100%;
  height: 45px;
  object-fit: cover;
}

section.blogs-container .blogs .blog .blog-info i {
  margin-right: 2.5px;
  font-size: .8rem;
  color: #ffffffd9;
}

section.blogs-container .blogs>p {
  opacity: 0.9;
  font-size: 14px;
  color: #071833;
}

section.blogs-container .blogs-actions {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  width: 100%;
}



section.blogs-container .blogs-search input {
  font-size: 16px;
  flex-shrink: 1;
  min-width: 0;
}

section.blogs-container .blogs-search button img {
  height: 18px;
}

section.blogs-container .blogs-actions .b-e-i {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

section.blogs-container .blogs-actions .b-e-i h3,
section.blogs-container .blogs h3 {
  margin: 0;
  margin-bottom: 16px;
  text-transform: capitalize;
  color: #3c4a51;
  text-align: start;
  font-weight: 600;
  border-bottom: 3px solid #cb961a;
  padding-bottom: .5rem;

}
section.blogs-container .blogs h3 {
  margin-bottom: 1.5rem;
}


section.blogs-container .blogs-actions .b-e-i p {
  opacity: 0.9;
  margin: 0;
  line-height: 1.75;
  font-size: 14px;
  color: #3c4a51;
  text-align: start;
}

section.blogs-container .blogs-actions .b-e-i .sm-c {
  margin-top: 20px;
  display: flex;
}

section.blogs-container .blogs-actions .b-e-i .sm-c a i.fa-facebook {
  color: #17a9fd;
}

section.blogs-container .blogs-actions .b-e-i .sm-c a i.fa-instagram {
  background: #f09433;
  background: -moz-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: -webkit-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

section.blogs-container .blogs-actions .b-e-i .sm-c a:last-child {
  margin: 0;
}

section.blogs-container .blogs-actions .b-e-i .sm-c a:hover {
  opacity: 0.5;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs {
  display: flex;
  flex-direction: column;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs .s-b {
  color: #17d7b1;
  background-color: #ffffff;
  margin-top: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
  flex-direction: row;
  padding: .5rem;
  border-radius: 4px;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs .s-b:first-child {
  margin: 0;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs .s-b .blog-img {
  display: flex;
  width: 125px;
  height: 110px;
  align-self: center;
  margin-left: .5rem;
  object-fit: cover;
  border-radius: 4px;
  overflow: hidden;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs .s-b .blog-img img {
  display: flex;
  width: 100%;
  height: auto;
  object-fit: cover;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs .s-b .blog-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  justify-content: space-between;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs .s-b .blog-text a {
  padding-top: .5rem;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(to right, #dea420 55%, #af8012);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: color 0.35s;
  text-align: start;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs .s-b .blog-text a:hover {
  opacity: .9;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs .s-b .blog-text .blog-info {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap-reverse;
  gap: .3rem;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs .s-b .blog-text .blog-info .b-i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aab0bc;
  font-size: 14px;
  font-weight: 500;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs .s-b .blog-text .blog-info .dot {
  margin: 0 10px;
  width: 4px;
  height: 4px;
  background-color: #aab0bc;
  border-radius: 50%;
}

section.blogs-container .blogs-actions .b-e-i .side-blogs .s-b .blog-text .blog-info .b-i i {
  margin-right: 5px;
  margin-left: 5px;
}

section.blogs-container .blogs .blogs-pagination {
  padding: 7px .9rem;
}

section.blogs-container .blogs .blogs-pagination .page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgb(80 179 205 / 90%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0px 1px 2px 0 #29435e, 1px 0px 2px #29435e;
  cursor: pointer;
  transition: .4s;
  user-select: none;
  -webkit-user-select: none;
}

section.blogs-container .blogs .blogs-pagination .page.current-page {
  background-color: #06c9fd;
  scale: 1.1;
  color: white;
  box-shadow: 0px 1px 2px 0 #7190b0, 1px 0px 2px #7190b0;
}
@media only screen and (min-width: 450px) {
  .blogs-container.blogs-content .blogs .blog .blog-info{
    padding: 12px 40px;
  }
}


.blogs-container.trand-blogs .blog .views,
section.blogs-container.blogs-content .blog .views {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  width: fit-content;
  z-index: 2;
}

.blogs-container.trand-blogs .blog-box {
  position: absolute;
  bottom: 0;
  z-index: 2;
  line-height: 1.6;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}
.blogs-container.trand-blogs .blog-box .blog-text {
  padding: 1rem 1rem 1rem .1rem;
  flex: 1;
}
.blogs-container.trand-blogs .blog-info {
  position: absolute;
  right: 0;
  top: 0;
}
.blogs-container.blogs-content .blog .blog-text {
  position: absolute;
  bottom: 45px;
  z-index: 2 ;
  padding: 1rem;
  line-height: 1.6;
}


section.blogs-container.blogs-content .vote-box,
.blog-head .vote-box {
  border: .5px solid #50b3cd;
  background-color: transparent;
  color: #fff;
  z-index: 2;
}
section.blogs-container.blogs-content .vote-box span, .blog-head .vote-box span{
  border-left: 1px solid #50b3cd;
}


section.blogs-container .blogs .blogs-pagination {
  max-width: 215px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  background-color: #e7e7e7cf;
}
section.blogs-container .blogs .blogs-pagination .swiper-slide.page-number {
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {
  section.blogs-container.trand-blogs .blogs{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
    gap: .5rem;
  }

  section.blogs-container.trand-blogs .blogs .blog {
    margin-bottom: 0px;
  }
}
@media (max-width: 991px) {
  section.blogs-container.trand-blogs .blogs .blog {
    height: 400px;
  }
  section.blogs-container.trand-blogs .blogs .blog .blog-img img{
    height: 400px;
  }
}

@media (max-width: 450px) {
  section.blogs-container.trand-blogs .blogs .blog {
    height: 320px;
  }
  section.blogs-container.trand-blogs .blogs .blog .blog-img img{
    height: 320px;
  }
}
section.blogs-container.blogs-content .blog .views {
  padding: 1.2rem;
}

section.blogs-container.blogs-content .blogs .blog .blog-text a {
  font-weight: 700;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  width: fit-content;
  border-bottom: .5px solid #ccc;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  background: linear-gradient(to right, #dea420 55%, #af8012);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  section.blogs-container.blogs-content .blogs .blog .blog-text {
    padding: .5rem;
  }
  section.blogs-container.blogs-content .blogs .blog .blog-text a{
    font-size: 1.2rem;
  }
}

section.blogs-container.blogs-content .blogs .blog .blog-text p {
  margin: 0;
  line-height: 1.1;
  color: #ffffff;
  white-space: normal;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 450px) {
  .blogs-container.blogs-content .blogs .blog .blog-info{
    padding: 12px 40px;
  }
}

@media only screen and (min-width: 992px) {
  
  section.blogs-container {
    width: calc(100% - 100px);
  }

  section.blogs-container.blogs-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }
  section.blogs-container.blogs-content div:first-of-type {
    grid-column: span 7;
  }
  section.blogs-container.blogs-content div:nth-of-type(2) {
    grid-column: span 1;
  }
  section.blogs-container.blogs-content div:nth-of-type(3) {
    grid-column: span 4;
  }


  section.blogs-container .blogs-actions {
    margin: 0;
  }

section.blogs-container.blogs-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
section.blogs-container.blogs-content div:first-of-type {
  grid-column: span 7;
}
section.blogs-container.blogs-content div:nth-of-type(2) {
  grid-column: span 1;
}
section.blogs-container.blogs-content div:nth-of-type(3) {
  grid-column: span 4;
}
}

.blogs-container.trand-blogs .blog .views,
section.blogs-container.blogs-content .blog .views {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blogs-container.blogs-content .blog .blog-text {
  position: absolute;
  bottom: 45px;
  z-index: 2 ;
  padding: 1rem;
  line-height: 1.6;
}
section.blogs-container.blogs-content .vote-box,
.blog-head .vote-box {
  border: .5px solid #50b3cd;
  background-color: transparent;
  color: #fff;
  z-index: 2;
}
section.blogs-container.blogs-content .vote-box span, .blog-head .vote-box span{
  border-left: 1px solid #50b3cd;
}
section.blogs-container.blogs-content .blog .views {
  padding: 1.2rem;
}


/* start services updatte */

section.services-2 {
  background: linear-gradient(135deg, #75746817, rgba(117, 116, 104, 0.1));
}
section.services-2 .banner {
  text-align: center;
  margin: 0px auto;
}
@media screen and (max-width:678px) {
  section.services-2 .banner { 
    margin-top: -1rem !important;
  }
}
section.services-2 .banner img {
  width: 100%;
  border-radius: 15px;
  pointer-events: none;
}
section.services-2 .serv-title {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
@media screen and (max-width:678px) {
  section.services-2 .banner img{
    display: none;
  }
  section.services-2 .serv-title {
    display: none;
  }
  section.services-2 .serv{
    margin-top: 0 !important;
  }
  
}
section.services-2 .serv-title img {
  width: 50px;
}
section.services-2 .serv-title h3 {
  background: linear-gradient(to right, #dea420 55%, #af8012);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.services-2 .serv-title p {
  color: var(--secondary-font);
  /* margin-bottom: 0; */
  width: fit-content;
}
@media screen and (max-width:678px) {
  section.services-2 .serv-title p{
    width: 65%;
  }
  section.services-2 .serv-title.mobile p{
    width:99%;
  }
}
section.services-2 .serv {
  margin-top: 3rem;
}

section.services-2 .swiper-container {
  width: 55%;
  padding-bottom: 4.5rem;
  position: relative;
  overflow: hidden;
}



section.services-2 .swiper-pagination {
text-align: center;
padding-left: 0;
bottom: 0px !important;
}
section.services-2 .swiper-button-next,
section.services-2 .swiper-button-prev  {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #dea420;
  background-color: #dea420;
  color: #ffffff;
  transition: .35s;
}
section.services-2 .swiper-button-next {
  left: 0%;
}
section.services-2 .swiper-button-prev {
  right: 0%;
}

section.services-2 .swiper-button-next:hover,
section.services-2 .swiper-button-prev:hover {
  background-color: transparent;
  color: #dea420;
}
section.services-2 .swiper-button-next::after,
section.services-2 .swiper-button-prev::after {
  content: "";
}

section.services-2 .swiper-pagination .swiper-pagination-bullet {
display: inline-block;
margin: 2px;
}

section.services-2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
background: #af8012;
width: 25px;
}

section.services-2 .swiper-pagination .swiper-pagination-bullet {
height: 6px;
width: 12px;
background: rgb(2 2 2);
color: transparent;
border-radius: 10px;
overflow: hidden;
transition: 0.5s ease;
border: 0;
}

section.services-2 .swiper-slide {
/* width: 48% !important; */
}

section.services-2 .card {
width: 100%;
height: 280px;
cursor: pointer;
border-radius: 15px;
margin: 0px auto;
}

section.services-2 .card .content {
width: 100%;
height: 100%;
text-align: center;
position: relative;
transition: all 1.25s;
padding: 5em;
transform-style: preserve-3d;
border-radius: 15px;
}

section.services-2 .card:hover .content,
.test-1 .card .content.flip {
transform: rotateY(0.5turn);
}

section.services-2 .front,
section.services-2 .back {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
height: 100%;
width: 100%;
transform-style: preserve-3d;
backface-visibility: hidden;
border-radius: 15px;
display: flex;
align-items: center;
flex-direction: column;
}
section.services-2 .front img,
section.services-2 .back img {
width: 100%;
object-fit: cover;
border-radius: 15px;
border-bottom-left-radius: 0px !important;
border-bottom-right-radius: 0px !important;
}

section.services-2 .title {
width: 100%;
font-size: 2rem;
}
section.services-2 .title.c-f {
color: black;
background: linear-gradient(135deg, #fffffff5, #dfbe88, #ffffff98);
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
/* margin-top: .6rem; */
font-size: 20px;
padding: 4px;
}
section.services-2 .subtitle {
transform: translateZ(2rem);
}

section.services-2 .back {
background: linear-gradient(135deg, #fffffff5, #dfbe88, #ffffff98);
transform: rotateY(0.5turn);
background-color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 1rem;
text-align: start;
}
section.services-2 .back h4 {
width: fit-content;
margin-left: auto;
border-bottom: 1px solid #cb961a;
}

section.services-2 .description {
transform: translateZ(3rem);
}
section.services-2 .back .bookmarkBtn {
direction: ltr;
width: fit-content;
padding: .3rem;
height: 40px;
border-radius: 40px;
border: 1px solid #cb961a;
background: linear-gradient(26deg, #fffffff5, #e5b463, #ffffff98);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition-duration: 0.3s;
overflow: hidden;
position: absolute;
bottom: 0;
left: 0;
margin: 1rem;
}

section.services-2 .back .IconContainer {
width: 30px;
height: 30px;
background: linear-gradient(to bottom, rgb(255, 136, 255), rgb(172, 70, 255));
border-radius: 50px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
z-index: 2;
transition-duration: 0.3s;
}

section.services-2 .back .icon {
border-radius: 1px;
}

section.services-2 .back .text {
height: 100%;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
color: #000000;
z-index: 1;
transition-duration: 0.3s;
margin: auto;
}

section.services-2 .back .bookmarkBtn:hover .IconContainer {
width: 90px;
transition-duration: 0.3s;
}

section.services-2 .back .bookmarkBtn:hover .text {
transform: translate(10px);
width: 0;
font-size: 0;
transition-duration: 0.3s;
}

section.services-2 .back .bookmarkBtn:active {
transform: scale(0.95);
transition-duration: 0.3s;
}
section.services-2 .face-container {
display: flex;
align-items: center;
justify-content: space-between;
gap : 1rem;
}
section.services-2  .box-img {
width: 43%;
}
section.services-2 .box-img img {
width: 100%;
}
@media (max-width: 767px) {
section.services-2 .face-container {
  flex-direction: column-reverse;
}
section.services-2 .swiper-container,
section.services-2 .box-img {
  width: 100%
}
section.services-2 .card {
  height: 220px;
}
section.services-2 .back .bookmarkBtn {
  margin: .5rem;
}
}