*{
    margin:0;
    padding:0;
}

.header{
min-height:100vh;
width:100%;
background-image: linear-gradient(rgba(4,9,30,0.2),rgba(4,9,30,0.2)),url("../images/organic.jpg");
background-size: cover;
background-position: center;
}
nav{
    display:flex;
    padding:2% 6%;
    justify-content: space-between;
    align-items: center;
   /* border:1px solid #dede4d73;
    background:#dede4d73;*/
}

  
nav img{
    width:150px;
    
}



.nav-links{
    flex:1;
  text-align:right;

}
.nav-links ul li{
    list-style: none;
    padding:8px 10px;
    display:inline-block;
    position:relative;
}
.nav-links ul li a{
    text-decoration:none;
    color:white;
    font-size:27px;
}
.text-box{
    width:100%;
    color:white;
    position:absolute;
    top: 10%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align: center;
    /*font-family:"Cormorant";*/
}
.text-box h1{
    font-size:40px;
}
.company{
    padding:20px;
}

.company-image{
    width:100%;
    margin-top:20px;
    background:rgb(236, 234, 234);
    border-radius:10px;
    box-sizing: border-box;
    position:relative;
    transition: all 0.5s linear;
}
.company-image:hover{
background-color: #75b16c;
}
.company h4{
    padding:5px;
    margin-top:25px;
    text-transform: uppercase;
    text-align: center;
}

/*button*/
.button-link{
    text-align: center;
}


.btn-animate-one {
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    
 
}
.site-button {
    outline: none;
    color: #000;
    margin-top:30px;
    margin-bottom:30px;
    /*margin-left:90px;*/
    padding: 20px 30px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-table;
    background-color: #E3D270;
    border: none;
    font-size: 16px;
    transition: 0.5s all ease;
    border-radius: 5px;
    font-weight: 700;
    font-family: "Cormorant";
    text-transform: capitalize;
}
.btn-animate-one::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 8px;
    right: 100%;
    background: rgb(0 0 0 / 67%);
    height: 50px;
    width: 50px;
    border-radius: 50px;
    transform: scale(0);
    transform-origin: 50% 50%;
    transition: transform 0.5s linear;
   
    
}
button:not(:disabled) {
    cursor: pointer;
}
.site-button a {
    color: #000;
   text-decoration: none;
    
}

.site-button .btn-arrow-icon {
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    margin-left: 5px;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.fa-angle-right:before {
    content: "\f105";
}

/*footer*/
.footer{
    width:100%;
  
    background-color: #000;
    
}


.footer-bottom {
   
    margin-top: -40px;
}
.footer-bottom p {
    margin: 0px;
    color:white;
}
.text-right {
    text-align: right !important;
    margin-top:10px;
}
.footer-bottom a{
    color:white;
    text-decoration: none;
}

@media only screen and (max-width: 767px){
    .text-box{
        width:100%;
        color:white;
        position:absolute;
        top: 7%;
        left:50%;
        transform:translate(-50%,-50%);
        text-align: center;
        /*font-family:"Cormorant";*/
    }
    .nav-links{
        display:none;
    
    }
    nav{
        display:flex;
        padding:2% 6%;
        justify-content: center;
        align-items: center;
        
    }
    .section-group{
        margin-top:100px;
    }
    nav img{
        width:200px;
    }
    .button-link{
        text-align: center;
    }
    .footer-bottom {
        margin-top: 0px;
    }
    .footer-bottom p {
        /* margin: 0px; */
        margin-top: 20px;
        color: white;
        text-align: center;
    }
    .text-right {
        text-align:center!important;
     
    }
  }
   
/*margin in image top*/

.section-group {
    margin-top: 40px;
}