:root {
  --drawer-w: clamp(280px, 84vw, 360px);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-1: 180ms;
  --dur-2: 280ms;
  --header-h: 20px;
  --main-bg: #20292a;
  --menu-items: #dfdeda;
  --primary-color: #c4812d;
}

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

*::after,
*::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

p {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style-type: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: inherit;
  cursor: pointer;
}

input,
textarea {
  font-family: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

/* Default styles (could also serve as mobile styles) */
.container {
  max-width: 100%;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

/* For small screens, e.g., mobile devices */
@media (min-width: 320px) and (max-width: 480px) {
  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* For larger screens, e.g., small laptops */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 90%;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* For desktop screens */
@media (min-width: 1025px) and (max-width: 1280px) {
  .container {
    max-width: 90%;
  }
}

/* For large desktop screens */
@media (min-width: 1281px) and (max-width: 1600px) {
  .container {
    max-width: 1200px;
  }
}

/* For very large desktop screens */
@media (min-width: 1440px) and (max-width: 1800px) {
  .container {
    max-width: 1280px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* For extremely large desktop screens */
@media (min-width: 1801px) and (max-width: 1990px) {
  .container {
    max-width: 1500px;
    padding-left: 35px;
    padding-right: 35px;
  }
}

/* For screens larger than 1990px */
@media (min-width: 1991px) {
  .container {
    max-width: 1600px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Main Css Here */
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  scroll-behavior: smooth;
  background-color: var(--main-bg);
  font-family: "Montserrat", sans-serif;
}

main {
  padding-top: 35px;
}

section {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 120px 0px;
}

.global-bg::before {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #0000001c;
  z-index: -1;
  content: "";
}

/* Header */
.header_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding: 25px 0px;
}

nav {
  width: 100%;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  width: 100%;
}

nav ul li a {
  display: block;
  padding: 10px;
  color: var(--menu-items);
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

nav ul li a.active,
nav ul li a:hover {
  color: var(--primary-color);
  font-weight: bold;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.161);
}

.logo {
  max-width: 50px;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.logo-active {
  display: none;
}

.logo.active .logo-main {
  display: none;
}

.logo.active .logo-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/* Hero Area */
.home_hero {
  background-image: url("../img/hero-bg.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  margin-top: 120px;
  min-height: 625px;
}

/* Hero Area */
/* About Page */
.about_hero h1 {
  font-size: 60px;
  font-weight: lighter;
  color: #fff;
  line-height: 1.2;
}

.about_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 50px;
  padding-top: 40px;
}

.about_single_list {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.about_single_list img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* About Page */
/* Contact Area */
.contactArea {
  position: relative;
  z-index: 1;
}

.contactLogo {
  position: absolute;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.contactLogo img {
  height: 90%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacct_info h1 {
  padding-top: 50px;
  font-size: 140px;
  font-weight: bold;
  color: #fff;
  padding-bottom: 50px;
}

.contact_single_info:not(:last-child) {
  padding-bottom: 100px;
}

.contact_single_info h4 {
  font-size: 56px;
  color: #fff;
  font-weight: 400;
}

.contact_single_info a {
  font-size: 52px;
  color: #fff;
  font-weight: 400;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.contact_single_info a:hover {
  text-decoration: underline;
}

.contact_single_info a:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

/* Contact Area */
/* Contact Button */
.contactBtn_box {
  position: fixed;
  bottom: 50px;
  right: 40px;
  max-width: 120px;
  width: 100%;
  z-index: 99;
}

.contactBtn_box img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Contact Button */
/* Playspace */
.cart_box {
  max-width: 392px;
  width: 100%;
  background: #dfdedabf;
  border-radius: 15px;
  padding: 40px 25px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.top_thumb {
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 320px;
  margin-top: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 10px;
}

.top_thumb h3 {
  font-size: 32px;
  color: #20292a;
  font-weight: 400;
  line-height: 1.2;
  margin-left: -18px;
}

.top_thumb h4 {
  max-width: 240px;
  line-height: 1.2;
  width: 100%;
  margin-left: -18px;
}

.box_text {
  font-size: 24px;
  font-weight: 400;
  color: #20292a;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
  padding-top: 20px;
}

.playspaceo {
  background-image: url("../img/playspace/bg.png");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.workspace {
  background-image: url("../img/workspace/bg.png");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.coffeeshop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("../img/coffeshop/bg.png");
  background-position: top center;
}

.meetingrooms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("../img/meetingrooms/bg.png");
}

.eventpopups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("../img/events/bg.png");
  background-position: top center;
}

.story {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("../img/story/bg.png");
  background-position: bottom center;
}

.playspaceo .top_thumb {
  background-image: url("../img/playspace/playspace-card-thumb.svg");
}

.workspace .top_thumb {
  background-image: url("../img/workspace/workspace-card-thumb.svg");
}

.coffeeshop .top_thumb {
  background-image: url("../img/coffeshop/coffee-card-thumb.svg");
}

.meetingrooms .top_thumb {
  background-image: url("../img/meetingrooms/meetinrooms-card-thumb.svg");
}

.eventpopups .top_thumb {
  background-image: url("../img/meetingrooms/meetinrooms-card-thumb.svg");
}

.story .top_thumb {
  background-image: url("../img/story/story-card-thumb.svg");
}

/* Playspace */
/* Hamburger button */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  color: #fff;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav-toggle .line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  margin: 4px 0;
  -webkit-transition: opacity var(--dur-1) var(--ease-out),
    -webkit-transform var(--dur-1) var(--ease-out);
  transition: opacity var(--dur-1) var(--ease-out),
    -webkit-transform var(--dur-1) var(--ease-out);
  -o-transition: transform var(--dur-1) var(--ease-out),
    opacity var(--dur-1) var(--ease-out);
  transition: transform var(--dur-1) var(--ease-out),
    opacity var(--dur-1) var(--ease-out);
  transition: transform var(--dur-1) var(--ease-out),
    opacity var(--dur-1) var(--ease-out),
    -webkit-transform var(--dur-1) var(--ease-out);
}

/* body.menu-open .nav-toggle .line {
  display: none;
} */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity var(--dur-1) var(--ease-out);
  -o-transition: opacity var(--dur-1) var(--ease-out);
  transition: opacity var(--dur-1) var(--ease-out);
  z-index: 111;
}

body.menu-open .backdrop {
  opacity: 1;
  visibility: visible;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

header.is-fixed {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-transition: background-color 200ms ease,
    -webkit-backdrop-filter 200ms ease;
  transition: background-color 200ms ease, -webkit-backdrop-filter 200ms ease;
  -o-transition: background-color 200ms ease, backdrop-filter 200ms ease;
  transition: background-color 200ms ease, backdrop-filter 200ms ease;
  transition: background-color 200ms ease, backdrop-filter 200ms ease,
    -webkit-backdrop-filter 200ms ease;
}

body.menu-open {
  overflow: hidden;
}

.only-mobile-device {
  display: none;
}

#playspace,
#workspace,
#coffee-shop,
#meeting-rooms,
#event-popups,
#story {
  padding-top: 160px;
}

#contact {
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 901px) {
  .mainMenu.nav-drawer {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: auto;
    height: auto;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    display: block;
  }

  .mobile_nav_top {
    display: none;
  }

  /* Inline horizontal menu */
  #site-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #site-nav a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 600;
  }

  #site-nav a.active {
    color: #d39a2a;
  }

  /* Hide overlay + hamburger on desktop */
  .backdrop {
    display: none !important;
  }

  .nav-toggle {
    display: none;
  }
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .contacct_info h1 {
    padding-top: 40px;
    font-size: 120px;
    padding-bottom: 40px;
  }

  .contact_single_info a,
  .contact_single_info h4 {
    font-size: 42px;
  }

  .about_hero h1 {
    font-size: 52px;
  }
}

/* ============ Mobile (drawer) ============ */
@media (max-width: 900px) {
  .nav-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* Drawer container (left off-canvas) */
  .mainMenu.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--drawer-w);
    background: #fff;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform var(--dur-2) var(--ease-out);
    transition: -webkit-transform var(--dur-2) var(--ease-out);
    -o-transition: transform var(--dur-2) var(--ease-out);
    transition: transform var(--dur-2) var(--ease-out);
    transition: transform var(--dur-2) var(--ease-out),
      -webkit-transform var(--dur-2) var(--ease-out);
    transition: transform var(--dur-2) var(--ease-out),
      -webkit-transform var(--dur-2) var(--ease-out);
    -webkit-box-shadow: 4px 0 28px rgba(0, 0, 0, 0.18);
    box-shadow: 4px 0 28px rgba(0, 0, 0, 0.18);
    z-index: 1001;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  body.menu-open .mainMenu.nav-drawer {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .mainMenu.nav-drawer {
    min-height: 100vh;
  }

  body.menu-open .nav-toggle {
    display: none;
  }

  body.menu-open header.is-fixed {
    background-color: transparent;
  }

  /* Top bar INSIDE the drawer (logo + close) */
  .mobile_nav_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffffdb;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .mobile_nav_top .logo img {
    height: 45px;
  }

  .menuClose {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #111;
    padding: 8px 6px;
    line-height: 1;
  }

  /* Drawer nav list */
  #site-nav {
    overflow: auto;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  #site-nav ul {
    list-style: none;
    margin: 0;
    padding: 16px;
    display: -ms-grid;
    display: grid;
    gap: 12px;
  }

  #site-nav a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
  }

  #site-nav a.active {
    color: #c4812d;
  }

  /* Optional: subtle link reveal when opening */
  #site-nav li {
    opacity: 0;
    -webkit-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    transform: translateX(-8px);
    -webkit-transition: opacity 260ms var(--ease-out),
      -webkit-transform 260ms var(--ease-out);
    transition: opacity 260ms var(--ease-out),
      -webkit-transform 260ms var(--ease-out);
    -o-transition: opacity 260ms var(--ease-out),
      transform 260ms var(--ease-out);
    -webkit-transition: opacity 260ms var(--ease-out),
      -webkit-transform 260ms var(--ease-out);
    transition: opacity 260ms var(--ease-out),
      -webkit-transform 260ms var(--ease-out);
    -o-transition: opacity 260ms var(--ease-out),
      transform 260ms var(--ease-out);
    transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
    transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out),
      -webkit-transform 260ms var(--ease-out);
    transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out),
      -webkit-transform 260ms var(--ease-out);
  }

  body.menu-open #site-nav li {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  body.menu-open #site-nav li:nth-child(1) {
    -webkit-transition-delay: 60ms;
    -o-transition-delay: 60ms;
    transition-delay: 60ms;
  }

  body.menu-open #site-nav li:nth-child(2) {
    -webkit-transition-delay: 110ms;
    -o-transition-delay: 110ms;
    transition-delay: 110ms;
  }

  body.menu-open #site-nav li:nth-child(3) {
    -webkit-transition-delay: 160ms;
    -o-transition-delay: 160ms;
    transition-delay: 160ms;
  }

  body.menu-open #site-nav li:nth-child(4) {
    -webkit-transition-delay: 210ms;
    -o-transition-delay: 210ms;
    transition-delay: 210ms;
  }

  body.menu-open #site-nav li:nth-child(5) {
    -webkit-transition-delay: 260ms;
    -o-transition-delay: 260ms;
    transition-delay: 260ms;
  }

  body.menu-open #site-nav li:nth-child(6) {
    -webkit-transition-delay: 310ms;
    -o-transition-delay: 310ms;
    transition-delay: 310ms;
  }

  body.menu-open #site-nav li:nth-child(7) {
    -webkit-transition-delay: 360ms;
    -o-transition-delay: 360ms;
    transition-delay: 360ms;
  }

  body.menu-open #site-nav li:nth-child(8) {
    -webkit-transition-delay: 410ms;
    -o-transition-delay: 410ms;
    transition-delay: 410ms;
  }
}

@media screen and (max-width: 991px) {
  .contacct_info h1 {
    padding-top: 40px;
    font-size: 80px;
    padding-bottom: 40px;
  }

  .contact_single_info a,
  .contact_single_info h4 {
    font-size: 32px;
  }

  .contact_single_info {
    padding-bottom: 80px;
  }

  .about_hero h1 {
    font-size: 46px;
  }

  .contactBtn_box {
    position: fixed;
    bottom: 30px;
    right: 20px;
    max-width: 100px;
  }

  .home_hero {
    background-size: cover;
    background-position: center;
    min-height: auto;
    margin-top: 100px;
    min-height: 400px;
  }

  .only-mobile-device {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .logo {
    height: 40px;
  }

  .header_content {
    padding: 18px 0px;
  }

  .cart_box {
    margin: 0 auto;
  }

  .contacct_info h1 {
    padding-top: 30px;
    font-size: 62px;
    max-width: 360px;
    width: 100%;
    padding-bottom: 30px;
  }

  .contact_single_info {
    padding-bottom: 60px;
  }

  .about_hero h1 {
    font-size: 32px;
  }

  .about_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    padding-top: 40px;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }

  .top_thumb {
    font-size: 20px;
    height: 250px;
    margin-top: -90px;
    row-gap: 10px;
  }

  .top_thumb h4 {
    max-width: 200px;
    line-height: 1.2;
    width: 100%;
  }

  .box_text {
    font-size: 20px;
  }

  .contactBtn_box {
    position: fixed;
    bottom: 30px;
    right: 10px;
    max-width: 80px;
  }

  .contact_single_info a,
  .contact_single_info h4 {
    font-size: 20px;
  }

  .contacct_info h1 {
    padding-top: 30px;
    font-size: 48px;
    max-width: 280px;
    width: 100%;
    padding-bottom: 30px;
  }

  .home_hero {
    margin-top: 80px;
    min-height: 270px;
  }

  .top_thumb h3 {
    margin-left: -15px;
  }

  .top_thumb h4 {
    margin-left: -15px;
  }
}