/*Style Away, No Globals Please*/

@charset "utf-8";
/* CSS Document */

a[href^="tel:"] {
  text-decoration: underline;
}

:root {
  --dark-color: #363232;
  --light-color: #ff0101;
  --alt-color: #5e5e5e;
  --off-white: #f4f4f4;
}

html,
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  overflow-x: hidden;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

body {
  font-family: "Quicksand", sans-serif;
  position: relative;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

p,
ul li,
ol li {
  color: #646464;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}

a {
  color: inherit;
  text-decoration: none;
}

*:focus {
  outline: none;
}

h1 {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 700;
  font-size: 45px;
  color: var(--alt-color);
  position: relative;
  padding-bottom: 10px;
}

.home h1 {
  font-family: "Nanum Myeongjo", serif;
  color: var(--alt-color);
  font-size: 25px;
  line-height: 40px;
  font-weight: 300;
  text-transform: uppercase;
}

h2 {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 700;
  font-size: 45px;
  color: var(--alt-color);
  line-height: 50px;
  position: relative;
  padding-bottom: 10px;
}

h3 {
  font-family: "Nanum Myeongjo", serif;
  color: var(--dark-color);
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
}

.overlay {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  top: 0px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  animation: overlayanim 1s linear;
  animation-fill-mode: forwards;
  animation-delay: 2.2s;
}

.overlaybox {
  position: relative;
  padding: 80px;
  min-width: 320px;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.overlaybox::before {
  position: absolute;
  width: 0px;
  height: 0px;
  content: "";
  top: 0px;
  left: 0px;
  border-top: solid 1px black;
  border-left: solid 1px black;
  animation: box1 1s linear;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
  border-top-left-radius: 20px;
}

.overlaybox::after {
  position: absolute;
  width: 0px;
  height: 0px;
  content: "";
  bottom: 0px;
  right: 0px;
  border-bottom: solid 1px black;
  border-right: solid 1px black;
  animation: box2 1s linear;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
  border-bottom-right-radius: 20px;
}

.ologo {
  position: relative;
  margin: 0 auto;
  display: block;
  height: auto;
  max-height: 150px;
  width: auto;
  max-width: 90%;
  animation: logoanim 0.8s linear;
  opacity: 1;
  filter: blur(0px);
  top: 0px;
}

.overlay p {
  position: relative;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-size: 11px;
  animation: logoanim2 0.5s linear;
  animation-delay: 0.5s;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Animation Keyframes*/
@keyframes logoanim {
  0% {
    opacity: 0;
    filter: blur(50px);
    top: -100px;
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    top: 0px;
  }
}

/* Animation Keyframes*/
@keyframes logoanim2 {
  0% {
    opacity: 0;
    letter-spacing: 20px;
  }
  100% {
    opacity: 1;
    letter-spacing: 8px;
  }
}

/* Animation Keyframes*/
@keyframes overlayanim {
  0% {
    top: 0px;
  }
  100% {
    top: 100vh;
  }
}

/* Animation Keyframes*/
@keyframes box1 {
  0% {
    width: 0px;
    height: 0px;
  }
  100% {
    width: 90%;
    height: 90%;
  }
}

/* Animation Keyframes*/
@keyframes box2 {
  0% {
    width: 0px;
    height: 0px;
  }
  100% {
    width: 90%;
    height: 90%;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.topbar {
  position: fixed;
  top: 0px;
  background-color: var(--off-white);
  z-index: 5;
  left: 0;
  right: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  filter: drop-shadow(0px 0px 5px #909090);
}

.logo {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 500px;
}

.logo::before {
  position: absolute;
  top: -50px;
  height: 50px;
  width: 100%;
  max-width: 500px;
  content: "";
  background: url("../images/curve.svg") no-repeat bottom center;
  background-size: contain;
}

.logo img {
  height: auto;
  max-height: 100px;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
  top: -20px;
}

i.fa-bars {
  display: none;
}

nav {
  display: flex;
  justify-content: center;
}

nav ul {
  padding: 0px;
  margin: 0px;
  text-align: center;
  margin: 0 auto;
  display: block;
}

nav::before {
  position: absolute;
  top: 23px;
  left: 20px;
  right: 20px;
  height: 1px;
  background-color: var(--dark-color);
  content: "";
  opacity: 0.4;
}

nav ul li {
  color: var(--dark-color);
  font-family: "Nanum Myeongjo", serif;
  display: inline-block;
  font-weight: 400;
  text-transform: uppercase;
  background-color: var(--off-white);
  z-index: 1;
  float: left;
  position: relative;
  box-shadow: inset 0 0 0 0 var(--light-color);
  -webkit-transition: box-shadow 0.45s ease-in-out;
  -moz-transition: box-shadow 0.45s ease-in-out;
  -ms-transition: box-shadow 0.45s ease-in-out;
  -o-transition: box-shadow 0.45s ease-in-out;
  transition: box-shadow 0.45s ease-in-out;
}

nav ul li::before {
  display: none;
}

nav ul li:hover {
  /*box-shadow: inset 0 -48px 0 0 var(--light-color);
	color: var(--off-white);*/
}

nav ul li a {
  display: block;
  padding: 10px 20px;
}

.sub {
  cursor: pointer;
  padding-right: 40px;
}

.sub::before {
  position: absolute;
  font: var(--fa-font-solid);
  content: "\f0d7";
  top: 16px;
  right: 15px;
  color: #4c4e4d;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

nav ul li:hover .sub::before,
.lion .sub::before {
  color: var(--off-white);
}

.lion {
  /*background-color: var(--dark-color);
	color: var(--light-color);*/
}

.subon::before {
  content: "\f0d8";
}

nav ul li ul {
  position: absolute;
  display: none;
  width: 400px;
  top: 48px;
  left: 0px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

nav ul li ul li {
  display: block;
  width: 100%;
  text-align: left;
  border-bottom: solid 1px #dbdbdb;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

nav ul li ul li:last-of-type {
  border-bottom: none;
}

nav ul li ul li:hover {
  /*box-shadow: none;
	background-color: var(--dark-color);*/
}

header {
  width: 100%;
  height: calc(100vh - 300px);
  position: fixed !important;
  top: 0px;
  left: 0px;
  z-index: -1;
}

header::before {
  position: absolute;
  content: "";
  left: 20px;
  top: 100px;
  width: 3px;
  height: 50%;
  background-color: var(--off-white);
  z-index: 2;
  pointer-events: none;
}

header::after {
  position: absolute;
  content: "";
  right: 20px;
  bottom: 50px;
  width: 7px;
  height: 50%;
  background-color: var(--off-white);
  z-index: 2;
  pointer-events: none;
}

/* Animation Keyframes*/
@keyframes linemove {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 2000px;
  }
}

.home::before {
  height: 5px;
  width: 100%;
  position: absolute;
  top: -15px;
  content: "";
  left: 0px;
  background: url("../images/homeline.png") top left;
  animation: linemove 40s linear;
  animation-iteration-count: infinite;
}

.home {
  position: relative;
  margin-top: calc(100vh - 300px);
  z-index: 3;
  background-color: #fff;
  padding-bottom: 50px;
  background: url("../images/homelines.svg") #fff no-repeat bottom left;
}

.home h1 {
  padding-bottom: 50px;
}

.home .wrapper {
  display: flex;
  align-content: stretch;
  padding-bottom: 50px;
}

.homeleft {
  width: 50%;
}
.homefull {
  width: 100%;
}

.homeright {
  width: 50%;
  padding-left: 100px;
}

.homeright img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.homecon {
  text-align: right;
  padding-bottom: 10px;
}

.homecon p:first-of-type {
  font-weight: bold;
}

.homecon p.tel {
  font-family: "Nanum Myeongjo", serif;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 15px;
}

.homecon p.email {
  font-family: "Nanum Myeongjo", serif;
  font-size: 18px;
}

.homecon p a:hover {
  color: var(--light-color);
}

.homebottom {
  display: flex;
  align-content: stretch;
}

.homesocial {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.homesocial h3 i {
  padding-right: 20px;
}

.social i {
  font-size: 25px;
  margin-right: 20px;
  color: var(--alt-color);
  padding: 15px;
  border: solid 1px var(--light-color);
  background-color: #fff;
  border-radius: 15px;
  -webkit-transition: background-color 0.45s ease-in-out;
  -moz-transition: background-color 0.45s ease-in-out;
  -ms-transition: background-color 0.45s ease-in-out;
  -o-transition: background-color 0.45s ease-in-out;
  transition: background-color 0.45s ease-in-out;
}

.social i:hover {
  background-color: var(--dark-color);
  color: var(--off-white);
}

.yearsholder {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.homeyears {
  width: 50%;
}

.years {
  font-size: 40px;
  font-family: "Nanum Myeongjo", serif;
  font-weight: bold;
  text-transform: uppercase;
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 25px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.yearside {
  font-size: 40px;
  font-family: "Nanum Myeongjo", serif;
  font-weight: bold;
  padding-left: 20px;
  color: var(--alt-color);
}

.homeyears p {
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 300;
  padding: 0 40px;
}

.photoft {
  height: 700px;
  background-color: black;
  display: block;
  position: relative;
  z-index: 1;
}

.photoft-home {
  background: url("../images/homephoto.jpg") no-repeat bottom center;
  background-size: cover;
  animation: photoft 60s linear;
  animation-iteration-count: infinite;
}

/* Animation Keyframes*/
@keyframes photoft {
  0% {
    background-position-y: top;
  }
  50% {
    background-position-y: bottom;
  }
  100% {
    background-position-y: top;
  }
}

.wcuwrapper {
  position: relative;
  background-color: var(--dark-color);
  padding: 50px;
  z-index: 2;
}

/* Animation Keyframes*/
@keyframes linemove2 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -2000px;
  }
}

.wcuwrapper::before {
  height: 5px;
  width: 100%;
  position: absolute;
  top: 15px;
  content: "";
  left: 0px;
  background: url("../images/homeline.png") top left;
  animation: linemove2 40s linear;
  animation-iteration-count: infinite;
}

.wcuwrapper .wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.wcuwrapper h2,
.wcuwrapper p {
  color: var(--off-white);
}

.wcuwrapper h3 {
  color: var(--light-color);
}

.wcu {
  position: relative;
  width: 50%;
  padding-right: 100px;
}

.wrapper ul li {
  list-style: none;
  position: relative;
  font-weight: 300;
  font-size: 14px;
}

.wrapper ul {
}

.wrapper ul li::before {
  font: var(--fa-font-solid);
  content: "\f152";
  position: absolute;
  left: -30px;
  top: 7px;
}

.wcu ul li {
  color: var(--off-white);
}

.wcu ul li::before {
  color: var(--light-color);
}

.twocols {
  columns: 2;
}

.servft {
  width: 50%;
  position: relative;
  margin-top: -320px;
  background-color: var(--off-white);
  border-radius: 20px;
  padding: 10px;
  overflow: hidden;
  height: auto !important;
}

.servft h2,
.servft p {
  color: var(--alt-color);
  text-align: center;
}

.servft h2 {
  margin: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.servft ul {
  padding: 0px;
  margin: 0px;
}

.servft ul li::befor3e {
  display: none;
}

.servft ul li {
  list-style: none;
  display: block;
  padding: 20px;
  text-align: center;
  background-color: var(--dark-color);
  font-family: "Nanum Myeongjo", serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--off-white);
  text-transform: uppercase;
}
/*
.servft ul li:nth-of-type(even) {
	background-color: var(--light-color);
	color: var(--alt-color);
}
*/
.servft img {
  margin-top: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.wwp {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: space-between;
}

.wwp div {
  position: relative;
  width: calc(25% - 20px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.wwp div::before {
  position: absolute;
  width: 100%;
  height: calc(100% - 60px);
  bottom: 0px;
  left: 0px;
  content: "";
  border-radius: 20px;
  border-top-left-radius: 0px;
  border-left: solid 1px var(--off-white);
  border-bottom: solid 1px var(--off-white);
  pointer-events: none;
}

.wwp div::after {
  position: absolute;
  width: calc(100% - 60px);
  height: 100%;
  top: 0px;
  right: 0px;
  content: "";
  border-radius: 20px;
  border-top-left-radius: 0px;
  border-right: solid 1px var(--off-white);
  border-top: solid 1px var(--off-white);
  pointer-events: none;
}

.wwp p {
  text-align: center;
}

.wwp p {
  font-family: "Nanum Myeongjo", serif;
  font-size: 18px;
}

.wwp i {
  position: absolute;
  font-size: 30px;
  top: 0px;
  left: 0px;
  color: var(--light-color);
}

span.btn {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  border: solid 1px var(--alt-color);
  border-radius: 20px;
  position: relative;
  background-color: var(--off-white);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

span.btn:hover {
  background-color: var(--light-color);
  border-color: transparent;
}

span.btn::after {
  font: var(--fa-font-solid);
  content: "\f054";
  position: absolute;
  right: 20px;
  font-size: 12px;
  color: var(--dark-color);
  top: 26px;
  -webkit-transition: right 0s linear;
  -moz-transition: right 0s linear;
  -ms-transition: right 0s linear;
  -o-transition: right 0s linear;
  transition: right 0s linear;
}

span.btn a {
  position: relative;
  display: block;
  border-radius: 20px;
  padding: 20px;
  padding-right: 60px;
  -webkit-transition: padding 0.2s ease-in-out;
  -moz-transition: padding 0.2s ease-in-out;
  -ms-transition: padding 0.2s ease-in-out;
  -o-transition: padding 0.2s ease-in-out;
  transition: padding 0.2s ease-in-out;
}

.accreds {
  background-color: #fff;
  padding: 20px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
  height: auto;
  min-height: auto;
}

.accreds .slick-list {
  overflow: visible;
  overflow-x: hidden;
  height: auto !important;
}

.accred {
  position: relative;
  display: inline-block;
  margin: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: solid 1px #c7c7c7;
}

.accred a {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  padding: 20px 40px;
}

.accred::before {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  border-radius: 10px;
  content: "";
  z-index: 0;
  pointer-events: none;
  background-color: var(--light-color);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.accred:hover::before {
  top: -5px;
  bottom: -5px;
  right: -5px;
  left: -5px;
}

.accred img {
  height: 50px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.proj {
  background-color: var(--off-white);
  padding: 100px 0;
}

.proj .wrapper {
  display: flex;
  align-content: stretch;
}

.proj-side {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.proj-main {
  width: calc(100% - 400px);
  padding-left: 80px;
  padding-right: 40px;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-content: stretch;
}

.proj-main .slick-track {
  display: flex !important;
  flex-direction: row !important;
  align-content: center !important;
  align-content: stretch !important;
}

.proj-main span {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  width: 25%;
  overflow: hidden;
  padding: 20px;
  border-radius: 10px;
  height: auto !important;
}

.proj-main img {
  border-radius: 10px;
  -webkit-transition: scale 0.55s ease;
  -moz-transition: scale 0.55s ease;
  -ms-transition: scale 0.55s ease;
  -o-transition: scale 0.55s ease;
  transition: scale 0.55s ease;
}

.proj-main p {
  position: relative;
  padding-top: 10px;
  -webkit-transition: opacity 0.25s linear 0.5s;
  -moz-transition: opacity 0.25s linear 0.5s;
  -ms-transition: opacity 0.25s linear 0.5s;
  -o-transition: opacity 0.25s linear 0.5s;
  transition: opacity 0.25s linear 0.5s;
}

.proj-main p::before {
  position: absolute;
  top: 2px;
  left: 0px;
  width: 100px;
  content: "";
  height: 1px;
  background-color: var(--alt-color);
  content: "";
  opacity: 0.3;
}

.proj-main span:hover img {
  scale: 1.8;
}

.proj-main span:hover p {
  opacity: 0;
  -webkit-transition: opacity 0s linear;
  -moz-transition: opacity 0s linear;
  -ms-transition: opacity 0s linear;
  -o-transition: opacity 0s linear;
  transition: opacity 0s linear;
}

.testconft {
  position: relative;
  background-color: var(--alt-color);
  display: flex;
  align-content: stretch;
}

.testft {
  width: 50%;
  background-color: #222222;
  padding: 100px;
  position: relative;
}

.conft {
  width: 50%;
  background: url("/galleries/auto-gallery/007.jpg") no-repeat center;
  background-size: cover;
  padding: clamp(30px, 10vw, 150px);
  position: relative;
}

.conft::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.fullft {
  width: 100%;
  padding: 150px 25%;
}
/*
.conft::after {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: '';
	background-color: #21201e;
	opacity: 0.7;
	pointer-events: none;
}
*/
.conft p {
  font-weight: 200;
  position: relative;
  text-transform: uppercase;
  z-index: 3;
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 2px;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
}

.conft p a {
  color: var(--light-color);
}

.conft p a:hover {
  color: #ffffff;
}

.conft span.btn {
  position: relative;
  z-index: 3;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.testft .test {
  margin-right: 40px;
}

.test {
  position: relative;
  display: block;
  z-index: 1;
}

.test p {
  color: var(--off-white);
  text-align: center;
}

.stars {
  text-align: center;
}

.stars i {
  margin-right: 10px;
  color: yellow;
}

.testdeets {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 600px;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  gap: 0;
}

.testdeets p {
  padding: 10px 40px;
  color: var(--alt-color);
}

p.author {
  position: relative;
  text-align: right;
  color: var(--off-white);
  background-color: var(--light-color);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding-left: 50px;
}

p.author::before {
  position: absolute;
  left: 15px;
  font: var(--fa-font-solid);
  content: "\f4ff";
  top: 16px;
}

p.location {
  position: relative;
  text-align: left;
  background-color: var(--off-white);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-right: 50px;
}

p.location::before {
  position: absolute;
  right: 15px;
  font: var(--fa-font-solid);
  content: "\f5a0";
  top: 16px;
}

.slick-dots {
  bottom: -100px;
}

.accredslider .slick-dots {
  bottom: -20px;
}

.accredslider {
  margin-bottom: 0;
  overflow: hidden;
  height: auto !important;
  min-height: auto !important;
}

.accredslider .slick-track,
.accredslider .slick-list {
  height: auto !important;
}

.accredslider .slick-slide {
  height: auto !important;
  float: left;
}

.slick-dots li {
  width: auto !important;
  border-radius: 0px !important;
}

.slick-dots li button {
  background-color: var(--light-color);
  text-indent: -9999px;
  overflow: hidden;
  width: 40px;
  height: 0px !important;
  padding: 3px !important;
  border-radius: 10px !important;
  /* more CSS */
}

.slick-dots li.slick-active button {
  background-color: var(--alt-color);
}

.slick-dots li button:hover {
  background-color: #fff;
}

footer {
  position: relative;
  background-color: var(--off-white);
  padding: 40px;
  text-align: center;
}

footer::before {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 40%;
  top: 20px;
  content: "";
  pointer-events: none;
  z-index: 1;
  border-left: solid 1px var(--alt-color);
  border-bottom: solid 1px var(--alt-color);
}

footer::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40%;
  top: 20px;
  content: "";
  pointer-events: none;
  z-index: 1;
  border-right: solid 1px var(--alt-color);
  border-bottom: solid 1px var(--alt-color);
}

.fcon {
  position: relative;
  padding-bottom: 20px;
}

.fcon p {
  display: inline-block;
  margin: 0 40px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.fcon p a:hover {
  color: var(--light-color);
}

.fsocial {
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px;
}

.fsocial i {
  font-size: 18px;
  padding: 15px;
  margin: 0 10px;
  border-radius: 15px;
  border: solid 1px var(--light-color);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.fsocial i:hover {
  background-color: var(--light-color);
}

p.nwdm {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 10px;
}

.smallheader {
  height: 500px;
  z-index: 0;
}

.headcon {
  position: absolute;
  bottom: 55px;
  right: 40px;
  z-index: 3;
}

.headcon p {
  position: relative;
  z-index: 4;
  background-color: var(--off-white);
  display: inline-block;
  padding: 8px 20px;
  margin-right: 10px;
  border-radius: 5px;
}

.headcon p i {
  display: none;
}

.headcon p a:hover {
  color: var(--light-color);
}

.content {
  position: relative;
  margin-top: 500px;
  z-index: 3;
  background-color: #fff;
  padding-bottom: 50px;
  background: url("../images/homelines.svg") #fff no-repeat bottom left;
}

.nopadding {
  padding-bottom: 0px;
}

.content::before {
  height: 5px;
  width: 100%;
  position: absolute;
  top: -15px;
  content: "";
  left: 0px;
  background: url("../images/homeline.png") top left;
  animation: linemove 40s linear;
  animation-iteration-count: 1;
  animation-iteration-count: infinite;
}

.services {
  display: flex;
  position: relative;
  align-content: stretch;
  flex-wrap: wrap;
  padding: 25px;
  margin-bottom: 40px;
}

.servicetxt,
.servside {
  width: 50%;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.servicetxt {
  padding-right: 40px;
}

.servicetxtfull {
  width: 100%;
  padding: 40px;
}

.servside {
  padding-left: 40px;
}

.servside img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.servside span {
  position: relative;
  display: block;
}

.servside span::before {
  height: 50%;
  left: -40px;
  width: 100%;
  top: 25%;
  content: "";
  background-color: var(--light-color);
  position: absolute;
  border-radius: 20px;
  z-index: -1;
}

.servside span::after {
  width: 50%;
  right: -20px;
  bottom: -20px;
  top: -20px;
  content: "";
  border: solid 2px var(--light-color);
  position: absolute;
  border-radius: 20px;
  z-index: -1;
}

.services:nth-of-type(even) {
  background-color: var(--dark-color);
  border-radius: 20px;
}

.services:nth-of-type(even) .servicetxt {
  order: 1;
  padding-left: 40px;
  padding-right: 0px;
}

.services:nth-of-type(even) .servicetxt h2,
.services:nth-of-type(even) .servicetxt h3,
.services:nth-of-type(even) .servicetxt ul li::before {
  color: var(--light-color);
}

.services:nth-of-type(even) .servicetxt p,
.services:nth-of-type(even) .servicetxt ul li {
  color: var(--off-white);
}

.services:nth-of-type(even) .servside {
  padding-right: 40px;
  padding-left: 0px;
}

.services:nth-of-type(even) .servside span {
  z-index: 0;
}

.services:nth-of-type(even) .servside span::after {
  left: 20px;
  right: -20px;
  height: 100%;
  top: 20px;
  width: auto;
  z-index: -1;
}

.services:nth-of-type(even) .servside span::before {
  display: none;
}

.galleryholder {
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}

.gallery {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

.gallerytop,
.reviewstop {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
}

.galleryimg {
  width: 20%;
  padding: 1px;
  overflow: hidden;
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out;
  -o-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}

.galleryimg img {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.galleryimg:hover {
  padding: 20px;
}

.galleryimg:hover img {
  scale: 1.3;
}

.gtleft,
.gtright,
.rvleft,
.rvright {
  width: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gtleft,
.rvleft {
  background-color: var(--dark-color);
  border-top-left-radius: 20px;
}

.gtleft h1,
.rvleft h1 {
  color: var(--light-color);
}

.gtleft p,
.rvleft p {
  color: var(--off-white);
}

.gtright,
.rvright {
  border-top-right-radius: 20px;
  border: solid 2px var(--alt-color);
  border-left: none;
  border-bottom: none;
  margin-left: 20px;
  width: calc(50% - 20px);
  background: url("../images/homelines.svg") #fff no-repeat bottom left;
  background-size: 100%;
}

.links {
  display: inline-block;
  position: relative;
}

.links p {
  margin: 0px;
  padding: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.links p a:hover {
  color: var(--light-color);
}

.reviews {
  position: relative;
  text-align: center;
  padding-top: 40px;
}

.reviewsholder {
  position: relative;
  background-color: #222222;
  padding: 100px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.reviewsholder .test {
  margin-bottom: 100px;
  position: relative;
  padding-bottom: 20px;
}

.reviewsholder .test::after {
  position: absolute;
  bottom: 0px;
  content: "";
  width: 50%;
  height: 1px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  background-color: #777777;
}

.grid {
  margin-top: 20px;
}

.grid-item {
  width: calc(50% - 50px);
  float: left;
  /* vertical gutter */
  margin-bottom: 50px;
}

.grid-sizer {
  width: 40%;
}

.grid::after {
  content: "";
  display: block;
  clear: both;
}

.contact {
  position: relative;
  padding-top: 40px;
  display: flex;
  align-content: stretch;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.coninfo {
  width: 50%;
  padding-right: 50px;
}

.conno {
  width: 50%;
  text-align: right;
}

.enquiry {
  position: relative;
  background-color: #ededed;
  padding: 60px 0;
}

.enquiry h2 {
  line-height: 50px;
}

.contact p {
  margin: 0px;
  padding-bottom: 5px;
}

.contact p.title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 0;
}

.contact p.tel {
  font-family: "Nanum Myeongjo", serif;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 15px;
  padding: 15px 0;
}

.contact p.email {
  font-family: "Nanum Myeongjo", serif;
  font-size: 18px;
}

.conno p a:hover {
  color: var(--light-color);
}

form {
  position: relative;
}

.formholder {
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
}

.formleft,
.formright {
  width: 50%;
}

.formleft {
  padding-right: 10px;
}

.formright {
  padding-left: 10px;
}

input,
textarea {
  padding: 25px !important;
  display: block !important;
  width: 100% !important;
  background-color: #fff !important;
}

textarea {
  resize: none;
  height: 200px;
}

.message {
  display: block;
  width: 100%;
}

.captchaholder {
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  padding-bottom: 20px;
}

.captcha,
.captxt {
  width: 300px;
}

.captxt {
  font-size: 12px;
  color: #a9a9a9;
}

.captcha img {
  height: 51px;
}

input[type="submit"] {
  border-radius: 10px !important;
  background-color: var(--dark-color) !important;
  color: var(--off-white) !important;
  border: none !important;
  font-family: "Nanum Myeongjo", serif !important;
  font-size: 18px !important;
}

input[type="submit"]:hover {
  background-color: var(--light-color) !important;
  color: #2b2b2b !important;
}

.row {
  position: relative;
  padding: 60px 0;
  text-align: center;
  line-height: 2.5;
  font-size: 18px;
}

.medium-12 {
  width: 100%;
  padding: 0 40px;
}

.map {
  height: 700px;
  position: relative;
  z-index: 2;
}

.map iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: brightness(0.6);
}

.slick-prev::before,
.slick-next::before {
  color: var(--dark-color);
}

.slick-prev {
  left: 40px !important;
}

.slick-next {
  right: 0px !important;
}

/*Peasant Screens*/
@media screen and (max-width: 1920px) {
  .wrapper {
    width: calc(100% - 80px);
  }
}
/*Big Lappy*/
@media screen and (max-width: 1440px) {
  .home .wrapper {
    flex-wrap: wrap;
  }
  .homeleft {
    width: 100%;
  }
  .homeright {
    width: 100%;
    padding-left: 0px;
  }
  .homeright img {
    border-radius: 20px;
  }
  .homecon {
    text-align: center;
    padding: 60px 0;
  }
  .wwp div {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
  .photoft {
    height: 500px;
  }
  .home h1 {
    padding-top: 20px;
  }
  .testft {
    padding: 40px;
  }
  .conft {
    padding: clamp(40px, 8vw, 80px);
  }
  .conft p {
    font-size: clamp(14px, 1.8vw, 18px);
  }
  .photoft {
    background-size: 1700px auto;
  }
}
/*Basic lappy*/
@media screen and (max-width: 1366px) {
  .reviewsholder {
    padding: 40px;
  }
}
/*iPad Landscape*/
@media screen and (max-width: 1280px) {
  .homeyears p {
    font-size: 16px;
  }
  .servft {
    order: -1;
    width: 70%;
    margin-top: -120px;
  }
  .wcu {
    width: 100%;
    padding-right: 0px;
    padding: 50px 0;
  }
  .wcuwrapper {
    padding: 0px;
  }
  .wcuwrapper .wrapper {
    justify-content: center;
  }
  .testdeets {
    width: 100%;
  }
  .services {
    flex-wrap: wrap;
  }
  .servicetxt,
  .servside {
    width: 100%;
  }
  .services:nth-of-type(2n) .servside {
    order: 1;
  }
  .servicetxt {
    padding-top: 0px;
  }
  .services:nth-of-type(2n) .servicetxt {
    padding-right: 40px;
  }
  .gtleft,
  .gtright,
  .rvleft,
  .rvright {
    width: 100%;
  }
  .gtleft,
  .rvleft {
    border-top-right-radius: 20px;
  }
  .gtright,
  .rvright {
    border-top-right-radius: 0px;
    margin-top: 20px;
    border-top: none;
    border-bottom: solid 2px var(--alt-color);
    border-bottom-right-radius: 20px;
  }
  .gallery {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
  .galleryimg {
    width: 25%;
  }
}
/*iPad Landscape*/
@media screen and (max-width: 1024px) {
  header {
    height: 400px;
  }
  .home {
    margin-top: 400px;
  }
  .homeyears,
  .homesocial {
    width: 100%;
  }
  .proj-side {
    width: 250px;
  }
  .proj-main {
    width: calc(100% - 250px);
  }
  .testconft {
    flex-wrap: wrap;
  }
  .conft,
  .testft {
    width: 100%;
  }
  .conft {
    text-align: center;
    padding: clamp(30px, 6vw, 60px);
  }
  .testft {
    padding: 40px 100px;
  }
  .fcon p.email {
    display: block;
    padding-top: 20px;
  }
  .grid-item {
    width: 100%;
  }
  .coninfo,
  .conno {
    width: 100%;
    text-align: center;
  }
  .coninfo {
    padding-right: 0px;
  }
  .conno {
    padding-left: 0px;
  }
}
/*IPHONE X Landscape*/
@media screen and (max-width: 910px) {
}
/*iPad Portrait*/
@media screen and (max-width: 869px) {
  .twocols {
    columns: 1;
  }
  .photoft {
    background-size: 1000px auto;
  }
}
@media screen and (max-width: 869px) and (orientation: landscape) {
}
@media screen and (max-width: 860px) and (orientation: landscape) {
}
/*Phone*/
@media screen and (max-width: 768px) {
  .photoft {
    height: 300px;
  }
  .servft {
    width: 100%;
    margin-top: -40px;
  }
  .headcon {
  }
  .headcon p {
    font-size: 0px;
    line-height: 1.5;
    display: block;
    margin-top: 10px;
  }
  .headcon a i {
    display: block;
    font-size: 20px;
  }
  .testft {
    padding: 40px;
  }
  .testft .test {
    margin-right: 10px;
    margin-left: 10px;
  }
  p.author {
    border-radius: 20px !important;
    margin-bottom: 0px;
    width: 100%;
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  p.location {
    border-radius: 20px !important;
    margin-top: 0px;
    width: 100%;
    border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
  }
  .fcon p.email {
    font-size: 12px;
  }
  .ologo {
    height: 70px;
  }
  .overlay p {
    letter-spacing: 2px;
  }
  /* Animation Keyframes*/
  @keyframes logoanim2 {
    0% {
      opacity: 0;
      letter-spacing: 10px;
    }
    100% {
      opacity: 1;
      letter-spacing: 2px;
    }
  }
}
/*Phone*/
@media screen and (max-width: 680px) {
  nav {
    display: none;
  }
  .topbar {
    text-align: center;
  }
  i.fa-bars {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
    background-color: var(--off-white);
  }
  i.fa-bars:hover {
    color: var(--alt-color);
  }
  nav ul li {
    display: block;
    width: 100%;
    float: none;
  }
  nav {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
  }
  nav ul li ul {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: #ededed;
  }
  nav ul li ul li {
    background-color: #ededed;
  }
  nav ul li ul li {
    text-align: center;
  }
  .sub {
    padding-right: 20px;
  }
  .testft {
    padding: 40px;
  }
  .proj .wrapper {
    flex-wrap: wrap;
  }
  .proj-side,
  .proj-main {
    width: 100%;
  }
  .proj-main {
    padding-left: 40px;
  }
  .slick-prev {
    left: 0px !important;
  }
  .proj-side {
    align-items: center;
    padding-bottom: 40px;
  }
  .proj {
    padding: 40px 0;
  }
  .galleryimg {
    width: 50%;
  }
  .formleft,
  .formright {
    width: 100%;
    padding: 0px;
  }
  .captxt {
    margin-top: 20px;
    width: 100%;
  }
  .captcha {
    width: 100%;
  }
  .captcha img {
    display: block;
    margin: 0 auto;
  }
}
/*Phone*/
@media screen and (max-width: 550px) {
  .services {
    padding: 0px;
  }
}
/*Tablet*/
@media screen and (max-width: 1024px) {
  .wrapper {
    width: calc(100% - 60px);
  }

  .home .wrapper {
    flex-wrap: wrap;
  }

  .homeleft,
  .homeright {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .homecon {
    text-align: center;
    padding: 30px 0;
  }

  .homeright img {
    border-radius: 20px;
    margin-top: 20px;
  }

  .homebottom {
    flex-wrap: wrap;
  }

  .homeyears,
  .homesocial {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .photoft {
    height: 500px;
  }

  .wwp div {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }

  .proj-side {
    width: 100%;
    text-align: center;
    align-items: center;
    margin-bottom: 30px;
  }

  .proj-main {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .testconft {
    flex-wrap: wrap;
  }

  .testft,
  .conft {
    width: 100%;
  }

  .testft {
    padding: 50px;
  }

  .conft {
    padding: clamp(40px, 8vw, 100px);
    text-align: center;
  }

  .testdeets {
    width: 100%;
    max-width: 600px;
  }

  .galleryholder {
    padding: 20px 10px;
  }

  .gallerytop {
    flex-direction: column;
  }

  .gtleft,
  .gtright {
    width: 100%;
    padding: 20px;
  }

  .gtleft {
    border-top-right-radius: 20px;
  }

  .gtright {
    border-top-right-radius: 0px;
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    border-top: none;
    border-bottom: solid 2px var(--alt-color);
    border-bottom-right-radius: 20px;
  }

  .gallery {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    margin-bottom: 30px;
  }

  .galleryimg {
    width: 25%;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 38px;
    line-height: 46px;
  }

  h3 {
    font-size: 24px;
  }

  span.btn {
    font-size: 15px;
  }

  span.btn a {
    padding: 18px;
    padding-right: 55px;
  }

  span.btn::after {
    top: 24px;
  }

  .contact {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .coninfo,
  .conno {
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .coninfo {
    padding-right: 0;
  }

  .conno {
    padding-left: 0;
  }

  .enquiry {
    padding: 40px 0;
  }

  .row {
    padding: 50px 0;
    font-size: 17px;
    line-height: 2.3;
  }

  .medium-12 {
    padding: 0 30px;
  }

  .map {
    height: 500px;
  }

  .smallheader {
    height: 400px;
  }

  .content {
    margin-top: 400px;
  }

  .headcon {
    bottom: 40px;
    right: 30px;
  }

  .headcon p {
    padding: 6px 15px;
    font-size: 14px;
  }
}

/*Tablet Portrait*/
@media screen and (max-width: 768px) {
  .wrapper {
    width: calc(100% - 40px);
  }

  .overlaybox {
    min-width: 300px;
    width: 85%;
    padding: 60px 30px;
  }

  .ologo {
    height: 100px;
  }

  header {
    height: 400px;
  }

  .home {
    margin-top: 400px;
  }

  .logo {
    width: 100%;
  }

  .logo img {
    height: 80px;
  }

  .home h1 {
    font-size: 22px;
    line-height: 32px;
  }

  .home h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .photoft {
    height: 400px;
  }

  .wcuwrapper {
    padding: 30px;
  }

  .wcu {
    padding-right: 50px;
  }

  .servft {
    width: 100%;
    margin-top: -60px;
  }

  .servft ul li {
    font-size: 18px;
    padding: 15px;
  }

  .testft {
    padding: 40px;
  }

  .conft {
    padding: clamp(30px, 6vw, 60px);
  }

  .testft .test {
    margin-right: 20px;
    margin-left: 20px;
  }

  p.author,
  p.location {
    padding: 10px 30px;
  }

  .fcon p {
    margin: 0 20px;
    font-size: 16px;
  }

  .fcon p.email {
    display: block;
    margin-top: 15px;
  }

  .galleryholder {
    padding: 15px 8px;
  }

  .galleryimg {
    width: 33.33%;
  }

  .galleryimg:hover {
    padding: 10px;
  }

  .contact {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .contact p.title {
    font-size: 18px;
  }

  .contact p.tel {
    font-size: 22px;
  }

  .contact p.email {
    font-size: 16px;
  }

  .enquiry {
    padding: 35px 0;
  }

  .row {
    padding: 45px 0;
    font-size: 16px;
    line-height: 2.2;
  }

  .medium-12 {
    padding: 0 25px;
  }

  .map {
    height: 450px;
  }

  h1 {
    font-size: 34px;
    line-height: 42px;
  }

  h2 {
    font-size: 34px;
    line-height: 42px;
  }

  h3 {
    font-size: 22px;
  }

  span.btn {
    font-size: 14px;
  }

  span.btn a {
    padding: 16px;
    padding-right: 50px;
  }

  span.btn::after {
    top: 22px;
    right: 18px;
  }

  .smallheader {
    height: 350px;
  }

  .content {
    margin-top: 350px;
  }

  .headcon {
    bottom: 30px;
    right: 20px;
  }

  .headcon p {
    padding: 5px 12px;
    font-size: 13px;
  }

  .services {
    padding: 20px;
  }

  .servicetxt,
  .servside {
    padding: 30px 0;
  }

  .servside img {
    height: 350px;
    object-fit: cover;
  }

  .accreds {
    padding: 15px;
    padding-bottom: 5px;
  }

  .accred {
    margin: 15px;
    margin-bottom: 5px;
  }

  .accredslider .slick-dots {
    bottom: -15px;
  }
}

/*Mobile*/
@media screen and (max-width: 680px) {
  nav {
    display: none;
  }

  .topbar {
    text-align: center;
  }

  i.fa-bars {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
    background-color: var(--off-white);
  }

  i.fa-bars:hover {
    color: var(--alt-color);
  }

  nav ul li {
    display: block;
    width: 100%;
    float: none;
  }

  nav {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
  }

  nav ul li ul {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: #ededed;
  }

  nav ul li ul li {
    background-color: #ededed;
    text-align: center;
  }

  .sub {
    padding-right: 20px;
  }

  header {
    height: 350px;
  }

  .home {
    margin-top: 350px;
  }

  .wrapper {
    width: calc(100% - 30px);
  }

  .photoft {
    height: 350px;
  }

  .wcuwrapper {
    padding: 25px 15px;
  }

  .wcu {
    width: 100%;
    padding-right: 0;
    padding: 30px 0;
  }

  .servft {
    width: 100%;
    margin-top: -40px;
  }

  .servft ul li {
    font-size: 16px;
    padding: 12px;
  }

  .wwp div {
    width: calc(50% - 10px);
  }

  .proj {
    padding: 30px 0;
  }

  .proj-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testft {
    padding: 30px 20px;
  }

  .conft {
    padding: clamp(25px, 5vw, 50px);
  }

  .testft .test {
    margin-right: 10px;
    margin-left: 10px;
  }

  p.author {
    border-radius: 20px !important;
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    width: 100%;
    padding: 10px 20px;
    padding-left: 50px;
  }

  p.location {
    border-radius: 20px !important;
    border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
    width: 100%;
    padding: 10px 20px;
    padding-right: 50px;
  }

  .fcon p {
    margin: 0 15px;
    font-size: 14px;
  }

  footer {
    padding: 30px 20px;
  }

  .galleryholder {
    padding: 12px 6px;
  }

  .galleryimg {
    width: 50%;
  }

  .galleryimg:hover {
    padding: 5px;
  }

  .gtleft h1 {
    font-size: 32px;
  }

  h1 {
    font-size: 30px;
    line-height: 38px;
  }

  h2 {
    font-size: 30px;
    line-height: 38px;
  }

  h3 {
    font-size: 20px;
  }

  span.btn {
    font-size: 14px;
  }

  span.btn a {
    padding: 15px;
    padding-right: 48px;
  }

  span.btn::after {
    top: 21px;
    right: 16px;
  }

  .accreds {
    padding: 12px;
    padding-bottom: 2px;
  }

  .accred {
    margin: 12px;
    margin-bottom: 2px;
  }

  .accredslider .slick-dots {
    bottom: -10px;
  }

  .smallheader {
    height: 300px;
  }

  .content {
    margin-top: 300px;
  }

  .headcon {
    bottom: 25px;
    right: 15px;
  }

  .headcon p {
    padding: 0;
    font-size: 0;
    margin-right: 5px;
    margin-top: 8px;
  }

  .headcon p i {
    display: block;
    font-size: 18px;
  }

  .services {
    padding: 15px;
  }

  .servicetxt {
    padding: 20px 15px;
  }

  .servside {
    padding: 20px 15px;
  }

  .servside img {
    height: 300px;
    object-fit: cover;
  }

  .contact {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .contact p.title {
    font-size: 16px;
  }

  .contact p.tel {
    font-size: 20px;
  }

  .contact p.email {
    font-size: 15px;
  }

  .enquiry {
    padding: 30px 0;
  }

  .formholder {
    padding: 0 15px;
  }

  .row {
    padding: 40px 0;
    font-size: 15px;
    line-height: 2.1;
  }

  .medium-12 {
    padding: 0 20px;
  }

  .map {
    height: 400px;
  }
}

/*Phone*/
@media screen and (max-width: 480px) {
  .wrapper {
    width: 100%;
    margin: 0px;
    padding: 20px;
  }

  .overlaybox {
    padding: 40px 20px;
    min-width: auto;
    width: 90%;
  }

  .ologo {
    height: 70px;
  }

  .overlay p {
    font-size: 9px;
    letter-spacing: 4px;
  }

  header {
    height: 300px;
  }

  .home {
    margin-top: 300px;
  }

  .logo img {
    height: 60px;
  }

  .home h1 {
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 30px;
  }

  .home h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .homecon p.tel {
    font-size: 20px;
  }

  .homecon p.email {
    font-size: 14px;
  }

  .years,
  .yearside {
    font-size: 28px;
  }

  .homeyears p {
    font-size: 16px;
    padding: 0 20px;
  }

  .photoft {
    height: 300px;
  }

  .wcuwrapper {
    padding: 20px 10px;
  }

  .wcuwrapper h2 {
    font-size: 28px;
  }

  .wcuwrapper h3 {
    font-size: 22px;
  }

  h1 {
    font-size: 26px;
    line-height: 34px;
  }

  h2 {
    font-size: 26px;
    line-height: 34px;
  }

  h3 {
    font-size: 18px;
  }

  span.btn {
    font-size: 13px;
  }

  span.btn a {
    padding: 14px;
    padding-right: 45px;
  }

  span.btn::after {
    top: 20px;
    right: 15px;
    font-size: 11px;
  }

  .wwp div {
    width: 100%;
    margin-bottom: 15px;
  }

  .servft ul li {
    font-size: 15px;
    padding: 12px;
  }

  .proj {
    padding: 25px 0;
  }

  .proj-main {
    padding-left: 15px;
    padding-right: 15px;
  }

  .testft {
    padding: 25px 15px;
  }

  .conft {
    padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 20px);
  }

  .testdeets {
    width: 100%;
  }

  p.author {
    padding: 10px 15px;
    padding-left: 35px;
  }

  p.location {
    padding: 10px 15px;
    padding-right: 35px;
  }

  .fcon p {
    margin: 0 10px;
    font-size: 12px;
  }

  .fcon p.email {
    font-size: 11px;
  }

  .fsocial i {
    font-size: 16px;
    padding: 12px;
    margin: 0 8px;
  }

  footer {
    padding: 25px 15px;
  }

  .contact {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .contact p.title {
    font-size: 15px;
  }

  .contact p.tel {
    font-size: 18px;
    line-height: 24px;
  }

  .contact p.email {
    font-size: 14px;
  }

  .enquiry {
    padding: 25px 0;
  }

  .formholder {
    padding: 0 10px;
  }

  .formleft,
  .formright {
    padding: 0;
  }

  input,
  textarea {
    padding: 18px !important;
    font-size: 14px !important;
  }

  input[type="submit"] {
    padding: 18px 30px !important;
    font-size: 15px !important;
  }

  .row {
    padding: 35px 0;
    font-size: 14px;
    line-height: 2;
  }

  .medium-12 {
    padding: 0 15px;
  }

  .map {
    height: 350px;
  }

  .accreds {
    padding: 10px;
    /* padding-bottom: 10px; */
  }

  .accred {
    margin: 10px;
    margin-bottom: 0px;
  }

  .accredslider .slick-dots {
    bottom: -5px;
  }

  .galleryholder {
    padding: 10px 5px;
  }

  .galleryimg {
    width: 50%;
  }

  .galleryimg:hover {
    padding: 3px;
  }

  .gtleft h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .gtleft p,
  .gtright p {
    font-size: 14px;
    line-height: 22px;
  }

  .smallheader {
    height: 250px;
  }

  .content {
    margin-top: 250px;
  }

  .headcon {
    display: none;
  }

  .headcon p {
    margin-right: 3px;
    margin-top: 6px;
  }

  .headcon p i {
    font-size: 16px;
  }

  .services {
    padding: 10px;
    margin-bottom: 20px;
  }

  .servicetxt {
    padding: 15px 10px;
  }

  .servside {
    padding: 15px 10px;
  }

  .servside img {
    height: 280px;
    object-fit: cover;
  }

  .servicetxt h1 {
    font-size: 22px;
    line-height: 30px;
  }
}

/*Phone Small*/
@media screen and (max-width: 425px) {
  .overlaybox {
    padding: 30px 15px;
  }

  .ologo {
    height: 60px;
  }

  header {
    height: 250px;
  }

  .home {
    margin-top: 250px;
  }

  .home h1 {
    font-size: 16px;
    line-height: 24px;
  }

  .home h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .logo img {
    height: 50px;
  }

  p {
    font-size: 14px;
    line-height: 24px;
  }

  h1 {
    font-size: 22px;
    line-height: 30px;
  }

  h2 {
    font-size: 22px;
    line-height: 30px;
  }

  h3 {
    font-size: 17px;
  }

  span.btn {
    font-size: 12px;
  }

  span.btn a {
    padding: 12px;
    padding-right: 42px;
  }

  span.btn::after {
    top: 18px;
    right: 14px;
    font-size: 10px;
  }

  .years,
  .yearside {
    font-size: 24px;
  }

  .homeyears p {
    font-size: 14px;
  }

  .social i {
    font-size: 20px;
    padding: 12px;
    margin-right: 15px;
  }

  .photoft {
    height: 250px;
  }

  .wcuwrapper {
    padding: 20px 10px;
  }

  .wcuwrapper h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .wcuwrapper h3 {
    font-size: 20px;
  }

  .servft h2 {
    font-size: 22px;
  }

  .servft ul li {
    font-size: 14px;
    padding: 10px;
  }

  .proj {
    padding: 20px 0;
  }

  .proj-side {
    margin-bottom: 0px;
  }
  .proj-side h2 {
    font-size: 24px;
  }

  .testft {
    padding: 20px 10px;
  }

  .conft {
    padding: clamp(20px, 4vw, 30px) clamp(12px, 2.5vw, 15px);
  }

  p.author {
    padding: 8px 12px;
    padding-left: 30px;
    font-size: 13px;
  }

  p.location {
    padding: 8px 12px;
    padding-right: 30px;
    font-size: 13px;
  }

  p.author::before {
    left: 10px;
    font-size: 12px;
  }

  p.location::before {
    right: 10px;
    font-size: 12px;
  }

  .fcon p {
    margin: 0 8px;
    font-size: 11px;
  }

  .fcon p.email {
    font-size: 10px;
  }

  .contact p.title {
    font-size: 14px;
  }

  .contact p.tel {
    font-size: 16px;
    line-height: 22px;
  }

  .contact p.email {
    font-size: 13px;
  }

  .enquiry {
    padding: 20px 0;
  }

  .formholder {
    padding: 0 8px;
  }

  input,
  textarea {
    padding: 16px !important;
    font-size: 13px !important;
  }

  label {
    font-size: 13px !important;
  }

  input[type="submit"] {
    padding: 16px 28px !important;
    font-size: 14px !important;
  }

  .row {
    padding: 30px 0;
    font-size: 13px;
    line-height: 1.9;
  }

  .medium-12 {
    padding: 0 12px;
  }

  .map {
    height: 300px;
  }

  .fsocial i {
    font-size: 14px;
    padding: 10px;
    margin: 0 5px;
  }

  footer {
    padding: 20px 10px;
  }

  p.nwdm {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .accreds {
    padding: 8px;
    padding-bottom: 15px;
  }

  .accred {
    margin: 8px;
    margin-bottom: 0px;
  }

  .accredslider .slick-dots {
    bottom: 0px;
  }

  .galleryholder {
    padding: 8px 4px;
  }

  .galleryimg {
    width: 50%;
  }

  .galleryimg:hover {
    padding: 2px;
  }

  .gtleft h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .gtleft p,
  .gtright p {
    font-size: 13px;
    line-height: 20px;
  }

  .links p {
    font-size: 11px;
  }

  .smallheader {
    height: 220px;
  }

  .content {
    margin-top: 220px;
  }

  .headcon {
    display: none;
  }

  .headcon p i {
    font-size: 15px;
  }

  .servicetxt h1 {
    font-size: 20px;
    line-height: 28px;
  }

  .services {
    padding: 8px;
  }

  .servicetxt {
    padding: 12px 8px;
  }

  .servside {
    padding: 12px 8px;
  }

  .servside img {
    height: 250px;
    object-fit: cover;
  }
}

@media screen and (max-width: 391px) {
  .accreds {
    padding-bottom: 15px;
  }
}

/*Phone Extra Small*/
@media screen and (max-width: 375px) {
  .overlaybox {
    padding: 25px 12px;
  }

  .ologo {
    height: 50px;
  }

  .overlay p {
    font-size: 8px;
    letter-spacing: 2px;
  }

  header {
    height: 220px;
  }

  .home {
    margin-top: 220px;
  }

  .home h1 {
    font-size: 14px;
    line-height: 22px;
  }

  .home h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .homecon p.tel {
    font-size: 18px;
  }

  .homecon p.email {
    font-size: 12px;
  }

  h1 {
    font-size: 20px;
    line-height: 28px;
  }

  h2 {
    font-size: 20px;
    line-height: 28px;
  }

  h3 {
    font-size: 16px;
  }

  span.btn {
    font-size: 11px;
  }

  span.btn a {
    padding: 11px;
    padding-right: 38px;
  }

  span.btn::after {
    top: 17px;
    right: 12px;
    font-size: 9px;
  }

  .years,
  .yearside {
    font-size: 22px;
  }

  .homeyears p {
    font-size: 13px;
    padding: 0 15px;
  }

  .social i {
    font-size: 18px;
    padding: 10px;
    margin-right: 10px;
  }

  .photoft {
    height: 220px;
  }

  .wcuwrapper {
    padding: 15px 8px;
  }

  .wcuwrapper h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .wcuwrapper h3 {
    font-size: 18px;
  }

  .servft h2 {
    font-size: 20px;
  }

  .servft p {
    font-size: 13px;
  }

  .servft ul li {
    font-size: 13px;
    padding: 8px;
  }

  .proj {
    padding: 15px 0;
  }

  .proj-side h2 {
    font-size: 22px;
  }

  .proj-side p {
    font-size: 13px;
  }

  .testft {
    padding: 20px 8px;
  }

  .test p {
    font-size: 13px;
    line-height: 22px;
  }

  .conft {
    padding: clamp(15px, 3vw, 25px) clamp(10px, 2vw, 12px);
  }

  p.author {
    padding: 8px 10px;
    padding-left: 25px;
    font-size: 12px;
  }

  p.location {
    padding: 8px 10px;
    padding-right: 25px;
    font-size: 12px;
  }

  p.author::before,
  p.location::before {
    font-size: 11px;
    top: 12px;
  }

  p.author::before {
    left: 8px;
  }

  p.location::before {
    right: 8px;
  }

  .fcon p {
    margin: 0 5px;
    font-size: 10px;
  }

  .fcon p.email {
    font-size: 9px;
  }

  .contact p.title {
    font-size: 13px;
  }

  .contact p.tel {
    font-size: 15px;
    line-height: 20px;
  }

  .contact p.email {
    font-size: 12px;
  }

  .enquiry {
    padding: 18px 0;
  }

  .formholder {
    padding: 0 5px;
  }

  input,
  textarea {
    padding: 14px !important;
    font-size: 12px !important;
  }

  label {
    font-size: 12px !important;
  }

  input[type="submit"] {
    padding: 14px 25px !important;
    font-size: 13px !important;
  }

  .row {
    padding: 25px 0;
    font-size: 12px;
    line-height: 1.8;
  }

  .medium-12 {
    padding: 0 10px;
  }

  .map {
    height: 280px;
  }

  .fsocial i {
    font-size: 13px;
    padding: 9px;
    margin: 0 4px;
  }

  footer {
    padding: 20px 8px;
  }

  p.nwdm {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .galleryholder {
    padding: 6px 3px;
  }

  .galleryimg {
    width: 100%;
  }

  .galleryimg:hover {
    padding: 2px;
  }

  .gtleft h1 {
    font-size: 20px;
    line-height: 28px;
  }

  .gtleft p,
  .gtright p {
    font-size: 12px;
    line-height: 18px;
  }

  .links p {
    font-size: 10px;
    padding: 3px;
  }

  .smallheader {
    height: 200px;
  }

  .content {
    margin-top: 200px;
  }

  .headcon {
    display: none;
  }

  .headcon p {
    margin-right: 2px;
    margin-top: 5px;
  }

  .headcon p i {
    font-size: 14px;
  }

  .servicetxt h1 {
    font-size: 18px;
    line-height: 26px;
  }

  .services {
    padding: 5px;
  }

  .servicetxt {
    padding: 10px 5px;
  }

  .servside {
    padding: 10px 5px;
  }

  .servside img {
    height: 220px;
    object-fit: cover;
  }

  .accreds {
    padding: 6px;
    padding-bottom: 10px;
  }

  .accred {
    margin: 6px;
    margin-bottom: 0px;
  }

  .accred a {
    padding: 15px 30px;
  }

  .accredslider .slick-dots {
    bottom: 0px;
  }
}
