@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

section {
  padding: 100px;
}

.banner {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url("Assests/banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-position: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner h2 {
  font-size: 3em;
  color: #fff;
  font-weight: 500;
  line-height: 1.5em;
}
.banner h2 span {
  font-size: 1.5em;
  font-weight: 700;
}
.banner h3 {
  font-size: 1.5em;
  color: #fff;
  font-weight: 500;
}
.btn {
  position: relative;
  background: #2196f3;
  display: inline-block;
  color: #fff;
  margin-top: 20px;
  padding: 10px 30px;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 500;
}
.animate-btn {
  font-family: "Poppins";
  justify-content: center;
  align-items: center;
  text-decoration: none;
  /* background-color: #2980B9;  */
  background: linear-gradient(to bottom right, #0082c8 50%, #667db6 50%);
  color: #ffffff;
  font-size: 25px;
  text-transform: uppercase;
  box-shadow: 0 5px 5px #f2fcfe;
  overflow: hidden;
  transition: 2s;
}
.animate-btn:hover {
  color: #333333;
  text-decoration: none;
  /* box-shadow: 0 10px 20px white; */
  box-shadow: 0px 0px 10px 3px #fff;
  transform: scale(1);
  /* transform: translateY(20px); */
}
.animate-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.animate-btn-linear:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to top, #fffcdc, #d9a7c7);
  animation: animate1 2s linear infinite;
}
@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.animate-btn-linear:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to top, #fffcdc, #d9a7c7);
  animation: animate2 2s linear infinite;
  animation-delay: 1s;
}
@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.animate-btn-linear:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to top, #fffcdc, #d9a7c7);
  animation: animate3 2s linear infinite;
}
@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.animate-btn-linear:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to top, #fffcdc, #d9a7c7);
  animation: animate4 2s linear infinite;
  animation-delay: 1s;
}
@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
header.sticky {
  background: #fff;
  padding: 20px 100px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
header .logo {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
}
header.sticky .logo {
  color: #111;
}
header ul {
  position: relative;
  display: flex;
}
header ul li {
  position: relative;
  list-style: none;
}
header ul li a {
  position: relative;
  display: inline-block;
  margin: 0px 15px;
  color: #fff;
  text-decoration: none;
}
header.sticky ul li a {
  color: #111;
}
.heading {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  color: #111;
}
.heading h2 {
  font-weight: 600;
  font-size: 30px;
}
.content {
  display: flex;
  justify-content: space-between;
}
.contentBox {
  padding-right: 30px;
  justify-content: center;
  box-shadow: 0px 5px 10px #333333;
  box-sizing: border-box;
  border: 2px solid #333333;
  border-radius: 5px 10px 5px;
  padding: 15px 20px;
}
.contentBox h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.contentBox p {
  /* padding: 15px 20px; */
  font-weight: bold;
  /* color: rgb(10, 44, 126); */
  color: #333333;
}
.w50 {
  min-width: 50%;
}
img {
  max-width: 100%;
  transform: translateX(10%);
}
.services {
  background: #111;
}
.heading.white {
  color: #fff;
}
.services .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.services .content .servicesBox {
  padding: 40px 20px;
  background: #222;
  color: #fff;
  max-width: 340px;
  margin: 20px;
  box-shadow: 0px 5px 10px rgb(216, 213, 213);
  text-align: center;
  transform: skew(10px);
  transition: 0.5s;
}
.services .content .servicesBox:hover {
  transition: 0.5s;
  transform: translateY(-5px);
  background: #24669c;
}
.services .content .servicesBox img {
  max-width: 80px;
  filter: invert(1);
}
.services .content .servicesBox h2 {
  font-size: 20px;
  font-weight: 600;
}
.work .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.work .content .workBox {
  width: 50%;
  padding: 20px;
}
.work .content .workBox img {
  max-width: 100%;
}
.testimonials .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.testimonials .content .testimonialsBox {
  max-width: calc(50% - 40px);
  padding: 60px 40px;
  margin: 20px;
  box-shadow: 0px 5px 10px #2b2b2b;
  background: linear-gradient(to top, #86a8e7, #91eae4);
}
.testimonials .content .testimonialsBox p {
  color: #603766;
  font-style: italic;
  font-size: 16px;
  font-weight: bold;
}
.testimonials .content .testimonialsBox h3 {
  margin-top: 40px;
  text-align: end;
  color: #37163a;
  font-weight: 600;
  line-height: 1.5em;
}
.testimonials .content .testimonialsBox h3 span {
  font-size: 14px;
  font-weight: 800;
  color: #5a4fbb;
}
.contact {
  background: #111;
}
.formBox {
  min-width: 60%;
}
.formBox form {
  display: flex;
  flex-direction: column;
}
.formBox form h3,
.contactInfo h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.formBox form input,
.formBox form textarea {
  margin-bottom: 20px;
  padding: 15px;
  background: transparent;
  border: none;
  outline: none;
  background: #222;
  color: #fff;
  resize: none;
}
.formBox form textarea {
  min-height: 200px;
}
.formBox form input::placeholder,
.formBox form textarea::placeholder {
  color: #999;
}
.formBox form input[type="submit"] {
  max-width: 100px;
  background: #2196f3;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contactInfo {
  min-width: 40%;
}
.contactInfoBox {
  position: relative;
}
.contactInfoBox .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}
.contactInfoBox .box .icon {
  min-width: 40px;
  padding-top: 4px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 24px;
}
.contactInfoBox .box .text {
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: #fff;
  flex-direction: column;
  font-weight: 300;
}
.contactInfoBox .box .text h3 {
  font-weight: 500;
  color: #2196f3;
  margin-bottom: 0px;
}
.copyright {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
  line-height: 50px;
}

@font-face {
  font-family: "Genericons";
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/53819/genericons-regular-webfont.eot");
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/53819/genericons-regular-webfont.woff")
      format("woff"),
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/53819/genericons-regular-webfont.eot")
      format("truetype");
}

.container {
  margin: 50px auto;
  width: 90%;
}

.social-links h1 {
  color: #fff;
}

.accordion {
  background: #333;
  width: 100%;
  min-width: 800px;
  display: block;
  list-style-type: none;
  overflow: hidden;
  height: 200px;
  font-size: 0;
}

.tab {
  display: inline-block;
  background-color: #444;
  border-right: #333 1px solid;
  width: 80px;
  height: 200px;
  overflow: hidden;
  position: relative;
  margin: 0;
  transition: all 0.5s ease-in-out 0.1s;
}

.tab:hover {
  width: 450px;
}

.tab:hover .social a:before {
  margin-left: -100px;
}

.tab:hover .social a:after {
  margin-left: -5px;
}

.tab .content {
  background: #fff;
  width: 360px;
  height: 200px;
  margin-left: 80px;
  padding: 30px;
  position: relative;
}

.tab .content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.tab .content p {
  font-size: 0.85rem;
  line-height: 1.4rem;
  padding-right: 30px;
  transform: translateX(30px);
}

.social a:after,
.social a:before {
  transition: all 0.4s ease-in-out 0.1s;
  width: 80px;
  height: 200px;
  position: absolute;
  text-indent: 0;
  padding-top: 90px;
  padding-left: 25px;
  display: block;
  font: normal 30px Genericons;
  color: #fff;
}

.social a:after {
  font-size: 48px;
  padding-left: 20px;
  padding-top: 80px;
  margin-left: 85px;
}

.youtube a:before,
.youtube a:after {
  content: "\f213";
}
.youtube a:after {
  background-color: #ff0000;
}

.twitter a:before,
.twitter a:after {
  content: "\f202";
}
.twitter a:after {
  background-color: #00acee;
}

.facebook a:before,
.facebook a:after {
  content: "\f204";
}
.facebook a:after {
  background-color: #3b5998;
}

.linkedin a:before,
.linkedin a:after {
  content: "\f208";
}
.linkedin a:after {
  background-color: #0e76a8;
}

.instagram a:before,
.instagram a:after {
  content: "\f215";
}
.instagram a:after {
  background-color: #bc2a8d;
}

.github a:before,
.github a:after {
  content: "\f200";
}
.github a:after {
  background-color: #4078c0;
}

@media (max-width: 950px) {
  .container {
    width: 70%;
  }

  .tab {
    display: block;
    width: 100%;
    border-bottom: 3px #333 solid;
  }

  .accordion {
    display: block;
    min-width: 450px;
    height: auto;
  }

  .tab .content {
    width: 85%;
  }

  .tab:hover {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .container {
    width: 95%;
  }

  .accordion {
    width: 100%;
    min-width: 350px;
  }
  .tab:hover {
    width: 400px;
  }
}

@media (max-width: 576px) {
  .container {
    width: 90%;
  }

  .accordion {
    width: 100%;
    min-width: 300px;
  }

  .tab:hover {
    width: 380px;
  }

  .tab .content h1 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .tab .content p {
    font-size: 0.85rem;
    line-height: 1.4rem;
    transform: translateX(10px);
  }
}

/* -----------------Responsiveness----------------- */

@media (max-width: 991px) {
  header,
  header.sticky {
    padding: 20px 100px;
    z-index: 1000;
  }
  .logo {
    transform: translateX(-50px);
  }
  .menu {
    position: fixed;
    top: 75px;
    left: -110%;
    display: block;
    padding: 100px 50px;
    text-align: center;
    /* width: 100%; */
    width: 100vw;
    height: 100vh;
    background: #fff;
    transition: 0.5s;
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  .menu.active {
    left: 0;
  }
  header ul li a {
    color: #111;
    font-size: 24px;
    margin: 10px;
  }
  .toggle {
    width: 40px;
    height: 40px;
    background: url("Assests/menu.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
  }
  .toggle.active {
    background: url("Assests/close.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
  }
  header.sticky .toggle {
    filter: invert(1);
  }
  section {
    padding: 100px 50px;
  }
  .banner {
    padding: 150px 50px 100px;
  }
  .banner h2 {
    font-size: 1.5em;
  }
  .banner h3 {
    font-size: 1em;
  }
  .btn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
  }
  .heading h2 {
    font-size: 24px;
  }
  .contentBox h3 {
    font-size: 20px;
  }
  .contentBox p {
    font-size: 15px;
  }
  .content {
    flex-direction: column;
  }
  .w50 {
    margin-bottom: 30px;
  }
  img {
    max-width: 100%;
    transform: translateX(0%);
  }
  .services .content .servicesBox {
    margin: 10px;
  }
  .work .content .workBox {
    width: 100%;
    padding: 10px;
  }
  .testimonials .content .testimonialsBox {
    max-width: calc(100% - 20px);
    padding: 40px 20px;
    margin: 10px;
    background: #2196f3;
  }
  .testimonials .content .testimonialsBox h3 {
    margin-top: 20px;
  }
  .contactInfo {
    margin: 20px 0;
  }
}

@media (max-width: 600px) {
  header,
  header.sticky {
    /* transform: translateX(100px); */
    padding: 20px 100px;
  }
  .banner {
    padding: 150px 20px 150px;
  }
  section {
    padding: 100px 20px;
  }
  img {
    max-width: 100%;
    transform: translateX(0%);
  }
  .toggle {
    width: 40px;
    height: 40px;
    background: url("Assests/menu.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
    /* transform: translateX(100px) !important; */
    padding-left: 100px !important;
  }
  .toggle.active {
    background: url("Assests/close.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    /* transform: translateX(100px) !important; */
    padding-left: 100px !important;
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  header,
  header.sticky {
    /* transform: translateX(100px); */
    padding: 20px 100px;
  }
  .menu {
    position: fixed;
    top: 75px;
    left: -110%;
    display: block;
    padding: 100px 50px;
    text-align: center;
    /* width: 100%; */
    width: 100vw;
    height: 100vh;
    background: #fff;
    transition: 0.5s;
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header ul li a {
    color: #111;
    font-size: 20px;
    text-align: center;
    margin: 10px;
  }
  .logo {
    font-size: 20px !important;
    /* transform: translateX(-70px); */
  }
  .toggle {
    width: 40px;
    height: 40px;
    background: url("Assests/menu.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
  }
  .toggle.active {
    background: url("Assests/close.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
  }
}

@media (max-width: 424px) {
  .menu {
    position: fixed;
    top: 75px;
    left: -110%;
    display: block;
    padding: 100px 50px;
    text-align: center;
    /* width: 100%; */
    width: 100vw;
    height: 100vh;
    background: #fff;
    transition: 0.5s;
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header ul li a {
    color: #111;
    font-size: 20px;
    text-align: center;
    margin: 10px;
  }
  .logo {
    font-size: 20px !important;
    /* margin-right: 40px !important; */
    transform: translateX(-70px);
  }
  .toggle {
    width: 40px;
    height: 40px;
    background: url("Assests/menu.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
  }
  .toggle.active {
    background: url("Assests/close.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
  }
}

@media (max-width: 345px) {
  .menu {
    position: fixed;
    top: 75px;
    left: -110%;
    display: block;
    padding: 100px 50px;
    text-align: center;
    /* width: 100%; */
    width: 100vw !important;
    height: 100vh;
    background: #fff;
    transition: 0.5s;
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header ul li a {
    color: #111;
    font-size: 15px;
    text-align: center;
    margin: 10px;
  }
  .logo {
    font-size: 20px !important;
    transform: translateX(-70px);
  }
}
