/* font-famaly-hear */
@font-face {
  font-family: 'Filson Pro';
  src: url('../fonts/FilsonPro-Heavy.woff2') format('woff2'),
    url('../fonts/FilsonPro-Heavy.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Filson Pro';
  src: url('../fonts/FilsonPro-Regular.woff2') format('woff2'),
    url('../fonts/FilsonPro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Filson Pro';
  src: url('../fonts/FilsonPro-Bold.woff2') format('woff2'),
    url('../fonts/FilsonPro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


/* font-famaly-hear-end */

/* root */
:root {
  --font-1: "Filson Pro", sans-serif;
  --white-color: #fff;
  --black-color: #000;
  --body-color: #727272;
  --heading-color: #171731;
}

/* root */

/* defaults-css-start */
html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  line-height: 26px;
  font-family: var(--font-1);
  font-size: 16px;
  font-weight: 400;
}

a,
button {
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
}

a:focus,
button:focus,
.btn:focus {
  outline: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-1);
  color: var(--heading-color);
  margin-top: 0px;
  font-style: normal;
  font-weight: 700;
  text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

li {
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
  color: var(--body-color);
  margin-bottom: 15px;
}

label {
  color: var(--body-color);
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}

::-moz-selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}

::selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

/* defaults-css--end */

/* theme-css */
.fs-1 {
  font-size: 50px !important;
  line-height: 72px !important;
}

.fs-2 {
  font-size: 36px !important;
  line-height: 43px !important;
}

.btn {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  border-radius: 5px;
  padding: 24px 44px;
}

.form_submit.btn {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  border-radius: 5px;
  padding: 24px 44px;
}

.btn-outline-dark {
  background-color: transparent;
  border-color: #171731;
  color: #171731;
}

.btn-outline-dark:hover {
  background-color: #171731;
  border-color: #171731;
  color: #fff;
}

.btn-outline-warning {
  background-color: transparent;
  border-color: #CAD035;
  color: #CAD035;
}

.btn-outline-warning:hover {
  background-color: #CAD035;
  border-color: #CAD035;
  color: #171731;
}


.container {
  max-width: 1556px;
}

.root {
  max-width: 1920px;
  margin: 0 auto;
}


.line {
  position: relative;
}

.line::after {
  position: absolute;
  left: 4px;
  bottom: 0px;
  width: 50px;
  height: 1px;
  background: #171731;
  content: "";
}

.bg-gray {
  background-color: #F6F4F4;
}

.root {
  border: 30px solid #fff;
  position: relative;
}

/* theme-css-end */

/* ======== header style start ============ */

.header {
  position: absolute;
  left: 0;
  top: 0px;
  right: 0;
  max-width: 100%;
  height: auto;
  z-index: 111;
  padding: 24px 30px;
  border-bottom: 1px solid #171731;
  max-width: 1920px;
  margin: 0 auto;
  transition: .3s;
  z-index: 1;
  background-color: #F6F4F4;
  width: 100%;
}


.header-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  text-decoration: none;
}

.header-nav ul li a {
  color: #171731;
  text-decoration: none;
  line-height: 19px;
  padding: 8px 0px;
  display: block;
  position: relative;
}

.header-nav ul li a::after {
  position: absolute;
  left: 0px;
  width: 0px;
  height: 1px;
  content: "";
  background: #171731;
  transition: .3s;
  bottom: 0px;
}

.header-nav ul li a:hover::after {
  width: 100%;
}

.header-end a.btn {
  padding: 13px 28px;
  font-size: 16px;
  line-height: 19px;
}

.header.sticky {
  position: fixed;
  top: 0px;
  z-index: 111111;
  width: calc(100% - 60px);

}

.header-bar img {
  position: relative;
  transition: .3s;
}

.header-bar.active img:last-child {
  transform: translateX(-30px);
}

.header-bar.active img:first-child {
  transform: translateX(-30px);
}

/* ======== header style end ============ */

/* ======== hero style start ============ */

.hero-area {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media (max-width: 693px) {
  .hero-area {
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: -745px 65px;
  }
}


.blur {
  opacity: 1.0;
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
  filter: blur(0px);
}

.hero-content {
  padding: 210px 0px 120px;
}

.hero-content span.pretitle {
  font-size: 48px;
  line-height: 1.2;
  display: block;
  margin-bottom: 8px;
}

.hero-content h1 {
  font-size: 124px;
  line-height: 150px;
  font-weight: 800;
  margin-left: 124px;
}

/* ======== hero style end ============ */

/* ======== feature-content style start ============ */


.feature-area {
  background: #F6F4F4;
  padding: 78px 0px 78px;
}

.feature-content {
  max-width: 448px;
  margin: 0 auto;
}

.feature-content span.translate-x-text {
  transform: translateX(-100px);
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.pre-title {
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.feature-content h2 {
  margin-bottom: 45px;
}

.feature-item {
  position: relative;
  z-index: 1;
  margin: 0 75px 40px 0;
}

.feature-obj {
  position: absolute;
  z-index: -1;
  top: 55px;
  left: -42px;
}

.feature-item span.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin-bottom: 22px;
}

.feature-item h3 {
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 1px;
  padding-bottom: 18px;
  margin-bottom: 21px;
}

.feature-item p {
  min-height: 131px;
  margin-bottom: 0px;
}


/* ======== feature-content style end ============ */

/* ======== approach-area style start ============ */

.section-title h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.approach-area {
  background: #EDE9E8;
  padding: 150px 0px 150px;
}

.approach-area .section-title {
  text-align: center;
  margin-bottom: 80px;
}

.approach-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.approach-item {
  flex: 0 0 auto;
  width: 420px;
  background: #fff;
  box-shadow: 0px 0px 12px #BEB7B361;
}

.approach-thumb {
  position: relative;
  min-height: 258px;
}

.approach-icon {
  position: absolute;
  left: 35px;
  top: 35px;
  z-index: 1;
}

.approach-img {
  max-width: 336px;
  position: absolute;
  right: 0px;
  top: 0px;
}

.approach-content {
  padding: 0px 33px 32px 30px;
}

.approach-content p {
  margin-bottom: 0px;
}

.approach-content h3 {
  padding-bottom: 15px;
  margin-bottom: 20px;
  min-height: 100px;
  display: flex;
  align-items: flex-end;
}

.approach-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
}

.approach-sep img {
  max-width: 100%;
}

/* ======== approach-area style end ============ */

/* ======== about-area style start ============ */

.about-area {
  padding: 120px 0px 170px;
}

.about-area .section-title {
  margin-bottom: 36px;
}

.about-content {
  max-width: 687px;
  margin: 0 0 auto;
}

.about-content h2 {
  padding-bottom: 30px;
  margin-bottom: 45px;
}

.about-content p.lead {
  font-weight: 500;
  color: #141414;
}

.about-content p {
  margin-bottom: 40px;
}

/*.about-coloum {
  width: 40%!important;
  margin: 0 75px 40px 0;
}

@media (max-width: 767px) {

}*/


/* ======== about-area style end ============ */

/* ======== client-area style start ============ */


.client-area {
  background: #171731;
  z-index: 1;
  padding: 90px 0px 540px;
/*  border: 30px solid red;*/
  border-left: none;
  border-right: none;
}

.client-img {
  position: absolute;
  bottom: 0px;
  width: 100%;
  z-index: -1;
  left: 0px;
}

.client-area .section-title {
  margin-bottom: 80px;
}

.client-area .section-title h2 {
  color: #fff;
}

.client-content {
  max-width: 547px;
  margin: 0 auto;
}

.client-content p {
  color: #fff;
  padding-bottom: 40px;
  margin-bottom: 70px;
}

.client-content p.line::after {
  background: #fff;
}

.clientItems {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
  gap: 60px 0px;
  align-items: center;
}

.clientItems a.client-item {
  padding: 0px 10px;
  width: 25%;
  text-align: center;
}

.clientItems a.client-item img {
  max-width: 100%;
}

/* ======== client-area style end ============ */

/* ======== work-area style start ============ */


.client-area {
  background: #171731;
  z-index: 1;
  padding: 90px 0px 540px;
  margin-bottom: 30px;
}

.client-img {
  position: absolute;
  bottom: 0px;
  width: 100%;
  z-index: -1;
}

.client-area .section-title {
  margin-bottom: 80px;
}

.client-area .section-title h2 {
  color: #fff;
}

.client-content {
  max-width: 547px;
  margin: 0 auto;
}

.client-content p {
  color: #fff;
  padding-bottom: 40px;
  margin-bottom: 70px;
}

.client-content p.line::after {
  background: #fff;
}

.clientItems {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
  gap: 60px 0px;
  align-items: center;
}

.clientItems a.client-item {
  padding: 0px 10px;
  width: 25%;
  text-align: center;
}

.clientItems a.client-item img {
  max-width: 100%;
}

.work-wrapper {
  overflow-x: hidden;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.work-inner {
  /* display: flex;
  align-items: stretch;
  justify-content: center; */
}

.work-items-col {
  flex: 0 0 auto;
/*  width: 420px;*/
width: 480px;
  height: 1050px;
}

.work-item {
  position: relative;
  width: 100%;
  display: block;
  text-decoration: none;
}

.work-item img.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-item-content {
  position: absolute;
  left: 28px;
  background: #ffffffe6;
  top: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  gap: 12px;
  opacity: 0;
  transition: .3s;
  visibility: hidden;
}

.work-item:hover .work-item-content {
  opacity: 1;
  visibility: visible;
}

.work-item-content h5 {
  margin-bottom: 0px;
  font-size: 22px;
  line-height: 27px;
}

.work-item--sm {
  height: 33.33%;
}

.work-item--md {
  height: 40%;
}

.work-item--lg {
  height: 60%;
}

.work-item-content span {
  transition: .3s;
  transform: translateY(-20px);
}

.work-item-content h5 {
  transition: .3s;
  transform: translateY(20px);
}

.work-item:hover .work-item-content span {
  transform: translateY(0px);
}

.work-item:hover .work-item-content h5 {
  transform: translateY(0px);
}

.work-area {
  margin-left: -30px;
  margin-right: -30px;
}

/* ======== work-area style end ============ */

/* ======== contact-area style start ============ */

.contact-area {
  background: #B7D9E1;
  padding: 100px 0px 270px;
  /*border-top: 30px solid #fff;
  border: 30px solid red;*/
  margin-top: 30px;
}

.contact-area .section-title {
  margin-bottom: 60px;
}

.contact-header h2 {
  padding-bottom: 36px;
  margin-bottom: 53px;
}


.contact-content {
  max-width: 432px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 24px;
}

.contact-info--item span {
  margin-bottom: 6px;
  display: block;
}

.contact-info--item a {
  line-height: 26px;
  color: #171731;
  font-weight: bold;
  text-decoration: none;
  display: block;
}

.contact-info--item:not(:last-child) {
  margin-bottom: 45px;
}

.contact-form {
  background: #fff;
  border-radius: 5px;
  padding: 40px 47px;
}

.input-box {
  position: relative;
  margin-bottom: 30px;
}

.input-box input {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid #707070;
}

.input-box label {
  position: absolute;
  left: 0px;
  top: 6px;
  line-height: 26px;
  color: #000;
  transition: .3s;
  pointer-events: none;
}

.input-box input:valid~label,
.input-box input:focus~label {
  top: -11px;
  font-size: 11px;
}

.input-box textarea {
  width: 100%;
  resize: none;
  border: navajowhite;
  border-bottom: 1px solid #707070;
  padding: 0px;
  height: 200px;
}

.input-box textarea:valid~label,
.input-box textarea:focus~label {
  top: -17px;
  font-size: 11px;
}

.input-submit input.btn {
  border-color: #707070;
  color: #171731;
}

.input-submit input.btn:hover {
  background: #6EB3C2;
  border-color: #6EB3C2;
}

.form_submit input.btn {
  border-color: #707070;
  color: #171731;
}

.form_submit input.btn:hover {
  background: #6EB3C2;
  border-color: #6EB3C2; 
}

.input-submit.btn {
  border-color: #707070;
  color: #171731;
}

.input-submit.btn:hover {
  background: #6EB3C2;
  border-color: #6EB3C2; 
}


/* ======== contact-area style end ============ */

/* ======== work-details-page style start ============ */


.details-area {
  padding: 197px 0px 150px;
}

.details-imgItem {
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-bottom: 50px;
  border-radius: 5px;
}

.details-imgItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: .3s;
}

.details-imgItem:hover img {
  transform: scale(1.02);
}

.details-post--nav button {
  background: transparent;
  border: none;
  padding: 0px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #171731;
}

.details-post--nav button svg {
  transition: .3s;
}

.details-post--nav button:hover {
  color: #171731;
}

.details-post--nav button.p-prev:hover svg #Path_49 {
  fill: #171731;
}

.details-post--nav button.p-grid:hover svg rect {
  fill: #171731;
}

.details-post--nav button.p-next:hover svg #Path_49 {
  fill: #171731;
}

.details-post--nav button.p-prev:hover svg #Path_50,
.details-post--nav button.p-prev:hover svg #Path_51,
.details-post--nav button.p-prev:hover svg #Path_52  {
  fill: #f6f4f4;
}

.details-post--nav button.p-grid:hover svg rect {
  fill: #171731;
}

.details-post--nav button.p-next:hover svg #Path_49 {
  fill: #171731;
}

.details-post--nav button.p-next:hover svg #Path_50,
.details-post--nav button.p-next:hover svg #Path_51,
.details-post--nav button.p-next:hover svg #Path_52  {
  fill: #f6f4f4;
}



.details-wrapper {
  max-width: 584px;
}

.details-wrapper .fs-5 {
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 24px;
  font-weight: bold;
  color: #141414;
  margin-bottom: 6px;
}

.details-header span.icon {
  display: block;
  margin-bottom: 22px;
}

.details-header h2 {
  font-weight: bold;
  letter-spacing: 1px;
}

.details-header {
  margin-bottom: 32px;
}

.separator {
  position: relative;
  display: block;
  height: 1px;
}

.separator::after {
  width: 50px;
  height: 1px;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  background-color: #171731;
}


/* ======== work-details-page style end ============ */


/* ======== terms-page-page style end ============ */


.terms-area {
  padding: 212px 0px 212px;
}

.terms-obj {
  position: absolute;
  right: 100px;
  top: 190px;
}

.terms-wrapper h2 {
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #171731;
  margin-bottom: 50px;
}

.terms-wrapp {
  margin-left: 62px;
  max-width: 980px;
}

.term-item h6 {
  font-size: 14px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 0px;
}

.term-item p {
  font-size: 14px;
  line-height: 26px;
  color: #171731;
  margin-bottom: 0px;
}

.term-item {
  margin-bottom: 34px;
}

/* ======== terms-page-page style end ============ */

/* ======== footer style start ============ */


.footer {
  background: #171731;
  padding: 34px 0px 34px;

}

.footer-start {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer-start li a {
  color: #fff;
  text-decoration: none;
}

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

.social {
  display: flex;
  align-items: center;
  gap: 23px;
}

.social a:hover {
  opacity: 0.7;
}

/* ======== footer style end ============ */

.contact-form fieldset h1{display: none;}
.contact-form fieldset p{display: none;}

form.smcms_form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
form.smcms_form fieldset .form_row {
  width: 100%;
  position: relative;
}
@media (min-width: 720px) {
  form.smcms_form fieldset .form_row:nth-of-type(1), form.smcms_form fieldset .form_row:nth-of-type(2) {
    width: calc(50% - 7.5px);
 }
}
form.smcms_form fieldset .form_row input:not(.form_submit), form.smcms_form fieldset .form_row textarea {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid #707070;
}
form.smcms_form fieldset .form_row textarea {
  height: 200px;
}
form.smcms_form fieldset .form_row .label {
  position: absolute;
  left: 0px;
  top: 6px;
  line-height: 26px;
  color: #000;
  transition: 0.3s;
  pointer-events: none;
}
form.smcms_form fieldset .form_row .label:has( + input:valid),
form.smcms_form fieldset .form_row .label:has( + input:focus),
form.smcms_form fieldset .form_row .label:has( + textarea:valid),
form.smcms_form fieldset .form_row .label:has( + textarea:focus) {
  top: -11px;
  font-size: 11px;
}

.mobileShow {
    display: none;
}
@media only screen and (min-width :320px) and (max-width :809px) {
    .mobileShow {
    display: inline;
}
}@media(max-width:809px) {
    .mobileHide {
    display: none;
}
.mobileShow {
    display: inline;
}

