@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;

}

/* NAVBAR */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 6em;
    position: fixed;
    top: 0px;
    z-index: 9999;
    /* background-image: linear-gradient(to right, #ffffff, #f8d01b, #e6bb00); */
    background-color: rgba(255, 255, 255, 0);
    /* box-shadow: 0px 0px 10px 0px rgba(85, 85, 85, 0.4); */
    /* opacity: 0.5; */
    width: 100%;

    /* border: 1px solid black;   */
}

.solid {
    top: 0;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(85, 85, 85, 0.4);
    transition: background-color 0.5s ease 0s;
    color: #000000;
}

.nav-brand {
    display: flex;
    margin-left: 30px;
    /* border: 1px solid black; */
}

.nav-logo img {
    display: none;

}

.nav-li {
    display: flex;
    flex-direction: row;
    margin-right: 30px;
    /* border: 1px solid black; */
    padding-top: 2px;
}

.nav-link ul {
    display: flex;
    font-size: 15px;
    font-weight: 400;
    list-style-type: none;
    /* border: 1px solid black; */
    padding: 0;
    margin-top: 1.2em;
}

.nav-link ul li {
    margin-right: 2em;
}

.nav-link3 {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    position: relative;

}

.nav-link4 {
    top: 0;
    color: #272727;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    position: relative;

}

.nav-link ul li a:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0%;
    border-bottom: 3px solid #006d18;
    transition: 0.3s;
}

.nav-link ul li a:hover:before {
    left: 0;
    width: 100%;
}
.nav-link ul li a.active:before {
    left: 0;
    width: 100%;
}

/* .nav-link ul li a:hover{    
    color: #D59B0F;
} */

.nav-link2 ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    /* border: 1px solid black; */
}

.nav-link2 ul li {
    margin-left: 1em;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    align-self: center;
    flex-direction: column;
    height: 18px;
    justify-content: space-between;
    position: relative;
}

.menu-toggle input {
    position: absolute;
    width: 38px;
    height: 27px;
    left: -9px;
    top: -8px;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    background-color: #001483;
    border-radius: 15px;
    transition: all 0.5s;
}

/* hamburger menu animasi */
.menu-toggle span:nth-child(2) {
    transform-origin: 0 0;
}

.menu-toggle span:nth-child(4) {
    transform-origin: 0 100%;
}

.menu-toggle input:checked~span:nth-child(2) {
    transform: rotate(45deg) translate(2px, -5px);
    background-color: black;
}

.menu-toggle input:checked~span:nth-child(4) {
    transform: rotate(-45deg) translate(2px, 5px);
    background-color: black;
}

.menu-toggle input:checked~span:nth-child(3) {
    opacity: 0;
    transform: scale(0)
}

/* responsive navbar */
@media screen and (max-width : 980px) {
    .nav {
        flex-direction: column;
    }

    .nav-li {
        /* border: 1px solid black; */
        margin-right: 3px;
    }

    .nav-li ul {
        padding: 0;
        /* border: 1px solid black; */
    }

    .nav-li li {
        font-size: 16px;
        font-weight: bold;
        list-style-type: none;
        /* border: 1px solid black; */

    }

    .nav-link ul li {
        font-size: 15px;
        font-weight: 400;
        /* border: 1px solid black; */
    }

    .nav-brand {
        margin: 10px 0 0 0;
    }

}

@media screen and (max-width : 744px) {
    .nav {
        flex-direction: row;
        justify-content: space-evenly;
        padding: 1px 0px;
        /* border: 1px solid black; */
    }

    .nav-brand {
        margin: 0;
    }

    .menu-toggle {
        display: flex;
        margin: 0px 0px 5px 50px;
        /* border: 1px solid black; */
    }

    .nav-link ul {
        margin-top: 3.7em;
        width: 100%;
        position: absolute;
        right: 0;
        flex-direction: column;
        justify-content: space-evenly;
        text-align: center;
        height: 100vh;
        background-color: #ffffff;
        z-index: -1;
        transform: translateX(100%);
        transition: all 1s;
        opacity: 0;
    }

    .nav-link ul li {
        height: 5em;
        margin-right: 0;
        z-index: -1;
    }

    .nav-link ul.slide {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-link ul li:hover {
        background-color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease 0s;
    }

    /* .nav-link ul li a:hover{    
        color: #ecab11;
    } */
    .nav-link2 ul li {
        cursor: pointer;
        /* border: 1px solid black; */
    }

}

@media screen and (max-width : 509px) {
    .nav {
        background-color: #ffffff;
        border-bottom-right-radius: 0%;
        border-bottom-left-radius: 0%;
    }

    .nav-brand img {
        margin-left: 5px;
        width: 10em;
    }

    .menu-toggle {
        display: flex;
        margin: 0px 0px 5px 5px;
        /* border: 1px solid black; */
    }

    .nav-link2 ul {
        margin-right: 1em;
    }

    .nav-link2 ul li {
        margin-left: 1em;
    }

}

/* banner */

.banner-home {
    /* position: relative;
   
    background-image: url("/assets/images/utama.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden; */
}

.banner-about {
    position: relative;
    /* background-image: url("/assets/images/header1-02.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    /* min-height: 30vh; */
    /* min-height: 25rem; */
    width: 100%;
    overflow: hidden;
}

.banner-contact {
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    background-image: url("localhost/website/SOURCE/assets/images/kontak2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}


.header-img {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.header-img-about {
    position: absolute;
    min-width: 50%;
    min-height: 50%;
    top: 50%;
    left: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-25%) translateY(-25%);
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0;
    z-index: -1;
}

/* 
header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
*/
header .container {
    position: relative;
    z-index: 9999;
    text-align: center;
    /* top: 40%; */
    margin-top: 15em;
    /* height: 100vh; */
    border: 1px solid black;
}

header .container-about {
    position: relative;
    text-align: center;
    margin-top: 5em;
}

header .container-about h1 {
    display: inline;
    font-size: 3em;
    font-weight: 800;
    color: #4d4d4d;
    margin: 0 7px;
}

.title-head {

    margin: 0;
    height: 80px;
    /* opacity: 0.5 ; */
    padding: 0.1em 0;
}

header .container .title-head h1 span {
    color: #D59B0F;

}

header .container .title-head .wel {
    color: #D59B0F;
    margin-left: 0;
}

.title-head-about {
    margin: 0;
    height: 60px;
    background-color: rgb(255, 255, 255);
    padding: 0.1em 0;
}


.header-sub-title-h1 {
    /* color: white; */
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 7px;
    /* opacity: 1; */
    /* background-color:  #ffffff; */
    padding: 0.1em 0.4em;
    letter-spacing: 2px;
    margin: 0em;
}

.header-sub-title {
    color: white;
    background-color: #D59B0F;
    padding: 0.1em 0.4em;
    letter-spacing: 2px;
    margin: 0em;
}

.header-sub-title span {
    transform: scale(0.9);
    display: inline-block;
}

.header-sub-title span:first-child {
    animation: bop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
}

@keyframes bop {
    0% {
        transform: scale(0.9);
    }

    50%,
    100% {
        transform: scale(1);
    }
}

.typer-flex {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 2em;
}


/* responsive banner */

@media screen and (max-width : 980px) {


    header .container-about {
        position: relative;
        text-align: center;
        margin-top: 6.5em;
    }
}

@media screen and (max-width : 744px) {
    /* header .container {
        margin-top: 40vh;
      } */


    .header-sub-title-h1 {
        font-size: 28px;
        font-weight: 800;
        color: #4d4d4d;
    }

    .header-sub-title {
        font-size: 25px;
    }
}

@media screen and (max-width : 621px) {

    .banner-home .header-img {
        width: 31.5rem;
    }

    .header .container {
        margin-top: 90px;
    }

    .typer-flex1 {
        /* display: none; */
    }

}

@media screen and (max-width : 478px) {
    .typer-flex {
        font-size: 1.7em;
    }

    .header-sub-title-h1 {
        font-size: 1em;
        font-weight: 800;
        color: #4d4d4d;
        /* border-radius: 3px; */
    }

    .banner-home .header-img {
        width: 31.5rem;
    }
}


/* MAIN */
/* PRODUCE*/
main .container-main {
    margin-top: 5em;
    /* border: 1px solid black; */

}




main #produce {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    padding: 0 3em;
    /* background-color: #bbb; */
}

main #produce h1 {
    font-size: 2em;
    color: #464646;
    /* border-bottom: 4px solid #D59B0F; */
    /* border:1px solid black; */
    margin-bottom: 0.3em;
    padding: 10px 0;
    text-align: center;
}

.garis-bawah {
    padding: 0;
    border: 1px solid #464646;
    width: 7em;
    align-self: center;
    margin-bottom: 2em;
}

main #produce .produce-sub {
    display: flex;
    flex-direction: row;
    /* border: 1px solid black; */
    padding: 0;
}

main #produce .produce-sub .produce-content1 {

    flex-basis: 60%;
    /* border: 1px solid black; */
    padding: 20px 0 0 70px;
}

.produce-content1 p {
    /* border: 1px solid black; */
    color: #464646;
    font-weight: 400;
    font-size: 16px;
    word-spacing: 2px;
    line-height: 1.8;
    text-align: justify;
    margin: 45px 0 0 0;
}

/* main #produce .produce-sub .produce-content1 img{
    width: 40em;
    margin: 0 0 0 4em;
    z-index: -1;
    overflow-x:hidden;
    border: 1px solid black; 

} */
main #produce .produce-sub .produce-content2 {
    flex-basis: 40%;
    /* border: 1px solid black; */

}

main #produce .produce-sub .produce-content2 img {
    width: 25em;
    /* border: 1px solid black;  */
    margin-left: 3em;
}


/* responsive produce */

@media screen and (max-width : 980px) {
    main #produce .produce-sub {
        display: flex;
        flex-direction: column-reverse;
        /* border: 1px solid black; */
    }

    main #produce .produce-sub .produce-content1 {

        /* border: 1px solid black; */
        padding: 0 50px 30px 50px;
    }

    main #produce .produce-sub .produce-content2 {

        /* border: 1px solid black; */
        align-self: center;
    }

    main #produce .produce-sub .produce-content2 img {
        width: 22em;
        /* border: 1px solid black; */
        margin: 0;
    }

    .garis-bawah {
        margin-bottom: 3em;
    }

    main #produce .produce-sub .produce-content1 img {
        margin: 0 0 0 4em;
        /* border: 1px solid black; */
    }
}

@media screen and (max-width : 725px) {
    main #produce .produce-sub .produce-content1 {
        padding: 0 30px 30px 30px;
        /* border: 1px solid black; */

    }

    main #produce .produce-sub .produce-content2 img {
        width: 17em;
        /* border: 1px solid black;  */
    }

    main #produce .produce-sub .produce-content2 {
        /* border: 1px solid black; */
        align-self: center;
    }

    .produce-content1 p {
        /* border: 1px solid black; */
        font-size: 16px;
        text-align: center;
        margin: 20px 0 0 0;
    }

    main #produce h1 {
        text-align: center;
        font-size: 1em;
    }

    .garis-bawah {
        margin-bottom: 2.5em;
    }

    main #produce .produce-sub .produce-content1 img {
        width: 30em;
        margin-left: 10em;
        ;

    }

}

@media screen and (max-width : 576px) {

    main #produce .produce-sub .produce-content2 img {
        margin-top: 30px;
        width: 14em;
        /* border: 1px solid black;  */
    }

    main #produce .produce-sub .produce-content1 {
        padding: 0 0px 30px 0px;
        /* border: 1px solid black; */
    }

    main #produce .produce-sub .produce-content1 p {
        font-size: 14px;
    }
}

/* service */
.service-porta img {

    position: absolute;
    width: 40em;
    left: 0;
    z-index: -1;
}

main #service {
    display: flex;
    flex-direction: column;

    /* border: 1px solid black; */
    background: #ffffff;
    /* background-image: url("/assets/images/service.png"); */
    /* background-repeat: repeat; */
    /* background-size: cover; */
    /* background: hsl(120, 100%, 17%); */
    padding: 0 2em 4em 2em;
    margin: 4em 0 4em 0;
}

main #service h1 {
    font-size: 2em;

    /* border: 1px solid black; */
    margin-top: 1em;
    margin-bottom: 0.3em;
    padding: 10px 0px;
    text-align: center;
    color: #464646;
}

.garis-bawah2 {
    border: 1px solid #464646;
    width: 7em;
    align-self: center;
    margin-bottom: 3.5em;
}

main .service-sub {
    display: flex;
    justify-content: center;
    /* background: rgb(255, 255, 255); */
    /* border: 1px solid black; */
    padding: 0 4em;

}

main .service-sub .service-content {
    border: 2px solid #634500;
    /* padding: 30px; */
    text-align: center;
    flex-basis: 50%;
    background: #ffffff;
    margin: 0 10px;
    border-radius: 10px;
    justify-content: center;
    /* box-shadow: 1px 1px 4px 0px rgba(19, 19, 19, 0.4); */
}

main .service-sub .service-content img {
    /* border: 1px solid black; */
    width: 80%;

    /* max-width: 100%; */

    /* animation: shake 3s;
    animation-iteration-count: infinite; */
}

main .service-sub .service-content:hover {

    animation: shake 1s;
}

.service-content-satu {
    background: #ffffff;
    /* background-image: url(/assets/images/request.jpg);
    background-size: cover; */
    padding: 20px 30px 40px 30px;
    height: 200px;
    margin-top: 0;
    color: #464646;
    border-radius: 10px;
}

.service-content-satu:hover {
    /* background-image: none; */
    /* background-color: #ffffff; */
    /* transition-duration: 0.3s; */

}

.service-content-dua {
    /* background: olivedrab ; */
    background-image: url(/assets/images/ball.jpg);
    background-size: cover;
    background-position: center;
    padding: 20px 30px 40px 30px;
    height: 250px;
    margin-top: 0;
    color: #464646;
}

.service-content-tiga {
    /* background: olivedrab ; */
    background-image: url(/assets/images/ball.jpg);
    background-size: cover;
    background-position: center;
    padding: 20px 30px 40px 30px;
    height: 250px;
    margin-top: 0;
    color: #464646;
}

main .service-sub .service-content .service-content-satu h3 {
    /* border: 1px solid black; */
    max-width: 100%;
    font-size: 18px;
    /* color: rgb(255, 255, 255); */
    margin-top: 0;
}

main .service-sub .service-content .service-content-satu p {
    /* border: 1px solid black; */
    font-size: 15px;
    text-align: left;
    line-height: 1.3;
    word-spacing: 0.5px;
    /* color: #ffffff; */
    margin: 0;
}

main .service-sub .service-content .service-content-dua h3 {
    /* border: 1px solid black; */
    max-width: 100%;
    font-size: 18px;
    color: rgb(255, 255, 255);
    margin-top: 0;
}

main .service-sub .service-content .service-content-dua p {
    /* border: 1px solid black; */
    font-size: 15px;
    /* word-spacing: 0.5px; */
    color: #ffffff;
    margin: 0;
}

@keyframes shake {

    10% {
        transform: translate3d(-3px, 0, 0);
    }

    50% {
        transform: translate3d(3px, 0, 0);
    }

    100% {
        transform: translate3d(1px, 0, 0);
    }
}

/* responsive service */

@media screen and (max-width : 980px) {
    .service-porta img {
        width: 30em;
    }

    main #service {
        /* border: 1px solid black; */
        margin: 5em 0 0 0;
    }

    main .service-sub {
        flex-direction: column;
        /* border: 1px solid black; */

    }

    main .service-sub .service-content {
        /* border: 1px solid black; */

        padding: 0px;
        text-align: center;
        justify-content: center;
        margin: 20px 10px;
    }

    /* main .service-sub .service-content img{

        
    } */
    main .service-sub .service-content .service-content-satu h3 {
        font-size: 20px;
    }

    main .service-sub .service-content .service-content-satu p {
        /* border: 1px solid black; */
        font-size: 15px;
    }
}

@media screen and (max-width : 725px) {
    main .service-sub {
        padding: 0;

    }

    .service-porta img {
        width: 20em;
    }

    main #service h1 {
        font-size: 2em;
        /* color: black; */
    }

}

@media screen and (max-width : 525px) {
    main .service-sub {
        display: flex;
        justify-content: center;
        /* background: rgb(255, 255, 255); */
        /* border: 1px solid black; */


    }

    main .service-sub .service-content {
        /* border: 1px solid black; */
        padding: 0px;
        margin: 15px 10px;
    }

    .service-content-satu {
        background: #ffffff;
        padding: 40px 15px;
        height: 16rem;
        margin-top: 0;

    }

    main .service-sub .service-content .service-content-satu p {
        /* border: 1px solid black; */
        font-size: 14px;
    }
}

/* Partner */
main #partner {
    display: flex;
    flex-direction: column;
    /* border: 1px solid black; */
    background: #ffffff;
    padding: 0em 2em 4em 2em;
    margin: 3em 0 0 0;
}

main #partner h1 {
    font-size: 3.5em;
    /* border: 1px solid black; */
    margin-bottom: 0.3em;
    padding: 10px 0;
    text-align: center;
    /* color: black; */
}

/* FOOTER */
footer {
    margin-top: 10px;
    display: flex;
    flex-direction: column;

    /* box-shadow: -2px -1px 4px 0px rgba(0,0, 0, 0.4); */
    /* border: 1px solid black;  */
}

footer img {
    width: 24rem;
    align-self: center;
    /* z-index: 1; */
   
    /* border: 1px solid black;  */
}

/* footer ul{

} */
footer li {

    list-style-type: none;
    margin: 1em 0;
    /* color: rgb(255, 255, 255); */
    color: rgb(0, 0, 0);
    /* border: 1px solid black; */
}

footer ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

footer ul li a :hover {
    color: #e6a40a;
    /* transition: all 0.5s; */
    font-weight: bold;
}

footer span {
    /* color: #ffffff; */
    color: #000000
}

footer span p {
    display: inline;
    margin-left: 10px;
    font-size: 15px;
}

.footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid black;
    /* padding: 0 5rem; */
    /* background: #634500; */
    /* background: #bd8708; */


}

.footer-sub1 {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    /* border: 1px solid black; */
    padding-left: 6em;
}

.footer-sub1 ul {
    flex-direction: row;
    /* border: 1px solid black; */
    padding: 0;
}

.footer-sub1 li {
    font-size: 15px;
    margin: 10px;
    padding: 0;
    /* border: 1px solid black; */
}

.footer-sub1 li h3 {
    margin: 0px;
    padding: 0;
    /* border: 1px solid black; */
}

.footer-s1-sub ul {
    justify-content: center;
    text-align: left;
}

.footer-s1-sub2 {
    display: flex;
    flex-direction: row;
    justify-content: left;
    flex-wrap: wrap;
    padding: 0px;
    /* border: 1px solid black;  */
}

.footer-s1-sub2 ul {
    /* border: 1px solid black; */
    margin: 0px;

}

.fa-whatsapp {
    color: #25D366;
}

.fa-instagram {
    /* color: linear-gradient(135deg,#405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D,#F56040,#F77737, #FCAF45,#FFDC80); */
    color: #E1306C;
    /* color:#C13584; */
}

/* .footer-sub2{
    display: flex;
    flex-basis: 35%;
    padding: 0px;
}
.footer-sub2 li{
    
    margin: 10px 0 9px 0;
} */
.footer-sub3 {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    /* border: 1px solid black; */
    padding-right: 5em;
}

/* .footer-s3-sub{
    
} */
.footer-s3-sub ul h4 {
    margin: 0 0 10px 0;
    padding: 0;
    /* color: white; */
    color: #000000;
}

.footer-s3-sub ul {
    padding: 0;
    text-align: center;
    /* border: 1px solid black;  */
}

.footer-s3-sub ul li {
    display: inline;
    margin: 5px 7px;
    color: #e6a40a;
    /* border: 1px solid black; */
}
.footer-s3-sub ul li p{
    /* border: 1px solid black; */
    margin: 0;
    padding: 0;
}

.footer-s3-sub ul li span {
    color: #006d18;
    /* border: 1px solid black; */
}

.footer-s3-sub2 ul {
    /* border: 1px solid black;  */
    padding: 0;
    margin: 0;
}

.footer-s3-sub2 ul li {
    text-align: center;
    font-size: 30px;
    font-family: 'Lobster', cursive;
    /* color: #ffffff; */
    color: #006d18;
    /* border: 1px solid black; */
    padding: 0;
    margin: 0 0 10px 0;
}

.footer-main-2 {
    border-top: 1px solid rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    background: #006d18;
    /* color: #ffffff; */
    color: #ffffff;
    font-size: 15px;
}

@media screen and (max-width : 725px) {
    .footer-s3-sub2 ul li {
        text-align: center;
        font-size: 25px;
        font-family: 'Lobster', cursive;
        color: #ffffff;
        /* border: 1px solid black; */
        padding: 0;
        margin: 0 0 5px 0;
    }

    .footer-main {
        padding: 0 5em;
    }

}

@media screen and (max-width : 600px) {
    .footer-main{
        flex-direction: column;
        padding: 0;
    }
    .footer-s1-sub ul {
        text-align: center;
    }
    .footer-s1-sub2 {
        justify-content: center;
    }
    .footer-sub1{
        padding-left: 0;
    }
    .footer-s1-sub2 {
        flex-direction: column;
        text-align: center;

    }
    .footer-sub3 {
        /* padding-right: 0; */
    }

    .footer-sub1 li {
        font-size: 16px;
    }

    footer span p {
        font-size: 14px;
    }

    .footer-s3-sub ul li {
        display: flex;
        justify-content: center;
        margin: 10px 1px;
        /* border: 1px solid black; */
    }
    .footer-s3-sub2 ul li {
        margin: 0;
    }
}

@media screen and (max-width : 575px) {
    .footer-main{
        flex-direction: column;
    }
    footer img {
        width: 19rem;
        align-self: center;
        /* border: 1px solid black;  */
    }

    .footer-s3-sub {
        display: none;
    }

    .footer-s3-sub2 {
        margin-top: 20px;
    }
}




/* ABOUT US */
/* main .head{
    font-size: 2em;
    margin: 0 0 1em 0;
    text-align: center;
    color: olivedrab;

} */
main .container-main-about {
    margin: 30px 0px;
    /* border: 1px solid black; */
    /* border: 1px solid rgb(212, 212, 212);  */

}

main .container-main-about .container-main {
    margin-top: 5em;
}

main .container-main-about #overview {
    display: flex;
    flex-direction: column;
    /* flex-basis: 60%; */
    margin: 0px 320px;
    padding: 0;
    /* background-image: url("../images/background.jpg"); */
    /* background-position: center; */
    /* background-size: cover; */
    /* background-color: #FEF6F5; */
    /* border: 1px solid black; */
}

main .container-main #overview h1 {
    font-size: 2.5em;
    /* border: 1px solid black; */
    margin: 0 0 0.2em 0;
    padding: 0 0 10px 0;
    text-align: center;
    color: #464646;
}

main .overview-sub {
    display: flex;
    flex-direction: row;
    margin-top: -25px;
    /* margin-top: 40px; */
    background-color: white;
    /* border: 1px solid black; */
    /* margin: 0 200px;  */

}

.overview-s-text {
    flex-basis: 100%;
    /* border: 1px solid black; */
    padding: 0;
    margin: 0;
    /* padding: 1em 0 0 7em; */
}

.overview-s-text p {
    /* border: 1px solid black; */
    color: #464646;
    font-size: 16px;
    word-spacing: 2px;
    line-height: 1.5;
    font-weight: 400;
    text-align: justify;
    margin: 0 0 1em 0;
    background-color: white;
}

.overview-s-img {
    flex-basis: 50%;
    margin: 0 20px 0 0;
}

.overview-s-img img {
    /* box-shadow: 0px 2px 4px 0px rgba(0,0, 0, 0.4); */
    border-radius: 5px;
    width: 100%;
    /* border: 2px solid #D59B0F; */

}


/* MISSION */

#mission {
    margin-top: 2em;
    display: flex;
    justify-content: center;
    background-color: #D59B0F;
    /* padding: 0 30px 30px 30px; */
    /* border: 1px solid black; */
    height: 100vh;

}

.mission-sub {
    display: flex;
    flex-direction: row;
    /* justify-content: center;  */
    /* border: 1px solid black; */
    /* width: 100%; */
    margin: 30px;
    padding: 0 7em;
}


main #mission .mission-sub .mission-s-content {

    /* flex-basis: 50%; */
    width: 25rem;
    /* justify-content: center; */
    /* border: 1px solid black; */
    /* padding: 10px; */
    margin: 2em;
    border-radius: 5px;
    /* box-shadow: 0px 0px 0px 0px rgba(0,0, 0, 0.4); */
    /* box-shadow: 0px 3px 7px 0px rgba(0,0, 0, 0.4); */
    /* box-shadow: 0px 0px 6px 0px rgba(0,0, 0, 0.4); */
}

/* main #mission .mission-sub .mission-s-content:hover{
    box-shadow: 0px 3px 7px 0px rgba(0,0, 0, 0.4);
    transition: all 0.1s;

} */
main #mission .mission-sub .mission-s-content .mission-s-c-card {
    position: relative;
    top: 25%;
    margin: 10px;
    /* background: #797979; */
    background: #D59B0F;
    border-radius: 3px;
    /* border: 1px solid black; */
}

main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-img {
    display: flex;
    justify-content: center;
    /* border: 1px solid black; */

}

main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-img img {
    /* border: 1px solid black; */
    margin-top: 10px;
    width: 80px;
}

main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-text {
    text-align: center;
    margin-top: 20px;
    /* border: 1px solid black; */
}

main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-text h1 {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    text-align: center;
    /* align-content: right; */
    /* width:100px; */
    /* text-decoration: underline; */
    background-color: white;
    color: #D59B0F;
    /* border: 1px solid black; */
}

main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-text p {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 23px;
    /* border: 1px solid black; */
    padding: 0 20px;
    margin-bottom: 0px;
}


/* sertification */
main .container-main #sertifikasi {
    display: flex;
    flex-direction: column;
    margin-top: 4em;
    margin-bottom: 4em;
    /* border: 1px solid black; */
}

main .container-main #sertifikasi h1 {
    font-size: 2.5em;
    /* border: 1px solid black; */
    margin: 0;
    margin-bottom: 0.2em;
    padding: 0 0 10px 0;
    text-align: center;
    color: #464646;
}

main #sertifikasi .sertifikasi-sub {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}



/* responsive about-overview */
@media screen and (max-width : 1095px) {
    .overview-s-img img {
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
        /* width: 400px; */
        /* border: 2px solid #D59B0F; */

    }

    .overview-s-text {
        /* font-size: 18px; */
        /* padding: 0 14px; */
        text-align: justify;
        /* border: 2px solid #D59B0F; */
    }

    main .container-main-about #overview {
        margin: 0px 0px;
    }
}

@media screen and (max-width : 980px) {
    main .container-main-about {
        margin: 120px 0px;
        /* border: 1px solid rgb(212, 212, 212);  */

    }

    main .container-main-about #overview {
        margin: 0px 40px;
    }

    .garis-bawah {
        margin-bottom: 2em;
    }

    main .overview-sub {
        flex-direction: column;
        margin-top: -45px;
        /* border: 1px solid black; */

    }

    main .overview-s-img {
        display: flex;
        justify-content: center;
        /* border: 1px solid black; */
        padding: 0;
        margin-bottom: 0 0 20px 0;
    }

    main .overview-s-img {
        align-self: center;
        margin: 0;
    }

    .overview-s-text {
        padding: 0;

        /* border: 1px solid black; */
    }

    .overview-s-text p {
        /* border: 1px solid black; */
        margin: 20px 0;

    }
}

@media screen and (max-width : 627px) {
    main .container-main-about #overview {
        margin: 0px 20px;
    }

    main .overview-sub {
        /* padding: 0 0.5em; */

    }

    .overview-s-text {
        font-size: 16px;
        /* padding: 0 20px; */
    }

}

@media screen and (max-width : 576px) {
    main .container-main-about {
        margin: 30px 0px;
        /* border: 1px solid rgb(212, 212, 212);  */

    }

    .overview-s-text {
        font-size: 15px;
        /* padding: 0 20px; */
        text-align: justify;
    }
}

@media screen and (max-width : 509px) {
    main #overview h1 {
        font-size: 2.5em;
        /* border: 1px solid black; */
    }

    .overview-s-img img {
        width: 350px;
        /* border: 2px solid #D59B0F; */
    }

    main .container-main #overview h1 {
        font-size: 2em;
        /* border: 1px solid black; */
    }
}

@media screen and (max-width : 420px) {
    main .container-main-about #overview {
        margin: 0px;
    }

    main .overview-sub {
        margin-top: -45px;
        padding: 0;
    }

    .overview-s-text {
        font-size: 14px;
        /* padding: 0 20px; */
        text-align: left;
        margin: 0px 10px
    }

    main #overview {
        margin-bottom: 0px;
        /* border: 1px solid black; */
    }

    .garis-bawah {
        margin-bottom: 2px;
        /* border: 1px solid black; */
    }

    .overview-s-img img {
        width: 300px;
        /* border: 2px solid #D59B0F; */
    }

    main #overview h1 {
        font-size: 1em;
        /* border: 1px solid black; */
    }


}

/* responsive about-mission */
@media screen and (max-width : 980px) {
    main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-text h1 {
        font-size: 30px;
        /* border: 1px solid black; */
    }

    main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-text p {
        font-size: 20px;
    }
}

@media screen and (max-width : 940px) {
    main #mission .mission-sub .mission-s-content .mission-s-c-card {
        top: 0;

    }

    main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-text h1 {
        font-size: 30px;
        /* border: 1px solid black; */
    }

    main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-text p {
        font-size: 20px;
    }

    .mission-sub {
        flex-direction: column;
        /* border: 1px solid black; */
        margin-top: 5px;
        padding: 0 10px;
    }

    main #mission .mission-sub .mission-s-content {
        flex-basis: 100%;
        /* border: 1px solid black; */
        /* padding: 0 60px; */
        /* margin: 0px 30px 30px 30px; */
        /* border-radius: 5px; */
        /* box-shadow: 0px 1px 5px 0px rgba(0,0, 0, 0.4); */
        /* box-shadow: 0px 0px 6px 0px rgba(0,0, 0, 0.4); */
    }

    main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-img img {
        width: 70px;
    }
}

@media screen and (max-width : 420px) {
    main #mission .mission-sub .mission-s-content {
        /* display: flex; */
        /* justify-content: center; */
        /* margin: 0px; */
        /* border: 1px solid black; */
        width: 270px;
    }

    main #mission .mission-sub .mission-s-content .mission-s-c-card {

        /* border: 1px solid black; */
    }

    main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-text h1 {
        font-size: 22px;

    }

    main #mission .mission-sub .mission-s-content .mission-s-c-card .mission-s-c-text p {
        font-size: 18px;
        /* width: 300; */
    }

    main #mission .mission-sub .mission-s-content .mission-s-c-card img {
        width: 20px;
    }

    .mission-sub {
        padding: 0 1px;
    }
}

/* certification */

@media screen and (max-width : 744px) {

    /* main #sertifikasi .sertifikasi-sub{
     
    } */
    main #sertifikasi .sert-s-img {
        align-self: center;
        /* border: 1px solid black; */
    }

    main #sertifikasi .sert-s-img1 {
        align-self: center;
        /* border: 1px solid black; */
    }

    main #sertifikasi .sert-s-img img {
        width: 150px;
    }
}

@media screen and (max-width : 635px) {
    main #sertifikasi .sert-s-img1 img {
        width: 340px;
        margin-top: 30px;
    }
}

@media screen and (max-width : 500px) {
    main #sertifikasi .sertifikasi-sub {
        flex-direction: column;
        /* border: 1px solid black; */
    }

    main #sertifikasi .sert-s-img img {
        /* width: 200px; */
    }
}

@media screen and (max-width : 509px) {
    main .container-main #sertifikasi {
        margin-top: 3em;
        /* border: 1px solid black; */
    }

    main .container-main #sertifikasi h1 {
        font-size: 2.5em;
        /* border: 1px solid black; */
    }

}

/* FASILITIES */
/* Production */
main .container-main-facility {
    margin: 6em 5em 3em 5em;
    /* border: 1px solid rgb(212, 212, 212); */

}

main #production .production-sub {
    display: flex;
    margin-top: 5em;
    margin-bottom: 6em;
    /* border: 1px solid black; */
}

/* main #production .production-sub .production-s-text .production-s-title{
    
    
} */
main #production .production-sub .production-s-text h1 {
    font-size: 35px;

    /* border: 1px solid black; */
    color: #464646;
    margin: 0 0 20px 0;
}

.production-s-text {
    flex-basis: 70%;
    font-size: 16px;
    line-height: 1.5;
    text-align: right;
    /* border: 1px solid black; */
    padding: 0 50px;
    /* background-image: url(/assets/images/production.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 10px; */
}

.production-s-text p {
    /* border: 1px solid black; */
    margin: 0 0 20px 0;
}

.production-s-img {
    padding: 0 50px 0 0;
    /* border: 1px solid black; */
    /* padding: 0 30px 0 0; */
}

.production-s-img img {
    /* box-shadow: 0px 2px 4px 0px rgba(0,0, 0, 0.4); */
    /* border-radius: 5px; */
    max-width: 100%;
    height: auto;
    /* border: 2px solid #D59B0F; */

}


/* Processing */

main #processing .processing-sub {
    display: flex;
    margin-top: 40px;
    margin-bottom: 6em;
    /* border: 1px solid black; */
}

/* main #processing .processing-sub .processing-s-text .processing-s-title{
   
   
} */
main #processing .processing-sub .processing-s-text h1 {
    font-size: 35px;
    text-align: left;
    /* border: 1px solid black; */
    color: #464646;
    margin: 0 0 20px 0;
}

.processing-s-text {
    flex-basis: 70%;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    /* border: 1px solid black; */
    padding: 0 50px;
}

.processing-s-text p {
    /* border: 1px solid black; */
    margin: 20px 0 0 0;
}

.processing-s-img {

    padding: 0 0 0 50px;
    /* border: 1px solid black; */
    /* padding: 0 30px 0 0; */
}

.processing-s-img img {
    /* box-shadow: 0px 2px 4px 0px rgba(0,0, 0, 0.4); */
    /* border-radius: 5px; */
    max-width: 100%;
    height: auto;

    /* border: 2px solid #D59B0F; */

}


/* Quality */


main #quality .quality-sub {
    display: flex;
    margin-top: 40px;
    margin-bottom: 6em;
    /* border: 1px solid black; */
}

/* main #quality .quality-sub .quality-s-text .quality-s-title{
    
   
} */
main #quality .quality-sub .quality-s-text h1 {
    font-size: 35px;

    /* border: 1px solid black; */
    color: #464646;
    margin: 0 0 20px 0;
}

.quality-s-text {
    flex-basis: 70%;
    font-size: 16px;
    line-height: 1.5;
    text-align: right;
    /* border: 1px solid black; */
    padding: 0 50px;
}

.quality-s-text p {
    /* border: 1px solid black; */
    margin: 0 0 20px 0;
}

.quality-s-img {
    padding: 0 50px 0 0;
    /* border: 1px solid black; */
    max-width: 100%;
    /* padding: 0 30px 0 0; */
}

.quality-s-img img {
    /* box-shadow: 0px 2px 4px 0px rgba(0,0, 0, 0.4); */
    /* border-radius: 5px; */
    max-width: 100%;
    height: auto;
    /* border: 2px solid #D59B0F;   */
}


/* responsive facilities */
@media screen and (max-width : 980px) {
    main #quality .quality-sub {
        flex-direction: column;
        /* border: 1px solid black; */
    }

    .quality-s-img {
        margin-top: 20px;
        padding: 0 50px;
        text-align: center;
    }

    .quality-s-text {
        flex-basis: 100%;
        text-align: justify;
    }

    main #quality .quality-sub .quality-s-text h1 {
        text-align: center;
    }
}

@media screen and (max-width : 930px) {
    main #production .production-sub {
        flex-direction: column;
        /* border: 1px solid black; */
    }

    .production-s-img {
        margin-top: 20px;
        padding: 0 50px;
        text-align: center;
    }

    .production-s-text {
        flex-basis: 100%;
        text-align: justify;

    }

    main #production .production-sub .production-s-text h1 {
        text-align: center;
    }

    main #processing .processing-sub {
        flex-direction: column-reverse;
        /* border: 1px solid black; */
    }

    .processing-s-img {
        margin-top: 20px;
        padding: 0 50px;
        text-align: center;
    }

    .processing-s-text {
        flex-basis: 100%;
        text-align: justify;
    }

    main #processing .processing-sub .processing-s-text h1 {
        text-align: center;
    }


}

@media screen and (max-width : 576px) {
    main .container-main-facility {
        margin: 4em .5em 1em .5em;
        /* border: 1px solid rgb(212, 212, 212); */

    }

    main #production .production-sub {
        margin-bottom: 5em;
    }

    main #processing .processing-sub {
        margin-bottom: 5em;
    }

    .production-s-text {
        padding: 0 25px;
        font-size: 15px;
        text-align: center;
    }

    .production-s-text p {
        /* border: 1px solid black; */
        margin: 0;
    }

    .production-s-img {
        padding: 0 25px;
    }

    main #production .production-sub .production-s-text h1 {
        font-size: 30px;
    }

    .processing-s-text {
        padding: 0 25px;
        font-size: 15px;
        text-align: center;
    }

    .processing-s-img {
        padding: 0 25px;
    }

    main #processing .processing-sub .processing-s-text h1 {
        font-size: 30px;
    }

    .quality-s-text {
        padding: 0 25px;
        font-size: 15px;
        /* text-justify: newspaper; */
        text-align: center;
    }

    .quality-s-text p {
        /* border: 1px solid black; */
        margin: 0;
    }

    .quality-s-img {
        padding: 0 25px;
    }

    main #quality .quality-sub .quality-s-text h1 {
        font-size: 30px;
    }

}



/* PRODUCT */
header .container-product {
    position: relative;
    text-align: center;
    margin-top: 6em;
}

header .container-product h1 {
    display: inline;
    font-size: 2.5em;
    font-weight: 700;
    color: #4d4d4d;
    margin: 0;
}

.title-head-product {
    margin: 0;
    height: 60px;
    background-color: rgb(255, 255, 255);
    /* padding: 0.1em 0; */
}

main .container-main-product {
    margin-top: 3em;
    /* border: 1px solid rgb(0, 0, 0); */
    background: #ffffff;
    padding: 0px 100px;

}

main .container-main-product #product {
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
    padding: 0 30px 30px 30px;

    /* background-color: white; */
    /* background-color: #FEF6F5; */
    /* border: 1px solid black; */
}

main .container-main-product #product h1 {
    font-size: 3.5em;
    /* border: 1px solid black; */
    margin: 0;
    margin-bottom: 0.2em;
    padding: 0 0 10px 0;
    text-align: center;
    /* color: rgb(180, 180, 180); */
    /* background-color: white; */
}

main .product-sub {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    /* background-color: white; */

}

main .product-sub .product-s-text {
    text-align: left;
    flex-basis: 30%;
    /* border: 1px solid black; */
    padding: 50px 0;
}

main .product-sub .product-s-text h2 {
    font-size: 25px;
    color: #eba605;
    /* border: 1px solid black; */
    /* margin: 0 0 20px 0; */
    /* background-color: white; */
}

main .product-sub .product-s-text p {
    position: absolute;
    width: 25%;
    font-size: 15px;
    line-height: 1.5;
    /* border: 1px solid black; */
    /* margin: 0 0 20px 0; */
    /* background-color: white; */
}

main .product-sub .product-s-img {
    flex-basis: 70%;
}

main .product-sub .product-s-img img {
    max-width: 100%;
    height: auto;
    /* border: 1px solid black; */
}


@media screen and (max-width : 980px) {
    header .container-product {
        margin-top: 7em;
    }

    main .container-main-product {
        padding: 0px 80px;


    }

    main .product-sub {
        flex-direction: column-reverse;
        margin-top: 40px;
        /* border: 1px solid black; */
        /* background-color: white; */

    }

    main .product-sub .product-s-text {
        text-align: center;
        flex-basis: 100%;
        /* border: 1px solid black; */
        padding: 20px 0;
    }

    main .product-sub .product-s-text h2 {
        font-size: 25px;
        color: #eba605;
        /* border: 1px solid black; */
        /* margin: 0 0 20px 0; */
        /* background-color: white; */
    }

    main .product-sub .product-s-text p {
        position: relative;
        width: 100%;
        font-size: 15px;
        /* border: 1px solid black; */
        /* margin: 0 0 20px 0; */
        /* background-color: white; */
    }

    main .product-sub .product-s-img {
        flex-basis: 100%;
    }
}

@media screen and (max-width : 800px) {
    main .container-main-product {
        padding: 0px 60px;


    }
}

@media screen and (max-width : 744px) {
    header .container-product {
        margin-top: 5rem;
    }

    header .container-product h1 {
        font-size: 2.5rem;
    }

}

@media screen and (max-width : 576px) {
    main .container-main-product {
        /* margin-top: 1em; */
        /* border: 1px solid rgb(0, 0, 0); */
        background: #ffffff;
        padding: 0px 10px;

    }

    main .product-sub .product-s-text h2 {
        font-size: 20px;
    }

    main .product-sub .product-s-text p {
        position: relative;
        width: 100%;
        font-size: 12px;
        /* border: 1px solid black; */
        /* margin: 0 0 20px 0; */
        /* background-color: white; */
    }
}

/* contact */
/* header .container-contact {
    display: flex;
    justify-content: center;
    position: relative;
    width: 80%;
    height: 50%;
    text-align: center;
    margin: 6em 0 2em 0;
    border:1px solid black;
}  */
.parent {
    /* border:1px solid black; */
    text-align: center;
    height: 100%;
    display: block;
    background-image: url("../images/370.jpg");
    /* border: 1px solid black; */
    background-position: center center;
    background-size:cover;
    background-repeat: no-repeat;
}

.center {
    margin-top: 80px;
    padding: 0;
    /* background-color: #ffffff; */

    width: 100%;
    /* height: 90%; */
}

.center h1 {
    font-size: 50px;
    margin-bottom: 80px;
    /* border: 1px solid black; */
    text-align: center;
    color: rgb(255, 255, 255);
    text-shadow: 0 5px 3px rgba(0, 0, 0, 0.1);
}

.center-sub {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    /* background-color: #6e1919; */
    text-align: center;
}

.center-sub-content {
    margin: 1rem 3rem;
    /* border: 1px solid #ffffff; */
}

.center-sub-content span {
    color: #ffffff;
}

.center-sub-content h2 {
    font-size: 22px;
    width: 400;
    color: #ffffff;
    /* border: 1px solid black; */
    margin-bottom: 0px;
    text-shadow: 0 5px 3px rgba(0, 0, 0, 0.1);
}

.center-sub-content h3 {
    /* border-top:  1px solid black; */
    font-size: 18px;
    color: #ffffff;
    margin-top: 0px;
    margin-bottom: 20px;
    text-shadow: 0 5px 3px rgba(0, 0, 0, 0.1);
}

  .head-mail {
    width: 100%;
    padding: .5em .5em;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5em;
	font-weight:600;
	line-height:20px;
    text-align:center;
    color: #3e3e3e;
  }
  .sub-head-mail{
    font-size: 0.7em;
    text-align: center;
    margin-bottom: 1em;
  }

#frmContact {
	border-top: #ffffff 2px solid;
    background: #ffffff;
	padding: 10px;
    margin: 1rem;
    width: 50%;
    display: inline-block;
    text-align: left;
    outline: none;
}

#frmContact div label {
	/* margin: 5px 0px 0px 10px;     */
    font-size: 14px;
	color: #8bb2ff;
}

.demoInputBox {
    /* font-size: 0.7rem; */
    /* font-weight: 200; */
    color: #464646;
	border: #b1b1b1 1px solid;
	border-radius: 4px;
	background-color: #FFF;
	width: 100%;
    margin-top: 5px;
    margin-bottom:10px;
    padding: 7px;
    outline: none;
}
.demoInputBox:focus{
    border: 1px solid #0C0;
}
textarea{
        border: 1px solid #ccc;
        padding: 6px 10px;
        width: 100%;
        color: #555;
        resize:none;
        overflow:auto;
}

.error {
	background-color: #FF6600;
    padding: 8px 10px;
    color: #FFFFFF;
    border-radius: 4px;
    font-size: 0.9em;
}

.success {
	background-color: #34b20e;
	padding: 8px 10px;
	color: #FFFFFF;
	border-radius: 4px;
    font-size: 0.9em; 
}

.info {
	font-size: .8em;
	color: #FF6600;
	letter-spacing: 2px;
	padding-left: 5px;
}

.btnAction {
    display: inline;
	background-color: #8bb2ff;
    padding: 10px 40px;
    color: #FFF;
    border: #8bb2ff 1px solid;
	border-radius: 4px;
}

.btnAction:focus {
	outline:none;
}
@media all and (max-width: 550px) {
    #frmContact{
        width: 100%;
        margin: 0;
    }

    .head-mail {
        font-size: 1em;
    }
    .contact-row {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width : 980px) {
    .center {
        margin-top: 100px;
    }
}

@media screen and (max-width : 576px) {
    .center {
        margin-top: 70px;
        width: 100%;
    }

    .center-sub {
        display: flex;
        flex-direction: column;
    }

    .center h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .center-sub-content span {
        font-size: 8px;
    }

    .center-sub-content h2 {
        font-size: 17px;
    }

    .center-sub-content h3 {
        /* border-top:  1px solid black; */
        font-weight: 400;
        font-size: 15px;
        margin-bottom: 0;
    }
}

/* .center {
    position: absolute;
    width: 60%;
    height: 60%
    left: 50%;
    top: 50%; 
    transform: translate(-50%, -50%);
    border: 5px solid #FFFF00;
    padding: 5px;
  } */
/* header .container-contact .contact-main{
    width: 200px;
    border:1px solid black;
} */
/* header .container-contact h1 {
    display: inline;
    font-size: 2.5em;
    font-weight: 800;
    color: #4d4d4d;
    margin: 0;
} */
/* .center .title-head-contact{
    transform: translate(50%, 50%);
    background-color: rgb(255, 255, 255);
    padding: 0.1em 0;
} */



/* SLIDE */
.slideshow-container {

    width: 100%;
    position: relative;
    /* margin: auto; */
    /* border: 1px solid black; */
    justify-content: center;
}

.slide {
    display: flex;
    justify-content: center;
    /* border: 1px solid black; */
}

.slide img {
    width: 100%;
    /* border-radius: 5px; */
    /* border: 1px solid black; */


}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: rgb(172, 172, 172);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot:hover {
    background-color: #eba605;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media only screen and (max-width: 765px) {
    .slideshow-container {

        width: 100%;
        position: relative;
        margin: auto;
        /* border: 1px solid black; */
        justify-content: center;
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 576px) {
    .slideshow-container {

        width: 100%;
        position: relative;
        margin: auto;
        /* border: 1px solid black; */
        justify-content: center;
    }

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}




/* PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgb(255, 255, 255);
}

.preloader .loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font: 14px arial;
}

.preloader .loading img {
    width: 100%;
}


/* progress */
.progress {
    height: 1.5px;
    width: 0%;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    animation: progress 1s linear;
}

@keyframes progress {
    to {
        background-color: #ffffff;
        width: 100%;
    }
}

:root .progress {
    /* Pause the animation */
    animation-play-state: paused;
    /* Bind the animation to scroll */
    animation-delay: calc(var(--scroll) * -1s);
    /* These last 2 properites clean up overshoot weirdness */
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

@media screen and (max-width : 980px) {
    .progress {
        top: 0;
    }
}

@media screen and (max-width : 744px) {
    .progress {
        top: 0;
    }
}

/* TOOLTIP */
.tooltip {
    position: relative;
    display: inline-block;
    /* border-bottom: 1px dotted black; */
    /* color: #ffffff; */
    /* color: #000000; */
    font-size: 14px;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    /* background-color: rgb(255, 255, 255); */
    color: #006d18;
    text-align: center;
    /* border-radius: 6px; */
    /* padding: 5px 0; */
    font-size: 10px;
    /* Position the tooltip */
    position:absolute;
    z-index: 1;
    top: 70%;
    left: 50%;
    margin-left: -60px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;

}