@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

@media screen and (max-width: 1040px) {
  .navbar {
    overflow: hidden;
    background-color: white;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1041px) {
  .navbar {
    overflow: hidden;
    background-color: white;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
  }
}

/* Body */
.topScroll button {
  margin: auto;
  display: block;
  background-color: transparent;
  border: 0;
  text-decoration: underline;
  font-size: 20px;
  cursor: pointer;
  padding-bottom: 29px;
  padding-top: 50px;
}
.rounded {
    border-top: 5px solid #11999e;
    border-radius: 5px;
    margin: 30px 5%;
  }

@media screen and (max-width: 500px) {
    .header-text {
        font-size: 30px;
        padding: 10px 0px 0px 10px;
        font-size: 20px;
        font-weight: 600;
        color: black;
      }

      h1 {
        text-align: center;
        font-size: 22px;
        font-weight: 700;
        margin: 60px 0px 30px 0px;
      }   
         p {
        font-size: 14px;
        font-weight: 500;
        width: 85%;
        margin: auto;
      }

    
}
@media screen and (min-width: 501px) {
    .header-text {
        font-size: 30px;
        padding: 30px 0px 0px 5%;
      
        font-weight: 600;
        color: black;
      }
      .ourStory h1 {
        text-align: center;
        margin: 70px 0px 30px 0px;
    
      }
      .ourStory p {
        font-size: 16px;
        font-weight: 500;
        line-height: 30px;
        /* padding-top: 55px; */
        width: 90%;
        margin: auto;
      }
    

   
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #c8c8c8;
}

::-webkit-scrollbar-thumb {
  background: #5eb7b7;
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: #11999e;
}


/* aa */
.container
{
	font-family:'Roboto';
	font-size:16px;
	font-weight:300;
	line-height:24px;
    width: 90%;
    margin: auto;
    margin-top: 40px;
}
.container p
{
	margin-bottom:15px;
}


.thumbanail
{
	width:200px;
	position:relative;
	box-shadow:0 0 5px rgba(0,0,0,.4);
	background-color:#fff;
	overflow:hidden;
	border-radius:8px;
	margin-bottom:10px;
}
.thumbanail:before
{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:2;
	overflow:hidden;
	box-sizing:border-box;
}
.thumbanail img
{
	width:100%;
	height:auto;
	border-radius:8px;
	transform:scale(1) rotate(0deg);
	transition:all .5s linear;
}
.thumbanail:hover img
{
	transform:scale(1.1) rotate(-25deg);
}


.thumbanail.right
{
	float:right;
	margin-left:20px;
}
.thumbanail.left
{
	float:left;
	margin-right:20px;
}

@media screen and (max-width:767px)
{
	
	.thumbanail.right
	{
		float:none;
		margin-left:0px;
	}
	.thumbanail.left
	{
		float:none;
		margin-right:0px;
	}
	.thumbanail{
		width:100%;
	}
}

/* Header */
.title {

  display: flex;
  justify-content: start;
  align-items: center;
  margin: 0;
  padding: 18px 0 0 5%;
}

.title h1 {
  font-size: 30px;
  color: #000000;
  border-right: 4px solid #000;
  font-weight: 700;
  animation: forwards typing 7s;
  white-space: nowrap;
  overflow: hidden;
}

@keyframes cursor {

  0%,
  100% {
      border-color: transparent;
  }

  50% {
      border-color: #000;
  }
}

@keyframes typing {
  0% {
      width: 0ch
  }

  30%{ width: 16ch;} 
  80%{ width: 16ch;} 
   90%{ width: 16ch;} 
  100% {
      width: 16ch;
  }


}

/* End Header */