:root {
    --fm: 'Raleway', 'sans-serif';
    --fm-thin: 100;
    --fm-light: 300;
    --fm-regular: 400;
    --fm-bold: 700;
    --fm-black: 900;
    --green75: rgba(105, 207, 23, 0.75);
    --green90: rgba(105, 207, 23, 0.75);
    --green: #69cf17;
    --green_1: #62be19;
    --green_2: #4e9f0d;
    --green_3: #519e16;
    --gray: grey;
    --gray_p: #dedede;
    --white: white;
    --dark: #060002;
    --black: rgba(30, 30, 30, 0.1);
    --col-1: calc(100% / 12 * 1);
    --col-2: calc(100% / 12 * 2);
    --col-3: calc(100% / 12 * 3);
    --col-4: calc(100% / 12 * 4);
    --col-5: calc(100% / 12 * 5);
    --col-6: calc(100% / 12 * 6);
    --col-7: calc(100% / 12 * 7);
    --col-8: calc(100% / 12 * 8);
    --col-9: calc(100% / 12 * 9);
    --col-10: calc(100% / 12 * 10);
    --col-11: calc(100% / 12 * 11);
    --col-12: calc(100% / 12 * 12);
    --col-lg-6: calc(100% / 12 * 6);


}

body {
    font-family: var(--fm);
    background: var(--dark);
}

@media (max-width:768px) {
    .col-md-6 {
        width: var(--col-6) !important;
    }
}

@media (max-width:768px) {
    .text-md {
        font-size: 15px !important;
    }
}

@media (max-width:768px) {
    .text-md-20 {
        font-size: 20px !important;
    }
}

@media (max-width:400px) {
    .text-sm-auto {
        font-size: 40px;
    }
}

@media (max-width:400px) {
    .text-sm-autoo {
        font-size: 8px;
    }
}

@media (max-width:400px) {
    .text-sm-autooo {
        font-size: 15px;
    }
}

@media (max-width:576px) {
    .col-sm-12 {
        width: var(--col-12) !important;
    }
}

.wrap {
    flex-wrap: wrap !important;
}

.padbot {
    padding-bottom: 40px !important;
}

.padtop {
    padding-top: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;

}

header {
    width: 100%;
    min-height: 770px;
    background: url(./photo\ gamburger.jpg)no-repeat center;
    background-size: cover;

}


.container {

    max-width: 1140px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;

}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12 {
    width: var(--col-12);
    padding: 0 15px;
}

.col-4 {
    width: var(--col-4);
    padding: 0 15px;
}

.text-center {
    text-align-last: center !important;
}

.justify-beetwen {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.justify-center {
    justify-content: center !important;
}

/*------------------justify-items start--------------------*/

.justify-item-start {
    justify-items: flex-start;
}


/*-----------align item start---------------*/

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center !important;
}

.align-content-center {
    align-content: center;
}

/*--------------flex start---------------*/

.flex-direction-column {
    flex-direction: column;
}

.flex {
    display: flex;
}

/*--:::::::::::::::::::: Header start:::::::::::::::::::::::::::--*/

.logo {
    font-family: var(--fm);
    font-weight: var(--fm-regular);
    font-size: 24px;
    background: var(--green_1);
    padding: 10px 20px;
    border: 1px solid var(--green);
    border-radius: 5px;
    color: var(--white);

}

nav ul {
    flex-wrap: wrap;
    justify-content: space-between;
}

nav ul li a {
    font-family: var(--fm);
    font-weight: var(--fm-light);
    font-size: 20px;
    color: var(--green_3);
    padding: 20px 20px;
    display: flex;
    margin-left: 20px;

}

nav ul li a:hover {
    background: var(--green);
    color: #fff;

}

nav ul li .active {
    padding: 20px 20px;
    background: var(--green);
    color: #fff;

}





.active span {
    display: block;
    text-align: center;
    color: var(--green);
    background: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 6px;
}

header h1 {
    font-family: var(--fm);
    font-weight: var(--fm-black);
    font-size: 72px;
    margin-top: 186px;
    color: var(--green_3);

}

header p:first-of-type {
    font-family: var(--fm);
    font-weight: var(--fm-regular);
    font-size: 36px;
    color: var(--green_1);
}

header p:nth-of-type(2) {
    font-family: var(--fm);
    font-weight: var(--fm-regular);
    font-size: 18px;
    color: var(--gray_p);
}

header p:nth-of-type(3) {
    font-weight: var(--fm-thin);
    font-size: 50px;
    background: var(--green75);
    padding: 28px 90px;
    color: var(--white);
    margin-top: 40px;
}
/* responsive main */
/* ex sm 0-576 */
@media (max-width: 576px){
    header {
        width: 100%;
        min-height: 300px;
        background: url(./photo\ gamburger.jpg)no-repeat center;
        background-size: cover;
    
    }
    header .logo {
        
        font-size: 14px;
        padding: 5px 10px;
    
    }
    
   header  nav ul {
        flex-wrap: wrap;
        
    }
    
   header  nav ul li a {
        font-family: var(--fm);
        font-weight:bold;
        font-size: 13px !important;
        color: var(--green_3);
        padding: 4px 10px;
        display: flex;
        margin-left: 20px;
    
    }
    
   header  nav ul li a:hover {
        background: var(--green);
        color: #fff;
    
    }
    
    nav ul li .active {
        padding: 2px 5px;
    }
    .active span {
       padding: 2px 2px;
       
    }
    
    
header h1 {
    font-family: var(--fm);
    font-weight: var(--fm-black);
    font-size: 30px;
    margin-top: 40px;
    color: var(--green_3);
    text-align: center;

}

header p:first-of-type {
    font-family: var(--fm);
    font-weight: var(--fm-regular);
    font-size: 20px;
    color: var(--green_1);
    display: block;
    margin: auto;
}

header p:nth-of-type(2) {
    font-family: var(--fm);
    font-weight: var(--fm-regular);
    font-size: 14px;
    color: var(--gray_p);
    text-align: center;
}

header p:nth-of-type(3) {
    font-weight: var(--fm-thin);
    font-size: 10px;
    background: var(--green75);
    padding: 10px 20px;
    color: var(--white);
    margin-top: 40px;
}
    
}

/*--:::::::::::::::::::: Header end:::::::::::::::::::::::::::--*/

/*--:::::::::::::::::::: Main start:::::::::::::::::::::::::::--*/


main ul {
    width: 560px;
    margin-top: 50px;
    margin-bottom: 70px;
}

main ul li a {
    color: var(--gray);
    font-family: var(--fm);
    font-weight: var(--fm-bold);
    font-size: 20px;

}

main ul li .active {
    color: var(--green_2);
}




main ul li a:hover {
    color: var(--green_2);
}

main .container .row .img {
    background-image: url(./gamburgercha.jpg);
    background-size: cover;
    height: 354px;
    width: 100%;
    position: relative;



}




main .container .row .img:hover button {
    opacity: 1;
}

main .container .row .img .price {
    position: absolute;
    bottom: 0;
    left: 0;

}

main .container .row .img .price span {
    display: block;
    font-family: var(--fm);
    font-weight: var(--fm-regular);
    font-size: 16px;
    background: var(--green);
    padding: 25px 60px;
    color: var(--white);

}

main .container .row .img:hover .price {
    opacity: 0;
}

main .container .row .img button {
    width: 100%;
    height: 100%;
    background: var(--green90);
    font-weight: var(--fm-bold);
    font-size: 24px;
    color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    transition: 500ms;
}

main .container .row .col-4 h2 {
    margin-top: 36px;
    margin-bottom: 15px;
    font-family: var(--fm);
    font-weight: var(--fm-bold);
    font-size: 24px;
    color: var(--green_3);

}

main .container .row .col-4 p {
    font-family: var(--fm);
    font-weight: var(--fm-regular);
    font-style: 16px;
    margin-bottom: 50px;
    color: var(--gray_p);
}

/*--:::::::::::::::::::: Header end:::::::::::::::::::::::::::--*/

/*--::::::::::::::::::::  section start:::::::::::::::::::::::::::--*/

.section-text {
    width: 100%;

    background-image: url(./oshpaz.jpg);
    background-size: cover;
}



.section-text .container .row h2 {
    font-weight: bold;
    font-size: 36px;
    color: var(--green);
    margin-bottom: 100px;
    margin-top: 80px;




}

.section-text .container .row p {
    font-weight: var(--fm-regular);
    font-size: 18px;
    color: var(--gray_p);
    line-height: 23px;
    margin-bottom: 30px;

}




/*--:::::::::::::::;;;section 2start:::::::::::;;;*/



.section-map{
    width: 100%;
    padding: 30px 0;
}

.section-map h2{
    display: block;
    margin:20px auto;
    color: var(--green_1);
    font-size: 20px ;
   
    
}

/* responsive section */
/* ex sm 0-576px */
@media (max-width:576px){
    
.section-text {
    width: 100%;
   height: 150px;
   overflow: scroll;
   padding: 0 15px;
    background-image: url(./oshpaz.jpg);
    background-size: cover;
}



.section-text .container .row h2 {
    font-weight: bold;
    font-size: 20px;
    color: var(--green);
    margin-bottom: 20px;
    margin-top: 30px;

}

.section-text .container .row p {
    font-weight: var(--fm-regular);
    font-size: 13px;
    color: var(--gray_p);
    line-height: 15px;
    margin-bottom: 30px;

}





/*--:::::::::::::::;;;section map::::::::::;;;*/



.section-map{
    width: 100%;
    padding: 30px 0;
}
.section-map .map .iframe{
    height:200px;
}
.section-map h2{
    display: block;
    margin:20px auto;
    color: var(--green_1);
    font-size: 20px ;
   
    
}
}
/*::::::::::::::::::::Footer start::::::::::::::::::::::::::::::::::*/

footer .container .row nav .laga {

    font-family: var(--fm);
    font-weight: var(--fm-regular);
    font-size: 15px;
    background: var(--green_1);
    padding: 5px 10px;
    border: 1px solid var(--green);
    border-radius: 5px;
    color: var(--white);

}

footer nav {
    margin-top: 70px;
    display: flex;
    margin-left: 60px;

}

footer {
    width: 100%;
    height: 255px;

}

footer .container .row nav span {
    color: var(--green_2);

    font-weight: var(--fm-thin);
    font-size: 24px;
}

footer ul {

    margin-top: 30px !important;
    margin: auto;
    flex-wrap: wrap;
}

footer ul li a {
    color: var(--gray_p);

}

footer p {
    font-weight: var(--fm-thin);

    margin-top: 30px;
    color: var(--gray);
}

.marauto {
    margin: auto;
}

/* responsive footer */
/* ex sm 0-576 */
@media (max-width: 576px) {
    .section2 {
        display: none;
        width: 100%;
        height: 150px !important;
       
    }
    
    .section2 h2 {
        font-weight: var(--fm-bold);
        font-size: 20px;
        color: var(--green_1);
    
    
        margin-bottom: 60px;
    }
    footer .container .row nav .laga {
        font-size: 10px;
        padding: 5px 10px;
        
    }

    footer nav {
        margin-top: 50px;
        display: flex;
       padding: 0 10px;
        align-items:center;
       margin-left: 0;

    }
    footer nav .span-number{
        font-size: 10px !important;
    

    }
    footer ul li a {
        font-size: 14px;
    
    }
    footer {
        width: 100%;
        height: 255px;

    }

    footer .container .row nav span {
        color: var(--green_2);

        font-weight: var(--fm-thin);
        font-size: 24px;
    }

    footer ul {

        margin-top: 20px !important;
        flex-direction: column;
    }

    footer ul li a {
        color: var(--gray_p);

    }

    footer p {
        font-size: 10px;
        font-weight: var(--fm-thin);
        text-align: center;
        margin-top: 30px;
        color: var(--gray);
        margin-bottom: 30px !important;
    }
}

/*--:;;;;;;;;;;;;;;;;;;;;;; footer end--::::::::::::::::::*/



/*:::::::::::::::::::::::::::::::::::::::::::::FINISH:::::::::::::::::::::::::::::::::::::::::*/