@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');



* {
  margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #fdfdfd;
    --text-color: #333;
    --main-color: #754ef9;
    --white-color: #fdfdfd;
    --shadow-color: rgba(0, 0, 0, .2);
}



html {
    font-size: 80.5%;
    overflow-x: hidden;
}


header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 60px;
  width: 100%;
  background: black;
}
.heading ul {
  display: flex;
}
.logo a {
  color: white;
  transition-duration: 1s;
  font-weight: 800;
}
.logo a:hover {
  color: rgb(240, 197, 6);
  transition-duration: 1s;
}
.heading ul li {
  list-style: none;
}
.heading ul li a {
  margin: 5px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  position: relative;
  color: white;
  margin: 2px 14px;
  font-size: 18px;
  transition-duration: 1s;
}
.heading ul li a:active {
  color: red;
}
.heading ul li a:hover {
  color: rgb(243, 168, 7);
  transition-duration: 1s;
}

.heading ul li a::before {
  content: "";
  height: 2px;
  width: 0px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color:transparent;
  transition-duration: 1s;
}
.heading ul li a:hover::before {
  width: 100%;
  transition-duration: 1s;
  background-color: rgb(243, 168, 7);
}
#input {
  height: 30px;
  width: 300px;
  text-decoration: none;
  border: 0px;
  padding: 5px;
}
.logo a {
  color: white;
  font-size: 35px;
  font-weight: 500;
  text-decoration: none;
}
ion-icon {
  width: 30px;
  height: 30px;
  background-color: white;
  color: black;
}
ion-icon:hover {
  cursor: pointer;
}

header a ion-icon {
  position: relative;
  right: 3px;
}

.img-slider img {
  height: 720px;
  width: 1080px;
}
@keyframes slide {
  0% {
    left: 0px;
  }
  15% {
    left: 0px;
  }
  20% {
    left: -1080px;
  }
  32% {
    left: -1080px;
  }
  35% {
    left: -2160px;
  }
  47% {
    left: -2160px;
  }
  50% {
    left: -3240px;
  }
  63% {
    left: -3240px;
  }
  66% {
    left: -4320px;
  }
  79% {
    left: -4320px;
  }
  82% {
    left: -5400px;
  }
  100% {
    left: 0px;
  }
}
.img-slider {
  display: flex;
  float: left;
  position: relative;
  width: 1080px;
  height: 720px;
  animation-name: slide;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  transition-duration: 2s;
}

.heading1 {
  opacity: 0;
}
.search {
  display: flex;
  position: relative;
}
.section1 {
  width: 1080px;
  overflow: hidden;

  justify-content: center;
  align-items: center;
  margin: 0px auto;
}

.menu {
  visibility: hidden;
}
.heading1 .ham1:active {
  color: red;
}
.items {
  overflow: hidden;
}
.ham1,
.close {
  cursor: pointer;
}




@media screen and (max-width: 1250px) {
  .heading ul li {
    display: none;
  }

  .items {
    transform: scale(0.9);
  }
  .img-slider img {
    height: 60vw;
    width: 80vw;
  }
  .ham1:active {
    color: red;
  }
  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menu a ion-icon {
    position: absolute;
  }

  @keyframes slide1 {
    0% {
      left: 0vw;
    }
    15% {
      left: 0vw;
    }
    20% {
      left: -80vw;
    }
    32% {
      left: -80vw;
    }
    35% {
      left: -160vw;
    }
    47% {
      left: -160vw;
    }
    50% {
      left: -240vw;
    }
    63% {
      left: -240vw;
    }
    66% {
      left: -320vw;
    }
    79% {
      left: -320vw;
    }
    82% {
      left: -400vw;
    }
    100% {
      left: 0vw;
    }
  }
  .menu ul {
    display: inline-block;
    flex-direction: column;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: black;
    left: 0;
    top: 0;
    z-index: 11;
    align-items: center;
    justify-content: center;
    opacity: 1;
  }
  .close {
    z-index: 34;

    color: white;
    background-color: black;
  }
  .close:active {
    color: red;
  }
  .menu ul li {
    list-style: none;
    margin: 20px;
    border-top: 3px solid white;
    width: 80%;
    text-align: center;

    padding-top: 10px;
  }
  .menu ul li a {
    text-decoration: none;
    padding-top: 10px;
    color: white;
    font-weight: 900;
  }
  .menu ul li a:hover {
    color: rgb(240, 197, 6);
  }
  .img-slider {
    display: flex;
    float: left;
    position: relative;
    width: 80%;
    height: 60%;
    animation-name: slide1;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    transition-duration: 2s;
  }
  .section1 {
    width: 80%;
    overflow: hidden;

    justify-content: center;
    align-items: center;
    margin: 0px auto;
  }

  .heading1 {
    opacity: 1;
    position: relative;
    bottom: 5px;
  }
 
  .heading1 .ham {
    background-color: black;
    color: rgb(255, 255, 255);
  }
  #input {
    width: 200px;
    flex-shrink: 2;
  }
  header {
    height: 100px;
  }
}




@media screen and (max-width: 550px) {
  .heading ul li {
    display: none;
  }
  .heading1 {
    opacity: 1;

    bottom: 8px;
  }

  header,
  .nav-bar .nav-list .nav-item {
  
    height: 250px;
    
    flex-direction: column;
  }
  #input {
    width: 150px;
  }
  .close {
    z-index: 34;
  }
javascript:void(0)
  .search a {
    display: flex;
    flex-wrap: nowrap;
  }
}

nav {
  /* min-width: 100vw; */
  /* width: auto; */
  /* background-color: red; */
  align-items: center;
  justify-content: space-between;
  
   
}




nav ul,
Ul  {
  font-family:"chi0vo mono", monospace ;
  display: inline-block;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  
  
}

nav ul li {
  float: left;
  list-style-type: none;
  width: 200px;

}


nav ul li a{
  display: inline-block;
  text-decoration: none;
  width: 100%;
  line-height: 3;
  font-size: 16px;
  font-weight: 700 ;
  text-decoration: none;
  text-transform: uppercase;
  color: blue;
  padding: 10px;
  transition: 0.5s ease;
}
nav ul:hover  li a {
  color: hsl(5, 85%, 63%);
}


nav ul:hover  li a:not(:hover){
  color: blue;
  opacity: 1.3;
  filter: blur(1px);
}
.nav-link {
  color: hwb(212 5% 30%);
}



.tab {
  background-color: #251e1e;
  display: flex;
  justify-content: center;
  align-items: center;
  flex:1 1 200px;
 
  resize: both;
  overflow: auto;
}

.tab-container {
  margin: 0 auto;
  flex:1 1 200px;
resize: both;
overflow:auto;
  

}

.tab-nav {
  display: flex;
  margin:  auto;
  list-style: none;
  border-block-end: 1px solid #999;
  position: relative;
  white-space: nowrap;
}

.tab-nav li {
  padding: 20px 30px;
  color: #0b47e0;
  cursor: pointer;
  transition: all 0.3s;
  white-space: wrap;
  text-transform: uppercase;
  
}

.tab-nav  li.active {
  color: #dee114;
  transform: scale(1.2);
}

.tab-nav li:not(:last-child) {
  margin-inline-end: 70px;
}
.glowing-txt {
  float: inline-end;
  margin-right: 0.4em;
  animation: text-flicker 20s linear infinite;
}
.faulty-letter {
  opacity: 9;
  animation: faulty-flicker 25s linear infinite;
}


.tab-body {
  
  margin-top: 40px;
  display: none;
  align-items: center;
  animation: fade 0.8s;
  background-color: #251e1e;
  

  
}

.tab-body.active {
  display: flex;
  
text-align: start;

  
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*-- tab body--*/
.tab-body .tab-col-left,
.tab-body .tab-col-right {
  
  background-color: #251e1e;
text-align: start;
  flex: 1;
   /*   display: flex;*/
 flex:1 1 200px;
  resize: both;


}

.tab-col-right p ul li {

  list-style: none;
}


  ul ,
  li{
display: grid;
text-align: start;


}

.tab-body .tab-col-left .tab-col-right p ul li a {
  margin: 5px;
  text-decoration: none;
  color: black;
  position: relative;
  color: white;
  margin: 2px 14px;
  font-size: 18px;
  transition-duration: 1s;
}

.tab-body .tab-col-left .tab-col-right p ul li a:active {
  color: red;
}

.tab-body .tab-col-left .tab-col-right p ul li a:hover {
  color: rgb(243, 168, 7);
  transition-duration: 1s;
}

.tab-body .tab-col-left .tab-col-right p ul li a::before {
  content: "";
  block-size: 2px;
  inline-size: 0px;
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0;
  background-color: white;
  transition-duration: 1s;
}

.tab-body .tab-col-left .tab-col-right p ul li a:hover::before {
  transition-duration: 1s;
  background-color: rgb(243, 168, 7);
}


.tab-body .tab-col-right h2 {
  font-size: 30px;
  color: #0cd9dd;
  letter-spacing: 1px;
  
}

.tab-body .tab-col-right p  {
  
  line-height: 1.8;
  margin: 10px 0 40px;
 /* font-size: 1.2rem;*/
  color: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
}
.tab-col-right .li:hover {
  background-color: #eee;
  transform: translateY(-10px);
 
}
.tab-col-right a:hover{
  transform: scale(1.2);
  color: #ff7a00;
  font-weight: bold;
  

}

.tab-body .tab-col-right .btn {
  padding: 15px 45px;
  background-color: #5764ac;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}


@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}




/* ..........////Food category///........... */

#food {
  background-color:#60607a ;
  padding: 5rem 0 10rem 0;
}

#food h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #555;
}

.food-container {
  display: flex;
  justify-content: space-between;
}

.food-container img {
  display: block;
  width: 100%;
  margin: auto;
  max-height: 300px;
  object-fit: cover;
  object-position: center;
}

.img-container {
  margin: 0 1rem;
  position: relative;
}

.img-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
  text-align: center;
  transition: all 0.3s ease-in-out 0.1s;
}

.img-content h3 {
  color: #fff;
  font-size: 2.2rem;
}

.img-content a {
  font-size: 1.2rem;
}

.img-container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.871);
  opacity: 0;
  z-index: 1;

  transform: scaleY(0);
  transform-origin: 100% 100%;
  transition: all 0.3s ease-in-out;
}

.img-container:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.img-container:hover .img-content {
  opacity: 1;
  top: 40%;
}

/* .........../Food Menu/............ */

.food-menu-heading {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 400;
  color:  rgba(0, 0, 0, 0.871);
}

.food-menu-container {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0px 30px 0px;
}

.food-menu-container img {
  display: block;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.food-menu-item {
  display: flex;
  flex: 1 1 600px;
  justify-content: space-evenly;
  margin-bottom: 3rem;
}

.food-description {
  margin: auto 1.5rem;
}

.font-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #444;
}

.food-description p {
  font-size: 1.4rem;
  color: dimgray;
  font-weight: 500;
}

.food-description .food-price {
  color: cornflowerblue;
  font-weight: 700;
}



/* ........./ Testimonial /.......... */


    .main-bottom {
      max-width: 100%;
      display: grid;
      background: #eee;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0.5rem;
      align-items: center;
      justify-content: center;
      width: auto;
      place-items: center;
      justify-content: center;
    }

    .card-first,
    .card-second,
    .card-third {
      gap: 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between; 
    }

  
      

    .card-first h3:hover {
      color: hsl(5, 85%, 63%);
      cursor: pointer;
    }

    .card-second h3:hover {
      cursor: pointer;
      color: hsl(5, 85%, 63%);
    }

    .card-third h3:hover {
      color: hsl(5, 85%, 63%);
      cursor: pointer;
    }
  

    .main-bottom {
     
      padding: 4% 0%;
    }
    


    .testimonial-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 400;
  color: #555;
  background: #eee;
}


  
/* ......//about us//...... */

#about {
  padding: 50px 0;
  background: #737ad8;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
}

#about h2 {
  font-size: 2.3rem;
}

#about p {
  font-size: 1.2rem;
  color: #f8f8f8;
}

#about .small {
  font-size: 1.2rem;
   color: #f8f8f8;
  font-weight: 600;
}

.about-img {
  flex: 1 1 400px;
  padding: 30px;
  transform: translateX(150%);
  animation: about-img-animation 1s ease-in-out forwards;
}

@keyframes about-img-animation {
  100% {
    transform: translate(0);
  }
}

.about-text {
  flex: 1 1 400px;
  padding: 30px;
  margin: auto;
  transform: translate(-150%);
  animation: about-text-animation 1s ease-in-out forwards;
}

@keyframes about-text-animation {
  100% {
    transform: translate(0);
  }
}

.about-img img {
  display: block;
  height: 400px;
  max-width: 100%;
  margin: auto;
  object-fit: cover;
  object-position: right;
}

/*-Client-*/
.clients {
  padding: 50px 0;
}
.section-heading {
  text-align: center;
  text-transform: capitalize;
  font-size: 35px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 50px;
  color: #333;
}

.carousel {
  max-width: 1440px;
  margin: 0 auto;
  width: 95%;
  height: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.carousel::before,
.carousel::after {
  content: "";
  width: 200px;
  height: 100%;
  position: absolute;
}

.carousel::before {
  background-image: linear-gradient(
    to left,
    rgba(255, 255, 255, 0) 0,
    #fff 100%
  );
  z-index: 1;
}

.carousel::after {
  background-image: linear-gradient(
    to left,
    #fff 0,
    rgba(255, 255, 255, 0) 100%
  );
  right: 0;
}

.carousel .client-banners {
  height: 100%;
  display: flex;
  align-items: center;
  animation: slide 20s linear infinite;
}

.client-banners img {
  max-height: 100%;
  margin: 0 50px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}





.contact 
{
	position: relative;
	min-height: 50vh;
	padding: 50px 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: #222;
}
.contact .content 
{
	max-width: 800px;
	text-align: center;
}
.contact .content h2 
{
	font-size: 3em;
	color: #fff;
	font-weight: 500;
}
.contact .content p 
{
	color: #fff;
	font-size: 1.1em;
	font-weight: 300;
}
.container 
{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	margin-top: 30px;
}
.container .contactInfo 
{
	width: 50%;
	display: flex;
	flex-direction: column;
}
.container .contactInfo .box 
{
	position: relative;
	padding: 20px 0;
	display: flex;
	cursor: pointer;
}
.container .contactInfo .box .icon 
{
	min-width: 60px;
	height: 60px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.75em;
	transition: 0.5s;
}
.container .contactInfo .box:hover .icon 
{
	background: #00bcd4;
	color: #fff;
}
.container .contactInfo .box .text 
{
	display: flex;
	flex-direction: column;
	margin-left: 20px;
	font-size: 1.1em;
	color: #fff;
	font-weight: 300;
}
.container .contactInfo .box .text h3 
{
	font-weight: 500;
	color: #00bcd4;
}
.container .contactInfo .txt
{
	color: #fff;
	margin-top: 50px;
	font-weight: 500;
	padding-left: 10px;
	border-left: 50px solid #e91e63;
	line-height: 1em;
}
.sci 
{
	position: relative;
	display: flex;
	gap: 30px;
	margin: 20px 0;
}
.sci li 
{
	list-style: none;
}
.sci li a 
{
	color: #fff;
	font-size: 2em;
	transition: 0.5s;
}
.sci li a:hover 
{
	color: #00bcd4;
}


.container .contactForm
{
	position: relative;
	width: 40%;
	background: #fff;
	min-height: 100px;
	padding: 60px;
  z-index: 99999;
} 
.container .contactForm h2 
{
	font-size: 2em;
	color: #333;
	font-weight: 500;
}
.container .contactForm .inputBox 
{
	position: relative;
	width: 100%;
	margin-top: 20px;
}
.container .contactForm .inputBox input, 
.container .contactForm .inputBox textarea 
{
	width: 100%;
	padding: 5px 0;
	font-size: 1.1em;
	margin: 10px 0;
	border: none;
	border-bottom: 2px solid #333;
	outline: none;
	resize: none;
}
.container .contactForm .inputBox span 
{
	position: absolute;
	left: 0;
	pointer-events: none;
	padding: 5px 0;
	margin: 10px 0;
	font-size: 1.1em;
	color: #666;
	transition: 0.5s;
}
.container .contactForm .inputBox input:focus ~ span, 
.container .contactForm .inputBox textarea:focus ~ span,
.container .contactForm .inputBox input:valid ~ span, 
.container .contactForm .inputBox textarea:valid ~ span 
{
	color: #e91e63;
	font-size: 0.9em;
	transform: translateY(-20px);
}
.container .contactForm .inputBox input[type="submit"]
{
	width: 100px;
	background: #00bcd4;
	color: #fff;
	border: none;
	cursor: pointer;
	padding: 10px;
	font-size: 1.1em;
	font-weight: 500;
}
footer {
  display: flex;
  flex-direction: column;
  background-color: black;
  align-items: center;
  color: white;
}

.footer1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  margin-block-start: 15px;
}
footer h1{
  padding-left: 0px;
}

.social-media {
  display: flex;
  justify-content: center;
  color: white;
  flex-wrap: wrap;
}



.social-media a {
  color: white;
  align-items: right;
  margin: 40px;
  border-radius: 5px;
  margin-block-start: 10px;
  color: white;
}

.social-media a ion-icon {
  color: white;
  background-color: black;
}

.social-media a:hover ion-icon {
  color: red;
  transform: translateY(5px);
}

.footer2 {
  display: flex;
  inline-size: 100%;
  justify-content: space-evenly;
  align-items: center;
  text-decoration: none;
  flex-wrap: wrap;
}
.footer2, a {
  text-decoration: none;
color: white;
text-transform: capitalize;
}

.footer2 .li:hover {
  background-color: #eee;
  transform: translateY(-10px);
 
}
.footer2 a:hover{
  transform: scale(1.2);
  color: #ff7a00;
  font-weight: bold;
  

}

.footer0 {
  font-weight: 1200;
  transition-duration: 1s;
}

.footer0:hover {
  color: rgb(243, 168, 7);
}

.footer2 .heading {
  font-weight: 900;
  font-size: 18px;
}

.footer3 {
  margin-block-start: 60px;
  margin-block-end: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer2 .heading:hover {
  color: rgb(243, 168, 7);
}

.footer2 .div:hover {
  transform: scale(1.05);
}

.footer3 h4 {
  margin: 0 10px;
}

.footer2 div {
  margin: 10px;
}


.footer,
.footer a {
	color: #999;
	font-size: 0.9rem;
  font-style: none;
}

 .row img{
  width: 200px;
  height: 70px;
  font-size: 0.1rem;
  font-weight: 400;
}

/* lets make it responsive */
@media (max-width: 991px)
{
	.contact
	{
		padding: 50px;
	}
	.container
	{
		flex-direction: column;
	}
	.container .contactInfo,
	.container .contactForm
	{
		width: 100%;
	}
	.container .contactForm
	{
		padding: 50px 30px;
	}
}



@media screen and (max-inline-size: 1250px) {
  .heading ul li {
    display: none;
  }

  .items {
    transform: scale(0.9);
  }

  .img-slider img {
    block-size: 60vw;
    inline-size: 80vw;
  }

  .ham:active {
    color: red;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu a ion-icon {
    position: absolute;
  }

 

  .menu ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    inline-size: 40vw;
    block-size: 100vh;
    background-color: black;
    inset-inline-start: 0;
    inset-block-start: 0;
    z-index: 11;
    align-items: center;
    justify-content: center;
    opacity: 1;
  }

  .close {
    z-index: 34;

    color: white;
    background-color: black;
  }

  .close:active {
    color: red;
  }

  .menu ul li {
    list-style: none;
    margin: 20px;
    border-block-start: 3px solid white;
    inline-size: 20%;
    text-align: center;

    padding-block-start: 10px;
  }

  .menu ul li a {
    text-decoration: none;
    padding-block-start: 10px;
    color: white;
    font-weight: 900;
  }

  .menu ul li a:hover {
    color: rgb(240, 197, 6);
  }

 

 

  .heading1 {
    opacity: 1;
    position: relative;
    inset-block-end: 8px;
  }

  

  .heading1 .ham {
    background-color: black;
    color: white;
  }

  #input {
    inline-size: 200px;
    flex-shrink: 2;
  }

  header {
    block-size: 150px;
  }
}

@media screen and (max-inline-size: 550px) {
  .heading ul li {
    display: none;
  }

  .heading1 {
    opacity: 1;

    inset-block-end: 8px;
  }

  header {
    block-size: 250px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
  }

  .close {
    z-index: 34;
  }

  .search a {
    display: flex;
    flex-wrap: nowrap;
  }

}
.btn1{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 50px;
  font-size: 1rem;
  background-color: black;
  color: white;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  outline: none;
  transition: all 0.4s;
}
.btn1:hover{
  height: 80px;
}








 



@media (max-width: 1024px) {


 
.col-left p,
  .links-container a {
    font-size: 15px;
  }

  .col-left p br {
    display: none;
  }
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
  }
}


@media (max-width: 991px) {
  .contact {
    padding: 50px;
  }

  .container {
    flex-direction: column;
  }

  .container .contactInfo,
  .container .contactForm {
    width: 100%;
  }

  .container .contactForm {
    padding: 50px 
    0px;
  }
}



@media (max-width: 1024px) {

  .col-left p,
  .links-container a {
    font-size: 15px;
  }

  .col-left p br {
    display: none;
  }
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
  }

  .col-left {
    text-align: center;
    margin-right: 0;
  }

  .social-media-list {
    margin: 0 auto;
    justify-content: center;
  }

  .col-right {
    width: 100%;
    margin: 50px 0 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .col-right {
    flex-direction: column;
  }

  .links-container:not(:last-child) {
    margin: 0 0 50px 0;
  }
}

@media (max-width: 352px) {
  .social-media-list li {
    width: 40px;
    height: 40px;
  }
}

h3{
  color: #0cd9dd;
}


#text{
  max-width: 50em;
    background-color: transparent;
    margin: 10px auto;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
    top: 4rem;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;

  }
  input{
    color: transparent;
  }
  




.typed-cursor {
  display: none;
}   


@media only screen and (max-width:600px) {
  
  
}
@media only screen and (max-width:768px) {
  
  
}
@media only screen and (max-width:992px) {
  
  
}
@media only screen and (max-width:1200px) {
  
  
}

button, input{
  font:0.5em Hind, sans-serif;
  line-height: 1.5em;
}
input{
  color: #171717;
}

.search-bar{
  display: flex;
}
.search-bar input,
.search-btn,
.search-btn:before,
.search-btn:after{
  transition: all 0.5s;
}
.searc-bar input,
.search-btn{
  width: 5em;
  height: 3em;
}
.search-bar input:invalid:not(:focus),
.search-btn{
  cursor: pointer;

}
.searc-bar,
.searc-bar input:focus,
.searc-bar input:valid{
  width: 100%;

}
.search-bar input:focus,
.search-bar input:not(:focus) +.search-btn:focus{
  outline:transparent
}
.search-bar{
  margin: auto;
padding: 1.5em;
justify-content:right;
max-width: 100%;
}
.searc-bar input{
  background: transparent;
  border-radius: 1.5em;
  box-shadow: 0 0 0 0.4em #101010 inset;
  padding: 0.75em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}