@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
   padding: 0;
   margin: 0;
   box-sizing: border-box;
   font-family: "Poppins", sans-serif;
}
body {
   background-color: black;
}
#btn i {
    background-color: red;
    color: #ffffff;
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    cursor: pointer;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header {
    background-color: #000000;
    height: 90px;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
header .navbar-expand-lg {
    padding: 20px 80px;
}
header .navbar-expand-lg .navbar-brand  {
    font-size: 35px;
    color: #ffffff;
    text-transform: uppercase;
}
header .navbar-expand-lg .navbar-brand span {
    color: red;
    font-weight: 700;
}
header .navbar-expand-lg .navbar-toggler {
    /* color: #ffffff; */
    font-size: 20px;
}
header #x {
    margin-left: 200px;
    background-color: #000000;
}
header #x .nav-item .nav-link {
    margin: 0 5px;
    font-size: 20px;
    color: #ffffff;
    transition: all 1s ease;
}
header #x .nav-item .nav-link:hover {
    color: #ff0000;
}
header #x .nav-item .active {
    color: #ff0000;
}
header #dark-mode {
    background-color: #ff0000;
    color: #ffffff;
    cursor: pointer;
    padding: 9px 20px;
    font-size: 18px;
    margin: 0 0 10px 290px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 1s ease;
}
header #dark-mode:hover {
    background-color: #ffffff;
    color: #ff0000;
}
.dark {
    background-color: #5e4336;
    height: 100vh;
    color: #000;
}

/* */
@media screen and (max-width: 600px) {
header .navbar-expand-lg {
    padding: 10px 20px;
}
header .navbar-expand-lg .navbar-brand {
    font-size: 25px;
}
header #x {
    margin-left: 0px;
}
header #dark-mode {
    margin-left: 0px;
}
}
/* */
@media screen and (min-width: 601px) and (max-width:768px) {
header .navbar-expand-lg {
    padding: 10px 20px;
}
header .navbar-expand-lg .navbar-brand {
    font-size: 30px;
}
header .navbar-expand-lg .navbar-toggler-icon {
    font-size: 27px;
}
header #x {
    margin-left: 0px;
}
header #x .nav-item .nav-link {
    font-size: 22px;
}
header #dark-mode {
    margin-left: 0px;
}
}
/* */
@media screen and (min-width: 769px) and (max-width: 992px) {
header .navbar-expand-lg {
    padding: 10px 40px;
}
header .navbar-expand-lg .navbar-brand {
    font-size: 28px;
}
header #x {
    margin-left: 0px;
}
header #dark-mode {
    margin-left: 0px;
}    
}
/*  */
@media screen and (min-width: 993px) and (max-width: 1200px)  {
header .navbar-expand-lg {
    padding: 20px 40px;
}
header .navbar-expand-lg .navbar-brand  {
    font-size: 30px;
}
header #x {
    margin-left: 75px;
}
header #x .nav-item .nav-link {
    margin: 0 10px;
}
header #dark-mode {
    padding: 9px 15px;
    margin-left: 100px;
}
}
/*  */
@media screen and (min-width: 1201px) and (max-width: 1500px)  {
header .navbar-expand-lg {
    padding: 20px 40px;
}
header .navbar-expand-lg .navbar-brand  {
    font-size: 30px;
}
header #x {
    margin-left: 300px;
}
header #x .nav-item .nav-link {
    margin: 0 10px;
}
header #dark-mode {
    padding: 9px 20px;
    margin-left: 170px;
}
}
/* HOME*/
.div-container-1 {
    width: 85%;
    margin: auto;
    height: 550px;
    display: flex;
    justify-content: space-between;
    padding: 120px 0 50px 0;
    position: relative;
}
.div-container-1 .div-text-1 {
    width: 41%;
}
.div-container-1 .div-text-1 b {
    display: inline-block;
    background-color: #ff0000;
    color: #ffffff;
    padding: 7px 40px;
    font-size: 20px;
    border-radius: 2px 20px 2px 20px;
    margin: 20px 0;
}
.div-container-1 .div-text-1 b span {
    color: #ffffff;
    font-size: 25px;
}
.div-container-1 .div-text-1 b i {
    font-size: 25px;
}
.div-container-1 .div-text-1 p {
    font-size: 30px;
    color: #ffffff;
}
.div-container-1 .div-text-1 p  span {
    color: red;
}
.div-container-1 .div-button-1 {
    margin: 50px 0 0 0;
}
.div-container-1 .div-button-1 .button-2 {
    background-color: red;
    padding: 10px 24px;
    font-size: 20px;
    border: none;
    border-radius: 2px 15px 2px 15px;
    transition: all 1s ease;
}
.div-container-1 .div-button-1 .button-2:hover {
    background-color: #ffffff;
    color: red;
}
.div-container-1 .div-button-1 .button-3 {
    color: #ff0000;
    padding: 10px 24px;
    font-size: 20px;
    border: none;
    border-radius: 2px 15px 2px 15px;
    margin-left: 20px;
    transition: all 1s ease;
} 
.div-container-1 .div-button-1 .button-3:hover {
    color: #ffffff;
    background-color: red;
}
.div-container-1 .div-button-1 .logo-3 i {
    font-size: 25px;
}
.animation-1 {
    background-color: #ffffff;
    height: 70px;
    width: 300px;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 50px;
    position: absolute;
    top: 280px;
    left: 600px;
    animation-name: key;
    animation-duration: 8s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}
@keyframes key {
   0% {
      translate: 0 0;
   }
   50% {
      translate: 0 30px;
   }
   100% {
      translate: 0 0;
   }
}
.animation-1 .anim-1 {
    margin: 15px 0 0 10px;
}
.animation-1 .anim-1 h2 {
    color: red;
    font-size: 20px;
}
.animation-1 .anim-1 p {
    font-weight: 600;
}
.animation-1 i {
    color: #ffffff;
    background-color: red;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    translate: 35px 0;
}
.animation-2 {
    background-color: #ffffff;
    width: 240px;
    height: 160px;
    padding: 10px;
    border-radius: 10px;
    position: absolute;
    right: -80px;
    animation-name: keys;
    animation-duration: 8s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}
@keyframes keys {
   0% {
      translate: 0 0;
      rotate: 0deg;
   }
   50% {
      translate: 0 30px;
      rotate: 8deg;
   }
   100% {
      translate: 0 0;
      rotate: 0deg;
   }
}
.animation-2 .img{
    width: 70px;
    height: 70px;
    border-radius: 35px;
}
.div-container-1 img {
   width: 360px;
   height: 360px;
   border-radius: 180px;
   margin-right: 90px;
}
.animation-2 h2 {
    color: #ff0000;
    font-size: 20px;
}
.animation-2 p {
    font-size: 18px;
    color: #000000;
}
span {
    color: #ff0000;
}
@media screen and (max-width: 600px) {
.div-container-1 {
    width: 100%;
    margin: 80px 0 200px 0;
    flex-direction: column;
    padding: 0px 0 50px 0;
}
.div-container-1 .div-text-1 {
    width: 100%;
    text-align: center;
}
.div-container-1 .div-text-1 b {
    padding: 7px 30px;
}
.div-container-1 .div-text-1 p {
    font-size: 22px;
    width: 83%;
    margin: auto;
    line-height: 35px;
}
.div-container-1 .div-button-1 {
    margin: 30px 0 0 0;
}
.animation-1 {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.animation-2 {
    display: none;
} 
.div-container-1 img {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%, -50%);
} 
}
/*  */
@media screen and (min-width: 601px) and (max-width:768px) {
.div-container-1 {
    width: 100%;
    margin: 80px 0 180px 0;
    flex-direction: column;
    padding: 0px 0 50px 0;
}
.div-container-1 .div-text-1 {
    width: 100%;
    text-align: center;
}
.div-container-1 .div-text-1 b {
    padding: 7px 30px;
}
.div-container-1 .div-text-1 p {
    font-size: 22px;
    width: 83%;
    margin: auto;
    line-height: 35px;
}
.div-container-1 .div-button-1 {
    margin: 30px 0 0 0;
}
.animation-1 {
    padding: 28px 50px 28px 28px;
    justify-content: space-between;
    width: 60%;
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}
.animation-2 {
    justify-content: space-between;
    width: 50%;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
} 
.div-container-1 .div-img {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%, -50%);
} 
}    
/*  */
@media screen and (min-width: 769px) and (max-width: 992px) {
.div-container-1 {
    width: 100%;
    margin: 80px 0 180px 0;
    flex-direction: column;
    padding: 0px 0 50px 0;
}
.div-container-1 .div-text-1 {
    width: 100%;
    text-align: center;
}
.div-container-1 .div-text-1 b {
    padding: 7px 30px;
}
.div-container-1 .div-text-1 p {
    font-size: 22px;
    width: 83%;
    margin: auto;
    line-height: 35px;
}
.div-container-1 .div-button-1 {
    margin: 30px 0 0 0;
}
.animation-1 {
    padding: 28px 50px 28px 28px;
    justify-content: space-between;
    width: 60%;
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}
.animation-2 {
    justify-content: space-between;
    width: 50%;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
} 
.div-container-1 .div-img {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%, -50%);
}
}    
/*  */
@media screen and (min-width: 993px) and (max-width: 1200px)  {
.div-container-1 {
    width: 95%;
}
.div-container-1 .div-text-1 p {
    font-size: 28px;
}
.animation-1 { 
    top: 70%;
    left: 43%;
}
.animation-2 {
    right: -1%;
}
}    
/*  */
@media screen and (min-width: 1201px) and (max-width: 1500px)  {
.div-container-1 {
    width: 95%;
}
.div-container-1 .div-text-1 p {
    font-size: 28px;
}
.animation-1 { 
    top: 70%;
    left: 43%;
}
.animation-2 {
    right: -1%;
}
}
/*  */
.div-container-2 {
    padding: 70px 0 0 0;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.div-container-2 .div-text-2 {
    border: 1px solid#ffffff;
    background-color: #000000;
    margin: 0 15px;
    width: 320px;
    height: 210px;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    transition: all 1s ease;
}
.div-container-2 .div-text-2 img {
    width: 140px;
    height: 140px;
    border-radius: 70px;
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 5px #ff0000 solid;
    cursor: pointer;
    transition: all 1s ease;
}
.div-container-2 .div-text-2 .text-1 {
    margin: 60px 0 0 0;
    padding: 15px;
}
.div-container-2 .div-text-2 .text-1 h2 {
   font-size: 20px;
   font-weight: 700;
   color: red;
   transition: all 1s ease;
}
.div-container-2 .div-text-2:hover h2 {
    color: #ffffff;
}
.div-container-2 .div-text-2 .text-1 p {
    font-weight: 500;
    color: #ffffff;
    transition: all 1s ease;
}
.div-container-2 .div-text-2:hover p {
    color: red;
}
.div-container-2 .div-text-2 .text-1 .shop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.div-container-2 .div-text-2 .text-1 span {
    color: red;
    font-size: 20px;
    font-weight: 700;
    transition: all 1s ease;
}
.div-container-2 .div-text-2:hover span {
    color: #ffffff;
}
.div-container-2 .div-text-2 .text-1 i {
    display: inline-block;
    color: #ffffff;
    background-color: red;
    padding: 8px 20px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease;
}
.div-container-2 .div-text-2:hover i {
    background-color: #ffffff;
    color: red;
    rotate: 360deg;
}
@media screen and (max-width: 600px) {
.div-container-2 {
    padding: 250px 0 0 0;
    width: 85%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 120px 0px;
}
.div-container-2 .div-text-2 {
    width: 80%;
    margin: auto;
    height: auto;
}
}
/*  */
@media screen and (min-width: 601px) and (max-width:768px) {
.div-container-2 {
    padding: 250px 0 0 0;
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 120px 10px;
}
.div-container-2 .div-text-2 {
    width: 45%;
    margin: auto;
    height: auto;
}
.div-container-2 .div-text-2 .text-1 h2 {
   font-size: 18px;
}
.div-container-2 .div-text-2 .text-1 p {
    font-size: 14px;
}
}
/*  */
@media screen and (min-width: 769px) and (max-width: 992px) {
.div-container-2 {
    padding: 250px 0 0 0;
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 120px 10px;
}
.div-container-2 .div-text-2 {
    width: 45%;
    margin: auto;
    height: auto;
}
.div-container-2 .div-text-2 .text-1 h2 {
   font-size: 18px;
}
.div-container-2 .div-text-2 .text-1 p {
    font-size: 14px;
}
}    
/*  */
@media screen and (min-width: 993px) and (max-width: 1200px)  {
.div-container-2 {
    padding: 100px 0 0 0;
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 120px 10px;
}
.div-container-2 .div-text-2 {
    width: 40%;
    margin: auto;
    height: auto;
}
.div-container-2 .div-text-2 .text-1 h2 {
   font-size: 18px;
}
.div-container-2 .div-text-2 .text-1 p {
    font-size: 14px;
}
}    
@media screen and (min-width: 1201px) and (max-width: 1500px)  {
.div-container-2 {
    padding: 100px 0 0 0;
    width: 95%;
    margin: auto;
    display: flex;
    gap: 10px;
}
.div-container-2 .div-text-2 {
    width: 30%;
    height: auto;
}
.div-container-2 .div-text-2 .text-1 h2 {
   font-size: 18px;
}
.div-container-2 .div-text-2 .text-1 p {
    font-size: 14px;
}    
}
/* ---------------------------------*/
.div-container-3 {
    padding: 150px 0 0 0;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
}
.div-container-3 img {
    width: 440px;
    height: 440px;
    margin-bottom: 50px;
    border-radius: 220px;
    border-left: 10px solid #ff0000;
    animation-name: keys;
    animation-duration: 8s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}
@keyframes keys {
   0% {
      translate: 0 0;
   }
   50% {
      translate: 0 30px;
   }
   100% {
      translate: 0 0;
   }
}
.div-container-3 .div-text-4 {
    margin-left: 100px;
    width:80% ;
}
.div-container-3 .div-text-4  h2 {
    font-size: 40px;
    color: #ff0000;
    text-shadow: 3px 3px 10px #ffffff;
}
.div-container-3 .div-text-4 .text-1 {
    width: 80%;
}
.div-container-3 .div-text-4 .text-1 h3 {
    color: #ffffff;  
    font-size: 40px;
}
.div-container-3 .div-text-4 .text-1 p {
    color: #d1d1d1;
    font-size: 20px;
}
.div-container-3 .div-text-4 .numbers {
    width: 80%;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.div-container-3 .div-text-4 .number-1 {
    position: relative;
}
.div-container-3 .div-text-4 .number-1::after {
    content: " ";
    position: absolute;
    top: 0;
    right: -40px;
    width: 4px;
    height: 80px;
    background-color: #ff0000;
}
.div-container-3 .div-text-4 .numbers div h4 {
    color: #ff0000;
    font-size: 40px;
}
.div-container-3 .div-text-4 .numbers div p {
    color: #ffffff;
    font-size: 20px;
}
.div-container-3 .div-text-4 a {
    display: inline-block;
    margin: 40px 0;
    background-color: #ff0000;
    padding: 10px 25px;
    font-size: 22px;
    border: none;
    border-radius: 2px 15px 2px 15px;
    transition: all 1s ease;
}
.div-container-3 .div-text-4 a:hover {
    background-color: #ffffff;
    color: #ff0000;
    rotate: 4deg;
}
/*  */
@media screen and (max-width: 600px) {
.div-container-3 {
    padding: 80px 0 0 0;
    width: 95%;;
    flex-direction: column;
}
.div-container-3 img {
    width: 300px;
    height: 300px;
    border-radius: 150px;
}
.div-container-3 .div-text-4 {
    margin: 30px 0 0 0;
    width:100% ;
}
.div-container-3 .div-text-4  h2 {
    font-size: 40px;
}
.div-container-3 .div-text-4 .text-1 {
    width: 100%;
}
.div-container-3 .div-text-4 .text-1 h3 {
    font-size: 30px;
}
.div-container-3 .div-text-4 .text-1 p {
    font-size: 16px;
}
.div-container-3 .div-text-4 .numbers {
    width: 80%;
    flex-direction: column;
}
.div-container-3 .div-text-4 .number-1::after {
    right: -30px;
}
.div-container-3 .div-text-4 .numbers div h4 {
    font-size: 40px;
}
.div-container-3 .div-text-4 .numbers div p {
    color: #ffffff;
    font-size: 20px;
}
}
/*  */
@media screen and (min-width: 601px) and (max-width:768px) {
.div-container-3 {
    padding: 80px 0 0 0;
    width: 95%;;
    flex-direction: column;
}
.div-container-3 img {
    width: 300px;
    height: 300px;
    border-radius: 150px;
}
.div-container-3 .div-text-4 {
    margin: 30px 0 0 0;
    width:100% ;
}
.div-container-3 .div-text-4  h2 {
    font-size: 40px;
}
.div-container-3 .div-text-4 .text-1 {
    width: 100%;
}
.div-container-3 .div-text-4 .text-1 h3 {
    font-size: 30px;
}
.div-container-3 .div-text-4 .text-1 p {
    font-size: 16px;
}
.div-container-3 .div-text-4 .numbers {
    width: 80%;
    flex-direction: column;
}
.div-container-3 .div-text-4 .number-1::after {
    right: -30px;
}
.div-container-3 .div-text-4 .numbers div h4 {
    font-size: 40px;
}
.div-container-3 .div-text-4 .numbers div p {
    color: #ffffff;
    font-size: 20px;
}
}    
/*  */
@media screen and (min-width: 769px) and (max-width: 992px) {
.div-container-3 {
    padding: 80px 0 0 0;
    width: 95%;;
    flex-direction: column;
}
.div-container-3 img {
    width: 400px;
    height: 400px;
    border-radius: 200px;
}
.div-container-3 .div-text-4 {
    margin: 30px 0 0 0;
    width:90% ;
}
.div-container-3 .div-text-4  h2 {
    font-size: 40px;
}
.div-container-3 .div-text-4 .text-1 {
    width: 90%;
}
.div-container-3 .div-text-4 .text-1 h3 {
    font-size: 35px;
}
.div-container-3 .div-text-4 .text-1 p {
    font-size: 18px;
}
.div-container-3 .div-text-4 .numbers {
    width: 90%;
}
.div-container-3 .div-text-4 .number-1::after {
    right: -30px;
}
}    
/*  */
@media screen and (min-width: 993px) and (max-width: 1200px)  {
.div-container-3 {
    padding: 80px 0 0 0;
    width: 95%;;
}
.div-container-3 img {
    width: 350px;
    height: 350px;
    border-radius: 175px;
}
.div-container-3 .div-text-4 {
    margin: 0 0 0 30px;
    width:90% ;
}
.div-container-3 .div-text-4  h2 {
    font-size: 40px;
}
.div-container-3 .div-text-4 .text-1 {
    width: 90%;
}
.div-container-3 .div-text-4 .text-1 h3 {
    font-size: 32px;
}
.div-container-3 .div-text-4 .text-1 p {
    font-size: 18px;
}
.div-container-3 .div-text-4 .numbers {
    width: 90%;
}
.div-container-3 .div-text-4 .numbers div h4 {
    font-size: 35px;
}
.div-container-3 .div-text-4 .numbers div p {
    color: #ffffff;
    font-size: 17px;
}
.div-container-3 .div-text-4 .number-1::after {
    right: -25px;
}
}    
/*  */
@media screen and (min-width: 1201px) and (max-width: 1500px)  {
.div-container-3 {
    padding: 120px 0 0 0;
    width: 95%;;
}
.div-container-3 img {
    width: 350px;
    height: 350px;
    border-radius: 175px;
}
.div-container-3 .div-text-4 {
    margin: 0 0 0 30px;
    width:90% ;
}
.div-container-3 .div-text-4  h2 {
    font-size: 40px;
}
.div-container-3 .div-text-4 .text-1 {
    width: 90%;
}
.div-container-3 .div-text-4 .text-1 h3 {
    font-size: 32px;
}
.div-container-3 .div-text-4 .text-1 p {
    font-size: 18px;
}
.div-container-3 .div-text-4 .numbers {
    width: 90%;
}
.div-container-3 .div-text-4 .numbers div h4 {
    font-size: 35px;
}
.div-container-3 .div-text-4 .numbers div p {
    color: #ffffff;
    font-size: 17px;
}
.div-container-3 .div-text-4 .number-1::after {
    right: -25px;
}
}    
/* ------------------------------- */
.div-container-4 {
    padding: 105px 0 0 0;
    width: 90%;
    margin: auto;
}
.div-container-4 h2 {
    font-size: 35px;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
}
.div-container-4 h2 span {
    color: #ff0000;
    font-weight: 700;
}
.div-container-4 .div-images {
    margin: 50px 0;
    display: flex; 
    justify-content: center;
    border-radius: 10px;
}
.div-container-4 .div-images img {
    width: 450px;
    height: 250px;
    margin: 0 60px;
    border-radius: 10px;
}
.div-container-4 .Menu {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
}
.div-container-4 .div-text-3 .div-pizza-1,.div-container-4 .div-text-3 .div-burger-1 {
    width: 550px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 10px 0;
    border-radius: 10px;
}
.div-container-4 .div-text-3 img {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    cursor: pointer;
}
.div-container-4 .div-text-3 .pizza-1 h3,.div-container-4 .div-text-3 .burger-1 h3 {
    color: #ff0000;
}
.div-container-4 .div-text-3 .pizza-1 p,.div-container-4 .div-text-3 .burger-1 p {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}
.div-container-4 .div-text-3 span {
    color: #ff0000;
    font-size: 26px;
}
.div-container-4 .btn-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.div-container-4 .btn-container .button-4 {
    font-size: 20px;
    background-color: #ff0000;
    color: #ffffff;
    padding: 14px 50px;
    width: 300px;
    text-decoration: none;
    text-align: center;
    border-radius: 2px 15px 2px 15px;
    transition: all 1s ease;
}
.div-container-4 .btn-container .button-4:hover {
    color: #ff0000;
    background-color: #ffffff;
    rotate: 2deg;
}
/*  */
@media screen and (max-width: 600px) {
.div-container-4 {
    padding: 30px 0 0 0;
    width: 100%;
}
.div-container-4 .div-images {
    flex-direction: column;
    align-items: center;
}
.div-container-4 .div-images img {
    width: 90%;
    margin: 10px 0;
}
.div-container-4 .Menu {
    flex-wrap: wrap;
}
.div-container-4 .div-text-3 {
    width: 100%;
}
.div-container-4 .div-text-3 img {
    width: 90px;
    height: 90px;
}
.div-container-4 .div-text-3 .pizza-1 h3,.div-container-4 .div-text-3 .burger-1 h3 {
    font-size: 20px;
}
.div-container-4 .div-text-3 .pizza-1 p,.div-container-4 .div-text-3 .burger-1 p {
    font-size: 15px;
}
.div-container-4 .div-text-3 .div-pizza-1,.div-container-4 .div-text-3 .div-burger-1 {
    width: 100%;
}
.div-container-4 .div-text-3 .pizza-1 ,.div-container-4 .div-text-3 .burger-1 {
    margin-left: 15px;
}
}
/*  */
@media screen and (min-width: 601px) and (max-width:768px) {
.div-container-4 {
    padding: 40px 0 0 0;
    width: 95%;
}
.div-container-4 h2 {
    font-size: 40px;
}
.div-container-4 .div-images {
    margin: 20px 0;
    flex-direction: column;
    align-items: center;
}
.div-container-4 .div-images img {
    width: 450px;
    height: 250px;
    margin: 20px 0;
}
.div-container-4 .Menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}
}
/*  */
@media screen and (min-width: 769px) and (max-width: 992px) {
.div-container-4 {
    padding: 40px 0 0 0;
    width: 95%;
}
.div-container-4 h2 {
    font-size: 30px;
}
.div-container-4 .div-images {
    margin: 50px 0;
    display: flex; 
    justify-content: center;
}
.div-container-4 .div-images img {
    width: 340px;
    margin: 0 30px;
}
.div-container-4 .Menu {
    width: 100%;
}
.div-container-4 .div-text-3  {
    width: 100%;
}
.div-container-4 .div-text-3 .div-pizza-1,.div-container-4 .div-text-3 .div-burger-1 {
    width: 95%;
}
.div-container-4 .div-text-3 img {
    width: 90px;
    height: 90px;
    border-radius: 45px;
}
.div-container-4 .div-text-3 .pizza-1 h3,.div-container-4 .div-text-3 .burger-1 h3 {
    font-size: 16px;
}
.div-container-4 .div-text-3 .pizza-1 p,.div-container-4 .div-text-3 .burger-1 p {
    font-size: 14px;
}
.div-container-4 .div-text-3 .pizza-1 ,.div-container-4 .div-text-3 .burger-1 {
    margin-left: 10px;
}
}
/*  */
@media screen and (min-width: 993px) and (max-width: 1200px)  {
.div-container-4 {
    padding: 40px 0 0 0;
    width: 95%;
}
.div-container-4 h2 {
    font-size: 30px;
}
.div-container-4 .div-images {
    margin: 50px 0;
    display: flex; 
    justify-content: center;
}
.div-container-4 .div-images img {
    width: 400px;
    margin: 0 30px;
}
.div-container-4 .Menu {
    width: 100%;
}
.div-container-4 .div-text-3  {
    width: 100%;
}
.div-container-4 .div-text-3 .div-pizza-1,.div-container-4 .div-text-3 .div-burger-1 {
    width: 90%;
}
.div-container-4 .div-text-3 img {
    width: 120px;
    height: 120px;
    border-radius: 60px;
}
.div-container-4 .div-text-3 .pizza-1 h3,.div-container-4 .div-text-3 .burger-1 h3 {
    font-size: 20px;
}
.div-container-4 .div-text-3 .pizza-1 p,.div-container-4 .div-text-3 .burger-1 p {
    font-size: 14px;
}
}
/*  */
@media screen and (min-width: 1201px) and (max-width: 1500px)  {
.div-container-4 {
    padding: 70px 0 0 0;
    width: 95%;
}
.div-container-4 h2 {
    font-size: 30px;
}
.div-container-4 .div-images {
    margin: 50px 0;
    display: flex; 
    justify-content: center;
}
.div-container-4 .div-images img {
    width: 500px;
    margin: 0 30px;
}
.div-container-4 .Menu {
    width: 100%;
}
.div-container-4 .div-text-3  {
    width: 100%;
}
.div-container-4 .div-text-3 .div-pizza-1,.div-container-4 .div-text-3 .div-burger-1 {
    width: 90%;
}
.div-container-4 .div-text-3 img {
    width: 120px;
    height: 120px;
    border-radius: 60px;
}
.div-container-4 .div-text-3 .pizza-1 h3,.div-container-4 .div-text-3 .burger-1 h3 {
    font-size: 25px;
}
.div-container-4 .div-text-3 .pizza-1 p,.div-container-4 .div-text-3 .burger-1 p {
    font-size: 18px;
}
}
/* kitchen*/
.section h2 {
    font-size: 35px;
    color: #ffffff;
    text-align: center;
    margin: 80px 0 50px 0;
}
.div-container-5 {
    width: 93%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px 25px;
}
.div-container-5 .Menu-1 {
    border: 1px solid#ffffff;
    width: 310px;
    height: 430px;
    transition: all 1s ease;
}
.div-container-5 .Menu-1 img {
    width: 100%;
    height: 260px;
    transition: all 1s ease;
}
.div-container-5 .Menu-1:hover img {
    opacity: .7;
}
.div-container-5 .Menu-1 .div-text-5 {
    padding: 15px;
}
.div-container-5 .Menu-1 .div-text-5 .Menu1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.div-container-5 .Menu-1 .div-text-5 .Menu1 h3 {
    font-size: 28px;
    color: #ff0000;
}
.div-container-5 .Menu-1 .div-text-5 .Menu1 .fa-heart {
    font-size: 25px;
    color: #fff;
    margin-right: 11px;    
    cursor: pointer;
}
.div-container-5 .Menu-1 .div-text-5 .Heart  {
    color: #ff0b0b;
}
.div-container-5 .Menu-1 .div-text-5 .Heart i {
    color: #ffeb15;
    font-size: 14px;
}
.div-container-5 .Menu-1 .div-text-5 .shoping {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.div-container-5 .Menu-1 .div-text-5 .shoping .shop span {
    font-size: 23px;
    color: #ff0000;
}
.div-container-5 .Menu-1 .div-text-5 .shoping .shop s {
    font-size: 21px;
    color: #ffffff;
    margin-left: 20px;
}
.div-container-5 .Menu-1 .div-text-5 .shoping i {
     background-color: #ff0000;
     color: #ffffff;
     font-size: 20px;
     width: 50px;
     height: 50px;
     border-radius: 25px;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor:pointer;
     transition: all 1s ease;
}
/* boostrap */
.modal-content .modal-header .modal-title {
    font-size: 30px;
    color: #ff0000;
}
.modal-content .modal-body p {
    color: #000000;  
}
.modal-content .modal-body .title-body {
    font-size: 30px;
}
.modal-content .modal-footer .btn-secondary {
    background-color: #ffffff;
    border: 1px solid #000;
}
.modal-content .modal-footer .btn-primary {
    background-color: #ff0000;
    border: none;
    padding: 8px 15px;
}
/* end */
.div-container-5 .Menu-1 .div-text-5 .shoping i:hover {
    background-color: #ffffff;
    color: #ff0000;
}
.section .btn-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.section  .btn-container .button-4 {
    font-size: 20px;
    background-color: #ff0000;
    color: #ffffff;
    padding: 14px 50px;
    width: 300px;
    margin: 30px 0;
    text-decoration: none;
    text-align: center;
    border-radius: 2px 15px 2px 15px;
    transition: all 1s ease;
}
.section .btn-container .button-4:hover {
    color: #ff0000;
    background-color: #ffffff;
    rotate: 2deg;
}
@media screen and (max-width: 600px) {
.div-container-5 .Menu-1 {
    width: 75%;
}
}
/*  */
@media screen and (min-width: 601px) and (max-width:768px) {
.div-container-5 .Menu-1 {
    width: 75%;
}
}    
/*  */
@media screen and (min-width: 769px) and (max-width: 992px) {
.div-container-5 .Menu-1 {
    width: 45%;
}
}    
/*  */
@media screen and (min-width: 993px) and (max-width: 1200px)  {
.div-container-5 .Menu-1 {
    width: 45%;
}
}    
/*  */
@media screen and (min-width: 1201px) and (max-width: 1500px)  {
.div-container-5 .Menu-1 {
    width: 23%;
}
.div-container-5 .Menu-1 .div-text-5 .Menu1 h3 {
    font-size: 24px;
}
}
/*  */
.div-container-6 {
    position: relative;
}
.div-container-6 h1 {
    color: #ffffff;
    margin: 100px 0 80px 0;
    text-align: center;
}
.div-container-6 .div-star {
    width: 85%;
    margin: auto;
    height: 380px;
    background-color: #ff0000;
    border-radius: 15px;
    z-index: 99;
}
.div-container-6 .content {
    width: 84.5%;
    margin: auto;
    height: 380px;
    background-color: #ffffff;
    border-radius: 15px;
    z-index: 100px;
    rotate: -1.7deg;
    position: absolute;
    left: 7.7%;
    top: 25%;
    display: flex;
    align-items: center;
    gap: 0 60px;
    padding: 0px 50px;
}
.div-container-6 .content .div-text-6 {
    width: 60%;
    rotate: 1.7deg;
}
.div-container-6 .content .div-text-6 h2 {
    color: #ff0000;
    font-size: 40px;
    margin: 20px 0;
}
.div-container-6 .content .div-text-6 h3 {
    font-size: 30px;
    margin: 20px 0;
}
.div-container-6 .content .div-text-6 h4 {
    font-size: 22px;
    margin: 20px 0;
}
.div-container-6 .content .div-text-6 h4 span {
    color: #ff0000;
}
.div-container-6 .content .div-start {
    width: 60%;
    rotate: 1.7deg;
    display: flex;
    flex-direction: column;
    rotate: 1.7deg;
}
.div-container-6 .content .div-text-7 h5 {
    color: #ff0000;
    font-size: 35px;
}
.div-container-6 .content .div-start  .div-text-7 .par {
    font-size: 18px;
    line-height: 37px;
    font-weight: 500;
}
.div-container-6 .content .div-start .div-text-8 {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.div-container-6 .content .div-start .div-text-8 .Text-1 {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: #ff0000;
    box-shadow: 0px 0px 5px #ff0000;
}
.div-container-6 .content .div-start .div-text-8 .Text-2,.div-container-6 .content .div-start .div-text-8 .Text-3 {
    width: 27px;
    height: 27px;
    border-radius: 13.5px;
    background-color: #ff3f3f;
    box-shadow: 0px 0px 5px #ff0000;
}
.div-container-6 .content .div-start .div-text-8 .Text-3 {
    width: 22px;
    height: 22px;
    border-radius: 11px;
    background-color: #ff5858;
    box-shadow: 0px 0px 5px #ff0000;
}
.div-container-6 .content .div-start .div-text-8 .Text-4 {
    width: 14px;
    height: 14px;
    border-radius: 7px;
    background-color: #ff6b6b;
    box-shadow: 0px 0px 5px #ff0000;
}
@media screen and (max-width: 600px) {
.div-container-6 h1 {
    font-size: 25px;
}
.div-container-6 .div-star {
    width: 95%;
    height: 620px;
}
.div-container-6 .content {
    width: 94%;
    height: 620px;
    left: 4.7%;
    top: 15%;
    flex-direction: column;
    gap: 0 0;
    padding: 0;
}
.div-container-6 .content .div-text-6 {
    width: 90%;
    margin: 10px 0 0 0;
}
.div-container-6 .content .div-text-6 h3 {
    font-size: 23px;
}
.div-container-6 .content .div-text-6 h4 {
    font-size: 23px;
}
.div-container-6 .content .div-start {
    width: 90%;
}
.div-container-6 .content .div-text-7 h5 {
    font-size: 30px;
}
.div-container-6 .content .div-start  .div-text-7 .par {
    font-size: 17px;
    line-height: 30px;
}
}
/*  */
@media screen and (min-width: 601px) and (max-width:768px) {
.div-container-6 h1 {
    font-size: 25px;
}
.div-container-6 .div-star {
    width: 95%;
    height: 550px;
}
.div-container-6 .content {
    width: 94%;
    height: 550px;
    left: 4.7%;
    top: 15%;
    flex-direction: column;
    gap: 0 0;
    padding: 0;
}
.div-container-6 .content .div-text-6 {
    width: 90%;
    margin: 10px 0 0 0;
}
.div-container-6 .content .div-text-6 h3 {
    font-size: 28px;
}
.div-container-6 .content .div-text-6 h4 {
    font-size: 26px;
}
.div-container-6 .content .div-start {
    width: 90%;
}
.div-container-6 .content .div-text-7 h5 {
    font-size: 33px;
}
.div-container-6 .content .div-start  .div-text-7 .par {
    font-size: 19px;
    line-height: 30px;
}
}    
/*  */
@media screen and (min-width: 769px) and (max-width: 992px) {
.div-container-6 h1 {
    font-size: 25px;
}
.div-container-6 .div-star {
    width: 95%;
    height: 500px;
}
.div-container-6 .content {
    width: 94%;
    height: 500px;
    left: 3.4%;
    top: 15%;
    flex-direction: column;
    gap: 0 0;
    padding: 0;
}
.div-container-6 .content .div-text-6 {
    width: 90%;
    margin: 10px 0 0 0;
}
.div-container-6 .content .div-text-6 h3 {
    font-size: 30px;
}
.div-container-6 .content .div-text-6 h4 {
    font-size: 28px;
}
.div-container-6 .content .div-start {
    width: 90%;
}
.div-container-6 .content .div-text-7 h5 {
    font-size: 35px;
}
.div-container-6 .content .div-start  .div-text-7 .par {
    font-size: 20px;
    line-height: 30px;
}
}    
/*  */
@media screen and (min-width: 993px) and (max-width: 1200px)  {
.div-container-6 h1 {
    color: #ffffff;
    margin: 100px 0 80px 0;
    text-align: center;
}
.div-container-6 .div-star {
    width: 95%;
    margin: auto;
    height: 380px;
    background-color: #ff0000;
    border-radius: 15px;
    z-index: 99;
}
.div-container-6 .content {
    width: 94%;
    left: 3%;
    gap: 0;
    padding: 0 20px;
}
}    
/* doctor */
#chef {
    padding: 30px 0 0 0;
}
#chef .describsine-doctor {
    width: 35%;
    margin: auto;
    text-align: center;
}
#chef h2 {
    color: #ffffff;
    margin: 100px 0 15px 0;
}
#chef p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 60px 0;
    line-height: 35px;
}
.div-container-7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
    margin: auto;
}
.div-container-7 .div-text-9 {
    width: 30%;
    position: relative;
}
.div-container-7 .div-text-9 img {
   width: 90%;
   height: 350px;
   border-radius: 10px;
}  
.div-container-7 .div-text-9 .card-img {
    translate: 0 70px;
}
.div-container-7 .div-text-9 .CONTENT {
    position: absolute;
    top: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: all 1s ease;
}
.div-container-7 .div-text-9 .CONTENT .social-media {
    width: 80%;
    margin: 20px;
    display: flex;
    justify-content: center;
    gap: 0 15px;
}
.div-container-7 .div-text-9 .CONTENT .social-media .fa-facebook{
    color: #191dff;
}
.div-container-7 .div-text-9 .social-media .fa-youtube {
    color: #ff0b0b;
} 
.div-container-7 .div-text-9 .CONTENT .social-media .fa-github {
    color: #000000;
}
.div-container-7 .div-text-9 .CONTENT h3 {
    color: #ff0b0b;
    font-weight: 900;
    font-size: 28px;
}
.div-container-7 .div-text-9 .CONTENT .social-media i {
    font-size: 25px;
    padding: 15px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    transition: all 1s ease;
}  
.div-container-7 .div-text-9 .card-content {
    position: absolute;
    top: 110px;
} 
.div-container-7 .div-text-9 .CONTENT .social-media i:hover {
    translate: 0 -10px;
} 
.div-container-7 .div-text-9:hover .CONTENT {
    opacity: 1;
}
.container {
    margin: 100px 0 0 0;
}
@media screen and (max-width: 600px) {
#doctor .describsine-doctor {
    width: 95%;
}
#doctor h2 {
    font-size: 30px;
}
#doctor p {
    font-size: 17px;
}
.div-container-7 {
    flex-wrap: wrap;
    justify-content: center;
    width: 95%;
    gap: 50px 0;
}
.div-container-7 .div-text-9 {
    width: 70%;
}
.div-container-7 .div-text-9 .card-img {
    translate: 0;
}
}
/*  */
@media screen and (min-width: 601px) and (max-width:768px) {
#doctor .describsine-doctor {
    width: 75%;
}
#doctor h2 {
    font-size: 35px;
}
#doctor p {
    font-size: 17px;
}
.div-container-7 {
    flex-wrap: wrap;
    justify-content: center;
    width: 95%;
    gap: 50px;
}
.div-container-7 .div-text-9 {
    width: 60%;
}
.div-container-7 .div-text-9 .card-img {
    translate: 0;
}
}    
/*  */
@media screen and (min-width: 769px) and (max-width: 992px) {
#doctor .describsine-doctor {
    width: 55%;
}
#doctor h2 {
    font-size: 35px;
}
#doctor p {
    font-size: 17px;
}
.div-container-7 {
    width: 95%;
    gap: 0 45px;
}
.div-container-7 .div-text-9 {
    width: 40%;
}
.div-container-7 .div-text-9 .CONTENT h3 {
    font-size: 18px;
}
.div-container-7 .div-text-9 .card-img {
    translate: 0 60px;
}
}    
/*  */
@media screen and (min-width: 993px) and (max-width: 1200px)   {
#doctor .describsine-doctor {
    width: 55%;
}
#doctor h2 {
    font-size: 35px;
}
#doctor p {
    font-size: 17px;
}
.div-container-7 {
    width: 95%;
    gap: 0 45px;
}
.div-container-7 .div-text-9 {
    width: 40%;
}
.div-container-7 .div-text-9 .CONTENT h3 {
    font-size: 24px;
}
.div-container-7 .div-text-9 .card-img {
    translate: 0 60px;
}
}    
/*  */
@media screen and (min-width: 1201px) and (max-width: 1500px) {
#doctor .describsine-doctor {
    width: 55%;
}
#doctor h2 {
    font-size: 35px;
}
#doctor p {
    font-size: 17px;
}
.div-container-7 {
    width: 95%;
    gap: 0 45px;
}
.div-container-7 .div-text-9 {
    width: 50%;
}
.div-container-7 .div-text-9 .card-img {
    translate: 0 60px;
}
}
/*  */
.div-container-8 {
    width: 88%;
    margin: auto;
}
.div-container-8 img {
    width: 100%;
    height: 600px;
    margin: 150px 0 0 0;
    border-radius: 30px;
    box-shadow: 0px 0px 10px #ff0000,-0px -0px 10px #ff0000;
}
/* login */
#contact {
    width: 90%;
    margin: auto;
    padding: 5px;
}
.div-container-10 {
    margin: 300px 0 0 0;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.div-container-10 .div-text-11 {
    width: 44%;
    text-align: center;
}
.div-container-10 .div-text-11 h2 {
    color: #ff0000;
    font-size: 40px;
}
.div-container-10 .div-text-11 p {
    color: #ffffff;;
    font-size: 18px;
    font-weight: 600;;
}
.div-container-10 .div-text-12 {
    background-color: #ff0000;
    width: 49%;
    margin: 30px 0;
    height: 60px;
    padding: 13px 40px;
    border-radius: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.div-container-10 .div-text-12 .login-1 {
    display: inline-block;
    font-size: 20px;
    width: 100%;
    height: 60px;
    translate: -50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
}
.div-container-10 .div-text-12 .login-2 {
    width: 50%;
    font-size: 20px;
    color: #ffffff;
}
.div-container-10  form label {
    color: #ffffff;
    font-weight: 500;
    font-size: 22px;
    margin: 6px 0;
}
.div-container-10  form input {
    width: 700px;
    height: 60px;
    padding: 10px;
    border-radius: 10px;
}
input::placeholder {
    color: #000000;
    font-weight: 500;
}
.div-container-10 input[type="submit"] {
    display: inline-block;
    margin: 40px 0 25px 0;
    background-color: #ff0000;
    color: #ffffff;
    font-size: 30px;
    text-decoration: none;
    text-align: center;
    border: none;
    width: 100%;
    height: 65px;
    padding: 10px;
    border-radius: 10px;
    transition:  1s ease;
}
.div-container-10 input[type="submit"]:hover {
    color: #ff0000;
    background-color: #ffffff;
}
.div-container-10 .login-3 {
    color: #ffffff;
    font-size: 20px;
    position: relative;
}
.div-container-10 .login-3::before {
    background-color: #ff0000;
    content: '';
    width: 190px;
    height: 3px;
    position: absolute;
    right: -200px;
    top: 14px;
}
.div-container-10 .login-3::after {
    background-color: #ff0000;
    content: '';
    width: 190px;
    height: 3px;
    position: absolute;
    right: 170px;
    top: 14px;
}
.div-container-10 .social-media {
    display: flex;
    gap:  20px;
    margin: 20px 0;
    cursor: pointer;
}
.div-container-10 .social-media i {
    background-color: #ffffff;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease;
}
.div-container-10 .social-media i:hover {
    translate: 0 10px;
}
.div-container-10 .social-media .fa-facebook {
    color: #191dff;
}
.div-container-10 .social-media .fa-youtube {
    color: #ff0808;
}
.div-container-10 .social-media .fa-github , .div-container-10 .social-media .fa-x-twitter {
    color: #000000;
}
@media screen and (max-width: 600px) {
#contact {
    width: 100%;
}
.div-container-10 .div-text-11 {
    width:95%;
}
.div-container-10 .div-text-11 h2 {
    font-size: 30px;
}
.div-container-10 .div-text-12 {
    width: 330px;
}
.div-container-10  form input {
    width: 350px;
}
.div-container-10 .login-3::before {
    width: 80px;
    right: -90px;
}
.div-container-10 .login-3::after {
    width: 80px;
    right: 170px;
}
}
/*  */
@media screen and (min-width: 601px) and (max-width:768px) {
#contact {
    width: 100%;
}
.div-container-10 .div-text-11 {
    width:95%;
}
.div-container-10 .div-text-11 h2 {
    font-size: 30px;
}
.div-container-10 .div-text-12 {
    width: 470px;
}
.div-container-10  form input {
    width: 500px;
}
.div-container-10 .login-3::before {
    width: 150px;
    right: -160px;
}
.div-container-10 .login-3::after {
    width: 150px;
    right: 170px;
}
}    
/*  */
@media screen and (min-width: 769px) and (max-width: 992px) {
#contact {
    width: 100%;
}
.div-container-10 .div-text-11 {
    width:95%;
}
.div-container-10 .div-text-11 h2 {
    font-size: 30px;
}
.div-container-10 .div-text-12 {
    width: 620px;
}
.div-container-10  form input {
    width: 650px;
}
.div-container-10 .login-3::before {
    width: 150px;
    right: -160px;
}
.div-container-10 .login-3::after {
    width: 150px;
    right: 170px;
}
}    
/*  */
@media screen and (min-width: 993px) and (max-width: 1200px)  {
#contact {
    width: 100%;
}
.div-container-10 .div-text-11 {
    width:95%;
}
.div-container-10 .div-text-11 h2 {
    font-size: 30px;
}
.div-container-10 .div-text-12 {
    width: 620px;
}
.div-container-10  form input {
    width: 750px;
}
.div-container-10 .login-3::before {
    width: 200px;
    right: -210px;
}
.div-container-10 .login-3::after {
    width: 200px;
    right: 170px;
}
}    
/*  */
@media screen and (min-width: 1201px) and (max-width: 1500px)  {
.div-container-10 .div-text-11 {
    width:95%;
}
}
/* footer */
.div-container-9 {
    width: 100%;
    margin: 200px 0 0 0;
    padding: 30px 150px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0px 0px 10px #ffffff , -0px -0px 10px #ffffff;
    border-radius: 50px 50px 0 0;
}
.div-container-9 .div-text-10 h1 {
    color: #ffffff;
}
.div-container-9 .div-text-10 h1 span {
    color: #ff0c0c;
    font-size: 40px;
}
.div-container-9 .div-text-10 p {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
}
.div-container-9 .social-media {
    display: flex;
    justify-content: center;
    gap: 0 35px;
}
.div-container-9 .div-text-10 .social-media .fa-facebook{
    color: #191dff;
}
.div-container-9 .div-text-10 .social-media .fa-youtube {
    color: #ff0b0b;
} 
.div-container-9 .div-text-10 .social-media .fa-github {
    color: #000000;
}
.div-container-9 .social-media i {
    font-size: 25px;
    padding: 15px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    transition: all 1s ease;
}
.div-container-9 .social-media i:hover {
    translate: 0 10px;
}
@media screen and (max-width: 600px) {
.div-container-9 {
    padding: 150px 20px 400px 20px;
}
}
/*  */
@media screen and (min-width: 601px) and (max-width:768px) {
.div-container-9 {
    padding: 150px 20px 500px 20px;
}
}    
/*  */
@media screen and (min-width: 769px) and (max-width: 992px) {
.div-container-9 {
    padding: 150px 20px 640px 20px;
}
}    
/*  */
@media screen and (min-width: 993px) and (max-width: 1200px)  {
.div-container-9 {
    padding: 150px 20px 840px 20px;
}
}    
/*  */
@media screen and (min-width: 1201px) and (max-width: 1500px)  {
.div-container-9 {
    padding: 150px 20px 1000px 20px;
}
}









