@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@800&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap');*/
/* @import url('https://fonts.googleapis.com/css2?family=Jost:wght@400&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@400;500&display=swap');

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Gothic A1', sans-serif;
  font-weight: 400;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  background: url(../images/background2.jpg);
}

img {
  width: auto;
  max-width: 100%;
  image-rendering: high-quality;
}

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

:root {
  --nav-width: 100px;
  --nav-height: 96vh;
  --c1: #cca278;
  /* --c2: #1b1010; */
  --c2: #514a4a;
  --c3: #ffffff;
  --bcolor1: #9e2824;
  --bcolor2: #ffba13;
  --bcolor3: #e84625;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--c2);
  font-weight: 500;
  margin: 0.8px 0 1.4px;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

p {
  margin: 0.2em 0 0.6em;
}

lable {
  display: block;
}

input[type="text"],
input[type="email"],
textarea {
  display: block;
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: solid 1px var(--c2);
  font-family: inherit;
}

input[type="submit"] {
    border: 0;
    background: var(--c1);
    padding: 16px 46px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all .2s ease-out;
}

input[type="submit"]:hover {
  background: var(--c2);
}


input:focus,
textarea:focus {
  outline: 0;
}

.milestones h2 {
  font-family: 'Josefin Sans', sans-serif;
}

.menu-toggle {
  font-family: 'Raleway', sans-serif;
}

.c3-hgroup h1,
.c3-hgroup h2,
.c3-hgroup h3,
.c3-hgroup h4,
.c3-hgroup h5,
.c3-hgroup h6 {
  color: var(--c3);
}

.hide {
  display: none !important;
}

.align-right {
  display: block;
  text-align: right !important;
}

.fa-facebook {
    color: #8096e9;
}

.fa-twitter {
    color: #5ec6d7;
}

.fa-instagram {
    color: #e555ab;
}

.fa-youtube {
  color: #fd4f4f;
}

.loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #9e272b;
  transform: translateY(0);
  transition: transform .8s cubic-bezier(0.88, 0.04, 1, 1);
}

.loading.reveal {
    transform: translateY(100%);
}

.loading > p {
  position: relative;
  letter-spacing: 2px;
}

.loading > p:before {
    content: "";
    position: absolute;
    background: url(../images/FMI-logo2.png) no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
    top: -80px;
    left: 50%;
    margin-left: -14%;
}

[class^='button0'],
[class*='button0'] {
  position: relative;
  display: inline-block;
  padding: 16px 32px !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all .4s ease!important;
  border: solid 2px transparent;
}

[class^='button0']:hover,
[class*='button0']:hover {
}

[class^='button0']:before,
[class*='button0']:before {
  position: absolute;
  top: 0;
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

[class^='button0']:hover:before,
[class*='button0']:hover:before {
}

.button01,
.button02:hover {
  /*border-color: var(--c1);*/
  color: #fff;
}

.button01:before,
.button02:hover:before {
  background: rgb(0 0 0/80%);
}

.button02:before,
.button01:hover:before {
  background: var(--c1);
}

.button01:hover {
  color: #000;
  border-color: transparent
}

.btn:link,
.btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 32px;
    display: inline-block;
    transition: all .2s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-one {
    background-color: var(--c1);
    color: var(--c3);
}

.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btn-one::after {
    background-color: var(--c1);
}

.btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.btn-animated {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.mega-title {
  position: relative;
  font-weight: 600;
  font-size: 36px;
  line-height: 0.9;
  padding-top: 0;
  padding-left: 100px;
  text-align: left !important;
}

.mega-title>span {
  display: block;
  font-size: 40px;
  text-transform: uppercase;
}

.mega-title>i {
  font-family: 'Raleway', sans-serif;
  position: absolute;
  top: 18px;
  left: 0;
  z-index: -1;
  font-style: normal;
  font-size: 160px;
  line-height: 0.2;
  opacity: 0.4 !important;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--c1);
}

.site {
  margin: 0;
  padding: 0;
}

.flex-50-space-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.top-bar {
  padding: 10px;
  border-bottom: 1px #ededed solid;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #a9a9a9;
}

.header-wrap {
  padding: 16px 110px;
}

.logo {
  max-width: 220px;
}

.logo h1 {
  display: none;
  margin: 0;
}

.res-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25% !important; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.res-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.get-quote>a {
  display: block;
  /*background: #cca278;
  color: #fff;*/
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 1px;
  text-align: center;
  padding: 18px 32px;
}

.get-quote {
  position: relative;
  border: solid 10px #fff;
}

.get-quote:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -310px;
  width: 860px;
  height: 200px;
  border: solid 38px #ededed;
  z-index: -1;
}

.pop-form-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .2s ease-out;
  visibility: hidden;
}

.pop-form-wrap {
  position: absolute;
  transform: translateY(-60px);
  opacity: 0;
  min-width: 240px;
  width: 480px;
  border: solid 2px var(--c1);
  border-radius: 4px;
  padding: 40px 20px;
  background: #111;
  text-align: center;
  transition: all .4s .2s ease-out;
}

.pop-form-wrap {
  margin-top: 0;
}

.pop-form-wrap h2 {
  color: var(--c1);
}

.pop-form-wrap p {
  color: #858484;
}

.pop-form-close {
  position: absolute;
  font-size: 22px;
  top: 12px;
  right: 22px;
  color: #fff
}

.pop-form {
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  /* grid-template-rows: repeat(4, 1fr); */
  grid-column-gap: 0px;
  grid-row-gap: 0px; 
  text-align: left;
  margin-top: 40px
}

.pop-form div:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}

.pop-form div:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}

.pop-form div:nth-child(3) {
  grid-area: 2 / 1 / 4 / 3;
}

.pop-form div:nth-child(4) {
  grid-area: 4 / 1 / 5 / 2;
}

.pop-form>div {
  margin-bottom: 10px;
  padding: 10px;
}

.pop-form textarea {
  min-height: 100px;
  max-height: 100px;
}

.pop-form::placeholder,
.pop-form * {
  color: #fff;
  background: transparent;
}

.pop-form-container.on {
  opacity: 1;
  visibility: visible;
}

.pop-form-container.on .pop-form-wrap {
  opacity: 1;
  transform: translateY(0);
}

.site-sub-header {
  display: flex;
  position: relative;
  overflow: hidden;
}

.site-sub-header.site-page-header {
  height: var(--nav-height);
}

.site-navigation {
  position: absolute;
  width: var(--nav-width);
  height: var(--nav-height);
  left: 0;
  z-index: 2;
  background: #111;
}

.site-slideshow-wrap {
  position: relative;
  z-index: 1;
  width: calc(100% - var(--nav-width));
  padding-left: var(--nav-width);
  height: var(--nav-height);
  background: #e5e5e5;
}

.site-slideshow>div>div {
  overflow: hidden;
}

.site-slideshow .swiper-slide {
  position: relative;
  z-index: 1;
}

.site-slideshow .swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0 0 0 / 40%);
  z-index: 1;
}

.site-slideshow-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 140px;
  max-width: 560px;
  color: var(--c3);
  overflow: hidden;
}

.site-slideshow-content * {
  margin: 0 0 14px;
  line-height: 1;
}

.site-slideshow-content a {
  margin-top: 16px;
}

.site-slideshow-content h2,
.site-slideshow-content h3, 
.site-slideshow-content p,
.site-slideshow-content a {
  opacity: 0;
  transform: translateX(-600px);
  transition: opacity .5s linear, transform 1.5s cubic-bezier(.63,.14,0,1.17);
}

.swiper-slide-active .site-slideshow-content h2,
.swiper-slide-active .site-slideshow-content h3, 
.swiper-slide-active .site-slideshow-content p,
.swiper-slide-active .site-slideshow-content a {
  opacity: 1;
  transform: translateX(0);
}

.swiper-slide-active .site-slideshow-content h2 {
  transition-delay: .2s;
}

.swiper-slide-active .site-slideshow-content h3 {
  transition-delay: .4s;
}

.swiper-slide-active .site-slideshow-content p {
  transition-delay: .6s;
}

.swiper-slide-active .site-slideshow-content a {
  transition-delay: 1s !important;
}

.site-slideshow img {
  width: 100%;
  height: var(--nav-height);
  object-fit: cover;
  transform: scale(1.0);
  transition: all 5s linear;
}

.site-slideshow .swiper-slide-active img {
  transform: scale(1.25);
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  padding: 20px !important;
  color: #fff;
  width: 10px;
  opacity: 0.5;
}

.swiper-button-prev {
  left: var(--nav-width);
}

.menu-toggle {
  display: flex;
  width: 42px;
  height: 26px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin: 20px auto 0;
  padding-top: 20px;
}

.menu-toggle:before {
  content: "M E N U";
  position: absolute;
  color: #fff;
  font-size: 10px;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  white-space: nowrap;
}

.menu-toggle.toggle:before {
  content: "C L O S E";
}

.menu-toggle:hover:not(.menu-toggle.toggle)>span {
  transform: translateX(0);
}

.menu-toggle>span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: rotate(0deg) translateY(0) translateX(0);
  transition: transform .2s .1s linear, background .2s .4s linear;
}

.menu-toggle>span:nth-child(2) {
  transform: translateX(30%);
  transition: transform .2s linear;
}

.menu-toggle>span:nth-child(3) {
  transform: translateX(50%)
}

.menu-toggle.toggle>span:nth-child(2) {
  transform: translateX(-42px)
}

.menu-toggle.toggle>span:first-child {
  transform: rotate(42deg) translateY(9px) translateX(5px)
}

.menu-toggle.toggle>span:last-child {
  transform: rotate(-42deg) translateY(-11px) translateX(8px)
}

.menu-toggle.toggle>span {
  background: #ededed;
}

.primary-nav {
  position: absolute;
  z-index: -1;
  top: 0;
  left: var(--nav-width);
  bottom: 0;
  background: #fff;
  margin: 0;
  padding: 20px;
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
  transition: all .4s .1s linear;
}

.primary-nav li {
  margin-bottom: 10px;
}

.primary-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  padding: 8px 10px;
  border-bottom: #d5c3ab 1px dashed;
  overflow: hidden;
  transition: all .1s linear;
}

.primary-nav a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #f23539;
  z-index: -1 ;
  transform: translateX(-100%);
  transition: all .5s cubic-bezier(0, 0.85, 0.15, 1.01);
}

.primary-nav a:hover,
.primary-nav .active a {
  color: #fff
}

.primary-nav a:hover:before,
.primary-nav .active a:before {
  transform: translateX(0)
}

.primary-nav.toggle {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 1;
}

.social-network {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  width: 100%;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-network a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 4px 6px;
  margin: 4px 0;
  width: 30px;
  text-align: center;
  font-size: 18px;
}

.page-template-home-template .site-content {
  padding-top: 40px;
}

.home-widget01 {
  /*max-width: 1200px;*/
  margin: auto;
  padding: 16px 110px;
  display: flex;
  justify-content: space-between;
}

.home-widget01 * {
  margin: 0;
  padding: 0;
}

.home-widget01 div {
  min-width: 230px;
}

.home-widget01 i {
  float: left;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-bottom: 8px;
  border: solid 1px;
  color: #fff;
  background: #cca278;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

.home-widget01 h6,
.home-widget01 p {
  padding-left: 65px;
  margin-top: 8px;
}

.home-widget01 h6 {
  font-weight: 600;
}

.home-widget01 p {
  font-size: 0.8em;
}

.home-about {
  position: relative;
  margin: 60px 110px 0;
  background: var(--c1);
}

.home-about-text h2 {
  color: var(--c1);
}

.home-about-text blockquote {
  color: #fff;
  margin: 15px 0px;
}

/* .home-about-img {
  width: 50%;
  height: 484px;
  object-fit: cover;
  background: #111;
} */

.home-about-text {
  position: relative;
  z-index: 1;
  top: -60px;
  /* width: 33%; */
  margin: 0 60px;
  background: #111;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-about-text a[class^='button0'] {
  align-self: flex-start;
}

blockquote {
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
  border-left: solid var(--c1) 2px;
}

.home-promo {
  position: relative;
  padding: 120px 0;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
}

.home-promo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
}

.home-promo-text {
  max-width: 400px;
  min-width: 280px;
  text-align: center;
  margin-left: 16%;
}

.home-whoweare {
  padding: 90px 110px;
  margin: auto;
}

.three-blocks {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  background: #111;
}

.three-blocks>div {
  position: relative;
  width: 33%;
  /* margin: 4%; */
  padding: 40px;
  min-height: 280px;
  /* border-radius: 8px; */
  /* box-shadow: 1px 3px 7px rgb(0 0 0/60%); */
  text-align: center;
  color: #fff;
  background-size: cover !important;
  background-position: center !important;
  /* background-attachment: fixed !important; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity .5s linear;
}

.three-blocks:hover .block03:not(:hover) {
  opacity: 0.4;
}

.three-blocks>div i {
  color: #e9a44f;
  font-size: 48px;
  margin-bottom: 16px
}

.three-blocks>div h2 {
  font-weight: 600;
}

.three-blocks>div>a {
  /*position: absolute;
  bottom: -36px;
  right: -20px;*/
  margin-top: 40px;
  max-width: fit-content;
}

.three-blocks>div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 60%);
  /*border-radius: 8px;*/
  z-index: 0;
}

.three-blocks>div * {
  position: relative;
  z-index: 1;
}

.two-third-blocks {
  display: flex;
  box-shadow: 0 0 20px rgb(0 0 0/20%);
}


.block66 {
  width: 66%;
}

.block36 {
  width: 34%;
}

.two-third-blocks>div {
  padding: 54px;
}

.milestones {
  border-bottom: dashed 1px #ccc;
  margin-bottom: 30px !important;
}

.milestones h2 {
  font-size: 62px;
  line-height: 1;
  margin-bottom: 0;
}

.milestones h2>span {
  position: relative;
  top: -13px;
  font-size: 40px;
  text-transform: capitalize;
}

.milestones h2>span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 6px;
  background: var(--c1)
}

.home-promo02 {
  position: relative;
  z-index: 0;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 40px;
  text-align: center;
  color: #fff;
}

.home-promo02:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #111;
  opacity: 0.2;
}

.home-promo02 * {
  position: relative;
  z-index: 2;
}

.home-projects {
  padding: 150px 0;
  text-align: right;
  position: relative;
}
.home-projects:before {
  content: "";
  position: absolute;
  top: 90px;
  right: -310px;
  width: 860px;
  height: 520px;
  border: solid 38px #ededed;
  z-index: -1;
}

.home-project-feed {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}

.home-project-feed a {
  flex: 25%;
  margin: 0 0.1%;
  max-height: 480px;
  overflow: hidden;
  background: #111;
}

.home-project-feed img {
  display: block;
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.0);
  transition: all .4s linear;
}

.home-project-feed img:hover {
  opacity: 0.6;
  transform: scale(1.08);
}

.home-project-feed .project-item {
  display: none;
}

.home-project-feed .project-item.active {
  display: block;
}

.home-projects>a {
  margin: 46px 0 20px;
  z-index: 1;
}

.f-proj {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  border-bottom: solid 1px var(--c1);
}

.f-proj .fa-filter {
  color: var(--c1);
  font-size: 22px;
  margin-top: 8px;
  position: relative;
  right: -20px;
}

.f-proj li {
  padding: 10px 22px;
  min-width: 120px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: solid transparent 10px;
  transition: border-color .2s ease-in-out;
}

.f-proj li:hover,
.f-proj li.active {
  border-color: var(--c1);
}

.project-item.on {
  animation: fade-in-bottom .5s ease forwards
}

.home-video-wide {
  position: relative;
  padding: 80px 60px;
}

.home-video-wide:before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0;
  left: 0;
  bottom: 0%;
  width: 66%;
  margin: auto;
  border: solid 38px #ededed;
  z-index: -1;
}

.home-video-wide > .widget .one-title {
  padding: 0;
  text-align: center;
  margin-bottom: 15px;
}

.home-video-wide .wp-block-image {
  max-width: 220px !important;
}

.home-video-wide > .widget > figure {
  display: flex;
  justify-content: center;
}

.home-testimonial {
  max-width: 1200px;
  padding: 60px 40px;
  margin: auto;
}

.home-testimonial h2 {
  padding-top: 40px;
}

.home-testimonial h2 span {
  color: var(--c1);
}

/*******************/

/* .testimonial-slider {
  margin-top: 40px;
}

.testimonial-slider .swiper-wrap {
}

.testimonial-slider .swiper-slide > div {
  position: relative;
  z-index: 1;
  margin: auto;
  text-align: left;
  min-height: 260px;
  display: flex;
  flex-flow: column;
  align-items: end;
  justify-content: center;
}

.testimonial-slider .swiper-slide > div:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 120%;
  height: 60%;
  z-index: -2;
}

.testimonial-slider .swiper-slide > div:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #fff;
}

.testimonial-slider div i {
  color: var(--c1);
  font-size: 44px;
  padding: 10px 0;
  display: none; 
}

.testimonial-slider>div img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  margin-bottom: 16px;
}

.testimonial-slider>div img:last-of-type {
  border-radius: 100%;
  overflow: hidden;
}

.testimonial-slider>div h5,
.testimonial-slider>div h6 {
  margin: 0 0 4px;
} */

/********************/

.testimonial-slider {
  margin-top: 40px;
  position: relative;
}

.testimonial-slider .swiper-wrapper {
}

.testimonial-slider .swiper-button-next, 
.testimonial-slider .swiper-button-prev {
  color: var(--c1);
  top: 44%;
}

.testimonial-slider .swiper-button-prev {
  left: 18px;
}

.testimonial-slider .swiper-pagination-bullet-active {
  background: var(--c1);
}

.testimonial-slider .swiper-slide > div {
  position: relative;
  z-index: 1;
  padding: 20px;
  margin: auto 10%;
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slider .swiper-slide > div:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 120%;
  height: 60%;
  z-index: -2;
  border: solid 3px #efebe7;
}

.testimonial-slider .swiper-slide > div:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  border: solid 3px #efebe7;
}

.testimonial-slider div i {
  color: var(--c1);
  font-size: 44px;
  padding: 10px 0;
}

.testimonial-slider>div img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  margin-bottom: 16px;
}

.testimonial-slider>div img:last-of-type {
  border-radius: 100%;
  overflow: hidden;
}

.testimonial-slider>div h5,
.testimonial-slider>div h6 {
  margin: 0 0 4px;
}

.testimonial-images {
  position: relative;
  /* padding: 40px */
}

.testimonial-images img:nth-child(1) {
  height: 480px;
  width: 100%;
  object-fit: contain;
  /* border: solid 1px var(--c2); */
}

.testimonial-images img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 20%;
  border-radius: 100%;
  overflow: hidden;
  border: solid 2px #fff;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.home-social-feed {
  max-width: 1200px;
  display: flex;
  padding: 60px 40px;
  margin: auto;
}

.two-blocks {
  display: flex;
}

.block50 {
  width: 50%;
}

.feed-intro {
  display: flex;
  padding: 10px;
  width: 33%;
  flex-direction: column;
  justify-content: center;
}

.feed-intro i {
    font-size: 66px;
    margin-bottom: 20px;
}

.feed-img {
  display: flex;
  width: 67%;
  overflow: hidden;
}

.feed-img > iframe {
  margin-top: -60px !important;
}

.feed-img img {
  background: #111;
  width: 33%;
  max-height: 320px;
  margin: 0 0.2%;
  object-fit: cover;
}

.site-page-content {
    position: relative;
    margin-top: -96vh;
    padding: 100px 110px 100px 160px;
    min-height: 96vh;
}

.site-page-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--nav-width);
    background: #efefef;
}

.page-title {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 36px 160px;
    margin: -100px -160px;
}

.page-title * {
    z-index: 1;
    color: #fff;
}

.page-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 42%);
}

.page-space {
  height: 160px;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*grid-template-rows: repeat(3, 1fr);*/
  grid-row-gap: 0;
  grid-column-gap: 0;
  align-content: center;
  /*align-items: center;*/
}

.site-footer > div {
  color: #fff
}

.site-footer h2,
.site-footer h4 {
  color: var(--c3);
}

.site-footer>div:nth-child(1) {
  grid-area: 1/1/2/2;
  background: #1f1f27
}

.site-footer>div:nth-child(2) {
  grid-area: 2/1/3/2;
  background: #100f14;
  display: flex;
}

.site-footer>div:nth-child(3) {
    grid-area: 1/2/3/3;
    background: #2c2b33;
    padding: 40px 60px;
}

.site-footer>div:nth-child(4) {
  grid-area: 3/1/4/3;
  background: #100f14
}

.footer-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*grid-template-rows: repeat(5, 1fr);*/
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.footer-form div:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}

.footer-form div:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}

.footer-form div:nth-child(3) {
  grid-area: 2 / 1 / 5 / 3;
}

.footer-form div:nth-child(4) {
  grid-area: 5 / 1 / 6 / 2;
}

.footer-form>div {
  margin-bottom: 10px;
  padding: 10px;
}

.footer-form textarea {
  min-height: 220px
}

.footer-form::placeholder,
.footer-form * {
  color: #fff;
  background: transparent;
}

.footer-services {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: solid 1px #f1c599;
  border-bottom: solid 1px #f1c599;
}

.footer-services a * {
  display: inline-block;
  margin: 0;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--c3);
}

.footer-services a {
  display: block;
  color: #fff;
  border-left: solid 1px var(--c3);
  margin: 6px 0;
  padding: 10px;
  transition: all .4s ease;
}

.footer-services h2 {
  transition: all .2s ease;
}

.footer-services a:hover {
  background: #111;
} 

.footer-services a:hover h2 {
  color: var(--c1);
  padding-left: 6px;
}

.footer-services i {
  margin-right: 10px;
  color: #111;
}

.footer-services a:hover i {
  color: var(--c3);
}

.footer-address,
.footer-social-network {
  display: inline-block;
  vertical-align: top;
  padding: 10px 26px;
  margin-top: 40px;
  color: #fff;
}

.footer-social-network {
  /* margin-left: 46px; */
}

.footer-address a,
.footer-social-network a {
  color: #fff;
}

.footer-address * {
  display: block;
  margin-bottom: 20px;
}

b {
    font-weight: normal; /* fix */
}

.footer-bottom {
    display: flex;
    padding: 46px 0;
    color: #fff;
}

.footer-bottom > div {
    width: 20%;
    padding: 20px 40px;
}

.footer-bottom img {
    margin-top: 15%;
    width: 200px;
    object-fit: contain;
}

.footer-bottom ul, 
.footer-bottom ol {
    list-style: none;
    padding: 0;
    margin-top: 26px;
}

.footer-bottom li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.footer-bottom ul li:before {
    content: ">";
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 10px;
}

.footer-bottom li a:hover {
    text-decoration: underline;
}

.footer-bottom ol li {
    padding-left: 0;
}

.footer-bottom ol i {
    padding-right: 8px;
}

.footer-social-network a {
  display: inline-block;
  padding: 10px;
  margin-right: 6px;
  font-size: 22px;
}

.floating-widget {
    position: fixed;
    left: 0;
    top: 46%;
    transform: translatey(-50%);
    z-index: 9;
    display: none;
}

.floating-widget > a {
    display: block;
    font-size: 26px;
    color: #fff;
}
.floating-widget > a > i {
    width: 60px;
    height: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.floating-widget .fa-envelope {
  background: var(--c1);
}

.floating-widget .fa-whatsapp {
  background: #0f9929;
}
.floating-widget .fa-award {
  background: var(--bcolor1);
}

a[href='#top'] {
    position: fixed;
    z-index: 2;
    bottom: 20px;
    left: 8px;
    background: rgb(0 0 0/40%);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    display: none;
    text-align: center;
    line-height: 44px;
}

.grid2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 60px;
    align-items: center;
}

.grid2x2 .div1 { grid-area: 1 / 1 / 2 / 2; }
.grid2x2 .div2 { grid-area: 1 / 2 / 2 / 3; }
.grid2x2 .div3 { grid-area: 2 / 1 / 3 / 2; }
.grid2x2 .div4 { grid-area: 2 / 2 / 3 / 3; }

.grid3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  align-items: center;
}

.grid3x2 .div1 { grid-area: 1 / 1 / 2 / 2; }
.grid3x2 .div2 { grid-area: 1 / 2 / 2 / 4; }
.grid3x2 .div3 { grid-area: 2 / 1 / 3 / 3; }
.grid3x2 .div4 { grid-area: 2 / 3 / 3 / 4; }

.grid4x2 {
  display: grid;
  grid-column-gap: 40px;
  grid-row-gap: 0;
}

.grid4x2 .div1 { grid-area: 1 / 1 / 2 / 2; }
.grid4x2 .div2 { grid-area: 2 / 1 / 3 / 2; }
.grid4x2 .div3 { grid-area: 1 / 2 / 2 / 3; }
.grid4x2 .div4 { grid-area: 2 / 2 / 3 / 3; }
.grid4x2 .div5 { grid-area: 1 / 3 / 2 / 4; }
.grid4x2 .div6 { grid-area: 2 / 3 / 3 / 4; }
.grid4x2 .div7 { grid-area: 1 / 4 / 2 / 5; }
.grid4x2 .div8 { grid-area: 2 / 4 / 3 / 5; }

.grid3x2-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 0;
}

.grid3x2-card .div1 { grid-area: 1 / 1 / 2 / 2; }
.grid3x2-card .div2 { grid-area: 2 / 1 / 3 / 2; }
.grid3x2-card .div3 { grid-area: 1 / 2 / 2 / 3; }
.grid3x2-card .div4 { grid-area: 2 / 2 / 3 / 3; }
.grid3x2-card .div5 { grid-area: 1 / 3 / 2 / 4; }
.grid3x2-card .div6 { grid-area: 2 / 3 / 3 / 4; }

.img260 img {
  height: 260px;
  object-fit: cover;
}

.img-grey-hover img {
  /*cursor: crosshair;*/
  filter: grayscale(0);
  transition: filter 2s linear;
}

.img-grey-hover img:hover {
  filter: grayscale(90%);
}

.img-fill img {
  width: 100%;
}

.grid-type1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.grid-type1 .div1 { grid-area: 1 / 1 / 2 / 3; }
.grid-type1 .div2 { grid-area: 2 / 1 / 3 / 2; }
.grid-type1 .div3 { grid-area: 2 / 2 / 3 / 3; }
.grid-type1 .div4 { grid-area: 3 / 1 / 4 / 3; }
.grid-type1 .div5 { grid-area: 4 / 1 / 6 / 2; }
.grid-type1 .div6 { grid-area: 4 / 2 / 5 / 3; }
.grid-type1 .div7 { grid-area: 5 / 2 / 6 / 3; }

.max-width-600px {
  max-width: 600px
}

.page-project-feed {
    flex-wrap: wrap;
    flex-direction: row;
}

.page-project-feed > a {
  width: 33%;
  margin-bottom: 4px;
} 

.factory-gallery {
  display: flex;
  flex-wrap: wrap;
}

.factory-gallery > a {
  flex: 31%;
  max-width: 31%;
  padding: 1%;
}

.factory-gallery > a > img {
  object-fit: cover;
  height: 320px;
  width: 100%;
  opacity: 1;
  transform: scale(1,1);
  transition: all .2s cubic-bezier(0.4, 0, 1, 1);
}

.factory-gallery > a > img:hover {
  opacity: 0.8;
  transform: scale(0.99,0.99);
  cursor: zoom-in;
}

.pop-form.sent input,
.pop-form.sent textarea,
.footer-form.sent input,
.footer-form.sent textarea {
  pointer-events: none;
}

.pop-form.sent,
.footer-form.sent {
  position: relative;
} 

.pop-form.sent:before,
.footer-form.sent:before {
  content: 'Thank you for your query! We will get back to you soon :)';
  color: #fff;
  text-align: center;
  padding-top: 32%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0 0 0 / 78%);
  animation: fade-in 2s;
}

.show-on-scroll {
  position: fixed;
  top: 20px;
  left: 0;
  height: 92vh;
  animation: slide-in-left 1s cubic-bezier(.58,.17,.49,.67) both;
  background: transparent;
}

.fade-out {
  animation: fade-out 0.6s linear;
}

.show-on-scroll .menu-toggle {
  margin: 14px;
  background: #111;
  box-shadow: 0 0 0 13px #111;
}

.show-on-scroll .social-network {
  display: none;
}

section.home-clients-swiper {
  padding: 60px 110px;
  display: flex;
  align-items: center;
}

section.home-clients-swiper .mega-title {
  flex: 146px;
}

section.home-clients-swiper .clients-swiper-wrap {
  flex: 70%;
  padding-left: 20px;
}

.clients-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.clients-swiper .swiper-slide img {
  width: 136px;
  height: 80px;
  object-fit: contain;
}

.home-about-icons {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  right: 110px;
  width: 40%;
  min-height: 460px; */
  display: flex;
}

.home-about-icons > div {
  display: flex;
  flex: 30%;
  align-items: center;
  flex-direction: column;
  padding: 20px 10px 10px;
  text-align: center;
  background: white;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease-in-out;
  transform: scale(1,1);
  min-height: 156px;
}

.home-about-icons > div:hover {
  transform: scale(0.96, 0.96);
}

.home-about-icons > div:hover {
  background-color: var(--c1);
  color: white;
}

.home-about-icons > div > img {

}
  
.home-about-icons .div1 { 
  grid-area: 1 / 1 / 2 / 2;
}
.home-about-icons .div2 { 
  grid-area: 1 / 3 / 2 / 4;
}
.home-about-icons .div3 { 
  grid-area: 2 / 2 / 3 / 3;
}
.home-about-icons .div4 { 
  grid-area: 3 / 1 / 4 / 2;
}
.home-about-icons .div5 { 
  grid-area: 3 / 3 / 4 / 4;
}

.fmi-upcoming {
  margin-top: 90px;
  padding-bottom: 60px;
}

.one-title {
  padding-top: 40px;
  padding-bottom: 10px;
}

.one-title span {
  color: var(--c1);
}

.proj-grid {
  display: flex;
  margin: 30px -10px;
  flex-direction: row;
  flex-wrap: wrap;
}

.proj-grid.page-proj-grid {
  margin: 30px -10px;
}

.proj-grid > a {
  flex: 24%;
  margin: 20px 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: white;
  border-radius: 4px;
  box-shadow: 1px 1px 5px 1px #00000026;
  transition: box-shadow .6s ease-in-out;
}

.proj-grid > a:hover {
  box-shadow: 1px 1px 5px 1px transparent;
}

.proj-grid > a > img {
    width: 100%;
    height: 320px;
    margin-bottom: -5px;
    object-fit: cover;
    transform: scale(1,1);
    transition: all .4s ease-out;
}

.proj-grid > a:hover img {
    transform: scale(1.02,1.02);
}

.proj-grid > a > h4 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 10px;
  margin: 0;
  display: flex;
  letter-spacing: 2px;
  color: var(--c1);
  background: rgb(17 17 17 / 77%);
  font-size: 18px;
  transform: translateX(-100%);
  opacity: 0;
  transition: all .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-items: center;
  justify-content: center;
}

.proj-grid > a:hover h4 {
  transform: translateX(0);
  opacity: 1;
}

.proj-grid > a > button {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: 2;
  border: none;
  color: var(--c1);
  background: #111;
  transform: translateY(100px);
  transition: all .5s cubic-bezier(0, 0, 0.18, 1.04);
  padding: 12px 26px;
  font-family: inherit;
}

.proj-grid > a > button:hover {
  color: #111;
  background: var(--c1);
}

.proj-grid > a:hover button {
  transform: translateY(0);
}

.footer-branch {
  display: flex;
  padding: 60px 40px;
}

.footer-branch > img {
  max-width: 210px;
}

.footer-branch > div {
  padding-left: 60px;
  /* text-align: center; */
  width: 100%;
}

.footer-branch > div > p {
  letter-spacing: 4px;
  word-spacing: 41px;
  text-transform: uppercase;
  opacity: 0.3;
  font-size: 12px;
  font-weight: 500;
  margin-top: 28px;
  padding-bottom: 16px;
  border-bottom: solid 1px #646262;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
  
.contact-grid > .div1 { grid-area: 1 / 1 / 2 / 3; }
.contact-grid > .div2 { grid-area: 2 / 1 / 3 / 3; }
.contact-grid > .div3 { grid-area: 1 / 3 / 2 / 5; }
.contact-grid > .div4 { grid-area: 2 / 3 / 3 / 5; }
.contact-grid > .div5 { grid-area: 3 / 1 / 4 / 5; }
.contact-grid > .div6 { grid-area: 4 / 1 / 5 / 2; }
.contact-grid > .div7 { grid-area: 4 / 2 / 5 / 3; }
.contact-grid > .div8 { grid-area: 4 / 3 / 5 / 4; }
.contact-grid > .div9 { grid-area: 4 / 4 / 5 / 5; }

.contact-grid iframe {
  width: 90%;
}

.contact-grid .wpcf7-form-control {
  border-color: var(--c1);
}

.contact-grid ol {
  list-style: none;
  padding-left: 0;
}

.contact-grid ol li {
  position: relative;
  padding-left: 29px;
  padding-right: 20px;
  margin-bottom: 18px;
}

.contact-grid ol li i {
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 18px;
  color: var(--c1);
}

.wpcf7-response-output {
  color: var(--bcolor3);
  background: var(--c3);
  border-color: transparent !important;
}

.yt-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
}

@supports not (aspect-ratio: 1) {
  .yt-frame {
    height: 560px;
  }
}

.home-video-wide iframe {
  width: 100%;
  height: 480px;
  margin: auto;
  display: block;
}

/* //////////////////////////////// */

.footer__1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-rows: repeat(4, 1fr); */
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: solid 20px var(--c1);
}
  
  .footer__1 .div1 { grid-area: 1 / 1 / 2 / 2; }
  .footer__1 .div2 { grid-area: 2 / 1 / 3 / 2; }
  .footer__1 .div3 { grid-area: 3 / 1 / 4 / 2; }
  .footer__1 .div4 { grid-area: 4 / 1 / 5 / 2; }
  .footer__1 .div5 { grid-area: 1 / 2 / 2 / 3; }
  .footer__1 .div6 { grid-area: 2 / 2 / 5 / 3; }
  
  .footer__1 .div1,
  .footer__1 .div2,
  .footer__1 .div3,
  .footer__1 .div4 {
    background: #cca278;
  }
  
  .footer__1 .div5,
  .footer__1 .div6 {
    background: #f7f7f7;
  }
  
  @media screen and (max-width:800px) {
    .footer__1 {
      display: block;
    }
  }

.footer__1 h2, .footer__1 p {
    margin: 0;
    padding: 8px 8px 0px;
}

.footer__1 h2 {
    font-size: 24px;
}

.footer__1-title h2 {
    font-size: 18px;
}

.footer__1-box {
    padding: 8px 10px;
    display: flex;
    align-items: center;
}

.footer__1-box-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    color: #fff;
    border: solid 1px #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__1 .div5, 
.footer__1 .div6 {
  background: var(--c3);
  padding: 0 20px;
}

.footer__1 .div5 {
  box-shadow: 0px -20px 0 var(--c3);
}

.footer__1 .div6 {
  box-shadow: 0px 20px 0 var(--c3);
}

.services__1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 10px;
}

@media screen and (max-width: 800px) {
  .services__1 {
    display: block;
  }
  .services__1 > div {
    margin-bottom: 20px;
  }
}

.services__1 .div1 {
  grid-area: 1 / 1 / 2 / 2;
}

.services__1 .div2 {
  grid-area: 1 / 2 / 2 / 3;
}

.services__1 .div3 {
  grid-area: 1 / 3 / 2 / 4;
}

@media screen and (max-width: 800px) {
  .sm-none{
    display: none;
  }
}

.footer__2 {
  margin: 0 100px;
  position: relative;
  background: #222;
}

.footer__2-top {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
  padding: 40px 40px 60px;
}

.footer__2-top:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: var(--c1);
  opacity: 0.89;
}

.footer__2-top > i {
  position: absolute;
  z-index: 1;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: solid 1px;
  color: var(--c3);
  background: var(--c1);
  line-height: 80px;
  font-size: 28px;
  text-align: center;
}

.footer__2-top > i > img {
  width: 64%;
  vertical-align: middle;
}

.footer__1-top-flex {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}

.footer__1-top-flex-text {
  flex: 30%;
}

.footer__1-top-flex-achivements {
  flex: 50%;
  text-align: right;
}

.footer__1-top-flex-achivements-items {
  display: inline-block;
  min-width: 22%;
  text-align: center;
  margin-top: 20px;
}

.footer__1-top-flex-achivements-items > i {
  font-size: 38px;
}

.footer__1-top-flex-achivements-items > p {
  margin-top: 10px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer__1-top-flex-achivements-items > span {
  font-size: 32px;
}

.footer__2-address-form {
  position: relative;
  display: flex;
  margin: -40px 40px 0;
  padding: 40px;
  background: #111;
}

.footer__2-address-form h2,
.footer__2-address-form h4 {
    color: var(--c1)
}

.footer__2-address-form h2 {
    margin-bottom: 20px;
}

.footer__2 p {
    color: var(--c3);
}

.footer__2-address {
    flex: 50%;
    color: var(--c3);
}

.footer__2-address ol {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    line-height: 28px;
}

.footer__2-address li {
    position: relative;
    padding-left: 20px;
}

.footer__2-address li > i {
    position: absolute;
    top: 7px;
    left: 0;
    color: var(--c1);
}

.footer__2-form {
  padding-left: 60px;
}

.footer__2-form input[type="text"], 
.footer__2-form input[type="email"], 
.footer__2-form textarea {
  background: #161616;
}

.property-listing {
  position: relative;
  display: flex;
  margin: 20px -4px 0;
}

.property-listing-item {
  flex: 22%;
  padding: 4px;
}

.property-listing-item > img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.widget_media_gallery img {
  min-height: 250px;
}

.widget_media_gallery .wp-block-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;    
  box-shadow: 1px 1px 5px 1px #00000026;
  transition: box-shadow .6s ease-in-out;
}

.wp-block-image .wp-element-caption {
  /* background: linear-gradient(0deg,rgb(255 227 148 / 18%),rgb(48 34 7 / 80%) 100%,transparent) !important; */
  background: linear-gradient(0deg,rgb(130 232 255 / 0%),rgb(0 0 0 / 55%) 100%,transparent) !important;
  font-size: 12px !important;
  text-transform: uppercase;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 14px !important;
  margin: 0;
  display: flex;
  opacity: 1;
  align-items: flex-start;
  max-height: unset !important;
  transform: translateX(0);
  opacity: 1;
  transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: left !important;
}

.wp-block-image:hover .wp-element-caption {
  transform: translateX(-100%);
  opacity: 0;
}

.home .widget_media_gallery {
  margin-top: 56px;
}

.site-page-content .home-testimonial {
  padding-bottom: 0;
}

#pop-awards {
  display: none;
  position: fixed;
  left: 0px;
  bottom: 74px;
  width: 260px;
  height: 166px;
  overflow: hidden;
  background: var(--c3);
  z-index: 999;
  box-shadow: 4px 4px 6px 0px rgb(0 0 0 / 19%);
}

.pop-awards-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 10px;
  color: #fff;
  background: var(--bcolor1);
}

.pop-awards-wrap {
  top: 0;
  position: absolute;
}

.pop-awards-wrap h2 {
  font-size: 14px;
  margin: 0;
  padding: 10px;
  line-height: 1;
  color: var(--c3);
  text-transform: uppercase;
  background: var(--bcolor1);
}

.pop-awards-wrap section {
  margin-top: 4px !important;
}

.pop-awards-wrap img {
  object-fit: scale-down !important;
}

.pop-awards-wrap .wp-block-image {
  height: 120px;
  overflow: hidden;
}

.fmi-team {
  display: flex;
  margin: 0 -16px;
}

.fmi-team-item {
  flex: 22%;
  padding: 16px;
}


.fmi-team-item h2 {
  font-size: 18px;
  padding-top: 10px;
}

.fmi-team-item h4 {
  font-size: 13px;
  padding-bottom: 8px;
}

.fmi-team-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.fmi-team-item p {
  font-style: italic;
  line-height: 1;
}

/** Hiring **/

.page-id-30 .widget > div > div {
  border: solid 1px var(--c1);
  padding: 20px;
}

.page-id-30 .widget > div > div h3 {
  text-align: center;
  text-transform: uppercase !important;
  letter-spacing: 3px;
  font-size: 20px;
  border-bottom: dotted 1px var(--c2);
  margin-bottom: 20px;
}

.page-id-30 .widget > div > div h4 {
  color: var(--c1);
  font-size: 18px;
}

.page-id-30 .widget > div > div p {
  margin-bottom: 20px;
}

.grid-gallery {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 4px;
    grid-row-gap: 4px;
	background: #111;
    & img {
        opacity: .8;
        transition: opacity .2s linear
    }
    & img:hover {
        opacity: 1
    }
	& figure {
		width: 100% !important;
		height: 220px;
	}
    & figure:nth-child(1) {
       grid-area: 1 / 1 / 2 / 5; 
    }
    & figure:nth-child(2) {
       grid-area: 2 / 1 / 3 / 2; 
    }
    & figure:nth-child(3) {
      grid-area: 2 / 2 / 3 / 3;
    }
    & figure:nth-child(4) {
      grid-area: 2 / 3 / 3 / 4;
    }
    & figure:nth-child(5) {
      grid-area: 2 / 4 / 3 / 5;
    }
}

a.litebox, .wp-block-gallery>figure>a {
    position: relative;
}

a.litebox:after, .wp-block-gallery>figure>a:after {
    content: "\f002";
	font-family: FontAwesome;
    font-size: 20px;
    color: #fff;
    display: flex;
    position: absolute;
	justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale(0.8);
    opacity: 0;
    transition: all .4s ease;
    background: rgba(0, 0, 0, .5);
}

.page-template-home-template-php .wp-block-gallery>figure>a:after {
	content: "\f061" !important;
}

a.litebox:hover:after, .wp-block-gallery>figure>a:hover:after {
    transform: scale(1);
    opacity: 1;
}


.f3-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 0px;
	margin-top: 40px;
}
	@media screen and (max-width: 1199px) {
		    .f3-grid {
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: center;
				gap: 40px;
			}
	}
.f3-grid-col_1 { grid-area: 1 / 1 / 2 / 2; }
.f3-grid-col_2 { grid-area: 1 / 2 / 2 / 3; }
.f3-grid-col_3 { grid-area: 1 / 3 / 2 / 4; }
.f3-grid>div {
  position: relative;
  padding: 40px;
  height: 280px;
  width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity .5s linear;
}
.f3-grid>div:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    z-index: 0;
	transition: all .2s;
}
.f3-grid>div:hover:before {
	transform: translateY(-3px);
	box-shadow: 0 0 0 6px var(--c1) inset;
}
.f3-grid>div i {
  color: var(--c1);
  font-size: 48px;
  margin-bottom: 16px;
  padding-bottom:0;
  transition: all .6s ease-in-out;
}
.f3-grid>div:hover i {
	padding-bottom: 20px
}
.f3-grid>div h2 {
  font-weight: 600;
}
.f3-grid>div>a {
  margin-top: 10px;
  max-width: fit-content;
	padding-top: 10px;
	transition: all .6s;
}
.f3-grid>div:hover>a {
	padding-top: 0;
}
.f3-grid>div * {
  position: relative;
  z-index: 1;
}
