@import url('fonts/font.css');

/*
font-family: 'Larsseit-Light';
font-family: 'Larsseit';
font-family: 'Larsseit-Medium';
font-family: 'Larsseit-Bold';
*/

body {
  font-family: 'Larsseit';
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  color: #fff;
  background-color: #050607;
  position: relative;
  min-width: 320px;
  /*background: linear-gradient(to right, #050607, #050607, #091016, #050607);
  background-size: 400% 400%; 
  animation: gradient 15s ease infinite;*/
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
}

p {
  font-size: 16px;
  color: #fff;
  font-family: 'Larsseit';
  line-height: 1.6;
  margin: 0 0 15px;
  font-weight: normal;
}

a {
  color: #fff;
  text-decoration: none !important;
  transition: ease-in-out 0.3s;
  display: inline-block;
}

a:hover,
a:active,
a:focus {
  color: #dd363f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Larsseit-Bold';
  color: #fff;
  margin: 0;
  margin-bottom: 10px;
}

h1 {
  font-size: 90px;
}

h2 {
  font-size: 44px;
  line-height: 1.5;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

ul {
  margin: 0;
}

input,
select,
textarea,
button,
input:focus,
button:focus {
  outline: none;
}

button {
  transition: ease-in-out 0.3s;
}

img {
  max-width: 100%;
}

header,
section,
footer {
  width: 100%;
}



header {
  padding: 60px 0px 30px;
  transition: all 0.5s;
  /* backdrop-filter: blur(100px);*/
}

header.fixed-header {
  padding: 20px 0px;
  background: rgba(5, 6, 7, 0.5);
  backdrop-filter: blur(10px);
}

header.fixed-header .contactUs {
  width: 145px;
  height: 50px;
}

header.fixed-header .burgerBTN {
  width: 50px;
  height: 50px;
}

header.fixed-header .navMenu:before,
header.fixed-header .navMenu:after {
  top: 0px;
}


.brandName {}

.brandName img {
  height: 42px;
}

/*
.navToggle {
  width: 30px;
  padding: 5px 0px;
  border: none;
  position: relative;
  margin-left: auto;
  display: block;
  background-color: transparent;
}

.navToggle span {
  width: 100%;
  height: 4px;
  background-color: #fff;
  display: block;
  margin: 8px 0px;
  transition: all 0.5s;
  margin-left: auto;
}

.navToggle span:last-child {
  width: 20px;
}

.navToggle:hover span:first-child {
  width: 20px;
}

.navToggle:hover span:last-child {
  width: 100%;
}*/

.title_01 {
  font-size: 100px;
  line-height: 1.2;
  background: -webkit-linear-gradient(0deg, #dd363f, #f87a3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-bottom: 25px;

}

.sub_title {
  font-size: 24px;
}

.bannerSection {
  min-height: 600px;
  padding: 100px;
  display: flex;
  align-items: center;
}

.bannerSection p {
  font-size: 20px;
  line-height: 1.6;
  font-family: 'Larsseit';
}

.ptb_100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.titleCol {
  position: relative;
  z-index: 1;
}

.title_01 {}

.bigTitleBorder {
  font-family: 'Circular Std';
  font-size: 20vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #0c0e10;
  position: absolute;
  left: 0;
  top: 50%;
  line-height: 1;
  z-index: -1;
  transform: translateY(-50%);
}

.nav_services {
  justify-content: space-between;
  padding: 40px 0px;
  min-height: 200px;
}

.nav_services .nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav_services .nav-item .nav-link {
  color: #ffffff;
  font-size: 18px;
  font-family: 'Circular Std';
  font-weight: 500;
  position: relative;
  background-color: transparent;
  border-radius: 0px;
  opacity: 0.1;
}

.nav_services .nav-item .nav-link:before {
  position: absolute;
  content: '';
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.05;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.5s;
}

.nav_services .nav-item .nav-link.active {
  font-size: 54px;
  font-family: 'Circular Std';
  font-weight: bold;
  background: -webkit-linear-gradient(0deg, #dd363f, #f87a3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}

.nav_services .nav-item .nav-link:hover {
  opacity: 1;
}

.nav_services .nav-item .nav-link:hover:before {
  transform: translate(-50%, -50%) scale(0.8);
}

.nav_services .nav-item .nav-link.active:before {
  transform: translate(-50%, -50%) scale(1);
  -webkit-animation: pulsing 2s infinite;
  animation: pulsing 2s infinite;
}

@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.5, 0.5);
    transform: translate(-50%, -50%) scale(0.5, 0.5)
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.0, 1.0);
    transform: translate(-50%, -50%) scale(1.0, 1.0);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.5, 0.5);
    transform: translate(-50%, -50%) scale(0.5, 0.5);
  }
}

@keyframes pulsing {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.5, 0.5);
    transform: translate(-50%, -50%) scale(0.5, 0.5)
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.0, 1.0);
    transform: translate(-50%, -50%) scale(1.0, 1.0);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.5, 0.5);
    transform: translate(-50%, -50%) scale(0.5, 0.5);
  }
}



.tab_services {}

.tab_services .tab-pane {}

.btnArrow {
  display: inline-flex;
  font-size: 16px;
  font-family: 'Circular Std';
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-right: 50px;
  background-image: url(../images/right-arrow.svg);
  background-size: 34px;
  background-repeat: no-repeat;
  background-position: center right;
  margin: 15px 0px;
}

.btnArrow:hover {
  background-image: url(../images/right-arrow_red.svg);
}


.serv_textHolder {
  padding: 20px 30px 20px 0px;
}

.serv_textHolder .btnArrow {
  margin-top: 30px;
}

.serv_imgHolder {
  width: 100%;
  height: 320px;
  border-radius: 0px 0px 0 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.serv_imgHolder img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}



.polygonEffect {
  -webkit-clip-path: polygon(0% 0%, calc(100% - 0px) 0%, 100% 2rem, 100% 100%, 2rem 100%, 0% calc(100% - 0px));
  clip-path: polygon(0% 0%, calc(100% - 0px) 0%, 100% 2rem, 100% 100%, 2rem 100%, 0% calc(100% - 0px));
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.polygonEffect:hover {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transform: none;
  transform: none;
  -webkit-clip-path: polygon(2rem 0%, 100% 0%, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0% 100%, 0% 2rem);
  clip-path: polygon(2rem 0%, 100% 0%, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0% 100%, 0% 2rem);
}

.polygonEffect:hover img {
  transform: scale(1.1);
  transition: all 5s;
}



.contactUs {
  border: solid 1px rgba(255, 255, 255, 0.20);

  width: 185px;
  height: 60px;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  font-family: 'Larsseit';
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 20px;


}

.contactUs:hover {
  background: #fff;
  border: solid 1px #fff;
  color: #050607;
}

.flexHeaderRight {
  display: flex;
  align-items: center;

}

.navToggle {
  margin-left: inherit;
}



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

.nav-but-wrap {
  margin: 0px;
}

.nav__content {
  right: 30px;
  left: auto;

  width: 320px;

}

.navMenu:before,
.navMenu:after {
  top: 40px;
  right: 30px;
  left: auto;
}

.navMenu:after {
  background-image: none;
  box-shadow: none;
  background-color: #f87a3c;
  box-shadow: 0px 20px 50px rgba(248, 122, 60, 0.2);
}

.navMenu:before {
  background-image: none;
  box-shadow: none;
  background-color: #dd363f;

}

body.nav-active .navMenu:before,
body.nav-active .navMenu:after {
  border-radius: 0px;
  width: 320px;
}

.bannerSection {
  padding-top: 250px;
  text-align: center;
}

.nav {
  position: static;

}

.nav__list-item a {
  font-family: 'Larsseit';
  font-weight: normal;

}

.nav__list-item a:after {
  background: #fff;
}

.burgerBTN {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  border: solid 1px rgba(255, 255, 255, 0.20);
  padding-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: transparent;
  flex-direction: column;
  padding-left: 2px;
  z-index: 99999;
}

.burgerBTN .menu-icon {}

/*
.burgerBTN span {
  width: 17px;
  height: 2px;
  margin-top: 0px;
  background: #fff;

}

.burgerBTN span:nth-child(2) {
  margin: 5px 0px;
  width: 23px;
}*/

.btnArrow {
  background-image: none !important;
  padding-right: 0px;
  padding-bottom: 15px;
  font-family: 'Larsseit-Bold';
  letter-spacing: 8px;
  position: relative;
  line-height: 1;
  transition: ease-in-out 0.3s;
}

.btnArrow:hover {
  color: #fff;
}

.btnArrow::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 40px;
  height: 2px;
  background-color: #fff;
  transition: ease-in-out 0.3s;
}

.btnArrow:hover:before {
  width: 94%;
  transition: ease-in-out 0.3s;
}

.projectRow {
  display: grid;
  grid-template-columns: repeat(64, 1.5625%);
  margin-bottom: 100px;
}

.left .projectShot {
  grid-column-start: 1;
  grid-column-end: 42;
  grid-row: 1;
  margin-right: 0;
}

.left .projectInfo {
  display: flex;
  flex-direction: column;
  z-index: 10;
  grid-column-start: 39;
  grid-column-end: 62;
  grid-row: 1;
  margin-top: 0;
}


.right .projectShot {
  grid-column-start: 24;
  grid-column-end: 65;
  margin-left: 0;
  grid-row: 1;
  margin-right: 0;
}

.right .projectInfo {
  grid-column-start: 8;
  grid-column-end: 28;
  grid-row: 1;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  z-index: 10;
}


.projectShot a {
  transform: scale(1);
  transition: transform .6s cubic-bezier(.075, .82, .165, 1);
  display: block;
  min-height: 460px;
}

.projectShot:hover a {
  transform: scale(.9);
  transition: transform .6s cubic-bezier(.075, .82, .165, 1);
}

.projectShot a img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.projectInfoBlank h3 {
  font-size: 22px;
  font-family: 'Larsseit-Light';
  color: #fff;
  margin-bottom: 20px;
  margin-top: 85px;

}

.projectInfoBlank h1 {
  font-size: 60px;
  font-family: 'Larsseit-Bold';
  color: #fff;
  margin-bottom: 20px;
  margin-top: 0px;
}

.containerProject {
  max-width: 1600px;
  margin: 100px auto 0px auto;
  overflow: hidden;
}


.centerBTN::before {
  left: 50%;
  transform: translateX(-50%);
}

.testoSection {
  padding: 50px 0px;
}

.testo_owl {}

.testo_owl .owl-stage {
  display: flex;
  align-items: center;
}

.testo_owl .owl-item {}

.testo_owl .owl-item.active.center .item {
  padding: 30px 0px;
}

.testo_owl .owl-item.active.center .item .testoItem {
  transform: scale(1);
}

.testo_owl .owl-item.active.center .item .testoItem .ratingCol .ratingNumber {
  font-size: 80px;
}

.testo_owl .owl-item.active.center .item .testoItem .quoteCol .quoteText p {
  font-size: 26px;
}

.testo_owl .owl-item.active.center .item .testoItem .quoteCol .quoteText .clientInfo {
  font-size: 18px;
}

.testo_owl .item {
  padding: 30px 100px;
  display: flex;
  align-items: center;
}

.testoItem {
  display: flex;
  padding: 35px 0px;
  background-image: linear-gradient(145deg, #2b2c2e, transparent);
  transform: scale(0.8);
}

.testoItem .ratingCol {
  padding: 30px;
  width: 200px;
  min-width: 200px;
  border-right: 1px rgba(255, 255, 255, 0.2) solid;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testoItem .ratingCol .ratingNumber {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.testoItem .ratingCol .ratingStar {}

.testoItem .ratingCol .ratingStar svg {
  color: #f87a3c;
  font-size: 15px;
}

.testoItem .quoteCol {
  padding: 30px;
}

.testoItem .quoteCol .quoteText {
  position: relative;
  background: url(../images/ic_quote.png) left top no-repeat;
  background-repeat: 36px;
  padding-top: 40px;
}

.testoItem .quoteCol .quoteText p {
  font-size: 16px;
  font-family: 'Larsseit-Bold';
  line-height: 1.4;
}

.testoItem .quoteCol .quoteText .clientInfo {
  font-size: 12px;
  display: block;
  font-family: 'Larsseit-Light';
  padding-top: 10px;
}

.testo_owl .owl-nav {
  margin: 0px;
}

.testo_owl .owl-nav>button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  border: 1px rgba(255, 255, 255, 0.2) solid !important;
}

.testo_owl .owl-nav>button span {
  font-size: 22px;
}

.testo_owl .owl-nav>button.owl-prev {
  left: 16%;
}

.testo_owl .owl-nav>button.owl-next {
  right: 16%;
}

.testo_owl .owl-nav>button:hover {
  background-image: linear-gradient(to right, #dd363f, #f87a3c) !important;
  border-color: transparent !important;
}

.testoItem {
  -webkit-clip-path: polygon(0% 0%, calc(100% - 0px) 0%, 100% 2rem, 100% 100%, 2rem 100%, 0% calc(100% - 0px));
  clip-path: polygon(0% 0%, calc(100% - 0px) 0%, 100% 2rem, 100% 100%, 2rem 100%, 0% calc(100% - 0px));
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.testoItem:hover {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transform: none;
  transform: none;
  -webkit-clip-path: polygon(2rem 0%, 100% 0%, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0% 100%, 0% 2rem);
  clip-path: polygon(2rem 0%, 100% 0%, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0% 100%, 0% 2rem);
}


.contactSection {
  padding: 50px 0px;
}

.contactCol_Round {
  text-align: center;
  position: relative;
  padding: 100px 0px
}

.contactCol_Round:before {
  position: absolute;
  content: '';
  width: 500px;
  height: 500px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  background-image: radial-gradient(#f87a3c, #dd363f);
  z-index: -1;
  transition: all 1s;
}

.contactCol_Round:hover:before {
  transform: translate(-50%, -50%) scale(0.9);
  /* box-shadow: 0px 0px 80px rgba(221, 54, 63, 0.7);*/
}

.contactCol_Round h2 {
  font-size: 45px;
  line-height: 1.2;
  font-family: 'Larsseit-Bold';
}

.contactCol_Round a {
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  font-weight: bold;
  z-index: 1;
  margin-top: 50px;
}

.contactCol_Round a:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 7px;
  background-color: #fff;
  z-index: -1;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  opacity: 0.4;
  transition: all 0.5s;
}

.contactCol_Round a:hover {
  color: #fff;
}

.contactCol_Round a:hover:after {
  width: 0%;
  bottom: 0px;
  opacity: 0.9;
}

footer {
  padding: 70px 0px 50px;
}

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

footer .col_F1 {}

footer .col_F1 strong {
  font-family: 'Larsseit-Medium';
}

footer .col_F2 {
  text-align: center;
}

footer .col_F3 {
  text-align: right;
}

footer .socialCol {}

footer .socialCol a {
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border: 1px rgba(255, 255, 255, 0.2) solid;
  margin: 0px 7px;
  border-radius: 50%;
}

footer .socialCol a:hover {
  color: #050607;
  background: #fff;
  border-color: #fff;
}


.pt_300 {
  padding-top: 300px;
}

footer .col_F1 strong {
  font-weight: normal;
}

.header-wrapper {
  margin-left: 0px;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}

header,
section,
footer {
  overflow: hidden;
}

footer .col_F1,
footer .col_F2,
footer .col_F3 {
  width: 33.33%;
}

.getaQuote h6 {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
  margin-top: 0px;

}

.contactDetails {
  width: 100%;
  display: block;
  margin-top: 50px;
}

.contactDetails li {
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 30px;
}

.contactDetails li a {
  display: block;
  width: 100%;
  border-radius: 5px;
  padding: 15px;
  font-size: 18px;
  color: #fff;
  border: 2px solid transparent;
}
.contactDetails li a:hover{
  background-color: rgba(248, 122, 60, 0.1);
  border: solid 2px rgba(248, 122, 60, 1);
  color: #f87a3c;
}

.contactContainer {
  width: 100%;
  max-width: 1200px !important;
}

.mt100 {
  margin-top: 100px;
}

.contactDetails li a svg{
  margin-right: 15px;
}
.contactForm{
  width: 100%;
  float: left;
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
}
.justifyCenter{
  display: flex;
  justify-content: center;
}
.contactRow{
  width: 100%;
  margin-bottom: 20px;
  float: left;
}
.contactFeild{
  width: 100%;
  border-radius: 10px;
  border: solid 2px rgba(0, 0, 0, 0.1);
  background-color: transparent;
  font-size: 18px;
  color: #000;
  padding: 15px 15px;
}
.submit{
 
  border-radius: 10px;
  border: none;
  background-color: #dd363f;
  font-size: 18px;
  color: #fff;
  padding: 15px 50px;
  margin-top: 15px;
}
.mb-50{ margin-bottom: 50px;}
		 .mt-50{ margin-top: 50px;}
		.justCenter {
			justify-content: center;
		}

		footer {
			text-align: center;
		}

		.ftrBox {
			text-align: left;
			display: flex;
			border-radius: 8px;
			border: solid 1px rgba(128, 128, 128, 0.3);
			padding: 25px 20px;
			height: 100%;
		}

		.ftricon {
			width: 42px;
		}
		.ftricon img{ width: 100%;}

		.ftrBox h6 {
			color: rgba(128, 128, 128, 1);
		}

		.ftrBox p {
			color: #fff;
			font-size: 16px;
			margin: 0px;
			font-weight: 300;
		}

		.ftrText {
			width: 100%;
			padding-left: 16px;
		}

		.ftrsociallinks {
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: center;
			margin-bottom: 30px;
		}

		.ftrsociallinks li {
			padding: 0px 8px;
			display: block;
		}

		.ftrsociallinks li a { 
			color: #fff;
			opacity: 0.4;
			font-size: 18px;
		}

		.ftrsociallinks li a:hover {
			opacity: 1;
		}
		.ftrnote{
			color: rgba(128, 128, 128, 1);
		}
		.ftrHeader{
			font-family: 'Larsseit-Light';
		}
		.ftrHeader span{ font-family: 'Larsseit-Bold'; font-style: italic;}