@import url("https://fonts.googleapis.com/css2?family=Manrope&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&family=Manrope&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400 !important;
  font-style: normal;
}

body {
  line-height: 1.45;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Big Shoulders", sans-serif;
}

span {
  font-family: "Big Shoulders", sans-serif;
}

/* ---------------------------------------------------- */

#cursor {
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 24px;
  background-color: #ffffff00;
  border: 2px solid #000;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

header {
  width: 100%;
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #00000010;
  z-index: 999;
  position: relative;
}

header .logo img {
  max-width: 70px;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav li a {
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 24%;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
  color: #fff;
  z-index: 99999;
  padding: 60px;
  transition: right 0.5s ease;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slide-menu.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-logo {
  width: 70px;
  margin-bottom: 20px;
}

.menu-img {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

.menu-text {
  margin-bottom: 20px;
  line-height: 1.5;
}

.menu-icons span {
  font-size: 22px;
  margin-right: 12px;
  cursor: pointer;
}

.burg-menu {
  display: inline-block;
  width: 100%;
  text-align: right;
  text-align: -webkit-right;
  cursor: pointer;
}

.burg-menu .menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 2px;
  flex-wrap: wrap;
  max-width: 30px;
}

.about-icon .menu-dot {
  border: 1px solid #ffffff !important;
}

.burg-menu .menu-icon span.menu-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  border-radius: 100%;
  transition: all ease-in-out 0.3s;
}

.burg-menu .menu-icon:hover span.menu-dot {
  background-color: #000;
}

.burg-menu .menu-icon span.menu-dot:first-child {
  background-color: #000;
}

.burg-menu .menu-icon span.menu-dot:last-child {
  background-color: #000;
}

.burg-menu .menu-icon:hover span.menu-dot:first-child {
  background-color: transparent;
}

.burg-menu .menu-icon:hover span.menu-dot:last-child {
  background-color: transparent;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100%;
  background: #000;
  padding: 50px 30px;
  transition: 0.4s ease;
  z-index: 9999;
}

.mobile-menu.show {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  font-weight: 600;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.close-menu:hover {
  opacity: 0.6;
}

.main-hed {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.main-hed.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 6px 20px;
  transition: 0.35s ease;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/* ---------------------------------------------------- */


.banner-section {
  padding: 100px 0px;
  color: #000;
  width: 90%;
  margin: auto;
  text-align: center;
  overflow: hidden;
}

.banner-text {
  font-size: 300px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  line-height: 1;
}

.tag {
  position: absolute;
  font-size: 18px;
  text-transform: uppercase;
  background-color: #e0a5a5;
  padding: 4px 14px 4px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  z-index: 50;
  transform: rotate(-13.9998deg);
}

.tag-blue {
  background: #b8d7dd;
  color: #000000;
}

.banner-img {
  width: 580px;
  height: auto;
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s ease;
}

.img-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.reveal {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  left: 0;
  top: 0;
  transform: translateX(0);
}

.banner-desc {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  text-align: start;
  width: 33%;
  margin-left: 58px;
}

/* -------------------- */


.brand-section2 {
  text-align: center;
  padding: 60px 0;
  display: none;
}

.title2 {
  font-size: 80px;
  font-weight: 600;
  margin: 10px 0;
  position: relative;
}

.banner-desc2 {
  padding: 20px 20px;
}

.tag2 {
  font-size: 18px;
  font-weight: 700;
  background: #f66;
  color: #000000;
  padding: 5px 15px;
  transform: rotate(-10deg);
  display: inline-block;
  margin-left: 10px;
  position: absolute;
}

.tag-red2 {
  background: #e0a5a5;
}

.tag-blue2 {
  background: #b8d7dd;
  transform: rotate(10deg);
}

.image-row2 {
  display: flex;
  justify-content: center;
  gap: 30px;
}


/* ---------------------------------------------------- */


.ideas-section {
  padding: 0px 120px;
  text-align: center;
  gap: 0px;
}

.ideas-section small {
  font-size: 18px;
  line-height: 30px;
  color: #000;
}

.ideas-section h2 {
  font-size: 130px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  color: #000;
}

.idea-row {
  justify-content: center;
  align-items: center;
  gap: 0;
}

.idea-card {
  position: relative;
  border: 1px solid #000;
  padding: 40px;
  background: #fff;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  text-align: start;
}

.active1:hover {
  transform: translateY(-10px)
}

.active1:hover:after {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  opacity: 1;
  visibility: visible;
}

.active1:after {
  content: '';
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: #e0a5a5;
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 15px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}

.active2:hover {
  transform: translateY(-10px);
}

.active2:hover:after {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  opacity: 1;
  visibility: visible;
}

.active2:after {
  content: '';
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: #e9ca99;
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 15px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}

.active3:hover {
  transform: translateY(-10px);
}

.active3:hover:after {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  opacity: 1;
  visibility: visible;
}

.active3:after {
  content: '';
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: #b8d7dd;
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 15px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}

.active4:hover {
  transform: translateY(-10px);
}

.active4:hover:after {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  opacity: 1;
  visibility: visible;
}

.active4:after {
  content: '';
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: #c7b3f3;
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 15px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}

.idea-card h4 {
  font-size: 30px;
  font-weight: 600;
  margin-top: 20px;
  font-family: "Manrope", sans-serif;
}

.idea-card p {
  font-size: 15px;
  margin-top: 8px;
  color: #333;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 1s ease;
}

.idea-card:hover p {
  opacity: 1;
  max-height: 200px;
}

.icon-box img {
  width: 38px;
  font-size: 40px;
}

.col-custom {
  padding: 0;
}

.idea-row .col-custom:nth-child(1) {
  margin-top: 50px;
}

.idea-row .col-custom:nth-child(2) {
  margin-top: 150px;
}

.idea-row .col-custom:nth-child(3) {
  margin-top: 50px;
}

.idea-row .col-custom:nth-child(4) {
  margin-top: -50px;
}


/* ---------------------------------------------------- */


.facts-section {
  position: relative;
  height: 100vh;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.facts-section h1 {
  font-size: 200px;
  line-height: 1;
  color: #000;
}

.fact-pill {
  position: absolute;
  background: #fffc;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.fact-pill:hover {
  transform: translateY(-5px);
}

.pill-1 {
  top: 32%;
  left: 15%;
}

.pill-2 {
  top: 25%;
  left: 45%;
}

.pill-3 {
  bottom: 27%;
  left: 23%;
}

.pill-4 {
  bottom: 36%;
  left: 58%;
}

.pill-5 {
  top: 35%;
  right: 15%;
}

.fact-hover-box {
  position: absolute;
  top: 60px;
  left: 0px;
  transform: translateY(-50%) scale(0.9);
  background: #eeeeee;
  border-radius: 16px;
  opacity: 0;
  transition: all 0.3s ease;
  width: 220px;
  padding: 10px;
  text-align: center;
  pointer-events: none;
  z-index: 10;
}

.fact-pill:hover .fact-hover-box {
  opacity: 1;
  transform: translateX(6%) scale(1);
}

.fact-hover-box img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 8px;
}

.fact-hover-box p {
  font-weight: 600;
  margin: 0;
  font-size: 15px;
  color: #000;
}


/* ---------------------------------------------------- */


.brand-connect-section {
  display: inline-block;
  background: #fff;
  padding: 80px 80px;
}

.main-heading {
  align-self: flex-end;
  margin: 3.75vw 0;
  font-size: 50px;
  line-height: 1.4;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  color: #999999;
}

.main-heading span {
  display: inline-block;
  background-color: white;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-color 0.3s, color 0.3s;
}

.circle-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-btn {
  width: 185px;
  height: 185px;
  font-size: 27px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  cursor: pointer;
  text-align: center;
}

.circle-btn:hover {
  background-color: #000;
}

.circle-btn:hover i {
  color: #fff;
  transform: rotate(0deg);
}

.circle-btn i {
  font-size: 32px;
  color: #000;
  transition: all 0.4s ease;
  transform: rotate(-30deg);
}

.description {
  font-size: 18px;
  color: #000;
  line-height: 30px;
}

.description-titl {
  font-size: 30px;
  font-weight: 500;
  color: #000;
  font-family: "Manrope", sans-serif;
}


/* ---------------------------------------------------- */


.hero-section {
  position: relative;
  background: url('img/home1-large-img.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, transparent 40%);
  z-index: 1;
}

.hero-title {
  position: relative;
  z-index: 2;
  font-size: 100px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}


/* ---------------------------------------------------- */


.feature-main {
  display: inline-block;
  width: 100%;
}

.section-title {
  padding: 180px 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 55px;
}

.feature-box {
  display: flex;
  text-align: left;
  margin-bottom: 50px;
  cursor: pointer;

}

.feature-number {
  position: relative;
}

.feature-number i {
  display: none;
}

.feature-box:hover .feature-number {
  background-color: #f5a3a3;
  color: #fff;
}

.feature-box:hover .feature-number span {
  display: none;
}

.feature-box:hover .feature-number i {
  display: inline-block;
  transform: rotate(-30deg);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 23px;
  font-weight: 500;
  color: #111;
  margin-right: 15px;
}

.feature-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.feature-text {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
}


/* ---------------------------------------------------- */


.word-love-section {
  background: #fff;
  padding: 200px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.word-title {
  font-size: 270px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  color: #000;
  position: relative;
}

.word-title .label {
  position: absolute;
  top: 30%;
  left: -20px;
  transform: rotate(-10deg);
  background-color: #e0a5a5;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  padding: 3px 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 50px;
  max-width: 600px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  gap: 20px;
}

.testimonial-card:nth-child(1) {
  z-index: 1;
}

.testimonial-card:nth-child(2) {
  z-index: 2;
}

.testimonial-card:nth-child(3) {
  z-index: 3;
}

.testimonial-card:nth-child(4) {
  z-index: 4;
}

#love {
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 50px;
  color: #999;
  line-height: 0.5;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-card h6 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  font-family: "Manrope", sans-serif;
}

.testimonial-card h6 span {
  font-weight: 400;
  color: #555;
  font-family: "Manrope", sans-serif;
}


/* ---------------------------------------------------- */


.brands-video-section {
  padding: 0px 0px;
}

.brand-box:last-child {
  border: 1px solid #000;
}

.play-circle img {
  position: absolute;
  bottom: 45%;
  right: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotateText 10s linear infinite;
  position: absolute;
  animation: spin 8s linear infinite;
  cursor: pointer;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* ---------------------------------------------------- */


.hero {
  min-height: 90vh;
  padding: 80px 80px;
  padding-bottom: 0;
  background: #000000;
  overflow: hidden;
}

.main-title {
  font-size: 150px;
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
  color: #ffffff;
}

.right-para {
  font-size: 17px;
  width: 320px;
  margin-left: auto;
  line-height: 1.55;
  color: #ffffff;
  text-align: start;
}

.cta-btn {
  background: #000;
  border: none;
  padding: 14px 20px;
  color: #ffffff;
  font-size: 33px;
  margin-top: 30px;
  letter-spacing: 0.5px;
  transition: 0.25s ease;
  font-family: "Big Shoulders", sans-serif;
  border: 1px solid #ffffff;

}

.cta-btn:hover {
  border: 1px solid #ffffff;
  transform: translateY(-3px);
  background-color: #000000;
  color: #ffffff;
}

.footer-main-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fotr-box {
  display: flex;
  align-items: end;
  justify-content: end;
  padding-top: 120px;

}

.fotr-but-box {
  padding: 36px 0px 20px 0px;
  border-top: 1px solid #ffffff;
  background-color: #fff;
}

.phone-icon {
  width: 45px;
}

.phone-text {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.email-text {
  margin: 0;
  font-size: 16px;
  color: #979797;

}

.footer-link {
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
}

.fotr-but-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solis {
  font-size: 338px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 10px;
  color: #ffffff;
  transform: translateY(25%);
  font-family: "Manrope", sans-serif;
}

.footer-last {
  width: 100%;
  background-color: #000000;
  padding: 40px 0 20px 0;
  border-top: 1px solid #ffffff;
  position: relative;
  display: flex;
  align-items: center;
}


/* -----------------------About Us----------------------------- */


.studio-section {
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-main {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000;
}

.center-content {
  text-align: center;
  margin-bottom: 80px;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.title {
  font-size: 130px;
  font-weight: 500;
  line-height: 1.0;
}

.images-wrapper {
  position: relative;
  width: 100%;
}

.img-left {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 32vw;
}

.img-right-top {
  position: absolute;
  right: 8%;
  bottom: 100px;
}

.img-right-bottom {
  position: absolute;
  right: 0%;
  bottom: 580px;
}


/* ---------------------------------------------------- */


.stats-sections {
  background: #fff;
  padding: 80px 20px;
  text-align: start;
}

.stat-title {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.stat-number {
  font-size: 120px;
  line-height: 1;
  font-weight: 600;
  color: #000;
}


/* ---------------------------------------------------- */


.service-grid {
  width: 100%;
  max-width: 90%;
  padding: 80px 20px;
  margin: auto;
}

.service-box h3 {
  font-size: 33px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.4s ease;
  font-family: "Manrope", sans-serif;
}

.service-box {
  border: 1px solid #000;
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-box .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.2);
  transition: 0.5s ease;
  z-index: 1;
}

.service-box:hover .hover-img {
  opacity: 1;
  transform: scale(1);
}


/* ---------------------------------------------------- */


.achieved-section {
  padding: 80px 20px;
  width: 100%;
  max-width: 90%;
  margin: auto;
}

.title-wrap {
  position: relative;
  display: inline-block;
  color: #000;
}

.about-main-title {
  font-size: 120px;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 2px;
  color: #000;
}

.award-tag {
  position: absolute;
  top: 45%;
  left: 40%;
  background: #e8a4a4;
  padding: 3px 10px;
  transform: rotate(-8deg);
  font-weight: 500;
  font-size: 32px;
}

.achieved-text {
  font-size: 20px;
  max-width: 450px;
  margin-left: auto;
  line-height: 1.7;
}


/* ---------------------------------------------------- */


.awards-timeline {
  width: 100%;
  max-width: 90%;
  padding: 80px 20px;
  margin: auto;
}

.year {
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 1px;
}

.award-title {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: -8px;
}

.award-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.award-item {
  position: relative;
  width: 20%;
}

.small-img {
  width: 100%;
  object-fit: cover;
}

.medium-img {
  width: 100%;
  object-fit: cover;
}

.big-img {
  width: 100%;
  object-fit: cover;
}

.large-img {
  width: 100%;
  object-fit: cover;
}

.tallest-img {
  width: 100%;
  object-fit: cover;
}


/* ---------------------------------------------------- */


.client-logo-section {
  background: #fff;
  padding: 80px 20px;
  width: 100%;
  max-width: 90%;
  margin: auto;
}

.logo-cell {
  padding: 20px;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ---------------------------------------------------- */


.converse-section {
  background: url('img/fullscren-16.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
}

.converse-box {
  background: #fff;
  max-width: 390px;
  width: 390px;
  max-height: 315px;
  height: 315px;
  padding: 45px;
  margin-left: 60px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  font-family: "Manrope", sans-serif;
  opacity: 1;
  transform: translateY(0);
}

.converse-box h3,
p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

.converse-btn {
  background: black;
  color: white;
  padding: 12px 30px;
  border: none;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 50px;
}

.converse-btn:hover {
  background: #333;
}


/* ---------------------------------------------------- */


.news-main {
  padding: 80px 20px;
  width: 100%;
  max-width: 90%;
  margin: auto;
}

.news-title-main {
  font-size: 120px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #000;
}

.news-tag {
  position: absolute;
  top: 45%;
  left: 35%;
  background: #f5a9a9;
  font-weight: 500;
  transform: rotate(-5deg);
  font-size: 29px;
  padding: 4px 10px 4px 10px;
}

.news-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.news-title {
  font-size: 40px;
  font-weight: 500;
}

.meta {
  color: #000000;
  font-size: 17px;
  margin-top: 15px;
}


/* ---------------------service page------------------------------- */


.service-main {
  width: 100%;
  max-width: 90%;
  margin: auto;
  padding: 80px 20px 0px 20px;
}

.service-title-main {
  font-size: 150px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #000;
}

.service-text {
  font-size: 17px;
  font-weight: 500;
  color: #000;
}


/* ---------------------------------------------------- */


.section-brand-main {
  width: 100%;
  max-width: 90%;
  padding: 0px 20px 80px 20px;
  margin: auto;
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-main-box {
  padding: 80px 0px 0px 0px;
}

.service-text-main h2 {
  font-size: 58px;
  font-weight: 500;
}

.desc {
  font-size: 18px;
  margin-bottom: 25px;
}

.service-btn {
  border: 1px solid #000;
  padding: 10px 25px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  margin-left: 12px;
  transition: 0.3s;
}

.service-btn:hover {
  background: #000;
  color: #fff;
}


/* ----------------------Our Portfolio page------------------------------ */


.portfolio-section {
  width: 100%;
  padding: 80px 20px;
}

.portfolio-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.portfolio-title {
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 18px;
  text-transform: uppercase;
}

.portfolio-cat {
  font-size: 16px;
  color: #000000;
}


/* ----------------------Our Portfolio page------------------------------ */


.contact-img {
  height: 100%;
  object-fit: cover;
}

.contact-section {
  position: relative;
}

.contact-tag {
  position: absolute;
  top: 30%;
  left: -80px;
  background: #f7b7b7;
  transform: rotate(-15deg);
  font-weight: 500;
  font-size: 32px;
  text-transform: uppercase;
  padding: 5px 12px 3px 12px;
}

.con-titile h5 {
  font-family: "Manrope", sans-serif;
}

.contact-title {
  font-size: 90px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #000;
}

.contact-main {
  background-color: #f2f2f2;
  padding: 9%;
}

.contact-desc {
  max-width: 420px;
  font-size: 17px;
  color: #555;

}

.icon-circle {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s ease;
  color: #000;
  text-decoration: none;
}

.icon-circle:hover {
  background: #000;
  color: #fff;
}


/* ---------------------------------------------------- */


.note-section {
  padding: 80px 20px;
  width: 100%;
  margin: auto;
}

.note-title {
  font-size: 90px;
  font-weight: 500;
  letter-spacing: 2px;
}

.note-sub {
  font-size: 16px;
  color: #555;
}

.underline-input {
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
}

.underline-input:focus {
  box-shadow: none;
  border-bottom: 2px solid #111;
}

.send-btn {
  background: #000;
  color: #fff;
  padding: 12px 35px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.form-label {
  display: flex;
  align-items: end;
  justify-content: start;
}

.send-btn .arrow {
  margin-left: 10px;
  font-size: 22px;
}

.send-btn:hover {
  background: #333;
}


.map-section {
  width: 100%;
  height: 600px;
}

#customMap {
  width: 100%;
  height: 100%;
}