* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(22, 80, 87);
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

.background_wave {
    position: fixed;
    margin-top: 0;
    right: 0;
    bottom: 0;
    z-index: -55;
}

header {
    width: 45%;
    height: 500px;
    float: left;
    position: fixed;
    /* border: 2px solid red; */
}

.header_content {
    width: 80%;
    height: 420px;
    /* margin: auto; */
    margin-top: 30px;
    margin-left: 30px;
    color: #099;
    /* border: 2px solid red; */
}

.header_title {
    width: 100%;
    height: 150px;
    position: relative;
    background-color: #fff;
    /* border: 1px solid black; */
}

.header_title_content,
.header_perant_content {
    width: 80%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* border: 1px solid black; */
}

.header_title_content i, .header_perant_content i {
    margin-right: 25px;
    font-size: 50px;
    font-weight: 900;
}

.header_title_content span {
    font-size: 37px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: capitalize;
}

.header_perant {
    width: 48%;
    height: 100px;
    margin-top: 25px;
    float: left;
    position: relative;
    background-color: #fff;
    transition: .5s;
    /* border: 1px solid royalblue; */
}

.header_perant .header_perant_content i {
    font-size: 25px;
    margin-right: 10px;
}

.header_perant .header_perant_content a {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: capitalize;
    color: #099;
    transition: .5s;
}

.header_menu,
.header_menu span,
.header_menu i {
    background-color: #099;
    color: #fff;
}

.header_about, .header_contact {
    float: right;
}

.header_perant:hover {
    background-color: #099;
    color: #fff;
    cursor: pointer;
}

.header_perant:hover .header_perant_content a {
    color: #fff;
}

/* -----------------------------------------Menu section header -------------------------------------- */

.container {
    width: 48%;
    margin-top: 30px;
    margin-right: 3%;
    float: right;
    /* border: 1px solid red; */
}

.menu_sec_header {
    height: 80px;
    background-color: rgba(0, 0, 0, 0.6);
    position: relative;
}

.menu_sec_content {
    width: 85%;
    height: 50%;
    /* margin: auto; */
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* border: 1px solid black; */
}

.menu_sec_header ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.menu_sec_header ul li {
    letter-spacing: 1.5px;
}

.menu_sec_header ul li a {
    color: #fff;
    width: 100%;
    margin-right: 17%;
    font-weight: 100;
    font-size: 20px;
    padding: 0 10px;
    display: block;
    text-transform: capitalize;
    position: relative;
}

.menu_sec_header ul li a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 11px;
    width: 83%;
    height: 2px;
    transition: 1s;
    opacity: 0;
    background-color: #96FEFF;
}

.menu_sec_header ul li a:hover::after {
    width: 83%;
    height: 4px;
    bottom: -12px;
    opacity: 1;
}

.menu_sec_header ul li a:hover {
    color: #96FEFF;
}

.link_checked_auto::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 11px;
    width: 83%;
    height: 4px;
    transition: 1s;
    opacity: 1;
    color: #96FEFF;
    background-color: #96FEFF;
}

/* -------------------------- Iced coffee items ------------------- */

.iced_coffee {
    width: 100%;
    height: 170px;
    margin: 20px 0px;
    /* border: 1px solid black; */
}

.iced_coffee img {
    float: left;
}

.iced_coffee .iced_info {
    width: 70%;
    height: 100%;
    float: right;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    color: #fff;
    transition: .5s;
    /* border: 1px solid rgb(228, 0, 0); */
}

.iced_coffee .iced_info:hover{
    background-color: rgba(0, 0, 0, 0.8);
}

.iced_coffee .iced_title {
    font-size: 25px;
    display: inline;
    float: left;
}

.iced_coffee .iced_price {
    float: right;
    font-size: 22px;
    font-weight: bolder;
    color: #96FEFF;
}

.iced_coffee .text_info {
    width: 100%;
    margin-top: 50px;
    line-height: 1.8;
    font-size: 18px;
    /* border: 1px solid blue; */
}

.hot_coffe,
.fruit_juice,
.about_sec_title,
.special_sec_title,
.contact_sec_title {
    width: 100%;
    height: 50px;
    margin: auto;
    margin-top: 10px;
    letter-spacing: 5px;
    background-color: rgba(0, 153, 153, 0.5);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding-top: 10px;
}

.about_sec, .about_sec_p2 {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.6);
}

.about_sec .about_title {
    text-align: center;
    color: rgb(16, 195, 195);
    padding-top: 50px;
}

.about_sec .about_info {
    margin-top: 30px;
}

.about_sec .about_info img {
    width: 35%;
    height: 240px;
    float: left;
}

.about_sec .about_info .right_text_info {
    width: 60%;
    float: right;
    color: #fff;
    line-height: 1.8;
    font-size: larger;
    /* border: 1px solid red; */
}

.about_sec_p2 .content {
    width: 90%;
    height: 90%;
    margin: auto;
    padding-top: 40px;
    color: #fff;
    font-size: larger;
    line-height: 1.8;
    /* border: 1px solid red; */
}

.p2_img_info {
    width: 100%;
    height: 200px;
    /* border: 1px solid red; */
}

.p2_info {
    width: 55%;
    height: 100%;
    float: left;
}

.p2_title {
    color: #099;
    font-size: 25;
}

.p2_img_info img {
    float: right;
    width: 40%;
    height: 100%;
    margin-right: 10px;
}

/* -------------------------- Specail items section ------------------- */

.special_container {
    width: 100%;
    height: 1300px;
    /* border: 1px solid red; */
}

.special_sec {
    width: 47%;
    height: 380px;
    margin-top: 30px;
    float: left;
    transition: .5s;
    background-color: rgba(0, 0, 0, 0.6);
    /* border: 1px solid red; */
}

.special_sec:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.special_right {
    float: right;
}

.special_sec img {
    width: 100%;
    height: 40%;
}

.special_info {
    padding: 20px;
    height: 59%;
    /* border: 1px solid red; */
}

.special_title {
    color: #099;
    padding: 15px;
}

.special_info p {
    color: #fff;
    line-height: 2;
}

/* --------------------------Contact section ------------------------- */
.contact_sec_p1 {
    width: 100%;
    height: 200px;
    margin-top: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    /* border: 1px solid red; */
}

.contact_sec_p1 .contact_sec_content {
    width: 80%;
    height: 80%;
    margin: auto;
    padding-top: 5%;
    color: #fff;
    /* border: 1px solid red; */
}

.contact_sec_p1 .contact_sec_p1_title {
    color: rgb(24, 207, 207);
}

.contact_sec_p1 p {
    padding-top: 20px;
    line-height: 2;
}

.contact_sec_p2 {
    width: 70%;
    height: 500px;
    margin-top: 20px;
    margin-bottom: 100px;
    float: right;
    background-color: rgba(0, 0, 0, 0.6);
}

.contact_sec_p2_content {
    width: 80%;
    height: 90%;
    margin: auto;
    margin-top: 30px;
    /* border: 1px solid red; */
}

.contact_sec_p2_content input, .contact_sec_p2_content textarea {
    width: 100%;
    margin-top: 30px;
    color: #fff;
    padding: 20px;
    border: none;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    font-size: larger;
}

.contact_sec_p2_content textarea {
    width: 80%;
    height: 150px;
    margin-bottom: 30px;
    font-size: larger;
}

.contact_sec_p2 .contact_btn {
    font-size: larger;
    font-weight: 500;
    float: right;
    padding: 12px 40px;
    color: #099;
    background-color: #fff;
}

.contact_sec_p2 .contact_btn:hover {
    color: #fff;
    background-color: #099;
}
