@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
  overflow: hidden;
  animation: bg 10s linear infinite;
}


@keyframes bg {
  0% {
    background-color: #FDAC53;
  }

  20% {
    background-color: #9BB7D4;
  }

  40% {
    background-color: #7086;

  }
  60% {
    background-color: #E9897E;

  }
    80% {
    background-color: #111;

    }

    100% {
    background-color: #FDAC53;

    }
}

.logo a {
   text-decoration: none;
   /*color: #007bff;*/
   color: #dc3545;
   /*font-size: 20px;*/
}

nav{
  display: flex;
  height: 80px;
  width: 100%;
  background: #1b1b1b;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
}
nav .logo{
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: #111;
  background: #fff;
}
nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}
@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }

  .logo a {
    font-size: 20px;
  }
}
@media (max-width: 920px) {
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 80px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    z-index: 1;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: cyan;
  }
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  /*z-index: 1;*/
  width: 100%;
  padding: 0 30px;
  /*color: #1b1b1b;*/
  color: #fff;
}
.content div{
  font-size: 40px;
  font-weight: 700;
}


@media only screen and (max-width: 767px)
.header-text p {
    font-size: 25px;
    /*left: 50%;*/
    /*top: 40%;*/
    text-align:center;

}

.header-text p {
    color: #fff;
    position: absolute;
    left: 11%;
    margin: 0;
    font-size: 20px;
    line-height: 1.4em;
    text-transform: Uppercase;
    letter-spacing: 1px;
    font-family: 'Righteous', cursive;
    text-align: center;
    transform: translate(10px, 200px);
}



.contained {
  width: 100%;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
    margin-top: -6em;
}

.contained h1 {
   font-size: 22px;
   font-weight: 600;

    /*font-size: 35px;
    font-weight: 600;*/
    position: absolute;
    top: -60px;
   line-height: 37px;
}


span {
  /*color: #fff724;*/
   /*color: #007bff;*/
   color: #28a745;

}



.body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}






/*Services starts from here*/


body{
    background: #111;
    color: #fff;
    scroll-behavior: smooth;
}
.services{
    padding: 100px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
}

.max-width{
    max-width: 1300px;
    padding: 0 45px;
    margin: auto;
}
.max-width h1{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: sans-serif; 
}
.max-width h1::after{
    content: '';
    position: absolute;
    height: 3px;
    width: 170px;
    background: #fff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.hello{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.card{
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    user-select: none;
    width: calc(26% - 20px);
    cursor: pointer;
    transition: all 0.3s ease;
}
.card:hover{
    background: #dc143c;
}
.box{
    transition: all 0.3s ease;
}
.card:hover .box{
    transform: scale(1.05);
}
.box i{
    font-size: 50px;
    color: #dc143c;
    transition: color 0.3s ease;
}
.card:hover .box i{
    color: #fff;
}
.box h3{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px;
}
@media screen and (max-width: 1190px) {
    .max-width{
        padding: 0 25px;
    }
    .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 700px){
    .card{
        width: 100%;
    }
}
 

  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');


 
.wrapper{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.background-container{
    width: 100%;
    min-height: 100vh;
    display: flex; 
}
.bg-1{
    flex: 1;
    background-color: rgb(180, 243, 175);
}
.bg-2{
    flex: 1;
    background-color: rgb(163, 236, 240);
}

.about-container{
    width: 85%;
    min-height: 80vh;
    position: absolute;
    background-color: white;
    box-shadow: 24px 24px 30px #6d8dad;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    border-radius: 5px;
}
.image-container{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-container img {
    width: 500px;
    height: 500px;
    margin: 20px;
    border-radius: 10px;
}

.text-container{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    font-size: 22px;
    color: black;

}
.text-container h1{
    font-size: 70px;
    padding: 20px 0px;
}
.text-container a{
    text-decoration: none;
    padding: 12px;
    margin: 50px 0px;
    background-color: rebeccapurple;
    border: 2px solid transparent;
    color: white;
    border-radius: 5px;
    transition: .3s all ease;
}
.text-container a:hover{
    background-color: transparent;
    color: black;
    border: 2px solid rebeccapurple;
}

@media screen and (max-width: 1100px){
    .about-container{
        width: 90%;
    }
    .image-container img{
        width: 400px;
        height: 400px;
    }

    .text-container h1{
        font-size: 20px;
        text-decoration: underline;
        color: black;

    }

    .text-container {
      color: darkred;
      font-size: 15px;
      text-align: center;
      font-family: cursive;
      font-weight: bolder;
      position: absolute;
      top: 25%;
      padding: 20px;

    }

    .text-container a {
      position: absolute;
      top: 85%;
    }
   
}


@media screen and (max-width: 1100px){
    .about-container{
        flex-direction: column;
    }
    .image-container img{
        width: 150px;
        height: 150px;
        position: absolute;
        top: -3%;
    }
    .text-container {
        align-items: center;
    }
}










/*CONTACT STARTED*/


.heading {
  background: url(imag.jpg);
  height: 100vh;
  background-position: center;
  background-size: cover;
  animation: hello1 0.5s ease-in-out;
}



@keyframes hello1 {
  from {
    opacity: 0;
    transform: rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0);
  }
}

.heading h1 {
  text-align: center;
  color: #45f3ff;
  font-size: 20px;

}

@media screen and (max-width: 1600px){
  .heading {
    height: 100vh;
  }
   .heading h1 {
       font-size: 40px;
       /*position: absolute;*/
       /*left: 30%;*/
   }
    

}

.border {
  width: 100px;
  height: 10px;
  background: #3449;
  margin: 40px auto;
}



.data {
  max-width: 600px;
  margin: auto;
  padding: 0 10px;
  overflow: hidden;
  animation: hello 3s ease-out;

}
@keyframes hello {
  from {
    opacity: 0;
    transform: rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0);
  }
}


.name {
  display: block;
  width: 100%;
  background: #111;
  box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 16px 0;
  padding: 20px 40px;
  color: #ddd;
  transition: 0.5s;
}

.name:hover {
  box-shadow: 0 0 10px 4px white;
}

textarea .name {
  resize: none;
  height: 120px;
}


.btn {
  float: right;
  border: 0;
  background: #2980b9;
  color: #fff;
  padding: 12px 50px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.5s;

}

@media screen and (max-width: 1600px){
    .btn {
      margin-top: 20px;
    }

}

.btn:hover {
  background: #34495e;
}


/*footer*/


footer{
  position: relative;
  width: 100%;
  height: 400px;
  background: #101010;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer p:nth-child(1){
  font-size: 30px;
  color: white;
  margin-bottom: 20px;
  font-weight: bold;
}
/*
footer p:nth-child(2){
  color: white;
  font-size: 17px;
  width: 500px;
  text-align: center;
  line-height: 26px;
}
*/
@media screen and (max-width: 1600px){
  footer p:nth-child(2){
      font-size: 15px;
      /*font-family: monospace;*/
      font-family: 'Poppins', sans-serif;


  }

}

.social{
  display: flex;
}
.social a{
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:  #f9004d;
  border-radius: 50%;
  margin: 22px 10px;
  color: white;
  text-decoration: none;
  font-size: 20px;
}
.social a:hover{
  transform: scale(1.3);
  transition: .3s;
}
.end{
  position: absolute;
  color:#f9004d;
  bottom: 35px;
  font-size: 14px; 
}
