/********** Vuyolwethu Aluminium **********/
:root {
    --primary: #e9c979;
    --light: #F8F8F8;
    --dark: #111;
    --blue: #0D6EFD;
    --bg-grey:#e9e9e9;
    --gray:#777777;
}

.h2,
.fw-bold {
    font-weight: 500 !important;
}

h1{
    font-weight: 400 !important;
}
.h4{
font-weight: 200 !important;
}

h3,
h4,
.h3,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 400;
    transition: .5s;
    margin-bottom: 10px;
   width:190px;

}

.btn.btn-primary,
.btn.btn-secondary {
    color: #111;
}

.btn-square {
    width: 28px;
    height: 28px;
}

.btn-sm-square {
    width: 22px;
    height: 22px;
}

.btn-lg-square {
    width: 28px;
    height: 28px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--light);
    border-color: var(--light);
}

.btn-outline-body:hover {
    color: #111;
    background: var(--light);
    border-color: var(--light);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'Asap', sans-serif;
    font-weight: 500;
    vertical-align: middle;
    align-items: center;
}

.navbar .navbar-nav .nav-link {
    margin: 10px;
    padding: 10px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform:capitalize;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
      position: relative;
      min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
      font-size: 5px !important;
  }
}

.header-carousel .owl-dots {
  position: absolute;
  width: 20px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
  position: relative;
  width: 35px;
  height: 35px;
  margin: 5px 0;
  background: var(--dark);
  transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
  width: 50px;
  height: 50px;
}

.header-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  transition: .5s;
  opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform:capitalize;
    
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 550px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 100%;
    height:100%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin-left: 2px;
    margin-right: 5px;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    left: 10%;
    z-index: 1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}

/* PROJECT START */

/* Section: Portfolio */
.portfolio {
    margin-top: 50px;
  }
  
  .portfolio-sorting {
    margin: 0;
    border-top: 1px solid #f6f6f6;
    border-right: 1px solid #f6f6f6;
    border-bottom: 2px solid #e9c979;
    height: 67px;
  }
  
  .portfolio-sorting li {
    padding: 0;
    float: left;
  }
  
  .portfolio-sorting li a {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    line-height: 44px;
    height: 44px;
    border-left: 1px solid #f6f6f6;
    border-right: 1px solid #f6f6f6;
    text-transform: capitalize;
  }
  
  .portfolio-sorting li a:hover, .portfolio-sorting li a.active {
    background-color: #e9c979;
    color: #ffffff;
    border-color: #e9c979;
  }
  
  .portfolio-sorting li a:hover:after, .portfolio-sorting li a.active:after {
    border-color: #e9c979;
  }
  
  .portfolio-sorting li a:after, .portfolio-sorting li a.acitve:after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    display: block;
    border-top: 1px solid #dddddd;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  
  .portfolio-sorting li a.active:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -11px;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
   
    z-index: 99;
  }
  
  .portfolio-sorting li + li a {
    border-left: 0;
  }
  
  .portfolio-sorting li + li a:after, .portfolio-sorting li + li a.active:after {
    left: 0px;
  }
  
  #grid {
    margin-top: 40px;
  }
  
  #grid .col-md-3 {
    padding: 0;
  }
  
  .portfolio-item {
    overflow: hidden;
  }
  
  .portfolio-item .portfolio-item-thumb {
    position: relative;
    height: 350px;
  }
  
  .portfolio-item .portfolio-item-thumb:after {
    content: '';
   
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  
  .portfolio-item .portfolio-item-thumb .rectangle {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 62px;
    margin: 0 auto;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 4px 4px 0px 0px rgba(238, 238, 238, 0.5);
    -o-box-shadow: 4px 4px 0px 0px rgba(238, 238, 238, 0.5);
    -moz-box-shadow: 4px 4px 0px 0px rgba(238, 238, 238, 0.5);
    box-shadow: 4px 4px 0px 0px rgba(238, 238, 238, 0.5);
    z-index: 99;
  }
  
  .portfolio-item .portfolio-item-thumb,
  .portfolio-item .portfolio-info {
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  
  .portfolio-item .portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75px;
    padding: 0 10px;
    text-align: center;
    transform: translateY(75px);
    -webkit-transform: translateY(75px);
    -moz-transform: translateY(75px);
    -o-transform: translateY(75px);
    -ms-transform: translateY(75px);
    opacity: 0;
    visibility: hidden;
  }
  
  .portfolio-item .portfolio-info h3 {
    margin: 20px 0 0;
    font-size: 16px;
    font-weight: 600;
  }
  
  .portfolio-item .portfolio-info h3 + p {
    margin: 10px 0 0;
    font-size: 12px;
    font-weight: 300;
    color: #bbbbbb;
  }
  
  .portfolio-item:hover .portfolio-item-thumb {
    transform: translateY(-75px);
    -webkit-transform: translateY(-75px);
    -moz-transform: translateY(-75px);
    -o-transform: translateY(-75px);
    -ms-transform: translateY(-75px);
  }
  
  .portfolio-item:hover .portfolio-item-thumb:after {
    opacity: 0.8;
  }
  
  .portfolio-item:hover .portfolio-item-thumb .rectangle {
    opacity: 1;
    visibility: visible;
  }
  

  
  .portfolio-item:hover .portfolio-info {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  @media only screen and (max-width: 991px) {
    /* Section: Portfolio */
    .portfolio-sorting li a {
      padding: 0 15px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    /* Section: Portfolio */
    .portfolio {
      margin-top: 30px;
      margin-bottom: 50px;
    }
    .portfolio-sorting {
      height: 100%;
      border-right: 1px solid #f6f6f6;
      border-left: 1px solid #f6f6f6;
    }
    .portfolio-sorting li {
      float: none;
      width: 50%;
    }
    .portfolio-sorting li:nth-child(even) {
      margin-left: -4px;
    }
    .portfolio-sorting li a {
      border: 0;
      width: 100%;
      padding: 0;
      text-align: center;
      font-size: 10px;
    }
    .portfolio-sorting li a.active:before, .portfolio-sorting li a:after, .portfolio-sorting li a:hover:after, .portfolio-sorting li a.active::after {
      content: none;
    }
  }
  
  @media only screen and (max-width: 479px) {
    /* Section: Portfolio */
    .section-works .col-xs-6 {
      width: 100%;
    }
  }
  /* Image responsive */
.img-res {
    display: block;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
/* 
  PORTFOLIO BUTTON */
  /* 
 * Rectangle 
 */
.rectangle,
.big-rectangle {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px solid #dddddd;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-box-shadow: 4px 4px 0px 0px #dddddd;
  -o-box-shadow: 4px 4px 0px 0px #dddddd;
  -moz-box-shadow: 4px 4px 0px 0px #dddddd;
  box-shadow: 4px 4px 0px 0px #dddddd;
}

.rectangle i,
.big-rectangle img,
.rectangle span,
.rectangle img {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 22px;
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
}

.big-rectangle {
  position: absolute;
  right: auto;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  width: 230px;
  height: 230px;
  background-color: #196fc2;
  border: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-box-shadow: 10px 10px 0px 0px #dddddd;
  -o-box-shadow: 10px 10px 0px 0px #dddddd;
  -moz-box-shadow: 10px 10px 0px 0px #dddddd;
  box-shadow: 10px 10px 0px 0px #dddddd;
}

.medium-rectangle {
  width: 75px;
  height: 75px;
}

  
/*** Project ***/
.project .nav .nav-link {
    background: var(--gray);
    transition: .5s;
    
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: var(--gray) !important;
}


/*** Team ***/


.team-item {
    padding:10px;
    margin: 0 auto;
   
}


.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--dark);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--dark);
}




/*** Footer ***/

.footer .btn.btn-link li{
    display:block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform:capitalize;
    transition: .3s;
    font-size: 15px;
}
.footer .footer-list li{
list-style: none;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 40px;
margin: 5px;
padding: 0;


}
.footer .footer-list li a{
  color: #b1b1b1;
}

.footer
  ul {
    margin: 0;
    padding: 0;
}



.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: 'Asap', sans-serif;
    font-weight: 500;
    color:#777777;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #777777;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding-left: 10px 0;
    font-size: 15px;
    border-top: 1px solid var(--light);
}

.footer .copyright a {
    color: var(--dark);
}

.footer .copyright a:hover {
    color: var(--dark);
}

/** services section **/
.card {
  margin:30px;
  transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
  background-color: #fff;
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 13px 10px -7px rgba(0, 0, 0,0.1);
   display: grid;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.card_image {
  display: flex;
  height: 250px;
  box-shadow: 0 50px 100px 0 var(--violet);
}

.card_image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card_title {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: auto;
  color: var(--black);
  padding: 0.5rem;
  border-radius: 5px 0 0 5px;
  transform-origin:center;
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  font-size: 1.325rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  
  animation: 0s 0s fly-in 0 reverse both;
}

@media (min-width: 535px) {
  .card_title {
    animation: 0.5s 0.25s fly-out 1 both;
  }
}

.card:focus .card_title,
.card:hover .card_title {
  animation: 0.5s ease-in 0s fly-in 1 both;
}

.card_text {
  font-family: Segoe UI, Frutiger, Frutiger Linotype, Dejavu Sans, Helvetica,
    Helvetica Neue, Arial, sans-serif;
  line-height: 1.5;
  text-size-adjust: 0.2px;
  padding: 0 1rem;
}
  /* SERVICES END*/

  /* One */

			#one {
				text-align: center;
        background-image: url('img/wind.jpg');
        width: 100%;
			}
      .main {
        
      overflow:auto;
        color: #424242;
        text-align: left;
        width: 100%;
      }
    
        .main.style1 p{
          text-align: left;
        }
        .main.style1 ul li{
          text-align: left;
        }
        .row > .col-2-medium {
					width: 50%;
				}
        
				.row > .col-2-large {
					width: 50%;
				}
    

  