:root{
    --primary: hsl(102,100%,39%);
    --secondary: hsl(20,5%,13%);
    --tertiary: hsl(0, 0%, 93%);
    --quarternary: hsl(205, 83%, 57%);
    --ff-primary: 'Open Sans', sans-serif;
    --ff-secondary: 'Black Han Sans', sans-serif;
    --section-divider-height: 60; 
    --section-divider-width: 1920;
    --section-divider-ratio: calc(100% * var(--section-divider-height) / var(--section-divider-width));
}

h1,h2,h3,h4,h5,h6{
    font-family: var(--ff-secondary);
}   

p,a,span,li,div{
    font-family: var(--ff-primary);
}

a{
    text-decoration: none;
    color: var(--primary);
}
a:hover{
    color: gray;
}

html,body{
    overflow-x: hidden;
}

.w-10{
    width: 10%!important;
}
.z-0{
    z-index: 0;
}
.z-1{
    z-index: 10;
}
.z-2{
    z-index: 20;
}

.invert{
    filter: invert(100%)!important;
}
.z-9{
    z-index: 999999;
}

.mirror{
    transform: scaleX(-1)!important;
}
.min-h-inherit{
    min-height: inherit;
}
.o-cover{
    object-fit: cover;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

/********************/
/*PARALLAX */
/********************/
.parallax {
    min-height: 500px;
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    -moz-box-shadow: inset 0 0 20px #00000068;
    -webkit-box-shadow: inset 0 0 20px #00000068;
    box-shadow: inset 0 0 20px #00000068;
  }
  
  @supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */ 
  .parallax{
  background-attachment: scroll;
  }
}
/****************************
*************BG**************
****************************/
.bg-primary{
    background-color: var(--primary)!important;
}
.bg-secondary{
    background-color: var(--secondary)!important;
}
.bg-tertiary {
    background-color: var(--tertiary)!important;
}
.bg-quarternary {
    background-color: var(--quarternary)!important;
}

.bg-animated {
    background: linear-gradient(45deg, var(--primary) 0%, var(--quarternary) 100%);
    background-size: 200% 200%;  
    height: 100%;
    width: 100%;
    animation: background 6s ease infinite;
  }
  
  @keyframes background { 
    0% {
      background-position: 0% 50%;
    }
    
    50% {
      background-position: 100% 50%;
    }
    
    100% {
      background-position: 0% 50%;
    }
  }
/****************************
*************BORDER**************
****************************/
.border-primary{
    border-color: var(--primary)!important;
}
.border-secondary{
    border-color: var(--secondary)!important;
}
.border-tertiary {
    border-color: var(--tertiary)!important;
}
.border-quarternary {
    border-color: var(--quarternary)!important;
}

/****************************
************FONT*************
****************************/
.font-primary{
    font-family: var(--ff-primary)!important;
}

.font-secondary{
    font-family: var(--ff-secondary)!important;
}

/****************************
************TEXT*************
****************************/
.text-primary{
    color: var(--primary)!important;
}
.text-secondary{
    color: var(--secondary)!important;
}
.text-tertiary {
    color: var(--tertiary)!important;
}
.text-quarternary {
    color: var(--quarternary)!important;
}

@media(max-width: 991px){
    .text-dark-mode{
        color:white!important;
    }
    .bg-dark-mode{
        color:white!important;
    }
}

.btn-double {
    background-color: var(--primary);
    font-family: var(--ff-secondary);
    letter-spacing: 1px;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    border-radius: 10px;
  }
  
  .btn-double::before {
    content: "";
    background-color: var(--primary);
    opacity: 0.5;
    position: absolute;
    top: 0%;
    right: 0;
    z-index: -1;
    width: 90%;
    height: 90%;
    transform: rotate(-10deg);
    transition: transform 0.3s;
    border-radius: 10px;
  }

  .btn-double.bg-secondary::before{
    background-color: var(--secondary);
  }
  
  .btn-double:hover::before {
    transform: rotate(-5deg);
    z-index: -1;
  }

  .btn-double:hover {
    color:white!important;
  }


/****************************
***********HOVER*************
****************************/
.hover-dark:hover{
    background-color: #333!important;
    color: white!important;
    transition: background-color .25s, white .25s;
}



/****************************
**********DIVIDER************
****************************/
.has-divider {
    position: relative;
    padding-bottom: var(--section-divider-ratio);
}
.section-divider {
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: auto;
  }





/****************************
*********NAVIGATION**********
****************************/
.navbar-collapse{
    border: 3px solid var(--primary);
    border-width: 0 0 10px 0;
}
nav li a{
    margin: 0;
    border-radius:4px 4px 0 0;
    padding: 12px 25px!important;
    margin: 0 3px;
    background-color: transparent;
    color: #333;
    transition: background-color .25s, color .25s;
}

.nav-link{
    font-size: 12px;
    position: relative;
}

.nav-link.active{
    background-color: var(--primary);
    color:white!important;
}

.nav-link:hover{
    background-color: var(--primary);
    color:white!important;
}

.nav-link:not(.active):hover  .nav-link.active{
    background-color: transparent!important;
}



#looking .col-lg-6 img{
    transform: scale(1);
    transition: transform 1s;

}

#looking .col-lg-6:hover img{
    transform: scale(1.2);
    transition: transform 1s;
}

#looking .col-lg-6 .dimcover{
    background-color: rgba(0,0,0,.4);  
    transition: background-color 1s;

}

#looking .col-lg-6:hover .dimcover{
    background-color: rgba(0,0,0,.7);
    transition: background-color 1s;   
}




.contactbtn:hover{
    background-color: var(--secondary);
}


.svg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 99;
}

.svg-bottom  svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotateY(180deg);
}

.svg-bottom  .shape-fill {
    fill: var(--primary);
}

.card-hover .overlay {
    opacity: 0;
    transition: .5s opacity;
}   
.card-hover:hover .overlay {
    opacity: 1!important;
    transition: .5s opacity;

}   