@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #9B392C;
    --white: #fff;
    --black: #939393;
	--gray:#E3E3E3;
}

body {
margin: 0;
padding: 0 !important;
font-family: "Playfair Display", serif;
font-family: "Poppins", serif;	
scroll-behavior: smooth;
/* overflow: inherit !important; */
background:var(--gray);	
}

input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="date"], textarea, select{
    color: #1a1a1a;
    font-size: 14px;
    line-height: normal;
    width: 100%;
    outline: 0;
    font-family: "Poppins", serif;
    margin: 10px 0;
    padding: 7px;
    font-weight: 400;
    letter-spacing: .5px;
    background: none;
    border: 1px solid #a7a7a7;
}

::placeholder {
  color: #848484;
  font-weight:400;
}

input[type="checkbox"] {
    appearance: none; /* Remove default styling */
    width: 25px;
    height: 25px;
    border: 2px solid black; /* Set border color */
    border-radius: 5px; /* Make rounded corners */
    background-color: white;
    cursor: pointer;
    display: inline-block;
}

/* When checkbox is checked */
input[type="checkbox"]:checked {
    background-color: green; /* Change background */
    border-color: red; /* Change border color */
}

/* Optional: Add a checkmark */
input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 18px;
    color: var(--primary);
    display: block;
    text-align: center;
    line-height: 25px;
}


select,
input[type="date"] {
    padding: 14px 17px;
}
input[type="submit"] {
    color: var(--white);
    background: var(--primary);
    font-size: 14.5px;
    border: 0;
    outline: none;
    font-weight: 300;
    font-family: "Poppins", serif;
    padding: 10px 20px;
    letter-spacing: .5px;
    border-radius: 0;
    line-height: normal;
}
input[type="submit"]:hover {
    background: var(--primary);
    color: var(--white);
    transition: 0.8s;
}
textarea {
    height: 70px;
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px 0;
font-family: "Playfair Display", serif;
    color: var(--black);
    font-weight: normal;
    text-transform: inherit;
    line-height: normal;
}

h1 {
    font-size: 28px
}

h2 {
    font-size: 24px
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}
p {
    padding: 0;
    margin: 0 0 10px 0;
    font-family: "Poppins", serif;
    color: var(--black);
    font-size: 13.5px;
    line-height: 22px;
    font-weight: normal;
}
ul, li, a {
    list-style-type: none;
    font-family: "Poppins", serif;
    font-size: 11.3px;
    line-height: 22px;
    font-weight: normal;
}
.secondary-container {
    padding: 60px 0;
}
a:hover {
    transition: 0.8s;
    text-decoration: none;
}
.heading {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 9px;
}
.heading:before {
    content: '';
    position: absolute;
    border-bottom: solid 1px #606060;
    width: 25px;
    bottom: -4px;
}

/* Loader */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
}
.overlay .overlayContent img {
    width: 35px;
}
.pageloader .loading {
    letter-spacing: 12px;
    text-transform: capitalize;
    overflow: hidden;
    position: relative;
    color: var(--black);
    margin-top: 20px;
}
.pageloader .loading:before {
    color: var(--black);
    content: attr(data-loading-text);
}
.pageloader .loading:after {
    top: 0;
    left: 0;
    width: 0;
    opacity: 1;
    color: #777;
    overflow: hidden;
    position: absolute;
    content: attr(data-loading-text);
    -webkit-animation: loading 5s infinite;
    animation: loading 5s infinite;
}
@-webkit-keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


.overlay .overlayDoor:before, .overlay .overlayDoor:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--gray);
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.8s;
}
.overlay .overlayDoor:before {
  left: 0;
}
.overlay .overlayDoor:after {
  right: 0;
}
.overlay.loaded .overlayDoor:before {
  left: -50%;
}
.overlay.loaded .overlayDoor:after {
  right: -50%;
}
.overlay.loaded .overlayContent {
  opacity: 0;
  margin-top: -15px;
}
.overlay .overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    background: var(--gray);
}
.loader {
  width: 128px;
  height: 128px;
  border: 3px solid #fff;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  position: relative;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .inner {
  width: 64px;
  height: 64px;
  border: 3px solid transparent;
  border-top: 3px solid #fff;
  border-radius: 50%;
  -webkit-animation: spinInner 1s linear infinite;
          animation: spinInner 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}
@keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}

/* Navigation Menu */

.hamburger-menu-button {
    width: 45px;
    height: 35px;
    padding: 6px;
    display: block;
    position: relative;
    z-index: 100;
    border: none;
    background: none;
    color: transparent;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    outline: 0;
    margin-right: 40px;
}
.hamburger-menu-button-open {
  top: 50%;
  /* margin-top: -1px; */
  left: 50%;
  /* margin-left: -12px; */
}
li#menu-item-3222 {
    display: none;
}
.hamburger-menu-button-open, .hamburger-menu-button-open::before, .hamburger-menu-button-open::after {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.hamburger-menu-button-open::before, 
.hamburger-menu-button-open::after {
  left: 0;
  content: "";
}
.hamburger-menu-button-open::before {
  top: 7px;
}
.hamburger-menu-button-open::after {
  bottom: 6px;
}
.hamburger-menu-button-close {
  background: transparent;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.hamburger-menu-button-close::before {
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
}
.hamburger-menu-button-close::after {
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.ham-menu {
    position: absolute;
    top: 10px;
    right: 70px;
    margin: auto;
    max-width: inherit;
    overflow: hidden;
}
.ham-menu ul {
-webkit-transform: translateX(110%);
  transform: translateX(500%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.ham-menu.on ul {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.ham-menu ul {
    font-size: 0;
    display: flex;
}

/* Header */

header {
    padding: 50px 0 0;
}
.home ul.menutops.secondary {
    display: none;
}
.home nav#ham-navigation nav.menucontainers {
    display:block;
}
nav#ham-navigation nav.menucontainers {
    display: none;
}
.home header {
    position: absolute;
    top: 0;
    z-index: 999;
    width: 100%;
}
header img {
    width: 200px;
    position: relative;
    z-index: 99;
}
.page-id-2701 header img {
    width: 145px;
}
.page-id-2878 header img {
    width: 145px;
}
.page-id-2687 header img {
    width: 145px;
}
.page-id-3024 header img {
    width: 145px;
}
.page-id-3263 header img {
    width: 145px;
}
.page-id-2484 .designcopy p {
    padding: 0;
}
.page-id-2484 .bannercontact li {
    margin-bottom: 15px;
}
.page-id-3024 .bannercontact li {
    margin-bottom: 15px;
}
/* Main Slider */
.mainslider {
    position: relative;
    height: 100vh;
}
.mainslider #carouselExampleFade img {
    height: 100vh;
    width: 100%;
}
.mainslider .carousel-caption h2 {
    font-size: 25px;
    font-family: "Playfair Display", serif;
}
.mainslider footer {
    position: absolute;
    bottom: 0;
}
/* banner menus section  */
/*
.menudetails {
    padding: 100px 0 0;
    width: 100%;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
}
*/
.menudetails {
    padding: 0;
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    visibility: hidden;
    z-index: 20;
}
.on .menudetails {
    background: #e3e3e3;
  visibility: visible;
}
.bannermenus ul li {
    margin-bottom: 50px !important;
}
.bannermenus ul li a {
    font-size: 20px;
    font-family: "Playfair Display", serif !important;
    transition:.3s;
}
.bannermenus ul li a:active{
 color:var(--primary)
  transition:.3s; 
}
.page-id-1163 .bannercontact {
    margin-right: 30px;
}
.page-id-2701 .bannercontact {
    margin-right: 35px;
}
.page-id-2687 .bannercontact {
    margin-right: 35px;
}
.page-id-2878 .bannercontact {
    margin-right: 35px;
}
.page-id-2484 .bannercontact {
    margin-right: 10px;
}
.page-id-3024 .bannercontact {
    margin-right: 35px;
}

.bannercontact li {
    color: var(--black);
    margin-bottom: 6px;
}
.bannercontact span {
    display: block;
    position: relative;
    margin-bottom: 8px;
}
.bannercontact span:after {
    position: absolute;
    content: '';
    height: 1px;
    width: 12px;
    background:var(--primary);
    bottom: 0px;
    left: 0;
}
.bannermenus ul {
    display: block !important;
}
.bannercontact {
    display: block !important;
}

/* About Us  */
.secondary-container .aboutus {
    padding: 60px 0 0;
}
.abtprofile .heading {
    margin-bottom: 15px;
}
[style="overflow: hidden;"] .aboutcopy {
position: relative;
z-index: 1111;
}
[style="overflow: hidden;"] .logo img{
width:160px;
}
.menudetails .row {
    margin-top: 50px;
}
.aboutcopy p {
    font-size: 8px;
    line-height: 15px;
}
.aboutcopy p span {
    display: block;
    font-size: 10px;
    color: #515151;
    padding: 2px;
    margin-bottom: 8px;
    border: solid 1px #a0a0a0c7;
}
.aboutcnt {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s ease-in-out;
}
.aboutcnt h2{
transition: .3s ease-in-out;
}

.aboutcnt h2:hover{
    color: #404040;
    transition: .3s ease-in-out;
}
.aboutcnt strong:hover {
    color: #404040;
    transition: .3s ease-in-out;
}
.aboutcnt strong {
    font-family: "Playfair Display", serif;
    color: #898989;
    font-weight: normal;
    font-size: 19px;
    transition: .3s ease-in-out;
}
.page-id-2878 .aboutcnt strong {
width:80% !important;
}
.page-id-2878 .born {
    width: 72% !important;
}

.aboutlft figure {
 overflow:hidden;
 position:relative;
}
.aboutlft figure img {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    object-fit: cover;
    transition: all ease-in-out .8s;
}
.aboutlft {
    column-gap: 45px;
    transition: all ease-in-out .5s;
}
.aboutdesc .readbtn {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
    margin-right: 35px;
}
.aboutlft img:hover{
    filter: inherit;
    transform:scale(1.1);
}
.aboutcnt .born {
    color: #898989;
    font-size: 9px;
    line-height: 16px;
    font-weight: normal;
    display: block;
    width:79%;
}
.aboutdesc {
    position: relative;
    padding-left: 80px;
}
.aboutdesc p {
    text-align: justify;
    height: 295px;
    overflow-y: scroll;
    line-height: 24px;
    width: 92%;
    font-size: 12px;
}
.page-id-2878 .aboutdesc p {
    width: 89%;
}
.readbtn img {
    margin-top: 7px;
    margin-left: 5px;
}
.aboutdesc p::-webkit-scrollbar {
    width: 1px; /* Adjust the width as needed */
}

.aboutdesc p::-webkit-scrollbar-thumb {
    background: var(--grey);
    border-radius: 4px;
}

/* .aboutdesc p::-webkit-scrollbar-track {
    background: var(--primary);
    width:2px;
} */

.aboutdesc p::-webkit-scrollbar-button {
    display: none; 
}
/* artists section  */
.artists {
    padding-top: 140px;
}
.aboutimage{
 transition:.3s ease-in-out;
}
.aboutimage:hover .imageinfo{
 opacity:1;
 transition:.3s ease-in-out;
}
.artists img {
    width: 100%;
    height: auto;
}
.imageinfo img {
    width: 100%;
    height: 100%;
}
.imageinfo {
    position: absolute;
    top: 0;
    opacity: 0;
    transition:.3s ease-in-out;
    width: 100%;
    height: 100%;
}
.artists .row {
    row-gap: 20px;
}
.horseimg{
  padding-top:20px;
  transition:.3s;
}
.horseimg figure:hover .horsesimg{
 opacity:1;
transition:.3s;
}
.horsesimg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition:.3s;
    opacity: 0;
}
.horsesimg img {
    width: 100%;
    height: 100%;
    transition:.3s;
}
.horseimg .btn {
    background: var(--primary);
    color: var(--white);
    margin: 0 auto;
    display: block;
    width: fit-content;
    margin-top: 15px;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: unset;
}
/* sketches section  */
.Ourgallery {
    margin: 40px 0;
}
.about-sketches.slick-slide.slick-current.slick-active.slick-center img {
    filter: brightness(1);
}
.about-Ourgallery.slick-slide.slick-current.slick-active.slick-center img {
    filter: brightness(1);
}
.about-sketches img {
 transition:.3s ease-in-out;
}
.about-Ourgallery img {
 transition:.3s ease-in-out;
}
.skchcopy p {
    font-family: "Playfair Display", serif;
    letter-spacing: .5px;
    font-weight: 400 !important;
    padding-left: 12px;
}
.designcopy p {
    font-family: "Playfair Display", serif;
    letter-spacing: .5px;
    font-weight: 400 !important;
    padding-left: 12px;
}
/* artichtec section  */
.lamer {
    height: 923px;
    object-fit: cover;
}
.lmaerinner {
    height: 923px;
}
.architecdesigns {
    padding-top: 140px;
}
.architecdesigns img {
    width: 100%;
    object-fit: cover;
}
.architecdesigns .row {
    row-gap: 45px;
}
figure.bombay img {
    height:980px;
    object-fit: cover;
}
.orion img{
 height:auto !important;
}
.architecdesigns .col-12 {
    width: 90%;
    margin: 0 auto;
}
.annete img {
    height: 609px;
    object-fit: cover;
}
.innerimg {
    position: absolute;
    top: 0;
    width: 100%;
    height:100%;
    opacity: 0;
    transition: .3s ease-in-out;
}
.architecdesigns figure{
 position:relative;
 overflow:hidden;
 transition: .3s ease-in-out;
}
.architecdesigns figure:hover .innerimg{
 opacity:1;
 transition: .3s ease-in-out;
}
.architecdesigns .btn {
    background: var(--primary);
    color: var(--white);
    display: block;
    width: fit-content;
    margin: 15px auto 0;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: unset;
}
.about-architecsketches.slick-slide.slick-current.slick-active.slick-center img {
    filter: brightness(1);
}
.about-architecsketches img {
 transition:.3s ease-in-out;
}
.architecsketches {
    padding-top: 60px;
}
/* entrepreneur section  */
.entrepreneurimg {
    padding-top: 140px;
}
.entrepreneurimg figure:hover .innerimg{
 opacity:1;
 transition:.3s ease-in-out;
}
.entrepreneurtext h4 {
    font-family: poppins;
}
.aboutentrepreneur {
    padding-top: 18px;
}
.aboutentrepreneur ul li {
    color: var(--black);
    font-size: 12px;
}
.aboutentrepreneur .entrepreneurtext {
    position: relative;
    padding-right: 13px;
    border-right: solid 1px #a0a0a0c7;
}
/* .entrepreneurtext:after {
    position: absolute;
    content: '';
    top: -7px;
    height: 245px;
    border: 1px solid #00000052;
    background: #40404000;
    right: 0;
} */
.entrepreneurtexts {
    column-gap: 20px;
}
.entrepreneurtexts h4:first-child {
    border-right: 1px solid #0000003d;
    padding-right: 15px;
}
.aboutentrepreneur .entrepreneurtext p {
    font-size: 9.8px;
    line-height: 18px;
    padding-left: 10px;
}
.aboutentrepreneur .row {
    border-top: solid 1px #a0a0a0c7;
}
.entrepreneurtextimg img {
    width: 185px !important;
    height: 100px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}
figure.numberimg img {
    height: 100%;
    width: 230px;
    margin-bottom:8px;
}
.aboutentrepreneur .row .col-lg-4:nth-child(2) .entrepreneurtext {
    border-right: unset;
}

.entrepreneurtext h4 {
    font-family: poppins;
    font-size: 16px;
    margin-top: 7px !important;
    margin-bottom: 7px;
}
.entrepreneurtexts h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.entrepreneurtext span {
    display: block;
    margin-bottom: 2px;
    color: #a3a2a2;
    font-size: 12px;
}
/* .entrepreneurtexts:after {
    position: absolute;
    content: '';
    top: -72px;
    height: 235px;
    border: 1px solid #00000052;
    background: #40404000;
}
 */
/* media section  */

.mediaimg img {
    width: 100%;
   
}
.mediaimg .btn {
    background: var(--primary);
    display: block;
    width: fit-content;
    margin: 15px auto 0;
    color: var(--white);
    border-radius: unset;
    padding: 8px 15px;
    font-size: 13px;
}
.page-id-2484 .hamburger-menu-button {
    margin-right: 3px;
}
.journeyimg img{
   width: 100%;
   
}
.media-contact {
    padding-top: 60px;
}
.wpcf7-not-valid-tip {
    color: var(--primary) !important;
}
.media-contact .btn {
    background: var(--primary);
    color: var(--white);
    margin-top: 25px;
    font-size: 12px;
    border-radius: unset;
}
/* services section  */

.services {
    background: url(../images/services-bg-1.png);
    padding: 50px 0 60px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 30px;
}
.services .modal-body ul li:before {
    display: none;
}
.services .modal-content .btn {
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:20px !important;
    width: fit-content;
}
.services .modal-content .btn br {
    display: none;
}
.about-services {
    background: var(--white);
    padding: 0px 16px 16px 16px;
    border-radius: 6px;
    height: 100%;
}
.about-services figure {
    height: 85px;
    width: 85px;
    background: #c3188f2e;
    border-radius: 0 0 50px 50px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-bottom: 10px;
}
.about-services figure img {
    width: 60px;
}
ul.servicesbtn {
    display: flex;
    flex-wrap: wrap;
}
ul.servicesbtn li {
    width: 50%;
    margin-bottom: 8px;
    position:relative;
}
ul.servicesbtn li a {
    padding-left: 25px;
}
ul.servicesbtn li:before {
    font-family: 'Font Awesome 5 Free';
    content: "\f0a4";
    color: var(--primary);
    padding-right: 5px;
    position: absolute;
    left: 0;
    top: 1px;
}
.services  .row {
    row-gap: 13px;
   justify-content:center;
}
.modal-body .mail {
    color: var(--primary);
}
/* product page  */
.products {
    margin-bottom: 50px;
}
ul.product-btn li {
    color: var(--primary);
    margin-right: 20px;
    margin-bottom: 15px;
    font-size: 17px;
}
.accordion-item {
    margin-bottom: 8px;
}
ul.product-btn {
    display: flex;
    column-gap: 10px;
}
button.accordion-button.collapsed {
    font-size: 16px;
}
.facts-item .product-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
}
.facts-item .product-list li:after {
    position: absolute;
    content: '\f0a4';
    top: 1px;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    color: var(--primary);
}
.anotherbtn .btn-primary {
    display: block;
    width: fit-content;
    margin: 10px 0;
    background: none;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-weight: 500;
}
.productimg .fas {
    position: absolute;
    top: 50%;
    height: 40px;
    width: 40px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--white);
    cursor:pointer;
}
i.fas.fa-chevron-left.slick-arrow {
    position: absolute;
    left: 0;
    z-index: 9;
}
i.fas.fa-chevron-right.slick-arrow {
    position: absolute;
    right: 0;
}
.about-productimg figure {
  overflow:hidden;
  border-radius:10px;
}
.about-productimg img {
    height: 395px;
    object-fit: cover;
}
.productimg_image-info {
    position: absolute;
    bottom: 0;
    padding: 12px;
    background: linear-gradient(359deg, black, #00000005);
    width: 100%;
}
.productimg_image-info h3 {
    color: var(--white);
    font-size: 20px;
    margin: 0;
}
.sp-easy-accordion .sp-ea-single .ea-header a {
    font-size: 17.8px !important;
}
/* experiment section  */
.experiment {
    margin-bottom: 50px;
}
.experiment figure {
    overflow: hidden;
    border-radius: 6px;
}
.experiment .row {
    background: #c3188f29;
    padding: 15px 10px;
    border-radius: 6px;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}
ul.experiment-btn .btn-primary {
    background: var(--primary);
    color: var(--white);
}
.experiment p {
    margin: 0px 0 5px 0;
}
ul.experiment-btn {
    column-gap: 8px;
}
ul.experiment-btn a {
    display: block;
    margin-top: 8px;
}
/* mission page  */
.mission {
    background: linear-gradient(#00000030, #000000a8), url(../images/mission-banner.png);
    padding: 50px 0 60px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.about-mission figure {
    height: 130px;
    width: 130px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ffffff3d;
}
.about-mission figure img {
    width: 100px !important;
    display: block;
}
.about-mission p {
    color: var(--white);
    width: 75%;
    margin: 8px auto;
}
.about-mission h2 {
    margin: 10px 0 8px;
    font-size: 30px;
    font-weight: 500;
}

/* career section  */
.career {
    margin-bottom: 50px;
    background: #c3188f0f;
    padding: 30px 0;
}
.career .btn-primary {
    background: var(--primary);
    color: var(--white);
}
.career figure {
    overflow: hidden;
    border-radius: 6px;
}
.career figure img {
    height: 300px;
    object-fit: cover;
    object-position: top;
}

/* CONTACT SECTION CSS */

.contact-form h3 {
    color: var(--primary);
    font-family: "Poppins", serif;
    font-size: 15px;
}
.contact-form lable {
    color: #848484;
    font-size: 12.5px;
}
.conatctus {
    margin-bottom: 50px;
}
.form-bottom {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.form-bottom p {
    font-size: 7px;
    line-height: 15px;
    margin: 0;
    text-align: justify;
}


/* MEDIA CONTACT */


.media-contact .form-bottom p {
    font-size: 5px;
    line-height: 10px;
}
.media-contact .form-bottom input[type="checkbox"] {
    position: absolute;
    width: 30px !important;
    height: 30px;
    border: 1px solid #a7a7a7;
    border-radius: 0 !important;
    cursor: pointer;
    background: #e3e3e3 !important;
}
.form-bottom .wpcf7-list-item {
    margin: 0;
}
.form-bottom label {
    display: flex !important;
}
.form-bottom .wpcf7-list-item-label {
    padding-left: 40px !important;
}
.copyimg img {
    width: 170px;
    margin-top: 18px;
}

/* Footer */
.ftrtexts {
    display: none !important;
}
.page.page-id-3024 .ftrtexts {
    display: flex!important;
    column-gap: 15px;
}
.ftrtexts .light {
    color: #fff;
}
.ftrtexts .text-dark {
    color: #ffffff6b !important;
}
.ftrtexts h4 {
    font-size: 16px;
}
.page.page-id-3024 .cntbtn {
    display: none !important;
}
.copyright p a {
    color: #ffffffe0;
    font-size: 18px;
    font-weight: 300;
    font-family: playfair;
}
.copyright .dark {
    color: grey;
}
footer {
    background: #404040;
    padding: 35px 0;
    position: relative;
    z-index: 111;
    width: 100%;
}
ul.ftricons {
    column-gap: 10px;
    margin-right: 32px;
}
ul.ftricons li a {
    border: solid 1px #8E8E8E;
    width: 30px !important;
    height: 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.ftricons li svg {
    fill: #8e8e8e;
    width: 18px;
    transition: .3s ease-in-out;
}
footer ul.ftricons li svg:hover{
 fill:#fff;
 transition: .3s ease-in-out;
}
footer ul.ftricons li:first-child svg {
    width: 25px;
}
footer a.cntbtn {
    border: solid 1px #898989;
    color: #686868;
    display: inline-block;
    padding: 7px 35px;
    transition: .3s ease-in-out;
}
footer a.cntbtn:hover {
    color: #fff;
    transition:.3s ease-in-out;
}
#GoToTop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    padding: 0;
    width: 35px;
    height: 35px;
    color: var(--white);
    text-align: center;
    background: var(--black);
    padding-top: 6px;
    font-size: 20px;
    border: 1px solid var(
    --black);
    border-radius: 8px;
}
#GoToTop img {
    width: 24px;
}

/* Gallery */
div#envira-gallery-wrap-3041 {
    padding-bottom:40px;
}
.envira-lazy:hover {
    filter: inherit;
}
.envira-lazy {
    filter: grayscale(1);
    transition: all ease-in-out .8s !important;
}
.envira-lazy:hover img {
    transform: scale(1.1);
}

body.loaded .overlay {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

@media (max-width:991px) {

.menudetails .col-12 {
    flex: 0 0 auto;
    width: 50%;
}	
.menutop li a {
 padding: 10px 15px !important;
}	
.ham-menu {
    top: 0px;
    right: 90px;
}
.bannermenus ul li {
    margin-bottom: 45px !important;
}
footer .col-lg-5 {
    width: 50%;
}
footer .col-lg-7 {
    width: 50%;
}
 .container {
    max-width: 900px;
} 
.carousel-caption {
    left: 10px;
}
.hamburger-menu-button {
    margin-right: 0;
}
footer {
    padding: 15px 0;
}
section {
    height: auto !important;
}
.aboutcopy p {
    font-size: 4px;
    line-height: 11px;
}
.aboutus .row {
    margin-top: 120px !important;
    row-gap: 30px;
}
.aboutdesc {
    padding-left:0;
}
.aboutdesc p {
 height: 185px;
}
.menutops.secondary li a {
 padding: 0 20px !important;
}	
.artist .row {
    row-gap: 30px;
}
.imageinfo {
    width: 100%;
    height: 100%;
}
.architec .row {
    row-gap: 30px;
}
.entrepreneur .row {
    row-gap: 30px;
}
.entrepreneurimg {
    padding-top: 55px;
}
.entrepreneurtext:after {
border:unset;
}
.entrepreneurtext {
    text-align: center;
}
figure.numberimg {
    justify-content: center !important;
}
.entrepreneurtexts h4 {
    justify-content: center !important;
    margin-top: 10px;
}
.entrepreneurtexts:after {
    border: unset;
}
.medialogo img {
    width: 100%;
}
.contactus .col-sm-7 {
    width: 100%;
}
}

@media (max-width:767px) {

.menutop li a {
    font-size: 8px !important;
}	
.menutop li a {
    padding: 2px 15px !important;
    font-size: 11px !important;
}	
.ham-menu {
    top: 8px !important;
    right: 10px;
}
.secondmenus {
    display: none !important;
}
.mediaimg img {
    height: auto;
}
.journeyimg img {
    height: auto;
}
.sketch {
    height: 100vh;
    display: flex;
    align-items: center;
}
}

@media (max-width:667px) {

header {
    padding: 30px 0 0;
}
.ham-menu {
    right: 25px;
}
.menutop li a {
    padding: 0px 12px !important;
    font-size: 9px !important;
}
.menudetails .row {
    margin-top: 0px;
}
.page-id-1163 .menudetails .row {
    margin-top: 60px !important;
}
.secondary-container {
    padding: 40px 0;
}
.artists {
    padding-top: 50px;
}
.architecdesigns {
    padding-top: 50px;
}
button.left.slick-arrow {
    left: 80px !important;
}
button.right.slick-arrow {
    right: 90px !important;
}
.media-contact .col-sm-6 {
    width: 100%;
}
.media-contact .col-sm-6 {
    width: 100%;
    justify-content: start !important;
}
.media-contact .row { 
 row-gap:20px;
}
form.wpcf7-form.init .row {
    row-gap: 0px;
}
}

@media (max-width:568px) {

.ham-menu .menucontainers{
 display:none !important;
}	
.aboutcnt strong {
    font-size: 16px;
}
.heading {
    font-size: 17px;
}
.aboutdesc .readbtn {
    margin-top: 25px;
}
.architecsketches {
    padding-top: 40px;
}
button.left.slick-arrow img {
    width: 22px !important;
}
button.right.slick-arrow img {
    width: 22px !important;
}
}

@media (max-width:479px) {

header img {
    width: 150px;
}	
.mainslider .carousel-caption h2 {
    font-size: 20px;
}
[style="overflow: hidden;"] .logo img {
    width: 135px;
}
.aboutlft {
    column-gap: 25px;
}
.aboutcnt strong {
    font-size: 11px;
}

.abtprofile .heading {
    margin-bottom: 12px;
    font-size: 15px;
}
}

@media (max-width:414px) {
.mainslider #carouselExampleFade img {
 object-position: 100%;
object-fit: cover;
}	
.bannermenus ul li a {
    font-size: 17px;
}
footer .col-lg-5 {
    width: 100%;
    text-align: center;
}
footer .col-lg-7 {
    width: 100%;
    text-align: center;
    justify-content: center !important;
    margin-top:10px;
}
ul.ftricons {
    margin: 0;
}
.aboutcnt strong {
    font-size: 7px;
}
.aboutcnt .born {
    font-size: 8px;
}
.abtprofile .heading {
    font-size: 10px;
}
.aboutdesc p {
    font-size: 10px;
}
.page-id-1163 .bannercontact {
    margin-right: 0px;
}
.page-id-2701 .bannercontact {
    margin-right: 0;
}
.aboutcnt .born {
    line-height: 14px;
}
.aboutdesc p {
    line-height: 19px;
}
button.left.slick-arrow {
    top: 30% !important;
    left: 45px!important;
}
button.right.slick-arrow {
    top: 30% !important;
    right: 55px !important;
}
}

@media (max-width:375px) {

.menudetails .col-lg-3 {
    width: 30% !important;
}
.menudetails .col-lg-9 {
    width: 70% !important;
}	
.menudetails .row {
    margin-top: -35px;
}
ul.bannercontact li {
    font-size: 12px !important;
}
ul.bannercontact li a {
    font-size: 12px !important;
}	
header {
    padding: 16px 0 0;
}
.aboutentrepreneur .entrepreneurtext p {
    font-size: 8px;
}
header {
    padding: 20px 0 0 !important;
}
.aboutus .row {
    margin-top: 80px !important;
    row-gap: 30px;
}
button.left.slick-arrow {
    top: 39% !important;
    left: -20px!important;
}
button.right.slick-arrow {
    top: 39% !important;
    right: -10px!important;
}
ul.bannercontact {
    display: none !important;
}
.bannermenus ul li {
    margin-bottom: 30px !important;
}
}





