*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}
:root {
    --main-color:#B11116;
    --text-color: #000000;
    --text-color2 : #fff;
    --bg-color2: #fff;
    --color-grey:#EAEAEA;
    --color-black: #4B3C39;
    --big-font:5rem;
    --h2-font:2.25rem;
    --p-font:20px;
}
*::selection {
    background: var(--main-color);
    color: #fff;
}
html{
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}
body{
    margin: 0px;
    padding: 0px;
    color: var(--text-color);
    background: var(--bg-color2);
}
header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 80px;
    background: var(--color-grey);
    color: var(--text-color);
}
.logo { 
    top: 0;
    left: 0;
    width: 100%;
    width:70px;
    height:60px;
}
.navbar{
    display: flex;
}
.navbar a{
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 10px 60px;
    font-weight: 500;
    text-decoration: none;
    
}
.navbar a:hover {
    color: var(--main-color);
    transition: .4s;
}
#menu-icon{
    font-size: 2rem;
    cursor: pointer;
    display: none;
}
.btn { 
    display: inline-block;
    padding: 7px 27px;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
}
.btn:hover {
    background-color: #9d0a0a;
    transition: all 0.3s ease 0s;
} 
.home {
    width: 100%;
    min-height: 90vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    align-items: center;
}
.home-text img {
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    display: block;
    height: auto;
    left: 100px;
    right: 100px;
    position: absolute;
    top: 100px;
    max-width: 100%;
    width: 1400px;
}
.home-text img,p{
    position: absolute;
}
.txt-home {
    color: var(--text-color2);
    text-align: left;
    left: 100%;
    top: 100%;
    margin-bottom: 120px;
    margin-right: 200px;
    transform: translate(50%);
    -webkit-transform: translate(50%);
    -moz-transform: translate(50%);
    -o-transform: translate(50%);
}
.txt-home h1{
    line-height: 1.7;
    font-size: 30;
    color: var(--color-black);
}
.txt-home p{
    padding-top: 30px;
    font-size: 20;
    line-height: 1.7;
    color: var(--color-black);
}
.body-1{
    margin-left: 100px;
    text-decoration: none;
    top: -120px;
    color: #4B3C39;
}
.breadcrumb {
    margin-top: -140px;
    margin-left: 50px;
    font-size: 18px;
}
.breadcrumb-item a {
    color: #4B3C39;
    text-decoration: none;
}
.choose {
    margin-left: 150px;
    margin-top: 50px;
}
.choose h1{
    font-size: 28px;
}
.choose p{
    font-size: 18px;
}
.choose-menu img {
    height: 13rem;
    width: 14rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 3rem;
    margin-top: 70px;
 
}
.choose-menu img:hover{
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    cursor: pointer;
}
.choose-menu h1{
    font-size: 18px;
    margin-left: 70px;
    margin-top: 20px;
}
.btn-more {
    display: inline-block;
    padding: 7px 20px;
    background: #C5E3C7;
    color: #198F1E;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    text-decoration: none;
    margin-top: 100px;
    margin-left: 37.5%;
}
footer{
    padding: 30px 680px;
    margin-top: 100px;
    color: #AEAEAE;
}
footer p{
    margin: 0;
    padding: 0;
    align-items: center;
    text-align: center;
    position: center;
}