*{
    padding: 0;
    margin: 0;
}


.container {
    display: grid;
    grid-template-rows: 125px 1500px 800px;
    min-width: 100%;
    grid-template-areas:
     " home_header  "
     " home_content "
     " home_footer  ";  
     background-color: #f9fff9;
}


/* HEAD */
.container .home_header{ 
    grid-area: home_header;
    background-color: #191919;
    display: grid;
}

/* HEAD LOGO */
.container .home_header #HEAD-logo{
    width: 9%;
    height: 90%;
    object-fit: cover;
    margin-left: 100px;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 2px 2px 3px 1px rgb(127, 182, 127);
    border-bottom-left-radius: 100px ;
    border-bottom-right-radius: 100px ;

   
}

/* HEAD MENU */
.container .home_header .HEAD-nav_row {
    width: 700px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    position: absolute;
    top: 10%;
    left:48%;
    transform: translate(-50%,-50%);
    margin-left: 5px;
    
}

.container .home_header .HEAD-nav_row .nav-row-btn {
    font-size: 23px;
    font-weight: bold;
    font-family:  sans-serif;
    display: inline;    
    padding: 70px  10px ;
    margin-right: 5px;

    
}
.container .home_header .HEAD-nav_row .nav-row-btn a {
    text-decoration: none;
    list-style-type: none;
    color: rgb(248, 253, 249);
    transition: 0.25s;  
}

/* Lớp Phủ */
.container .home_header .HEAD-nav_row .nav-row-btn_list  .menu-carpet-glass{
    width:  100%;
    height: 100%;
    position: absolute;
    opacity: 1;
    z-index: -1;    
}

/* Menu Con */
.container .home_header .HEAD-nav_row .nav-row-btn_list{
    position: relative;
    display: inline;
    
}
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list{
    position: absolute;
    left: -554px;
    top: 144px ;
    width: 1269px;
    height: 350px;
    display: none;  
}
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list  #list-title{
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    opacity: 1;
    color: #f1bc7a;
}
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list  #list-singe{
    text-align: left;
    list-style-type: none;
    display: block;
    margin-left: 50px;
    width: 200px; 
}

/* Coffee */
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list .menu-list-coffee{
    width: 300px;
    height: 300px;
    margin-top: 10px;
    margin-left: 20px;
    
}

/* Tea */
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list .menu-list-tea{
    width: 300px;
    height: 300px;
    margin-top: 10px;
    margin-left: 20px;
}
/* Food */
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list .menu-list-food{
    width: 300px;
    height: 300px;
    margin-top: 10px;
    margin-left: 20px;
}
/* Seler */
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list .menu-list-seler{
    width: 200px;
    height: 250px;
    margin-top: 60px;
    margin-left: 70px;
    background-image: url(https://www.highlandscoffee.com.vn/skins/default/images/bgmenu.jpg);
    text-align: right;
    word-spacing: 1px;
}

.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list  #title-seler{
    font-size: 25px;
    font-family: cursive;
    font-weight: bold;
    padding-right:  25px;
    position: relative;
    top: 40px;
    
}
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list .menu-list-seler #best-list-img {
    width: 150px;
    height: 100px;
    padding-top: 55px;
    margin: auto;
    
}
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list .menu-list-seler #best-list-img img {
    width: 100%;
    height: 200%;
    object-fit: cover;
}

.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list .menu-list-seler .best-list-title-sale{
    position: absolute;
    top: 65px;
    right: 140px;
    color: rgb(200, 11, 11);   
    font-family: 'Courier New', Courier, monospace;
    font-size: 50px;
    transform: rotate(-45deg);
}
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list .menu-list-seler #best-list-sale-star{
    font-size: 60px;
    position: absolute; 
    top: 20px;
}
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list .menu-list-seler .best-list-price-sale{
    font-size: 30px;
    color:   #dfdfd4;
    text-align: center;
    margin: auto;
    padding-top: 50px;
}


/* HOVER */
.container .home_header .HEAD-nav_row .nav-row-btn_list:hover .menu_list{
    display: flex;
    opacity: 0.7;
    background-color: #191919;
}
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list:hover .menu-carpet-glass{    
    background-color: #191919;
}
.container .home_header .HEAD-nav_row .nav-row-btn:hover #text-effect {
    color: rgb(200, 161, 114);
    
}
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list  #list-singe:hover{
    color: rgb(200, 161, 114);
    text-shadow: 1px 1px #e4b7b7;
}
.container .home_header .HEAD-nav_row .nav-row-btn_list .menu_list .menu-list-seler:hover #title-seler{
    color: rgb(64, 176, 68);
}
.container .home_header .HEAD-register .button:hover:before {
    height: 100%;
}
/* HEAD Register */
.container .home_header .HEAD-register {
    position: absolute;
    top: 10%;
    left:85%;
    transform: translate(-50%,-50%);
    width: 230px;
    transition: 0.6s; 
    text-align: center;
}
.container .home_header .HEAD-register .button {
    --color: #1e3b28;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, sans-serif;
    color: white;
    padding: 25px 30px;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    border: none;
    font-size: 17px;
    position: relative;
    isolation: isolate;
  }
.container .home_header .HEAD-register .button #btn-trans{
    text-decoration: none;
    color: rgb(248, 253, 249);
}
.container .home_header .HEAD-register .button:before {
    content: "";
    height: 0;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background-color: var(--color);
    z-index: -1;
    transition: height 0.25s ease-in;
    border-radius: 100rem;
}


/* CONTENT */
.container .home_content .content_list_img{
    background-color: rgb(150, 108, 108);
    height: 400px;
}
.container .home_content .content_list_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container .home_content{ 
    grid-area: home_content;
    margin-top: 10px;
    margin-bottom: 10px;
    display: grid; 
}


/* CONTENT PC */
.container .home_content .content_pc{
    display: grid;
    grid-template-columns: 500px 250px 250px;
    grid-template-rows: 300px 300px 300px;
    margin: auto;
    gap: 50px;
}

.container .home_content .content_pc .nav_row {
    grid-column: 1 / -1;
    background-color: transparent;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}
.container .home_content .content_pc .nav_row p{
    position: absolute;
    right: -50px;
    top: 1px;
    font-size: 40px;
    color: rgb(55, 55, 35);
    z-index: -1;
    text-shadow: 4px 4px rgb(196, 141, 141);
}
.container .home_content .content_pc .nav_row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
    object-position: 0px -200px;
    filter: drop-shadow(0 0 5px);
    border-radius: 100px;
}
.container .home_content .content_pc .nav_row .content-title-sale {
    position: absolute;
    top: -18px;
    left: -30px;
    font-size: 45px;
    transform: rotate(-45deg);
    color: red;
    text-shadow: 2px 2px  white;
}
.container .home_content .content_pc .nav_col_left{
    position: relative;
    grid-column: 1 / 2;
    grid-row: 2 / -1;
    background-color: rgb(176, 136, 143);
}
.container .home_content .content_pc  .nav_col_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
    filter: drop-shadow(1px 0 15px);
}
.container .home_content .content_pc  .nav_col_left .title-coffee{
   position: absolute;
   left: 50px;
   bottom: 45px;
   font-size: 30px;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   font-weight: bold;
   background:-webkit-linear-gradient(white , rgb(0, 0, 0));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

/* CONTENT RIGHT 1 */
.container .home_content .nav_col_right_1{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background-color: whitesmoke;
    position: relative;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 70px;
    display: flex;
    filter: drop-shadow(0 0 5px);
    background-color: #d49463;
}
.container .home_content .nav_col_right_1 img{
    width: 100%;
    height: 70%;
    object-fit: cover;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 70px;
    z-index: 2;
    filter: drop-shadow(0 0 5px);
    opacity: 1;   
}
.container .home_content .nav_col_right_1 .overlay{
    position: absolute;
    top: 0;

    width: 99.9%;
    height: 85%;
    z-index: 1;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 70px;
    object-fit: cover;
    image-rendering: pixelated;
    object-position: -100px 100px;
    filter: drop-shadow(0 0 5px);
    object-fit: cover;
}
.container .home_content .nav_col_right_1 .overlay img{
    width: 100%;
    height: 70%;
    object-fit: cover;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 70px;
    z-index: 2;
    filter: drop-shadow(0 0 5px);
    opacity: 1;
}
.container .home_content .nav_col_right_1 p{
    position: absolute;
    bottom: -10px;
    left: 60px;
    text-shadow: 2px 2px gray;
    font-size: 25px;
    font-family:  'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


/* CONTENT 2 */
.container .home_content .nav_col_right_2{
    grid-column: 3 / -1;
    grid-row: 2 / 3;
    background-color: rgb(59, 55, 134);
    position: relative;
}
.container .home_content .nav_col_right_2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 5px);
    image-rendering: pixelated;
}
.container .home_content .nav_col_right_2 p{
    text-align: right;
    font-size: 25px;
    color: whitesmoke;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    right: 20px;
    text-shadow: 2px 0 gray;
}

/* CONTENT BOTTOM */
.container .home_content .nav_col_right_bottom{
    grid-column: 2 / -1;
    grid-row: 3 / -1;
    position: relative;
}
.container .home_content .nav_col_right_bottom #myVideo{
    width: 100%;
    height: 100%;
}
.container .home_content .nav_col_right_bottom #status-video{
    padding: 4px 40px;
    position: absolute;
    left: 0px;
    bottom: 35px;
    border: none;
    outline: none;
    background-color: transparent;
    transition: 0.5s ease-in-out;
}
.container .home_content .nav_col_right_bottom #status-video:hover{
    background-color: rgb(10, 9, 9);
    color: whitesmoke;
}


/* FOOTER */
.container .home_footer{ 
    grid-area: home_footer;
    /* background-color: rgb(95, 195, 125); */
    position: relative;
}

.container .home_footer .col-md-12{
    background-color: pink;
    height: 400px;
    
}
.container .home_footer .col-md-12 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}
.container .home_footer .col-md-12 a{
    position: absolute;
    top: 0;
    display: inline-block;
    padding: 10px 10px;
    border: 999px solid white;
}
.container .home_footer .delivery{
    position: absolute;
    top: 100px;
    left: 10px;
    width: 500px;
    height: 200px;
    text-align: center;
}
.container .home_footer #delivery-title-banner{
    font-size: ;
    font-family:OpenSans-Bold;
    line-height: 64.32px;
    font-size: 48px;
    margin: 0 0 10px;
    color: #ffffff;
}
.container .home_footer #delivery-tsub{
    font-size: 21.44px ;
    font-family:OpenSans-Bold;
    color: #ffffff;
    margin-bottom: 40px;
}
.container .home_footer #delivery-btn{
    text-decoration: none;
    line-height: 21.44px;
    font-family:OpenSans-Bold;
    color: #ffffff;
    border-radius: 100px;
    padding: 15px 30px 15px;
    text-transform: uppercase;
    background-color: #ffffff;
    color: #bd0017;   
}
.container .home_footer .logo-btn-footer{
    height: 200px;

    margin-top: 50px;
    display: grid;
    grid-template-columns: 40% 60%;
    
}
.container .home_footer .logo-btn-footer .logo-btn-replay{
    grid-column: 1 / 2 ;    

    text-align: center;
}
.container .home_footer .logo-btn-footer .logo-btn-replay p{
    color: #444444;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 39.6px;
    margin: 0px 0px 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.container .home_footer .logo-btn-footer .logo-btn-replay a{
    background-color: #bd0017;
    border-radius: 30px;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, 'Times New Roman', Times, serif;
    line-height: 48px;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    
}

.container .home_footer .logo-btn-footer .logo-btn-input-search{
    grid-column: 2 / -1 ;    
}
.container .home_footer .logo-btn-footer .logo-btn-input-search p{
    font-size: 20;
    line-height: 28px;
    padding-left: 50px;
    padding-top: 15px;
}
.container .home_footer .logo-btn-footer .logo-btn-input-search .input-group{
    margin-top:15px;
    margin-left: 50px;
    width: 70%;
    height: 45px;
    display: inline-block;
}
.container .home_footer .logo-btn-footer .logo-btn-input-search #input-search-control{
    background-color: #ffffff;
    outline: none;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px ;
    height: 100%;
    width: 100%;
    border: 1px solid rgb(215, 213, 213);
}
.container .home_footer .logo-btn-footer .logo-btn-input-search #btn-respond-search{
    background-color: tan;
    outline: none;
    width: 70px;
    height: 44.5px;
    border: none;
    cursor: pointer;
    margin-left: -5px;
    border-top-right-radius: 50px ;
    border-bottom-right-radius: 50px;
    text-align: center;
    color: whitesmoke;
    background-color: #bd0017;
}
.container .home_footer .footer-contact{
    margin: auto;
    height: 100px;
    width: 400px;
    /* background-color: pink; */
    text-align: center;
}
.container .home_footer .footer-contact p{
    font-family:Geneva, Tahoma, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #191919;
    padding-left: 15px;
}
.container .home_footer .footer-contact .fa{
    font-size: 40px;
    cursor: pointer;
    border-radius: 100rem;
    padding-left: 20px;
    text-align: left;
    color: rgb(117, 115, 115);
}
.container .home_footer .footer-contact .fa-facebook-square{
    color: #2a6496;
}
.container .home_footer .footer-contact .fa-instagram{
    color: #df4176;

}
.container .home_footer .footer-contact .fa-twitter-square{
    color: #1D9BF0;
}







.container .home_footer .footer-copy-right{
    width: 100%;
    height: 50px;
    background-color: #191919;
}
.container .home_footer .footer-copy-right p{
    width: 95%;
    padding:10px 0 20px;
    height: 40px;
    text-align: right;
    line-height: 25px;
    color: #ffffff;
}
