﻿@font-face {
  font-family: "NewRudaw";
  src: url("../font/NewRudaw-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NewRudaw";
  src: url("../font/NewRudaw-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  --btn: #0f172a;
  --btnText: #ffffff;
  --radius: 14px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
  color: black;
  transition: background 0.3s, color 0.3s;
  font-family: "NewRudaw";
  text-align: right;
  direction: rtl;
}
body a {
  font-family: "NewRudaw";
}
body p, body ul, body ol, body li {
  font-family: "NewRudaw";
  font-size: 18px;
  line-height: 30px;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .wrapper {
    width: 95%;
  }
}

.wrapper2 {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .wrapper2 {
    width: 95%;
  }
}
.wrapper2 a {
  text-decoration: none;
  color: black;
}

a {
  text-decoration: none;
}

.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1000px) {
  .two-grid {
    grid-template-columns: 1fr;
  }
}

.three-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
}
@media (max-width: 1000px) {
  .three-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1000px) {
  .three-grid.responsive {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .three-grid.responsive {
    grid-template-columns: 1fr;
  }
}

.four-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 25px;
}
@media (max-width: 1000px) {
  .four-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .four-grid {
    grid-template-columns: 1fr;
  }
}

.overflow {
  overflow: hidden !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  font: inherit;
}

/* NAV SHELL */
.nav-wrap {
  background: var(--bg);
}

.nav {
    margin: 40px auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 18px;
    background: #B42CF0;
}

/* LEFT GROUP */
.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.logo {
    width: 60px;
    scale: 1.35;
    margin-left: 20px;
    margin-right: 10px;
    margin-top: 3px;

    
}

    /* MENU */
    .menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link, .dropdown-btn {
    padding: 10px 12px;
    border: none;
    background: #b42cf0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
}

    .nav-link:hover, .dropdown-btn:hover {
        background: #cf68fc;
    }

.chev {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: 0px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
    background: #b42cf0;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  z-index: 2;
}

.dropdown[data-open=true] .dropdown-panel {
  display: block;
}

.dropdown-item {
  padding: 10px 10px;
  border-radius: 10px;
  display: block;
  font-weight: 500;
  color: var(--text);
}

.dropdown-item:hover {
  background: #f1f5f9;
}

/* RIGHT GROUP */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.content {
  display: contents;
}

.contact-btn {
    padding: 10px 2rem;
    border: 1px solid transparent;
    background: #fff;
    color: #b42cf0;
    font-weight: 700;
    cursor: pointer;
    border-radius: 30px;
}
.contact-btn a {
  color: white;
}

.contact-btn:hover {
  opacity: 0.92;
}
@media (max-width: 980px) {
    .logo {
        width: 60px;
        scale: 1.2;
        margin-left: 10px;
        margin-right: 5px;
        margin-top: 3px;
    }

    .nav {
        margin: 20px auto;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        font-size: 18px;
        background: #B42CF0;
    }

    .contact-btn {
        padding: 10px 2rem;
        border: 1px solid transparent;
        background: #b42cf0;
        color: #fff;
        font-weight: 700;
        cursor: pointer;
        border-radius: 30px;
    }
}
/* HAMBURGER */
.burger {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

@media (min-width: 980px) {
  .mobile {
    display: none;
  }
}
/* MOBILE DRAWER */
@media (max-width: 980px) {
  .menu, .nav-right {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--bg);
  }
  .mobile[data-open=true] {
    display: block;
  }
  .mobile-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 10px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-section {
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    background: #fff;
  }
  .mobile-link, .mobile-dd-btn {
    width: 100%;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    background: #fff;
    color: black;
    border: 0;
    cursor: pointer;
  }
  .mobile-link:hover, .mobile-dd-btn:hover {
    background: #f8fafc;
  }
  .mobile-dd-panel {
    display: none;
    border-top: 1px solid var(--border);
    background: #fff;
  }
  .mobile-dd[data-open=true] .mobile-dd-panel {
    display: block;
  }
  .mobile-dd-item {
    display: block;
    padding: 12px 14px;
    font-weight: 650;
    color: var(--text);
  }
  .mobile-dd-item:hover {
    background: #f1f5f9;
  }
  .mobile-actions {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .mobile-actions .contact-btn {
    flex: 1;
  }
}
.mt {
  margin-top: 50px;
}

.mb {
  margin-bottom: 50px;
}

.hero-section {
  overflow: hidden;
  height: 550px;
  position: relative;
  background-size: cover;
  background-position: center;
}
@media (max-width: 800px) {
  .hero-section {
    height: 400px;
  }
}
.hero-section img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.img-shade {
  background: linear-gradient(-40deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  color: white;
  position: relative;
  z-index: 2;
  bottom: -35%;
  padding-right: 40px;
  width: 50%;
}
.hero-content h1 {
  font-size: 40px;
}
@media (max-width: 800px) {
  .hero-content h1 {
    width: 95%;
    font-size: 30px;
  }
}
@media (max-width: 700px) {
  .hero-content h1 {
    font-size: 25px;
  }
}
.hero-content p {
  margin-top: 15px;
}
@media (max-width: 500px) {
  .hero-content p {
    display: none;
  }
}
@media (max-width: 1180px) {
  .hero-content {
    width: 80%;
  }
}
@media (max-width: 800px) {
  .hero-content {
    width: 95%;
    bottom: -25%;
    padding-left: 20px;
  }
}
@media (max-width: 500px) {
  .hero-content {
    bottom: -46%;
  }
}

.crown {
  position: relative;
}

.wrapperarc {
  width: 150px;
  height: 150px;
  animation: rotate 12s linear infinite;
  z-index: 4;
  position: relative;
  left: 0px;
  top: 30px;
}
@media (max-width: 800px) {
  .wrapperarc {
    left: 10px;
    width: 110px;
    height: 110px;
  }
}

text {
  font-size: 22px;
  font-weight: normal;
  fill: white;
  letter-spacing: 3px;
  z-index: 9;
  position: relative;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-about {
    position: relative;
    padding: 50px 0;
    padding-top: 0;
}
@media (max-width: 600px) {
  .hero-about {
    padding-bottom: 30px;
    padding-top: 0px;
  }
}
.hero-about .mapdot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.2;
}
.hero-about .abt-img {
  text-align: left;
}
@media (max-width: 600px) {
  .hero-about .abt-img {
    margin-top: 50px;
  }
}
@media (max-width: 500px) {
  .hero-about .abt-img img {
    width: 100%;
  }
}
.hero-about .about-text {
  margin-top: 70px;
}
@media (max-width: 600px) {
  .hero-about .about-text {
    margin-top: 0px;
  }
}
.hero-about .about-text h1 {
  margin-bottom: 20px;
  width: 90%;
}
@media (max-width: 600px) {
  .hero-about .about-text h1 {
    width: 100%;
    font-size: 25px;
  }
}
.hero-about .about-text p {
  margin-bottom: 40px;
  width: 90%;
}
@media (max-width: 600px) {
  .hero-about .about-text p {
    width: 100%;
    font-size: 16px;
  }
}

.viewbtn {
  color: black;
  text-align: left;
}
@media (max-width: 600px) {
  .viewbtn {
    text-align: right;
    margin-top: 10px;
  }
}
.viewbtn img {
  fill: black;
  margin-right: 10px;
  rotate: 180deg;
}

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

.news-section .swiper {
  width: 100%;
  height: 100%;
  padding: 50px 0;
}
.news-section .swiper-slide {
  background: white;
}
@media (max-width: 600px) {
    .news-section {
        padding: 30px 0;
    }

        .news-section .swiper {
            padding: 30px 0;
        }
    .swiper-pagination {
        bottom: -5px !important;
    }
    
}

.news-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.lping {
  background: #F3DCFE;
}

.each-news {
  padding: 20px;
}
.each-news.border {
  border: solid 1px #E9E9E9;
}
.each-news img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.each-news:hover .viewmore a {
  color: #B42CF0;
}
.each-news h3 {
  margin: 15px 0;
  font-weight: 600;
  font-size: 17px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  height:50px;
}
@media (max-width: 600px) {
    .each-news h3 {
        height: auto;
    }
}
.each-news .viewmore {
  border: solid 1px #E6E6E6;
  padding: 10px 20px;
}
.each-news .viewmore a {
  color: black;
  display: flex;
  justify-content: space-between;
}
.each-news .viewmore img {
  width: 20px !important;
  height: 20px !important;
  rotate: 180deg;
}

.section-title {
  font-size: 30px;
}
@media (max-width: 600px) {
  .section-title {
    font-size: 23px;
/*    width: 100%;*/
  }
}

.swiper-pagination-bullet-active {
  background: #B42CF0;
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 56px;
  color: white;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  background: rgba(180, 44, 240, 0.09);
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.video-modal.is-open {
  display: block;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.video-modal__content {
  position: relative;
  max-width: 900px;
  width: min(92vw, 900px);
  margin: 8vh auto;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.video-modal__frame {
  aspect-ratio: 16/9;
  width: 100%;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.home-video {
    padding: 60px 0;
    padding-bottom: 0;
}
.home-video .swiper-wrapper {
  height: 270px;
}
.home-video .section-title {
  margin-bottom: 40px;
}

.br::after {
  content: "";
  display: block;
}
@media (max-width: 600px) {
  .br::after {
    content: "";
    display: none;
  }
}

.team-home {
  padding: 50px 0;
}
.team-home .timg img {
  width: 100%;
}
.team-home .ttext {
  padding-right: 30px;
}
@media (max-width: 700px) {
  .team-home .ttext {
    padding-right: 0px;
  }
}
.team-home .ttext h1 {
  margin-top: 30px;
  margin-bottom: 20px;
}
.team-home .ttext p {
  margin-bottom: 40px;
}

.home-op {
  padding: 50px 0;
  margin: 50px 0;
  margin-bottom: 2px;
  margin-top:0;
}
.home-op .swiper-wrapper {
  height: 450px;
}
@media (max-width: 600px) {
    .home-op .swiper-wrapper {
        height: 395px;
    }
    .home-op {
        padding: 30px 0;
        
    }
}

.each-blog {
  padding: 20px;
  background: white;
  border: #F2C4FF 1px solid;
}
.each-blog img {
  width: 100%;
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.each-blog .b-writer {
  color: #B42CF0;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}
.each-blog .b-writer span {
  color: black;
}
.each-blog a {
  color: black;
}
.each-blog h3 {
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height:50px;
}
@media (max-width: 600px) {
    .each-blog h3 {
        height: auto;
    }
}
.each-blog p {
  margin-top: 20px;
}
.each-blog p img {
  width: 20px;
  height: 20px;
}

.bloglike {
  display: flex;
  justify-content: space-between;
}
.bloglike p {
  display: flex;
  align-items: center;
}
.bloglike p img {
  margin-left: 5px;
  width: 24px;
}

footer {
  font-size: 14px;
  margin-top: 60px;
  padding-top: 60px;
}
footer p {
  font-size: 14px;
}
footer h3 {
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
footer h3 img {
  margin: 0 15px;
}
footer .c-social {
  margin: 30px auto;
}
footer .c-social a {
  margin-bottom: 0 !important;
}
footer .c-social a img {
  rotate: 0deg !important;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 2fr;
}
@media (max-width: 1000px) {
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
footer .footer-grid a {
  display: block;
  margin-top: 6px;
  margin-bottom: 30px;
  color: black;
}
footer .footer-grid a img {
  rotate: 180deg;
}
footer .footer-grid a:hover {
  color: #B42CF0;
}
footer .f-contact p {
  margin: 30px 0;
  display: flex;
  align-items: center;
}
footer .f-contact p img {
  margin-left: 10px;
}
footer .fotter-text {
  width: 80%;
  margin-top: 30px;
}
@media (max-width: 600px) {
  footer .flogo {
    width: 100%;
  }
    footer .fotter-text {
        width: 100%;
        
    }
    footer .f-contact p {
        margin:5px 0;
      
    }
}
footer hr {
  border: #eee9e9 solid 0.5px;
}
footer .right-reserved {
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
}
@media (max-width: 600px) {
  footer .right-reserved {
    display: grid;
  }
}

.page-header {
  height: 200px;
  background: 
      ;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.page-header .world {
  position: absolute;
  left: 70%;
  top: 75%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}
.page-header .banner-text {
  position: relative;
}
.page-header .banner-text h1 {
  margin-bottom: 15px;
}
.page-header .banner-text p {
  font-size: 16px;
  display: flex;
  align-items: center;
}
.page-header .arr {
  width: 15px;
  height: 15px;
  margin: 0 10px;
  rotate: 180deg;
}

ul, ol {
  padding-right: 25px;
}

.detail-big {
  padding: 1px 15px;
}

.s-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
  margin-top: 50px;
  margin-bottom: 100px;
}
.s-detail-grid .section-title {
  color: #B42CF0;
  font-size: 25px;
  margin: 25px 0;
}
@media (max-width: 600px) {
  .s-detail-grid .section-title {
    font-size: 20px;
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .s-detail-grid {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
}
.s-detail-grid img {
  width: 100%;
}
.s-detail-grid ul, .s-detail-grid ol {
  padding-left: 20px;
  line-height: 30px;
}
@media (max-width: 1000px) {
  .s-detail-grid ul, .s-detail-grid ol {
    padding-right: 25px;
  }
}

.s-detail-side {
  background: #F3DCFE;
  padding: 30px;
  border-radius: 10px;
}
.s-detail-side h3 {
  color: #B42CF0;
}
.s-detail-side hr {
  margin: 20px 0;
  color: #e8d1ff;
}
.s-detail-side .each-sidebar {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 20px;
  font-weight: 600;
  margin: 20px 0px;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.s-detail-side .each-sidebar:hover {
  color: #B42CF0;
}
.s-detail-side .each-sidebar img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 10px;
}

.pink-box {
  margin: 30px auto;
  padding: 50px;
  background: #F3DCFE;
  border-radius: 10px;
}
@media (max-width: 1000px) {
  .pink-box {
    margin: 30px auto;
    padding: 20px;
  }
}
.pink-box h2 {
  color: #B42CF0;
  margin-bottom: 10px;
}
.pink-box ul, .pink-box ol {
  padding-left: 30px;
  line-height: 30px;
  margin-top: 30px;
}
@media (max-width: 700px) {
  .pink-box ul, .pink-box ol {
    margin: 20px auto;
    padding: 10px;
  }
}

.eachtbox {
  padding: 30px;
  position: relative;
  height: 200px;
}
.eachtbox h2 {
  margin-top: 30px;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
}
.eachtbox a {
  color: black;
}
.eachtbox img {
  position: absolute;
  left: 70px;
  bottom: -67px;
  transform: translate(-50%, -50%);
}

.each-team {
  border: solid 1px #CFCFCF;
}
.each-team div {
  padding: 15px;
}
.each-team .ti {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 10px;
}
.each-team p {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.each-team img {
  margin-left: 15px;
}

.blogimg {
  height: 100% !important;
}

.search-box {
  display: flex;
  align-items: center;
  max-width: 320px;
  border: 1px solid #ddd;
  padding: 5px;
  background: #fff;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 30px;
}

.search-box button {
  border: none;
  background: none;
  color: white;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 14px;
}

.search-box button:hover {
  background: #B42CF0;
}

.blog-writer {
  display: flex;
  justify-content: space-between;
}

.blog-detail h2 {
  color: #B42CF0;
}
.blog-detail img {
  width: 100%;
}

@media (max-width: 700px) {
  .mt0 {
    padding-top: 0 !important;
  }
}

.mt2 {
  margin-top: 2px !important;
}

.each-book {
  position: relative;
}
.each-book img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.each-book h4 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  position: absolute;
  bottom: 0;
  padding: 15px;
  color: white;
}
.each-book .tag {
  position: absolute;
  left: 52px;
  top: 33px;
  transform: translate(-50%, -50%);
  background: white;
  color: #B42CF0;
  padding: 5px 14px;
}

.borderp {
  background: #F3DCFE;
}

.contact-info {
  padding: 40px;
}
.contact-info h2 {
  color: #B42CF0;
  text-transform: capitalize;
}
.contact-info .c-social {
  margin: 30px auto;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
.contact-info .c-social img {
  margin: 0 10px;
}
.contact-info .c-social a {
  margin-bottom: 0 !important;
}
.contact-info h3 {
  color: #B42CF0;
}
.contact-info hr {
  border: #eee9e9 solid 0.5px;
  margin: 10px 0;
}
.contact-info p {
  font-size: 16px;
  line-height: 35px;
}

.contactinfo {
  margin-top: 30px;
}
.contactinfo h3 {
  color: #B42CF0;
  margin-bottom: 20px;
}
.contactinfo hr {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.3);
}
.contactinfo p {
  line-height: 35px;
}

.contact-form {
  padding: 50px;
}
@media (max-width: 1000px) {
  .contact-form {
    padding: 20px;
  }
}

.contact-form h2 {
  color: #B42CF0;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border-radius: 5px;
  border: none;
  border-bottom: 1px solid #ccc;
}

.contact-form button {
  background-color: red;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #B42CF0;
}

.contact-left {
  padding: 100px;
}
@media (max-width: 1000px) {
  .contact-left {
    padding: 20px;
  }
}

.contact-form-box {
  margin: 70px auto;
}

.map {
  width: 100%;
  height: 400px;
  margin-top: 50px;
}

.hr {
  border: #eee9e9 solid 0.5px;
  margin: 30px auto;
}

.comments-wrapper {
  background: #fff;
  padding: 30px;
  /* Write comment */
  /* Sort */
  /* Comment layout */
  /* Content */
  /* Actions */
}
.comments-wrapper .comment-count {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.comments-wrapper hr {
  border: none;
  border-top: 1px solid #ddd;
  margin-bottom: 25px;
}
.comments-wrapper .write-comment input {
  width: 100%;
  padding: 18px;
  border: 2px solid #d7a9ff;
  outline: none;
  font-size: 16px;
}
.comments-wrapper .sort-row {
  margin: 20px 0;
  font-size: 15px;
}
.comments-wrapper .sort {
  font-weight: 600;
  margin-left: 5px;
}
.comments-wrapper .comment {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.comments-wrapper .avatar {
  width: 45px;
  height: 45px;
  background: #ccc;
  border-radius: 50%;
}
.comments-wrapper .comment-content {
  flex: 1;
}
.comments-wrapper .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.comments-wrapper .username {
  font-weight: 600;
  font-size: 16px;
}
.comments-wrapper .date {
  font-size: 14px;
  color: #666;
  margin-top: 3px;
}
.comments-wrapper .menu {
  font-size: 22px;
  cursor: pointer;
}
.comments-wrapper .comment-text {
  margin: 10px 0;
  font-size: 16px;
}
.comments-wrapper .actions {
  display: flex;
  gap: 20px;
  font-size: 15px;
  color: #333;
}
.comments-wrapper .actions span {
  cursor: pointer;
}
@media (max-width: 1000px) {
    .ff {
        grid-column: span 2;
    }
}