/*General*/

@font-face {
  font-family: Manrope;
  src: url('../fonts/Manrope-VariableFont_wght.ttf');
  font-weight: 200 800;
}

body {
  background: #fff;
  color: rgb(56, 57, 57);
  font-family: 'Manrope';
  font-weight: 400;
  overflow-x: hidden;
  
}

img a {
  color: rgb(12, 139, 185);
  transition: 0.5s;
}

.img-header {
  width: 100%;
  height: 50px;
}


a:hover,
a:active,
a:focus {
  color: rgb(24, 72, 134);
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  font-size: larger;
  font-weight: 200;
}

h1,
h2,
h5,
h6 {
  font-family: "Manrope";
  font-weight: 200;
  margin: 0 0 20px 0;
  padding: 0;
}
h3 {
  font-family: "Manrope";
  font-size: large;
  font-weight: 200;
  margin: 0 0 20px 0;
  padding: 0;
}
h4 {
  text-align: center;
  font-family: "Manrope";
  font-size: larger;
  font-weight: 200;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: rgb(12, 139, 185);
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

@media (max-width: 430px) {
  .back-to-top {
    position: fixed;
    display: none;
    background: rgb(12, 139, 185);
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 5px;
    bottom: 40px;
    transition: background 0.5s;
    z-index: 11;
  }
}
.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid rgb(12, 139, 185);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 80px;
  width: auto;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 12px 12px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(96, 98, 98, 0.3);
  overflow: hidden;
}

#header.header-scrolled,
#header.header-pages {
  height: 80px;
  padding: 1px 0;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: rgb(24, 72, 134);
  text-decoration: none;
}

#header .logo img {
  padding: 0px 40px;
  margin-bottom: 100px 10px;
  margin-top: 10px;
  max-height: 40px;
}

.main-pages {
  margin-top: 60px;
}



/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

/* For desktop*/
#intro {
  height: auto;
  padding-top: 50px;
}

/* For Mobile*/
@media (max-width: 480px) {
  #intro {
    width: 100%;
    position: relative;
    background-size: cover;
    height: auto;
    min-height: 50px;
  }
}

/*Mobile*/
@media (max-width: 991px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  #header {
    height: 65px;
    padding: 7px 0;
    width: auto;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

 

  #why-us .card {
    margin: 0;
  }

  #intro {
    width: 100%;
    position: relative;
    background-size: cover;
    height: auto;
  }

  #header.header-scrolled,
  #header.header-pages {
    height: 55px;
    padding: 1px 0;
  }
}

.container{
  background-position: center;
  display: contents;
}



/*---Heading Banner Slideshow--*/
.slideshow {
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
  visibility: hidden;
  overflow: hidden;
  min-height: 400px;
}

.banner {
  display: block;
  position: absolute;
  min-width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out; /*Fade Transition*/
  top: 8%;
  left: 0;
  object-fit: cover;
  border-radius: none;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}


@media only screen and (max-width: 600px) {
  .slideshow {
    min-height: 200px;
  }
  .desktop {
    display: none;
  }

  .mobile {
    top: 10px;
    display: block;
  }
}

.active {
  opacity: 1;
  z-index: 1;
}
.fade {
  animation: fade 7.5s infinite;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*--Heading Banner Slideshow End--*/

/*--------------------------------------------------------------
# Slideshow for header
--------------------------------------------------------------*/
/*---------- SLIDE ANIMATION --------------*/

#intro{
  width: 100%;
  height: auto;
  background: white;
  background-position: absolute center center;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.main-nav,
.main-nav * {
  margin: 0;
  padding: 4.5px;
  list-style: none;
  width: auto;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: rgb(24, 72, 134);
  padding: 10px 10px;
  transition: 0.3s;
  font-size: 16px;
  font-family: 'Manrope';
  font-weight: 400;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: rgb(12, 139, 185);
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(96, 98, 98, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  
  padding: 10px 10px;
  font-size: 13px;
  color: rgb(24, 72, 134);
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: rgb(12, 139, 185);
}

.main-nav .drop-down > a:after {

  font-family: 'Manrope';
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {

  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(56, 57, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: rgb(152, 181, 192);
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {

  font-family: 'Manrope';
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: rgb(24, 72, 134);
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(56, 57, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header {
  margin-left: 5px;
}
.section-header h3 {
  font: bold;
  color: rgb(24, 72, 134);
  text-align: center;
  font-weight: 800;
  position: relative;
  margin-left: 5px;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 22px;
  padding-bottom: 50px;
  color: #000000;
  width: 50%;
  font-family: 'Manrope';
  font-weight: 500;
}

/* Section with background
--------------------------------*/

.section-bg {
   background: #fff;
  /*background: url("../img/services/pngegg.png") no-repeat;*/
  background-size: cover;
  width: 100%;
  height: 100%;
  padding-top: 100%;
  resize: both;
  overflow: no-repeat;
  background-position: center;
  align-items: flex-start;
  justify-content: center;
  
}

.section-bg h3 {
  text-transform: uppercase;
  font-family: 'Manrope';
}

.section-bg2 {
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 100%;
  padding-top: 100%;
  resize: both;
  overflow: no-repeat;
}

/*------------------------------- 
Services Section
--------------------------------*/

#services {
  display: flex;
  background-position: center;
  padding: 100px 0 50px 0;
  height: 1000px;
  position: relative;
  width: 100%;
}


.container1 {
  background-position: center;
  display: contents;
  width: 500px;
  height: 1900px;
}

/*--Spider-Diagram Menu--*/
.spider-diagram { 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items:center;
}

.boxs {
  position: relative;
  border: 2px solid white;
  background-color: white;
  height: 150px;
  width: 210px;
  top:125px;
  left: 0px;
  z-index: 1;
}

.center { /* Locks spider diagram to the center of the section */
  position: absolute;
  color: #fff;
  top:190px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 30px;
  border: 2px solid #5e7d7d;
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  background: #5e7d7d;
  font-family: 'Manrope';
  text-transform: uppercase;
}
.center:hover {
  border: 2px solid rgb(12, 139, 185);
}

.center-link {
  color: white;
}

.line { /*Creates the lines that connect to the icons*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 2px;
  height: 200px;
  background: rgba(0, 0, 0, 0.1);
  transform-origin: bottom;
}

.line span {
  font-size: 24px;
  color: white;
  padding: 0px 10px;
  text-transform: uppercase;
  z-index: 1;
  font-family: 'Manrope';
}

.line span img {
    width: 90px;
    height: 90px;
}

.line1 span { /* Allows me to manipulate the the points */
  position: absolute;
  top: -60px;
  left: 50%;
  border: 1px solid  rgb(24, 72, 134);
  border-radius: 8px;
  background:  rgb(24, 72, 134, 0.3);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  
}

.line2 span {
  position: absolute;
  top: -100px;
  left: 60%;
  border: 1px solid  rgb(12, 139, 185);
  border-radius: 8px;
  background:  rgb(12, 139, 185, 0.3);
  transform: translate(-50%, -50%) rotate(-60deg); /* Keeps the text and icons upright*/
  white-space: nowrap;
}

.line3 span {
  position: absolute;
  top: -100px;
  left: 55%;
  border: 1px solid  rgb(56, 57, 57);
  background:  rgb(56, 57, 57, 0.3);
  border-radius: 8px;
  transform: translate(-50%, -50%) rotate(-120deg);
  white-space: nowrap;
}

.line4 span {
  position: absolute;
  top: -60px;
  left: 50%;
  border: 1px solid rgb(96, 98, 98);
  background: rgb(96, 98, 98, 0.3);
  border-radius: 8px;
  transform: translate(-50%, -50%) rotate(-180deg);
  white-space: nowrap;
}

.line5 span {
  position: absolute;
  top: -100px;
  left: 45%;
  border: 1px solid  rgb(152, 181, 192);
  background:  rgb(152, 181, 192, 0.3);
  border-radius: 8px;
  transform: translate(-50%, -50%) rotate(-240deg);
  white-space: nowrap;
}

.line6 span {
  position: absolute;
  top: -100px;
  left: 45%;
  border: 1px solid  rgb(90, 110, 137);
  background:  rgb(90, 110, 137, 0.3);
  border-radius: 8px;
  transform: translate(-50%, -50%) rotate(-300deg);
  white-space: nowrap;
}

.line::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: rgba(61,162,198,0.8);
    border-radius: 50%;
    transform: translateX(-50%);
    display: none;
}

line:hover { /* gives the blue border for the hover effect*/
  border: 2px solid rgb(12, 139, 185);
}

.line1:hover {
  border: 2px solid rgb(12, 139, 185);
}

.line2:hover {
  border: 2px solid rgb(12, 139, 185);
}

.line3:hover {
  border: 2px solid rgb(12, 139, 185);
}

.line4:hover {
  border: 2px solid rgb(12, 139, 185);
}

.line5:hover {
  border: 2px solid rgb(12, 139, 185);
}

.line6:hover {
  border: 2px solid rgb(12, 139, 185);
}

.line1:hover span{
  border:2px solid rgb(12, 139, 185);
}

.line2:hover span{
  border: 2px solid rgb(12, 139, 185);
}

.line3:hover span{
  border:2px solid rgb(12, 139, 185);
}

.line4:hover span{
  border:2px solid rgb(12, 139, 185);
}

.line5:hover span{
  border:2px solid rgb(12, 139, 185);
}

.line6:hover span{
  border:2px solid rgb(12, 139, 185);
}

.QuantitySurveyor { /* This positions, colors, and hides the text for the spider-diagram */
  margin-top: 30px;
  margin-left: -5px;
  Position: absolute;
  bottom: 0;
  left: 40%;
  transform: translateX(-55%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-radius: 8px;
  display: block;
  color: white;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0s, linear 0.2s;
  height: 40px;
}

.line1:hover .QuantitySurveyor { /* This shapes, and displays the text when hovering over the line/icon */
  visibility: visible;
  height: 40px;
  color: rgb(12, 139, 185);
  opacity: 1;
  transition-delay: 0.3s;
}

.ProjectManagement { /* This positions, colors, and hides the text for the spider-diagram */
  margin-top: 185px;
  margin-left: -95px;
  Position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-radius: 8px;
  display: block;
  color: white;
  rotate: 60deg;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0s, linear 0.2s;
  height: 40px;

}

.line2:hover .ProjectManagement { /* This shapes, and displays the text when hovering over the line/icon */
  display: block;
  height: 40px;
  color: rgb(12, 139, 185);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.3s;
}
.Architectural { /* This positions, colors, and hides the text for the spider-diagram */
  margin-top: 350px;
  margin-left: -280px;
  Position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-radius: 8px;
  display: block;
  color: white;
  rotate: 120deg;
  opacity: 0;
  transition: opacity 0.2s, visibility 0s, linear 0.2s;
  height: 40px;
  visibility: hidden;
}

.line3:hover .Architectural { /* This shapes, and displays the text when hovering over the line/icon */
  display: block;
  height: 40px;
  color: rgb(12, 139, 185);
  opacity: 1;
  transition-delay: 0.3s;
  visibility: visible;
}

.QaQc { /* This positions, colors, and hides the text for the spider-diagram */
  margin-top: 140px;
  margin-left: -480px;
  Position: absolute;
  bottom: 0;
  left: -10px;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-radius: 8px;
  display: block;
  color: white;
  rotate: 180deg;
  opacity: 0;
  transition: opacity 0.2s, visibility 0s, linear 0.2s;
  height: 40px;
  visibility: hidden;
}

.line4:hover .QaQc { /* This shapes, and displays the text when hovering over the line/icon */
  display: block;
  height: 40px;
  color: rgb(12, 139, 185);
  opacity: 1;
  transition-delay: 0.3s;
  visibility: visible;
}

.AssetManagement { /* This positions, colors, and hides the text for the spider-diagram */
  margin-top: 75px;
  margin-left: -175px;
  Position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-radius: 8px;
  display: block;
  color: white;
  rotate: 240deg;
  opacity: 0;
  transition: opacity 0.2s, visibility 0s, linear 0.2s;
  height: 40px;
  visibility: hidden;
}

.line5:hover .AssetManagement { /* This shapes, and displays the text when hovering over the line/icon */
  display: block;
  height: 40px;
  color: rgb(12, 139, 185);
  opacity: 1;
  transition-delay: 0.3s;
  visibility: visible;
}

.MineClosure { /* This positions, colors, and hides the text for the spider-diagram */
  margin-top: -85px;
  margin-left: -75px;
  Position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-radius: 8px;
  display: block;
  color: white;
  rotate: 300deg;
  opacity: 0;
  transition: opacity 0.2s, visibility 0s, linear 0.2s;
  height: 40px;
  visibility: hidden;
}

.line6:hover .MineClosure { /* This shapes, and displays the text when hovering over the line/icon */
  display: block;
  height: 40px;
  color: rgb(12, 139, 185);
  opacity: 1;
  transition-delay: 0.3s;
  visibility: visible;
}

.line1 {transform: translate(-50%, -50%) rotate(0deg);} /*Rotates the lines*/
.line2 {transform: translate(-50%, -50%) rotate(60deg);}
.line3 {transform: translate(-50%, -50%) rotate(120deg);}
.line4 {transform: translate(-50%, -50%) rotate(180deg);}
.line5 {transform: translate(-50%, -50%) rotate(240deg);}
.line6 {transform: translate(-50%, -50%) rotate(300deg);}


/*--Spider-Diagram Menu End--*/

#services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: rgb(12, 139, 185);
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

/*-------------------------------------------------------------------------------------------*/

#services .services-info .btn-About-page {
  font-family: 'Manrope';
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: rgb(12, 139, 185);
  margin-left: auto;
  margin-right: auto;
}

#services .services-info .btn-About-page {
  border: 2px solid rgb(12, 139, 185);
}

#services .services-info .btn-About-page:hover {
  background: rgb(12, 139, 185);
  border-color: rgb(12, 139, 185);
  color: #fff;
}

@media (max-width: 480px) {
  .boxs {
    top: 65px;
    height: 75px;
    width: 115px;
  }
  
  .center {
    font-size: 14px;
    padding-left: 2px;
    padding-right: 2px;
    top: 105px;
  }

  .line {
    height: 100px;
    width: 1px;
  }

  .line span img {
    height: 55px;
    width: 55px;
  }

  .line1 span {
    top: -45px;
  }

  .line2 span {
    top: -70px;
    left: 60%;
  }

  .line3 span {
    top: -70px;
    left: 55%;
  }

  .line4 span {
    top: -45px;
    left: 50%;
  }

  .line5 span {
    top: -70px;
    left: 45%;
  }

  .line6 span {
    top: -70px;
    left: 45%;
  }
}

/*Mobile*/

.container{
  background-position: center;
  display: contents;
}


/*--------------------------------------------------------------
# Services Intro Section
--------------------------------------------------------------*/

/*-------------------------------------------------------------
# Services Continued
-------------------------------------------------------------*/
.service-description {
  padding: 20px 0;
  position: relative;
  width: 100%;
  height: auto;
  content: "";
  display: table;
  clear: both;
  color: white;
}

.Our-Services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: white'
}

.service-item {
  margin-left: 10px;
  margin-right: 10px;
  width: 48%;
  box-sizing: border-box;
  margin-bottom: 10px;
  border: 1px solid white;
  padding: 10px;
  border-radius: 5px;
  color:white;
  background-color: rgba(12, 139, 185, 0.7);
}

.service-item:hover {
    color: white;
}

.service-item h4 {
  font-weight: 700;
}

.service-item p {
  font-weight: 400;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-family: 'Manrope'
}

.service-header img {
  width: 75px;
  height: auto;
  margin-right: 10px;
}

@media (max-width: 912px) {
  .service-item {
    width: 44%;
  }
}



@media (max-width: 769px) {
  .service-item {
    width: 100%;
  }
}

.service-item h4 {
  font-size: 24px;
}

.service-item p {
  font-size: 18px;
  font-family: 'Manrope';
}

/*--------------------------------------------------------------------------------------*/

/* Common info---------------------*/

  #Common-info {
    padding: 50px 0;
    box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 70vh;
    margin-top: 0px;
    position: relative;
    background: url("../img/New/Edited-Photos/WMW_2 - Photo Edit.webp") top no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    overflow:hidden;
  }

  
  #Common-info .section-header {
    padding-top: 5%;
    margin-bottom: 15px;
  }

  #Common-info .container{
    align-items: center;
    text-align: center;
  }

  #Common-info .section-header h3 {
    font-size: 36px;
    color: rgb(12, 139, 185);
    text-align: center;
    font-weight: 800;
    position: relative;
  }

  #Common-info .section-header p {
    text-align: center;
    margin: auto;
    font-size: 18px;
    padding-bottom: 50px;
    color: #fff;
    width: 61%;
  }
  
  #Common-info .Common-item .About-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    float: left;
  }
  
  #Common-info .Common-item h3 {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0 25px 0;
    color: rgb(90, 110, 137);
    text-align: center;
    font-family: 'Manrope';
  }
  
  #Common-info .Common-item h4 {
    font-size: 26px;
    color: #fff;
    margin: 0 0 15px 0;
    margin-left: 140px;
    font-family: 'Manrope';
  }
  
  #Common-info .Common-item p {
    font-size: 24px;
    font-weight: 800;
    max-width: 100%;
    color: white;
    margin: 0 0 15px 0px;
    text-align: center;
    align-items: center;
    font-family: 'Manrope';
  }
  
  #Common-info .owl-nav,
  #Common-info .owl-dots {
    margin: 5px 0px 0px 0px;
    text-align: center;
  }
  
  #Common-info .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
  }
  
  #Common-info .owl-dot .active {
    background-color: #007bff;
  }


/* Portfolio Section
--------------------------------*/

#portfolio {
  padding-top: 60px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  background-color: #F0EAD6;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin-top: 5px;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin-top: 15px;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  color: rgb(12, 139, 185);
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: rgb(12, 139, 185);
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: rgb(12, 139, 185);
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: rgb(12, 139, 185);
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: rgb(12, 139, 185);
}

#portfolio
  .portfolio-item
  .portfolio-wrap
  .portfolio-info
  .link-preview:hover
  i,
#portfolio
  .portfolio-item
  .portfolio-wrap
  .portfolio-info
  .link-details:hover
  i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*---Videos---*/

.video-section {
  display: flex;
  background: rgba(12, 139, 185, 0.7);
  width: 100%;
  justify-content: center;
  align-items: center;
  height: auto;
  text-align: center;
  flex-wrap: wrap;
}

.video-section h2 {
  width: 100%;
  padding-top: 30px;
  font-size: 24px;
  font-weight: 600;
  color: white;
}

.par {
  width: 100%;
  justify-content: center;
  display: flex;
}

.video-section p {
  font-size: 18px;
  font-weight: 500;
  color: white;
  width: 75%;
  text-align: center;
}

.section-remote {
  width: 25%;
  height: auto;
  align-items: center;
  justify-content: center;
  margin-left: -270px
}

.remote {
  display: flex;
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 100px;
  cursor: pointer;
}
.video-player {
  top: -2vh;
  width: 100%;
  max-width: 850px;
  position: relative;
  overflow: hidden;
}

.video-player:hover .player-controls {
  transform: translateY(0);
}

.player-controls {
  display: flex;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  width: 100%;
  flex-wrap: wrap;
  transform: translateY(100%) translateY(-5px);
  transition: .3s;
}

.video {
  width: 100%;
}

.video-progress {
  position: relative;
  display: flex;
  width: 100%;
  height: 5px;
  transition: .3s;
  background: rgb(0, 0, 0, 0.6);
  cursor: pointer;
}

.video-progress-filled {
  width: 0;
  background: rgb(96, 98, 98);
}

.video-player:hover .video-progress {
  height: 20px;
}

.play-button {
  width: 10%;
  border: none;
  background: rgb(96, 98, 98);
  color: white;
  padding: 10px;
  cursor: pointer;
  margin-right: 5px;
}

.play-button:focus {
  outline: none;
}

input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
  margin: 0%;
  width: 75%;
  padding: 0 10px;
}

.time {
  font-size: 1em;
  color: white;
  width: 15%;
  text-align: center;
  font-family: 'Manrope';
  display: flex;
  align-items: center;
  margin-left: 10px;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background:black;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  background: rgb(96, 98, 98);
  cursor: pointer;
}

.inner-player-controls {
  width: 100%;
  display: flex;
}

.mute {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.full-screen {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
}

.mute.muted {
  opacity: 0.5;
}

.mute .slash {
  position: absolute;
  width: 2px;
  height: 50%;
  background: white;
  transform: rotate(-50deg);
  display: none;
}

.mute.muted .slash {
  display: block;
}


.control-button {
  background: transparent;
  color: white;
  border: none;
}

@media (max-width: 1280px) {
  .video-section {
    flex-direction: row;
  }

  .section-remote {
    flex-direction: column;
    margin-top: 0;
    margin-left: -10px;
    margin-right: 75px;
    width: 25%;
  }

  .section-remote img {
    width: 80%;
  }

  .video-player {
    max-width: 700px;
    height: auto;
    right: 0%;
    overflow: visible;
  }
}

@media (max-width: 1024px) {
  .video-section {
    flex-direction: row;
  }

  .section-remote {
    flex-direction: column;
    margin-top: 0;
    margin-left: 10px;
    width: 25%;
  }

  .section-remote img {
    width: 90%;
  }

  .video-player {
    max-width: 700px;
    height: auto;
    right: 0%;
    overflow: visible;
  }
}

@media (max-width: 950px) {
  .section-remote {
    margin-left: 0;
    width: 20%;
  }
  .video-player {
    top: 15%;
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .video-section {
    padding-bottom: 50px;
  }
  .section-remote {
    display: none;
  }

  .video-player {
    max-width: 350px;
    margin-left: 5px;
  }

  input[type="range"] {
    -webkit-appearance: none;
    background: transparent;
    margin: 0%;
    width: 50%;
    padding: 0 5px;
  }
}

/*  Contact Section  */
/*--------------------------------*/
/*---New Additions---*/

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
  align-items: center;
}

#contact .map {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#contact .btnContact {
  background: rgb(12, 139, 185);
  width: 20%;
  padding: 30px;
  border: 1px;
  outline: none;
  color: #ffffff;
  height: 35px;
  border-radius: 30px;
  margin: auto;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 15px 0px rgb(12, 139, 185);
  cursor: pointer;
  font: bold;
  font-weight: 700;
}

#contact .btnContact:hover {
  color: rgb(12, 139, 185);
  background-color: rgb(255, 255, 255);
  padding: 30px;
  height: 50px;
  font-size: 20px;
  font-style: bold;
  width: 25%;
  transition: 0.5s;
}

/*--------------------------------------------------------------
# Recent Projects
--------------------------------------------------------------*/

.gallery {
  text-align: center;
  padding-top: 50px;
  width: 100%;
}

.gallery-title {
  padding-top: 30px;
  font-size: 36px;
  font-weight: 700;
  color: #000000;
}

.gallery-label{
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  padding-bottom: 50px;
}

.gallery-images {
  margin-left: 0px;
  padding-left: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.gallery-image {
  position: relative;
  padding-top: 25px;
  padding-bottom: 40px;
  margin: 0px 30px;
  width: 80%;
  max-width: 300px;
  height: auto;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.gallery-image:hover {
  transform: scale(1.2);
}


.gallery-image:hover img {
  filter: brightness(80%);
}

.gallery-image:hover .gallery-image-title {
  opacity: 1;
}

.gallery-image:hover .gallery-image-button {
  display: block;
  opacity: 1;
}

.gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease-in-out;
}

.gallery-image-title {
  position: absolute;
  top: 50%;
  left: 50%; 
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery-image-title p{
  font-size: 10px;
  font-weight: bold;
}

.gallery-image-button {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: rgb(96, 98, 98);
  overflow: hidden;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: rgb(96, 98, 98);
  padding-top: 3%;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: 'Manrope';
  color: #fff;
  font-weight: 200;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Manrope';
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgb(12, 139, 185);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: rgb(12, 139, 185);
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: rgb(12, 139, 185);
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: rgb(12, 139, 185);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 12px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}

.footer-div{
  max-width: 30%;
  align-items: center;
}

.F-logo{
  height: auto;
  max-width: 50%;
  margin-left: 50px;
}

.F-logo p{
  text-align: center;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/
@media (max-width: 1100px) {
  #services .box {
    width: 90%;
    margin: 0px 0px 40px 40px;
  }

  .gallery-image {
    padding-bottom: 70px;
    width: 500px;
    height: 500px;
    margin: 0 10px;
  }
  .gallery-images {
    padding: 0px 25px 0px 25px;
    margin-left: 0px;
  }
}

@media (max-width: 992px) {
  #AboutUs .About-item p {
    width: 80%;
  }

  .overlay{
    position: relative;
    height: 50vh;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .overlay content{
    padding: 0px;
    margin: 0px;
  }

  .content {
    padding-top: 0px;
    padding-left: 0px;
  } 

  .content label{
    font-size: 6rem;
    padding: 0px;
    margin: 0px;
  }

  .boxLabel{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    opacity: 0;
    position: absolute;
    margin-left: 0px;
    max-width: 100%;
  }

  .footer{
    min-width: 100%;
    margin-right: 0px;
  }

  .row{
    max-width: 100%;
    margin: auto;
  }
  .footer-div{
    max-width: 100%;
    margin-left: 15px;
    margin-right: 15px;
  }

  .F-logo {
    max-width: 100%;
    text-align: center;
    align-items: center;
    height: auto;
    margin: auto; 
  }

  .F-logo img{
    display: block;
    margin: 0 auto;
    height: auto;
    width: 200px;
    padding-bottom: 20px;
  }

  .F-logo p{
    font-size:20px;
    text-align: center;
  }
  #footer .img-fluid{
    margin: auto; 
  }

  #services .section-header h3 {
    font-size: 36px;
  }

  #services .section-header p {
    width: 90%;
    font-size: 18px;
  }

  #services .box {
    width: 80%;
    margin: 0px 0px 40px 0px;
  }

  #Common-info .Common-item p {
    margin: 0 0 15px 0px;
    text-align: center;
  }

  .banner-text{
    margin-top: 50px;
    left:0%;
    transform: translate(0%, 0%);
  }

}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
  }

  body {
    font-size: 14px;
  }

  .content label {
    font-size: 3rem;
  }

  .boxLabel{
    font-size: 18px;
    margin-left: 10%;
    max-width: 80%;
  }

  .footer-div{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  #footer .img-fluid {
    margin: 0;
  }
}

@media (max-width: 800px) {
  

  .section-header h3 {
    font-size: 20px;
  }

  .section-header p {
    width: 100%;
    font-size: 10px;
  }
  /*---New Additions---*/
  #contact .map {
    padding-bottom: 100px;
  }
}



/*Privacy Policy*/
#policy {
  padding: 100px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#policy .section-header {
  margin-bottom: 15px;
}

.policy-container {
  padding: 0 0;
  margin: 35px 120px 0px 120px;
}

/* Style buttons */
.btn {
  background-color: rgb(12, 139, 185);
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: rgb(12, 139, 185);
}

@media (max-width: 800px) {
  #Common-info .Common-item {
    margin-bottom: 30px;
    overflow:hidden;
  }

  #Common-info .Common-item .About-img {
    margin-left: 0;
    min-width: 100px;;
  }
  .gallery {
    text-align: center;
    padding: 50px 0px 70px 0px;
  }

  .gallery-title {
    padding-top: 30px;
    font-size: 35px;
    font-weight: 700;
    color: #000000;
  }

  .gallery-label{
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    padding-bottom: 50px;
  }

  .gallery-images {
    margin-left: 0px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .gallery-image {
    position: relative;
    padding-bottom: 40px;
    width: 300px;
    height: 300px;
    margin: 0 0px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
  }

  .gallery-image:hover {
    transform: scale(1.2);
  }


  .gallery-image:hover img {
    filter: brightness(80%);
  }

  .gallery-image:hover .gallery-image-title {
    opacity: 1;
  }

  .gallery-image:hover .gallery-image-button {
    display: block;
    opacity: 1;
  }

  .gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    transition: filter 0.3s ease-in-out;
  }

  .gallery-image-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .gallery-image-button {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
}

/************** The next section deals with the sizing issue of the title**********/

@media (max-width: 2560px) {
  .content label{
    font-weight: 600;
    font-size: 7rem;
  }
  .boxLabel{
  
    margin-left: 35.5%;
    max-width: 774px;
  }
}

@media (max-width: 1440px) {
  .content label{
    font-size: 5rem;
  }
  .boxLabel{
    font-size: 25px;
    margin-left: 34%;
    max-width: 37%;
  }
}

@media (max-width: 768px) {
  .content label{
    font-size: 5rem;
  }
  .img-header {
    max-width: 100%;
    height: 55px;
}
  .boxLabel{
    font-size: 25px;
    margin-left: 30%;
    max-width: 37%;
  }
  #intro {
    height: auto;
  }
  .overlay{
    padding-top: 50px;
  }
  .overlay:before {
    top: 0;
    left: 130px;
    bottom: 0;
    right: 115px;
    transform: skewX(-20deg);
    margin-top: -200px; 
    height: 70vh;
  }
  .b1{
    min-width: 0px;
  }
  .b2{
    min-width: 0px;
  }
  .b3{
    min-width: 0px;
  }
  .b4{
    min-width: 0px;
  }
  .b5{
    min-width: 0px;
  }
}

@media (max-width: 425px){
  
  #intro{
    height: auto;
  }
  .boxLabel{
    font-size: 25px;
    margin-left: 10%;
    max-width: 80%;
  }
  #Common-info{
    padding: 50px 0;
    height: auto;
  }

  #Common-info .section-header h3{
    font-size: 3rem;
  }

  #Common-info .Common-item h3 {
    font-size: 2.5rem;
  }
  #Common-info .Common-item p {
    font-size: 2.5rem;
  }

  #Common-info .owl-dots {
    margin-top: 1px;;
  }
  
}


