/* Home Page Style*/
*{
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
}
    
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)), url(background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    @media (min-width: 1000px) {
        width: 90%;
    }
    
}
.logo {
    width: 120px;
    cursor: pointer;
}
.navbar ul {
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
    margin-left: 2rem;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    position: relative;
}
.navbar ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}
.navbar ul li::after {
    content:'';
    height: 3px;
    width: 0;
    background: #009688;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0,5s;
}
.navbar ul li:hover::after {
    width: 100%;
}
.content {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content h1 {
    font-size: 70px;
    margin-top: 80px;
}
.content p {
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
}
button {
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #009688;
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
span {
    background: #009688;
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}
button:hover span {
    width: 100%;
}
button:hover {
    border:none;
}
/* WhatsApp Button*/
.float {
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.my-float {
	margin-top:16px;
}
/*About Us Page Style*/
.about-us {
    padding: 90px 0;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pic {
  }
  .about {
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
  }
  
/*Services Page Style*/
.services-content {
    padding: 90px 0;
    background: #ddd;
  }
  .pic {
    height: auto;
    max-width:  302px;
    display: none;

    @media (min-width: 1000px) {
        display: block;
    }
  }
  .services {
    width: 1130px;
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  li:not(:last-child) {
    margin-bottom: 5px;
}
/*About Us & Services common design*/
.text {
    max-width: 80ch;
    @media (min-width: 1000px) {
        margin: 0 5rem;
    }
  }
  .text h2 {
    font-size: 75px;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  .text h5 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .text p {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 1px;
  }
  .data {
    margin-top: 30px;
  }

/*Contact Page Style*/
.contact-container {
    width: 80%;
    margin: 0px auto;
    color: #ddd;
}
.contact-box {
    background: #ddd;
    display: flex;
}
.contact-left {
    flex-basis: 0.5%;
    padding: 40px 60px;
    color: #000;
}
.contact-right {
    flex-basis: 99.5%;
    padding: 40px;
    background-color: #009688;
}
.contact-container h1 {
    margin-bottom: 20px;
}
.contact-container p {
    margin-bottom: 40px;
}
.input-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.input-row .input-group {
    flex-basis: 45%;
}
input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #009688;
    outline: none;
    padding-bottom: 5px;
}
textarea {
    width: 100%;
    border: 1px solid #009688;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
}
label {
    margin-bottom: 6px;
    display: block;
    color: #000;
}
contact-button {
    background: #009688;
    width: 100px;
    border: none;
    outline: none;
    color: #fff;
    height: 35px;
    border-radius: 30px;
    margin-top: 20px;
    padding: 0px;
}

.contact-left h3 {
    color: #009688;
    font-weight: 600;
    margin-bottom: 30px;
}
.contact-right h3 {
    font-weight: 600;
    margin-bottom: 30px;
}
tr td:first-child {
    padding-right: 20px;
}
tr td{
    padding-top: 20px;
}
.image {
    width: 20px;
    height: 20px;
}

/*Typing effect...*/
.typewriter {
    margin: auto;
    text-align: center;
}
.actions {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.typewriter h1 {
    overflow: hidden;
    border-right: .15em solid #009688; 
    margin: 0 auto;
    letter-spacing: .15em;
    animation: 
      typing 1s steps(13, end),
      blink-caret infinite;
    @media (min-width: 700px) {
        white-space: nowrap;
    }
  }
  
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #009688; }
  }

  /*Footer Style*/
 footer {
    width: 100%;
    background: #111;
    font-family: "Open Sans";
    padding-top: 10px;
    color: #696969;
 }
 .footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
 }
 .footer-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
 }
 .footer-content p {
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
 }
 .socials {
    list-style: none;
    display: flex;
    align-items: left;
    justify-content: center;
    margin: 1rem 0 1rem 0;
 }
 .socials li {
    margin: 0 10px;
 }
 .socials a {
    text-decoration: none;
    color: #696969;
 }
 .socials a i {
    font-size: 1.1rem;
    transition: color .4s ease;
 }
 .socials a:hover i {
    color: #009688;
 }
 .footer-bottom {
    background: #000;
    padding: 20px 0;
    text-align: center;
 }
 .footer-bottom p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
 }
 .footer-bottom span {
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
 }
 