/* GLOBAL ************************************************/
/* FONTS */
@font-face {
  font-family: "G";
  src: url(../fonts/Customs/G.woff);
}
@font-face {
  font-family: "GB";
  src: url(../fonts/Customs/GB.woff);
}
@font-face {
  font-family: "GU";
  src: url(../fonts/Customs/GU.woff);
}
@font-face {
  font-family: "OS";
  src: url(../fonts/Customs/OS.woff);
}
/* FUNCTIONS */
/* PLACEHOLDER */
/* TRANSITION */
/* TRANSFORM */
/* ANIMATION */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation: fadeIn;
}
@keyframes marginLeft {
  0% {
    margin-left: 15px;
  }
  50% {
    margin-left: 25px;
  }
  100% {
    margin-left: 15px;
  }
}
@keyframes marginTop {
  0% {
    margin-top: 2px;
  }
  50% {
    margin-top: 4px;
  }
  100% {
    margin-top: 2px;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation: fadeInLeft;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation: fadeInRight;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation: fadeInUp;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation: fadeInDown;
}
@keyframes fadeInDownSm {
  0% {
    opacity: 0;
    transform: translate3d(0, -15px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownSm {
  animation: fadeInDownSm;
}
@keyframes flipInX {
  from {
    opacity: 0;
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
  }
  40% {
    opacity: 1;
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  animation: flipInX;
}
@keyframes flipInY {
  from {
    opacity: 0;
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
  }
  40% {
    opacity: 1;
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  animation: flipInY;
}
@keyframes pulse {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
.pulse {
  animation: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation: rubberBand;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* END ANIMATION */
/* CUSTOM SETTINGS */
/* IE Alert */
@font-face {
  font-family: "KLight";
  src: url(../fonts/Korolev-Light.woff);
}
#IEAlert, #IEAlert:before {
  position: fixed;
  width: 100%;
}

#IEAlert * {
  font-family: KLight, sans-serif;
}

#IEAlert {
  display: none;
  background-color: #fff;
  border: none;
  top: 50%;
  left: 50%;
  max-width: 400px;
  z-index: 1000000000000000000000;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0;
}

#IEAlert:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

#IEAlert .IEPad {
  padding: 30px 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #fff;
}

#IEAlert p {
  font-size: 18px;
  max-width: 350px;
  display: block;
  margin: 0 auto;
  color: #646464;
}

#IEAlert button {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #F65656;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  text-shadow: none;
  opacity: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

#IEAlert button:hover {
  background-color: #E21B49;
}

#IEAlert a {
  color: #fff;
  width: 100%;
  font-size: 18px;
  padding: 15px 20px;
  background-color: #4CFF56;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transition: 0.3s background-color ease;
}

#IEAlert a:hover {
  background-color: #4CCC56;
}

* {
  font-family: "OS", sans-serif;
  letter-spacing: 1px;
  color: #474747;
  border: 0;
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden;
}

body {
  padding-top: 110px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  animation-duration: 1s;
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}
body:before {
  content: "";
  pointer-events: none;
  position: fixed;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 100%;
  background: rgb(255, 255, 255) url(../images/loader.gif) center center no-repeat no-repeat;
  background-size: 50px;
  z-index: 1000000000000;
  transform: translate(-50%, -50%);
  transition: 0.3s opacity ease;
  opacity: 0;
}
body.loadcontent:before {
  opacity: 1;
  pointer-events: all;
}
body.loadcontent main {
  display: none;
}
@media only screen and (max-width: 1199px) {
  body {
    padding-top: 70px;
    cursor: pointer;
  }
}

.loader {
  position: fixed;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) url(../images/loader.gif) center center no-repeat no-repeat;
  background-size: 50px;
  z-index: 100;
  width: 100%;
  top: 50%;
  left: 50%;
  z-index: 1000000000000;
  transform: translate(-50%, -50%);
  display: none;
}

.grecaptcha-badge {
  display: none;
}

main {
  min-height: 100vh;
  position: relative;
  max-width: 2000px;
  display: block;
  margin: 0 auto;
}

section {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.container {
  max-width: 1800px;
  width: calc(100% - 200px);
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .container {
    width: 100%;
  }
}

.container-sm {
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
  margin: 0 auto;
}

a {
  color: #999;
  display: inline-block;
  cursor: pointer;
}

a, a:hover, a:focus, a:visited {
  text-decoration: none !important;
  outline: none !important;
  color: #ccc;
  box-shadow: none !important;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

h1, h2, h3, h4, h5, h6, ul, p {
  margin: 0;
}

ul, p, b, a {
  font-size: 14px;
  line-height: 25px;
  font-weight: 700;
}

h1, h2, h3, h4 {
  font-family: "GU", sans-serif;
  letter-spacing: 1px;
  font-weight: normal !important;
  color: #1E484E;
}
h1 b, h2 b, h3 b, h4 b {
  font-family: "G", sans-serif;
  letter-spacing: 1px;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

.color-2 {
  color: #3EB2B4;
}

h1 {
  font-size: 37px;
  line-height: 50px;
}

h2 {
  font-size: 18px;
  line-height: 28px;
}

.big {
  font-size: 115%;
}

.full-width {
  width: 100%;
}

button {
  letter-spacing: 1px;
  transition: 0.3s all ease;
}

button:focus {
  outline: none !important;
}

.nav-tabs, .nav-tabs .nav-link {
  border: none;
}

.tab {
  cursor: pointer;
}

.tabresult {
  display: none;
}
.tabresult.active {
  display: unset;
}

.row.tabresult.active {
  display: flex !important;
}

/* Parallax *******************************************/
.parallax-bg-repeat {
  background-repeat: repeat;
  background-size: contain !important;
  /* custom background-position */
  background-position: 50% 50%;
  /* ie8- graceful degradation */
  background-position: 50% 50% \9  !important;
}

.parallax-bg-normal {
  background-repeat: no-repeat;
  background-size: cover;
  /* custom background-position */
  background-position: 50% 50%;
  /* ie8- graceful degradation */
  background-position: right !important;
}

.parallax .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

html.touch .parallax-bg-normal {
  background-size: cover !important;
  background-position: right !important;
  background-repeat: no-repeat !important;
}

/* END Parallax ****************************************/
/* Read More *******************************************/
a#read-more {
  color: #3EB2B4;
  cursor: pointer;
  display: inline;
  transition: 0.3s all ease;
}

a#read:before {
  content: "Read More";
}

a#read.active:before {
  content: "Read Less";
}

a#read-more:hover {
  color: #3EB2B4;
}

.more {
  color: #fff !important;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 12px 30px;
  padding-right: 60px;
  font-size: 16px;
  border-radius: 0;
  position: relative;
  transition: 0.3s padding-right linear, 0.3s transform ease;
}
.more.dark {
  background-color: #1E6F6F;
  border: none;
}
.more:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 8px;
  background: url(../images/arrow.png) center no-repeat;
  background-size: cover;
  top: 50%;
  margin-left: 15px;
  transform: translateY(-50%);
}
.more:hover {
  transform: scale(1.05);
}
.more:hover:after {
  animation: marginLeft 0.7s infinite;
}

.form-control {
  overflow-y: hidden;
  overflow-x: auto;
}
.form-control:focus {
  box-shadow: none !important;
}
.form-control:focus::-moz-placeholder {
  opacity: 0;
}
.form-control:focus::placeholder {
  opacity: 0;
}
.form-control:disabled, .form-control[readonly] {
  border: none !important;
}

/* END Read More ****************************************/
/* Margins **********************************************/
.mt-15 {
  margin-top: 15px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-90 {
  margin-top: 90px;
}

/* END Margins ******************************************/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: rgba(193, 161, 109, 0.5);
  margin: 0 auto;
  margin-right: 5px;
  display: inline-block;
}

.owl-dot:hover {
  background: rgba(193, 161, 109, 0.8);
}

.owl-dot.active {
  background: #3EB2B4;
}

.modal-open {
  overflow: visible;
  padding-right: 0 !important;
}
.modal-open .navbar {
  padding-right: 0 !important;
  margin-right: auto !important;
}
.modal-open .navbar .navbar-toggler {
  margin-right: 0 !important;
}
@media only screen and (max-width: 991px) {
  .modal-open .navbar {
    padding-right: 15px !important;
  }
}

.modal-open .modal {
  z-index: 10000000;
  padding-right: 0 !important;
}

.modal button.close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1000;
}

.modal .modal-body {
  padding: 60px 30px;
}

.card {
  border-radius: 0;
  border: none;
}

.card .card-header {
  padding: 0;
  background-color: transparent;
  border: none;
}

.card .card-header a.collapsed {
  border: 1px solid #ccc;
}

.card .card-header a {
  display: block;
  padding: 10px 15px;
  color: #666;
  position: relative;
  border: 1px solid #d51920;
  transition: 0.3s all ease;
}

.card .card-header a:before {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 20px;
  position: absolute;
  right: 15px;
  color: #ccc;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s all ease;
}

.card .card-header a.collapsed:before {
  transform: translateY(-50%) rotate(0deg);
}

.card .card-body {
  padding: 10px 15px;
  border: none;
}

.navbar-anchor {
  display: block;
  height: 100px; /*same height as header*/
  margin-top: -99px; /*same height as header*/
  visibility: hidden;
}

/* ANIMATE X */
.navbar-toggler #i1, .navbar-toggler #i2, .navbar-toggler #i3 {
  transition: 0.3s all ease;
}
.navbar-toggler #i1 {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggler #i2 {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggler #i3 {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-toggler.collapsed #i1 {
  transform: rotate(0);
}
.navbar-toggler.collapsed #i2 {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggler.collapsed #i3 {
  transform: rotate(0);
}

/* END ANIMATED X */
.title {
  font-size: 50px;
  line-height: 70px;
}

.form-control::-moz-placeholder {
  color: #474747;
  opacity: 0.7;
}

.form-control::placeholder {
  color: #474747;
  opacity: 0.7;
}

.parsley-errors-list {
  list-style: none;
}
.parsley-errors-list li {
  color: red;
}

/* IMAGE SCROLLING */
.rel {
  position: relative;
}

.overhidden {
  overflow: hidden;
}
.overhidden .imgscroll {
  max-width: unset;
}

.imgscroll {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  position: absolute;
  top: 0;
  width: 200%;
  max-width: 100%;
}

/* END GLOBAL *********************************************/
/**********************************************************/
/* HEADER *************************************************/
header {
  display: flex;
  justify-content: center;
}

.navbar {
  padding-left: 0;
  padding-right: 0;
  position: fixed;
  top: 0;
  z-index: 1000000;
  padding: 0;
  height: 110px;
  background-color: #fff;
  transition: 0.3s box-shadow linear;
  width: 100%;
  max-width: 2000px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-brand {
  max-width: calc(100% - 50px);
}
.navbar .navbar-brand .logo {
  width: 100%;
  max-width: 290px;
  transition: 0.5s top ease;
}
.navbar .navbar-brand .logo:hover {
  animation: pulse 1s forwards;
}
.navbar .cidb-logo {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  max-width: 120px;
  margin-left: 1.3rem;
}
@media only screen and (max-width: 1199px) {
  .navbar .cidb-logo {
    margin-right: 14px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  .navbar .cidb-logo {
    max-width: 85px;
    margin-right: 0;
  }
}
.navbar .nav-link {
  color: #969696;
  font-size: 14px;
  padding-right: 20px !important;
  transition: 0.3s all ease;
  font-family: "GU", sans-serif;
  letter-spacing: 1px;
  font-weight: normal !important;
  letter-spacing: 2px;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
  color: #3EB2B4;
}
.navbar .nav-item:last-child .nav-link {
  padding-right: 0 !important;
}
@media only screen and (max-width: 1199px) {
  .navbar {
    height: 70px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .navbar .navbar-collapse {
    top: 70px;
    position: fixed;
    width: 100%;
    left: 0;
    background-color: #fff;
    max-height: calc(100vh - 70px);
    overflow: hidden;
    overflow-y: auto;
  }
  .navbar .logo {
    transition: 0.5s all ease;
  }
  .navbar .navbar-anchor {
    height: 72px;
    margin-top: -72px;
  }
  .navbar .nav-item .nav-link {
    text-align: center;
  }
  .navbar .nav-item:first-child .nav-link {
    padding-top: 30px;
  }
  .navbar .nav-item:last-child .nav-link {
    padding-right: 20px !important;
    padding-bottom: 30px;
  }
  .navbar .navbar-toggler {
    border: none;
    padding-right: 0;
  }
  .navbar .navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #3EB2B4;
    margin-top: 4px;
  }
  .navbar .navbar-toggler-icon {
    background-image: none;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .logo {
    max-width: 200px !important;
  }
}

.dropdown {
  position: relative;
}
.dropdown a.nav-link {
  color: #969696 !important;
}
.dropdown a.nav-link.activate, .dropdown a.nav-link:hover {
  color: #3EB2B4 !important;
}
.dropdown .drop {
  margin-top: 5px;
  position: absolute;
  height: 0;
  overflow: hidden;
  width: calc(100% + 60px);
  background-color: #1E6F6F;
  left: 50%;
  transition: 0.3s all ease;
  transform: translateX(-50%);
}
.dropdown .drop ul {
  padding-top: 10px;
  padding-bottom: 10px;
  list-style: none;
  border-top: 5px solid #3EB2B4;
}
.dropdown .drop ul li {
  padding: 5px 15px;
  text-align: center;
}
.dropdown .drop ul li a {
  left: 0;
  position: relative;
  color: #fff !important;
  transition: 0.3s all ease;
  font-family: "GU", sans-serif;
  letter-spacing: 1px;
  font-weight: normal !important;
  letter-spacing: 2px;
}
.dropdown .drop ul li a:hover {
  color: #3EB2B4 !important;
}
@media only screen and (max-width: 991px) {
  .dropdown .drop {
    position: relative;
    width: 100%;
  }
  .dropdown .drop ul li {
    padding: 5px 15px;
  }
}

/* END HEADER *********************************************/
/* HOME ***************************************************/
#homebanner {
  padding: 0;
}
#homebanner .flexslider {
  min-height: calc(100vh - 110px);
}
#homebanner li.bgleft {
  background-position: left !important;
}
#homebanner li.flex-active-slide .container .box div {
  opacity: 1;
  transform: translateX(0);
}
#homebanner li:first-child .container .box div {
  transition-delay: 1.4s;
}
#homebanner li:first-child .container .box:before {
  transform: translateX(-200px);
  transition: 0.7s transform ease;
}
#homebanner li:first-child .container .box:after {
  transform: translateX(-200px);
  transition-delay: 0.7s !important;
  transition: 0.7s transform ease, 0.7s opacity ease;
  opacity: 0;
}
#homebanner li.inugo .container .box div {
  transition-delay: unset !important;
}
#homebanner li.inugo .container .box:before, #homebanner li.inugo .container .box:after {
  transform: translateX(0px);
}
#homebanner li.inugo .container .box:after {
  opacity: 1;
}
#homebanner li .container {
  padding-top: 0;
  padding-bottom: 0;
}
#homebanner li .container .box {
  display: flex;
  align-items: center;
  position: relative;
  min-height: calc(100vh - 110px);
  max-width: 450px;
  padding: 45px 0;
}
#homebanner li .container .box h1 {
  color: #fff;
}
#homebanner li .container .box h2 {
  color: #F9F8EB;
  margin-top: 5px;
  font-size: 25px;
  line-height: 35px;
}
#homebanner li .container .box div {
  opacity: 0;
  transform: translateX(-100px);
  transition: 1s transform ease, 1s opacity ease;
}
#homebanner li .container .box:before {
  content: "";
  position: absolute;
  left: calc(-100px - 16px);
  top: 0;
  height: 100%;
  width: calc(100% + 400px + 45px - 100px);
  background: url(../images/Home/patern1.png) right no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  pointer-events: none;
}
#homebanner li .container .box:after {
  content: "";
  position: absolute;
  left: calc(-100px - 16px);
  top: 0;
  height: 100%;
  width: calc(100% + 400px + 45px - 100px);
  background: url(../images/Home/patern2.png) right no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (max-width: 1199px) {
  #homebanner .flexslider {
    min-height: calc(100vh - 70px);
  }
  #homebanner li .container .box {
    min-height: calc(100vh - 70px);
  }
}
@media only screen and (max-width: 767px) {
  #homebanner li:first-child .container .box:after {
    opacity: 0 !important;
  }
  #homebanner li.inugo .container .box:before, #homebanner li.inugo .container .box:after {
    transform: translateX(0px);
    opacity: 0.5 !important;
  }
  #homebanner li .container .box {
    max-width: 100%;
  }
  #homebanner li .container .box:before, #homebanner li .container .box:after {
    left: calc(-50% - 16px);
    width: 200%;
    opacity: 0.5;
    background-position: center;
  }
}

#home1 {
  background-color: #F9F8EB;
  padding: 30px 0;
  padding-bottom: 60px;
}
#home1 img {
  position: absolute;
  top: -200px;
  z-index: 100;
}
@media only screen and (max-width: 991px) {
  #home1 img {
    position: relative;
    top: auto;
    max-width: 300px;
  }
  #home1 h1 {
    text-align: center !important;
  }
}

#home2 {
  padding-top: 30px;
}
#home2 img {
  max-width: 400px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: 0;
}
#home2 .rellax {
  position: absolute;
  left: 0;
  z-index: 100;
}
@media only screen and (max-width: 991px) {
  #home2 .rellax {
    position: relative;
    left: auto;
    margin-top: 0;
    transform: none !important;
  }
  #home2 img {
    display: inline-block;
    width: 49%;
    height: 287px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 575px) {
  #home2 .rellax {
    position: relative;
    left: auto;
    margin-top: 0;
    margin-bottom: 15px;
    transform: none !important;
  }
  #home2 img {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
}

.f-gu {
  font-family: "GU", sans-serif;
  letter-spacing: 1px;
  font-weight: normal !important;
}

#home3 {
  position: relative;
}
#home3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F9F8EB;
  height: 50%;
  width: 100%;
  pointer-events: none;
}
#home3 img {
  transition: 0.3s transform ease;
  width: 100%;
}
#home3 .bbox {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#home3 .bbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5) url(../images/Gallery/magnifier.png) center no-repeat;
  z-index: 1;
  background-size: 50px 50px;
  opacity: 0;
  transition: 0.3s opacity ease;
}
#home3 .overhidden:hover img {
  transform: scale(1.1);
}
#home3 .overhidden:hover .bbox:before {
  opacity: 1;
}
#home3 .box {
  padding: 15px;
}
#home3 .box .f-gu {
  font-size: 18px;
  color: #1E484E;
}
@media only screen and (max-width: 575px) {
  #home3 .bbox, #home3 .box {
    display: block;
    margin: 0 auto;
    max-width: 300px;
  }
  #home3:before {
    height: 100%;
  }
}

#home-4 {
  padding-top: 0;
}
#home-4 .video {
  height: auto;
  max-height: 500px;
  display: flex;
  justify-content: center;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  #home-4 .video {
    width: 100%;
  }
}

/* END HOME ***********************************************/
/* ABOUT **************************************************/
#about1 {
  padding-top: 30px;
}
#about1 .big-box {
  display: flex;
  width: 100%;
  margin: auto;
  justify-content: space-evenly;
  margin-top: 2rem;
}
@media only screen and (max-width: 991px) {
  #about1 .big-box {
    display: block;
  }
}

#about2 {
  position: relative;
}
#about2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F9F8EB;
  height: calc(50% + 50px);
  width: 100%;
  pointer-events: none;
}
#about2 img {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: calc(100% - 20px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
#about2 .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
#about2 .box {
  max-width: 920px;
  display: block;
  margin: 0 auto;
}
#about2 .owl-nav {
  position: absolute;
  top: calc(50% - 15px);
  width: 100%;
  transform: translateY(-50%);
}
#about2 .owl-nav i {
  font-size: 60px;
  color: #1E484E;
}
#about2 .owl-nav .owl-prev {
  position: absolute;
  left: -60px;
}
#about2 .owl-nav .owl-prev.disabled {
  opacity: 0;
}
#about2 .owl-nav .owl-next {
  position: absolute;
  right: -60px;
}
#about2 .owl-nav .owl-next.disabled {
  opacity: 0;
}
@media only screen and (max-width: 991px) {
  #about2 .owl-nav {
    top: auto;
    position: relative;
    transform: none;
    width: auto;
    display: block;
    margin: 0 auto;
    width: 80px;
  }
  #about2 .owl-nav .owl-prev {
    left: auto;
    position: relative;
    display: inline;
    margin-left: 7.5px;
    margin-right: 7.5px;
  }
  #about2 .owl-nav .owl-next {
    right: auto;
    display: inline;
    position: relative;
    margin-left: 7.5px;
    margin-right: 7.5px;
  }
}
@media only screen and (max-width: 575px) {
  #about2 {
    padding-bottom: 60px !important;
  }
  #about2:before {
    height: 100%;
  }
}

#projects-achievements {
  padding-top: 50px;
  padding-bottom: 50px;
}
#projects-achievements table {
  width: 100%;
  max-width: 1125px;
  margin: 3rem auto 0;
}
#projects-achievements table th {
  text-align: center;
  padding: 1rem;
  font-family: "GU", sans-serif;
  color: #969696;
  border-left: 1px solid #969696;
  border-right: 1px solid #969696;
}
#projects-achievements table tr:nth-child(odd) {
  background-color: #F9F8EB;
}
#projects-achievements table tr td {
  padding: 1rem;
  border-left: 1px solid #969696;
  border-right: 1px solid #969696;
}
#projects-achievements .btn {
  margin-top: 3rem;
}
#projects-achievements .btn:after {
  transform: translateY(-50%) rotate(90deg);
}
#projects-achievements .btn:hover:after {
  animation: marginTop 0.7s infinite;
}

#projects-portfolio .box-wrap {
  position: relative;
  z-index: 1;
}
#projects-portfolio .box-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/Gallery/magnifier.png) center no-repeat;
  background-size: 65px 67px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s opacity ease;
}
#projects-portfolio .box-wrap:hover:before, #projects-portfolio .box-wrap:hover .wowload:after {
  opacity: 1;
}
#projects-portfolio .fancy-btn {
  position: relative;
  display: block;
}
#projects-portfolio .fancy-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #308F90;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: 0.5s opacity ease;
  pointer-events: none;
}
#projects-portfolio .fancy-btn:before {
  content: "";
  display: block;
  padding-top: 100%;
}
#projects-portfolio .fancy-btn img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.lgbox {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 60px;
}
@media only screen and (max-width: 767px) {
  .lgbox {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.customtab .lgbox {
  padding-top: 0;
}
.customtab .tabs {
  max-width: 500px;
  position: relative;
  top: -50%;
  transform: translateY(-50%);
}
.customtab .tabs .tab.active p, .customtab .tabs .tab:hover p {
  background-color: #3EB2B4;
}
.customtab .tabs .tab:first-child p {
  margin-left: 0 !important;
}
.customtab .tabs p {
  background-color: #969696;
  text-align: center;
  color: #fff;
  font-family: "GU", sans-serif;
  letter-spacing: 1px;
  font-weight: normal !important;
  padding: 20px 15px;
  margin-right: 5px !important;
  margin-left: 5px !important;
  transition: 0.3s background-color ease;
}
@media only screen and (max-width: 767px) {
  .customtab .lgbox {
    padding: 60px 0;
    padding-top: 0;
  }
  .customtab .tabs {
    display: block;
    margin: 0 auto;
    top: auto;
    transform: none;
    margin-bottom: 30px;
    max-width: 100%;
  }
  .customtab .tabs .tab p {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }
  .customtab .row.active {
    max-width: 320px;
    display: block;
    margin: 0 auto;
  }
}

#about3 .box {
  position: relative;
  max-width: calc(100% - 20px);
  display: block;
  margin: 0 auto;
}
#about3 .box p {
  position: absolute;
  left: -10px;
  top: 15px;
  background: url(../images/About/shape.png) center right no-repeat;
  background-size: cover;
  padding: 8px !important;
  font-family: "GU", sans-serif;
  letter-spacing: 1px;
  font-weight: normal !important;
  padding-right: 40px !important;
  padding-left: 15px !important;
  color: #fff;
}
#about3 .box p:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: url(../images/About/tiny.png) center no-repeat;
  background-size: cover;
}
#about3 p {
  padding: 15px;
  max-width: calc(100% - 10px);
  display: block;
  margin-left: auto;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  #about3 .mt-45 {
    margin-top: 0;
  }
  #about3 .box {
    max-width: calc(100% - 10px);
    margin-left: auto;
    margin-right: 0;
  }
}

#bond {
  padding-top: 60px;
  padding-bottom: 60px;
}
#bond .lgbox {
  padding-top: 45px;
  padding-bottom: 45px;
}
#bond .lgbox .mt-60 {
  margin-top: 45px !important;
}

/* END ABOUT **********************************************/
/* GALLERY ************************************************/
.lightbox, .fancybox-container, .fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage, .fancybox-thumbs {
  z-index: 10000000 !important;
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  z-index: 100000000 !important;
}

.fancybox-button svg path {
  fill: #fff !important;
}

.fancybox-infobar span {
  color: #fff;
}

#gallery {
  padding-top: 50px;
  padding-bottom: 50px;
}
#gallery .col-lg-3 {
  position: relative;
  z-index: 1;
}
#gallery .col-lg-3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/Gallery/magnifier.png) center no-repeat;
  background-size: 65px 67px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s opacity ease;
}
#gallery .col-lg-3:hover:before, #gallery .col-lg-3:hover .wowload:after {
  opacity: 1;
}
#gallery .wowload {
  position: relative;
  display: block;
}
#gallery .wowload:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #308F90;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: 0.5s opacity ease;
  pointer-events: none;
}
#gallery .wowload:before {
  content: "";
  display: block;
  padding-top: 100%;
}
#gallery .wowload img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* END GALLERY ********************************************/
/* PRODUCTS ***********************************************/
#foam1 .box {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  display: block;
  margin: 0 auto;
}
#foam1 .box .textbox {
  padding: 15px;
  text-align: center;
  background-color: #3EB2B4;
}
#foam1 .box .textbox p {
  color: #fff;
}
#foam1 .box .textbox p.big {
  font-family: "GU", sans-serif;
  letter-spacing: 1px;
  font-weight: normal !important;
}
#foam1 .box .textbox p b {
  text-shadow: 0 0;
  color: inherit;
}
#foam1 #design .textbox {
  padding: 15px;
}
#foam1 #design p.bigger {
  font-family: "GU", sans-serif;
  letter-spacing: 1px;
  font-weight: normal !important;
  font-size: 14px !important;
  color: #3EB2B4;
}

.legend {
  background-color: #F9F8EB;
  padding: 8px 15px;
}
.legend.small p {
  font-size: 12px;
}
@media only screen and (max-width: 991px) {
  .legend p {
    text-align: center;
  }
}

form .form-control {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 0;
  margin-top: 30px;
  font-size: 14px;
  height: 60px !important;
}
form textarea.form-control {
  height: auto !important;
}
form .multiselect-native-select .btn-group .multiselect {
  height: 60px !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  margin-top: 30px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
form .input-group-btn {
  display: none;
}
form .multiselect-search {
  height: 40px !important;
}
form .input-group {
  width: calc(100% - 30px);
  margin-left: 15px !important;
}
form .multierrorbox .parsley-errors-list.filled {
  position: relative;
  top: -25px;
  margin-top: 115px;
  margin-bottom: -140px;
}
form .multiselect-selected-text {
  font-size: 14px;
}

/* END PRODUCTS *******************************************/
/* CONTACT ************************************************/
#contact iframe {
  position: absolute;
  left: -115px;
  top: 0;
  height: 100%;
  z-index: -5;
  width: calc(100% + 130px);
}
#contact #custom-py {
  padding-top: 90px;
  padding-bottom: 90px;
}
#contact .box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
#contact .box * {
  color: #fff !important;
  font-size: 12px;
}
#contact .box p {
  position: relative;
  padding-left: 60px;
}
#contact .box p b {
  font-family: "GU", sans-serif;
  letter-spacing: 1px;
  font-weight: normal !important;
}
#contact .box p b span {
  font-family: "OS", sans-serif;
  letter-spacing: 1px;
  font-size: 10px;
}
#contact .box p a {
  transition: 0.3s color ease;
}
#contact .box p:hover a {
  color: #3EB2B4 !important;
}
#contact .box p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../images/Contact/address.png) center no-repeat;
  background-size: contain;
}
#contact .box p.address:before {
  background: url(../images/Contact/address.png) center no-repeat;
  background-size: contain;
  top: 5px;
  transform: none;
}
#contact .box p.phone:before {
  background: url(../images/Contact/mobile.png) center no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  left: 3px;
}
#contact .box p.fax:before {
  background: url(../images/Contact/fax.png) center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  left: 5px;
}
#contact .box p.email:before {
  background: url(../images/Contact/email.png) center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  left: 5px;
}
#contact .box .bbox {
  position: relative;
  width: 100%;
  padding: 30px 0;
}
#contact .box .bbox:before {
  content: "";
  position: absolute;
  left: -116px;
  width: calc(100% + 131px);
  height: calc(100% + 1px);
  background-color: #1E373A;
  mix-blend-mode: multiply;
  top: 0;
  z-index: -1;
}
#contact .left-margin {
  margin-left: -100px;
}
@media only screen and (max-width: 991px) {
  #contact .left-margin {
    margin-left: unset;
  }
  #contact .box {
    display: block;
    height: auto;
  }
  #contact iframe {
    position: relative;
    left: -15px;
    display: block;
    top: auto;
    height: 300px;
  }
  #contact #custom-py {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #contact form {
    margin-top: 50px;
  }
}

/* END CONTACT ********************************************/
/* FOOTER *************************************************/
footer {
  width: 100%;
  z-index: 1 !important;
  background-color: #1E484E;
  padding: 20px 0;
}
footer * {
  color: #1E6F6F !important;
  line-height: normal;
}
footer a {
  display: block;
  transition: 0.3s color ease;
  font-size: 12px;
}
footer a:hover {
  color: #3EB2B4 !important;
}
footer .copy {
  font-size: 11px;
  font-weight: bolder;
  color: #fff !important;
  text-align: right;
  line-height: 20px;
}
footer .powered {
  font-size: 11px;
  text-align: right;
  font-weight: bolder;
  color: #1E6A74 !important;
}
footer .powered a {
  display: inline;
  color: #1E6A74 !important;
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}
footer .powered a:hover {
  color: #3EB2B4 !important;
}
footer .navbar-nav {
  flex-direction: row;
}
footer .navbar-nav li {
  padding-left: 15px;
  padding-right: 15px;
}
footer .navbar-nav li:first-child {
  padding-left: 0;
}
footer .navbar-nav li a {
  font-family: "GU", sans-serif;
  letter-spacing: 1px;
  font-weight: normal !important;
}
footer .navbar-nav li a.active {
  color: #3EB2B4 !important;
}
@media only screen and (max-width: 1199px) {
  footer * {
    text-align: center !important;
  }
  footer .d-flex {
    justify-content: center !important;
    margin-bottom: 10px;
  }
  footer .navbar-nav li:first-child {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 575px) {
  footer .d-flex {
    display: none !important;
  }
}

/* END FOOTER *********************************************************//*# sourceMappingURL=style.css.map */