:root {
    --m-color: #314771;
    --w-color: #fff;
}

/* new css */

/* @font-face {
    font-family: tahoma;
    src: url(../fonts/Tahoma-Font);
} */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    list-style: none;
    
    /* font-family: "Baskervville", serif;
    font-weight: 400;
    font-style: normal; */
}

body {
    overflow-x: hidden;
    background-color: #F3F1E8;
    font-size: 16px;
    font-family: 'Calibri';
    font-family: 'Calibri','tahoma', sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1077px;
    padding: 0 15px;
    margin: auto;
}

/* header */
header {
    /* position: relative; */
    /* height: 115vh; */
}

.header_container {
    margin-top: 50px;
    height: 103vh;
    /* background-position: center; */
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
}

.header_container .container {
    position: relative;
    height: 100%;
}

.mobile_icon {
    display: none;
    width: 24px;
    position: absolute;
    right: 20px;
    z-index: 2;
    cursor: pointer;
    border: 0;

    background-color: transparent;
}

.menu_block {
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 23px 20px;
    display: flex;
    align-items: center;

    background: #F4F1EA;
}

.header_home .menu_block {
    padding: 5px 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.menu_block_wrapped {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1800px;
    margin: auto;
}

.logo_div {
    width: 180px;
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
}

.header_home .logo_div {
    width: 120px;
    position: static;
    transform: translateX(0);
}

.header_home .nav {
    padding-left: 64px;
}

.nav_list {
    display: flex;
}

.nav_item {

}

.nav_item + .nav_item {
    padding-left: 48px;
}


.nav_link {
    font-weight: bold;
    text-transform: capitalize;
    position: relative;

    color: var(--m-color);
}

.nav_link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    height: 2px;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s ease-out all ;

    background-color: var(--m-color);
}

.nav_link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    height: 2px;
    width: 100%;
    left: 0;
    transform: translateX(0);
    transition: 0.4s ease-out all ;

    background-color: var(--m-color);
}

.nav_item:hover .nav_link::after {
    width: 90%;
    left: 5%;
    transition: 0.5s ease all;
    transform: translateX(0);
}

.mob_item {
    display: none;
}

.language_list {
    display: flex;
    margin-left: auto;
}

.language_item {
    padding: 0 8px;
}

.language_link {
    font-weight: 600;
    color: var(--m-color);
    position: relative;
}

.language_link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    height: 2px;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s ease-out all ;

    background-color: var(--m-color);
}

.language_item:hover .language_link::after {
    width: 90%;
    left: 5%;
    transition: 0.5s ease all;
    transform: translateX(0);
}

.language_link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    height: 2px;
    width: 100%;
    left: 0;
    transform: translateX(0);
    transition: 0.4s ease-out all ;

    background-color: var(--m-color);
}

.header_title {
    /* position: absolute;
    bottom: 100px;
    left: 50%;
    top: 84%; */
    /* transform: translate(-50%, -50%); */
    text-align: center;
    min-height: 50px;
    width: 40%;
    padding: 0 15px;
    margin: 50px auto;
    /* font-family: "Baskervville", serif; */
    font-weight: 400;
    font-style: normal;
    
    color: var(--m-color);
}

/*  footer */
.footer_container {
    background-color: #A6A6A6;
    padding: 20px 0;
}

.footer_block {
    display: flex;
    justify-content: space-between;
    color: var(--w-color);
}

.footer_link {
    color: var(--w-color)
}

.container_wrapper {
    background: #F3F1E8;
    padding-bottom: 48px;
}

.container_wrapper img {
    display: block;
    width: 100%;
    margin-top: 48px;
    /*max-width: 600px;
    margin-left: auto;*/
}

.text_container {
    width: 100%;
    line-height: 1.4;
    /* font-family: "Baskervville", serif; */
    font-weight: 400;
    font-style: normal;

    color: var(--m-color);
}

.text_container h1 {
    font-size: 32px;
}

.text_container h3 {
    font-size: 24px;
}

.text_container p {
    font-size: 16px;
    font-weight: 600;
}

/* about page */

.about_content {
    margin: 24px 0;
    color: var(--m-color);
}

.about_content h1 {
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 24px;
}

.about_content h3 {
    margin-top: 18px;
    margin-bottom: 6px;
}

.about_content h3 + p {
    margin-top: 12px;
}

/* contact us */

.contact_content {
    margin-top: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    

    color: var(--m-color);
}

.contact_content h1 {
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 24px;
}

.contact_content h2 {
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 24px;
}

.contact_content p {
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.contact_content p a {
    color: var(--m-color);
}

/* product list */
.product_content h1 {
    text-align: center;
    text-transform: capitalize;
    margin-top: 24px;

    color: var(--m-color);
}

.product_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.product_item {
    width: calc(100% / 3);
    min-width: 324px;
    max-width: 324px;
    padding: 12px 24px;
}

.product_wrapper {
    /* padding: 12px 0 12px 12px; */
    position: relative;
    /* border-radius: 12px; */
    border: 1px solid gray;
    overflow: hidden;
    transition: all .3s ease-in-out;

    background-color: var(--w-color);
}

.product_wrapper:hover {
    box-shadow: 0 2px 9px 0 rgba(0,0,0, 0.3);
}

.product_wrapper img:not(.product_actsis) {
    max-height: 100%;
    transition: all .3s ease;
}

.product_img_wrapper {
    height: 300px;
}

.product_url {
    display: inline-flex;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
}

.product_actsis {
    position: absolute;
    right: 0;
    top: 0;
    width: 140px;
}

.product_wrapper:hover img:not(.product_actsis) {
    /* right: 10px;
    top: 10px; */
    transform: scale(1.03);
}

.product_info {
    padding: 8px 12px;
    background-color: var(--w-color);
}

.product_title {
    font-size: 24px;
    margin-bottom: 18px;
    transition: all 0.4s ease-in;
    text-transform: capitalize;

    color: var(--m-color);
}

.product_wrapper:hover .product_title {
    text-decoration: underline;
}

.product_info h4, .product_info p {
    font-size: 16px;
    margin-bottom: 4px;

    color: var(--m-color);
}

/* detail page */
.detail_content {

}

.detail_title {
    margin-top: 36px;
    text-transform: uppercase;

    color: var(--m-color)
}

.detail_block {
    margin-top: 24px;
}

.detail_actsis {
    position: absolute;
    width: 200px;
    right: 0;
}

.detail_desc {
    display: flex;

    color: var(--m-color);
}

.detail_text {
    width: 60%;
    padding-bottom: 24px;
}

.detail_product {
    padding-bottom: 24px;
    /* position: relative; */
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.detail_text h3 {
    margin-top: 18px;
    margin-bottom: 6px;
}

.detail_text h3 + p {
    margin-top: 12px;
}

.bg_page {
    background-image: url('../logo/teegarden-cross.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.detail_product > img {
    margin-left: auto;
    width: 200px;
}

@media screen and (max-width: 1660px) {
    .header_container {
        /* height: 86vh; */
    }
}

@media screen and (max-width: 1500px) {
    .header_container {
        /* height: 77vh; */
    }
}

@media screen and (max-width: 1280px) {
    .product_item {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 1200px) {
    .header_container {
        /* height: 62vh; */
    }
    .nav_item + .nav_item {
        padding-left: 24px;
    }
}

@media screen and (max-width: 992px) {
    header {
        width: 100%;
        /* height: 50px; */
        /* position: fixed; */
        /* z-index: 99999; */
        background-color: #F3F1E8;
    }
    .header_container {
        /* background-position: center; */
        background-position: center center;
        height: 50vh;
    }
    .menu_block_wrapped {
        padding: 5px 15px;
    }
    .mobile_icon {
        display: block;
    }
    .logo_div {
        width: 100px;
        position: static;
        transform: translateX(0);
    }
    .nav {
        display: none;
        position: absolute;
        left: 0;
        top: -20px;
        width: 100%;
        padding: 20px;
        height: 300px;
        z-index: 1;

        background: var(--w-color);
        box-shadow: 0 5px 33px 0 rgba(0, 0, 0, .5);
    }
    .nav_list {
        display: block;
    }
    .nav_item + .nav_item {
        padding-left: 4px;
    }
    .nav_item {
        padding: 4px;
    }
    .mob_item, .mob_item .language_list {
        display: flex;
        margin-left: unset;
    }
    .mob_item, .mob_item .language_item {
        padding: 0 16px 0 0;
    }
    .language_list {
        display: none;
    }
    .header_title {
        font-size: 1.5rem;
        top: 82%;
        width: 85%
    }
    .product_item {
        width: calc(100% / 2);
    }
    .detail_desc {
        flex-wrap: wrap-reverse;
    }
    .detail_text {
        width: 100%;
        margin-bottom: 24px;
    }
    .detail_product {
        /* width: 100%; */
    }
    .detail_product img {
        /* width: 25vw; */
        margin-left: unset;
    }
    .bottols {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .header_container {
        height: 40vh;
    }
    .footer_block {
        flex-wrap: wrap;
    }
    .footer_block p {
        width: 100%;
        text-align: center;
    }
    .footer_block p + p {
        margin-top: 12px;
    }
    .product_list {
        display: block;
    }
    .product_item {
        margin: auto;
    }
}

@media screen and (max-width: 600px) {
    .product_item {
        width: 100%;
    }
}


/* comment end */