@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

:root {
  --pink: #ff4f6e;
  --blue: #009dae;
  --yellow: #ffaf00;
  --white: #fff;
  --secondary-font-color: #aeaeae;
  --box-shadow-pink: 0px 10px 30px rgba(255, 79, 110, 0.3);
  --box-shadow-blue: 0px 15px 30px rgba(0, 157, 174, 0.3);
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',
    sans-serif;
  font-size: 14px;
}

a {
  text-decoration: none !important;
  transition: all ease 0.3s;
}

/* ---------------------- btn section ---------------------- */
.primary-btn {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 46px;
  outline: none !important;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 5px;
  background-origin: border-box;
  background-color: #ff4f6e;
  border: double 2px transparent;
  box-shadow: var(--box-shadow-pink);
}

.primary-btn:hover {
  background-color: var(--white);
  color: var(--pink);
  border: 2px solid var(--pink);
  box-shadow: none;
  background-clip: border-box;
}

.social-btn {
  border: solid 1px var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 24px;
  padding: 10px;
  transition: all ease .3s;
}

.social-btn:hover {
  border: solid 1px var(--white);
  color: var(--white);
  background-color: var(--blue);
}

/* ---------------------- btn section ---------------------- */
/* ---------------------- scroll to top section ---------------------- */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--pink);
  color: white;
  cursor: pointer;
  padding: 15px 18px;
  border-radius: 50%;
}
#myBtn i{
  margin: 0;
  padding: 0;
  font-size: 20px;
}
#myBtn:hover {
  background-color: #fff;
  border: 1px solid var(--pink);
  color: var(--pink);
}
/* ---------------------- scroll to top section ---------------------- */
/* ---------------------- navbar section ---------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #ffffff;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  z-index: 999;
}

nav .navbar {
  height: 100%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

nav .navbar .logo a {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}
nav .navbar .logo a span{
  text-transform: capitalize;
  color: var(--yellow);
  font-size: 22px;
}
nav .navbar .nav-links {
  height: 100%;
  line-height: 70px;
}

nav .navbar .nav-links .links {
  display: flex;
}

nav .navbar .nav-links .links li {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0 14px;
}

nav .navbar .nav-links .links li a:hover,
nav .navbar .nav-links .links li a.active {
  color: var(--pink);
}

nav .navbar .nav-links .links li a {
  height: 100%;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
}

nav .navbar .nav-links .links li .arrow {
  height: 100%;
  width: 22px;
  text-align: center;
  color: #000;
  line-height: 70px;
  transition: all .3s ease;
}

nav .navbar .nav-links .links li:hover .rotate {
  transform: rotate(180deg);
}

.navbar .nav-links .links .sub-menu-links {
  position: absolute;
  top: 70px;
  left: 0;
  background-color: #fff;
  line-height: 40px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  display: none;
}

.navbar .nav-links .links .sub-menu-links li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .nav-links .links .sub-menu-links li a {
  font-size: 15px;
  font-weight: 500;
}

.navbar .nav-links .links .sub-menu-links li .more-arrow {
  line-height: 40px;
}

.navbar .nav-links .links li:hover .sub-menu {
  display: block;
}

.navbar .nav-links .links li .more .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  display: none;
}

.navbar .nav-links .links li .more:hover .more-sub-menu {
  display: block;
}

.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}

.navbar .search-box i {
  color: #fff;
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  align-items: center;
  display: flex;
  justify-content: center;
}

.navbar .search-box .input-box {
  height: 60px;
  width: 300px;
  background: #fff;
  position: absolute;
  top: 75px;
  right: calc(100% - 40px);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}

.navbar.showInput .search-box .input-box {
  opacity: 1;
  pointer-events: auto;
  top: 65px;
}

.navbar .search-box .input-box::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #fff;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}

.navbar .search-box .input-box input {
  position: absolute;
  height: 35px;
  width: 280px;
  z-index: 98;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  outline: none;
  border: none;
  padding: 0 15px;
  font-size: 16px;
}

.navbar .bx-menu {
  display: none;
}

.navbar .bx-menu,
.nav-links .sidebar-logo .logo_name,
.nav-links .sidebar-logo .bx-x {
  display: none;
}

@media (max-width:954px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a {
    font-size: 26px;
  }

  nav .navbar .nav-links .links li {
    padding: 0 10px;
  }

  nav .navbar .nav-links .links li a {
    font-size: 15px;
    display: block;
  }
}

@media (max-width:800px) {
  nav .navbar .nav-links {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    max-width: 270px;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    line-height: 40px;
    transition: all .5s ease;
  }

  nav .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar .bx-menu,
  .nav-links .sidebar-logo .logo_name,
  .nav-links .sidebar-logo .bx-x {
    color: #000;
    font-size: 25px;
    font-weight: 500;
  }

  .navbar .bx-menu,
  .nav-links .sidebar-logo .logo_name,
  .nav-links .sidebar-logo .bx-x {
    display: block;
  }

  nav .navbar .nav-links .links {
    display: block;
    margin-top: 20px;
  }

  nav .navbar .nav-links .links li {
    display: block;
    border-bottom: none;
  }

  .navbar .nav-links .links .sub-menu {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
  }

  .navbar .nav-links .links .sub-menu li {
    border-bottom: none;

  }

  .navbar .nav-links .links li:hover .sub-menu {
    display: none;
  }

  .navbar .nav-links .links li .more:hover .more-sub-menu {
    display: none;
  }

  nav .navbar .nav-links .links li .arrow {
    line-height: 40px;
  }

  nav .navbar .nav-links .links li:hover .rotate {
    transform: rotate(0deg);
  }

  .navbar .nav-links .links li.show .sub-menu {
    display: block;
  }

  .navbar .nav-links .links li.show a .rotate {
    transform: rotate(180deg);
  }

  .navbar .nav-links .links li .more .more-sub-menu {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
  }

  .navbar .nav-links .links .sub-menu-links li a {
    display: inline-block;
  }

  .navbar .nav-links .links li .more.show .more-sub-menu {
    display: block;
  }

  .navbar .nav-links .links li .more.show .more-arrow {
    transform: rotate(180deg);
  }
}

/* ---------------------- navbar section ---------------------- */
/* ---------------------- banner section ---------------------- */
.hero {
  background-position: center;
  background-size: cover;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;

  /* Created with https://www.css-gradient.com */
  background: rgba(255, 79, 110, 0.5);
  background: -webkit-linear-gradient(top left, rgba(255, 79, 110, 0.5), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(0, 157, 174, 0.3));
  background: -moz-linear-gradient(top left, rgba(255, 79, 110, 0.5), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(0, 157, 174, 0.3));
  background: linear-gradient(to bottom right, rgba(255, 79, 110, 0.5), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(0, 157, 174, 0.3));
  /* background-image: linear-gradient(to right bottom, #ff4f6e, #ff75a2, #fd9acc, #f4bce9, #f1dbfa, #e7defa, #e0e0f7, #dce2f2, #b9cfe7, #8ebeda, #5badc7, #009dae); */
}

.hero::before {
  position: absolute;
  width: 98vw;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url("../img/Colored\ Shapes.svg");
  background-size: 98vw auto;
  background-repeat: no-repeat;
  content: "";
  opacity: 0.3;
}

.banner-inner {
  width: 100%;
  z-index: 20;
}

.hero .banner-inner .banner-content {
  text-align: left;
  z-index: 9;
}

.hero .banner-inner .banner-content h3 {
  font-size: 25px;
  margin-bottom: 20px;
  position: relative;
  color: var(--pink);
}

.hero .banner-inner .banner-content h1 {
  margin-top: 20px;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 25px;
}

.hero .banner-inner .banner-content h5 {
  font-size: 20px;
  margin-bottom: 35px;
}

.hero .banner-inner .banner-content .primary-btn {
  margin-bottom: 20px;
}

.primary-btn span {
  padding: 0 42px;
}

.hero .banner-inner .hero-img {
  /* padding-top: 200px; */

  z-index: 8;
}

.hero .banner-inner .hero-img img {
  vertical-align: middle;
  width: 100%;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  /* width: 100%; */
}

@media (max-width:800px) {
  .hero .banner-inner .banner-content h1 {
    font-size: 38px;
  }

  .hero .banner-inner .banner-content {
    margin-top: 50px;
    text-align: center;
  }
}

/* ---------------------- banner section ---------------------- */
/* ---------------------- about section ---------------------- */
.about-section {
  position: relative;
  margin: 100px 0;
  height: 600px;
}

.about-section .main-title h2 {
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 25px;
  font-size: 30px;
}

.about-section .main-title h2 span {
  color: var(--pink);
  font-size: 30px;
}

.about-section .main-title p {
  font-weight: 500;
  color: var(--secondary-font-color);
}

.about-section .main-title a {
  margin-top: 25px;
}

.about-section .about-img img {
  vertical-align: middle;
  border-radius: 5px;
  width: 100%;
}

@media (max-width:800px) {
  .about-section .about-img {

    margin-bottom: 50px;
  }

  .about-section .main-title {
    padding: 0 20px;
  }

  .about-section .main-title a {
    align-items: center;
  }

  .download-btn {
    display: grid;
    align-items: center;
    justify-content: center;
  }
}

/* ---------------------- about section ---------------------- */
/* ---------------------- service section ---------------------- */
.service-section{
  padding-top: 100px;
}
.service-section .main-title {
  text-align: center;
  margin-bottom: 100px;
}

.service-section .main-title h2 {
  line-height: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-section .main-title p {
  color: var(--secondary-font-color);
  font-size: 16px;
}

.service-section .service-inner .service-item {
  padding: 45px 25px;
  text-align: center;
  background-color: #f9f9fd;
  cursor: pointer;
  margin-bottom: 30px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all .4s ease 0s;
}

.service-section .service-inner .service-item:hover {
  background-color: var(--white);
  box-shadow: var(--box-shadow-pink);
}

.service-section .service-inner .service-item i {
  font-size: 30px;
  margin-bottom: 45px;
  color: var(--pink);

}

.service-section .service-inner .service-item h4 {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

.service-section .service-inner .service-item p {
  color: var(--secondary-font-color);
}

@media (max-width:800px) {
  .service-section {
    margin-top: 100px;
    padding: 150px 10px 100px 10px;
  }
}

/* ---------------------- service section ---------------------- */
/* ---------------------- projects section ---------------------- */
.project-section {
  padding-top: 100px;
}

.project-section .project-heading {
  padding-bottom: 50px;
}

.project-section .project-heading h3 {
  text-transform: uppercase;
  font-weight: 600;
}

.project-section .project-heading p {
  color: var(--secondary-font-color);
}

.project-section .filters {
  text-align: center;
}

.project-section .filters ul li {
  display: inline-block;
  margin-right: 50px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 15px;
  cursor: pointer;
  text-transform: uppercase;
}

.project-section .filters ul li.active {
  background-color: #ebebeb;
  color: var(--pink);
  padding: 0 15px;
  border-radius: 5px;
}

.project-section .project-content {
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; */
  margin: auto;
}

.project-section .project-content .project-box {
  width: 100%;
  padding: 15px;
  margin-bottom: 50px;
}

.project-section .project-content .project-box .single-project {
  position: relative;
  height: 300px;
  width: 100%;
}

.project-section .project-content .project-box .single-project img {
  width: 100%;
  border-radius: 5px;
  height: 100%;
  object-fit: cover;
}

.project-section .project-content .project-box .single-project .overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  justify-items: center;
  display: grid;
  -webkit-transition: all .4s ease 0s;
  -moz-transition: all .4s ease 0s;
  -o-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
}

.project-section .project-content .project-box .single-project .overlay:hover {
  background: rgba(77, 87, 222, .5);
}

.project-section .project-content .project-box .single-project .overlay:hover .icon i {
  display: block;
  font-size: 85px;
}

.project-section .project-content .project-box .single-project .overlay .icon {
  display: flex;
  align-items: center;
}

.project-section .project-content .project-box .single-project .overlay .icon i {
  display: none;
  font-size: 65px;
  justify-content: center;
  color: var(--white);
  -webkit-transition: all .4s ease 0s;
  -moz-transition: all .4s ease 0s;
  -o-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
}

.project-section .project-content .project-box .short-info {
  margin-top: 30px;
}

.project-section .project-content .project-box .short-info h4 {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 0;

}

.project-section .project-content .project-box .short-info h4 a {
  color: black;
}

.project-section .project-content .project-box .short-info p {
  color: var(--secondary-font-color);
}

@media (max-width:800px) {
  .project-section .filters {
    text-align: left;
  }

  .project-section .filters ul li {
    margin: 10px;
  }
}

/* ---------------------- projects section ---------------------- */
/* ---------------------- testimonial section ---------------------- */
.testimonial-section {
  padding-top: 100px;
}

.testimonial-section .main-title {
  margin-bottom: 100px;
}

.testimonial-section .main-title h2 {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 50px;
}

.testimonial-section .main-title p {
  margin-bottom: 0;
  color: var(--secondary-font-color);
}

.testimonial-section .item {
  width: 550px !important;
  padding: 50px 55px;
  margin: 0 10px 80px;
  box-shadow: 0 15px 30px 0 rgba(118, 85, 225, .1);
  transition: all .4s ease;
}

.testimonial-section .item:hover {
  box-shadow: 0 10px 20px 0 rgba(118, 85, 225, .2);
}

.testimonial-section .item img {
  display: block;
  width: 100%;
  border-radius: 5px;
}

.testimonial-section .item .content h4 {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.testimonial-section .item .content p {
  color: var(--secondary-font-color);
}

@media (max-width:800px) {
  .testimonial-section .item {
    width: 340px !important;
  }
}

/* ---------------------- testimonial section ---------------------- */
/* ---------------------- contact section ---------------------- */
.contact-section {
  padding: 120px 0;
}

.contact-section .main-title {
  margin-bottom: 30px;
}

.contact-section .main-title h2 {
  font-size: 60px;
  margin-bottom: 8px;
}

.contact-section .main-title p {
  font-size: 18px;
  line-height: 30px;
  color: rgba(29, 29, 36, 0.75);
}

.contact-section .main-title p a {
  color: rgb(29, 29, 36);
  font-weight: 500;
}

.contact-form label {
  display: block;
  margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 0 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: all 0.3s ease;
  height: 50px;
  line-height: 46px;
  margin-bottom: 20px;
  outline: none;
  color: #1f1f25;
  font-size: 15px;
  letter-spacing: 0.1px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
}

.contact-form textarea {
  height: 120px;
}

.contact-form .contact-btn {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 40px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s;
  border: 2px solid var(--pink);
  background: var(--pink);
  color: #ffffff;
}

.contact-form .contact-btn:hover {
  background: transparent;
  color: var(--pink);
  box-shadow: 0 10px 15px 0 rgba(249, 0, 77, 0.1);
}

.contact-section .contact-img {
  padding: 100px 0;
}

.contact-section .contact-img img {
  border-radius: 5px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.1);
}

@media (max-width:800px) {
  .contact-section .contact-img {
    padding: 50px 0;
  }

  .contact-section .contact-img img {
    width: 100%;
  }

  .contact-section .main-title {
    padding: 0 20px;
  }
}

/* ---------------------- contact section ---------------------- */
/* ---------------------- footer section ---------------------- */
.footer-section .footer-wrapper {
  position: relative;
}

.footer-section .footer-wrapper .footer-left {
  background: rgb(131, 58, 180);
  background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 61%, rgba(252, 176, 69, 1) 98%);
  position: relative;
  padding: 120px 120px;
  z-index: 2;
  
  border-top-right-radius: 6px;
}



.footer-section .footer-wrapper .footer-left .inner {
  z-index: 5;
  position: relative;
}

.footer-section .footer-wrapper .footer-left .inner p {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 9px;
}

.footer-section .footer-wrapper .footer-left .inner h2 {
  color: #ffffff;
  font-size: 75px;
  font-weight: 900;
  font-family: "Montserrat",
    sans-serif;
  line-height: 90px;
}

.footer-section .footer-wrapper .footer-left .inner .contact-btn {
  margin-top: 30px;
  border: solid 2px #fff;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 40px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 500;
  transition: all .3s ease;
}

.footer-section .footer-wrapper .footer-left .inner .contact-btn:hover {
  background-color: #fff;
  color: var(--pink);
  border-color: #fff;
}

.footer-section .footer-wrapper .footer-right {
  margin: 0;
  padding: 150px 70px;
  width: 100%;
  padding-left: 120px;
  background-color: #000;
}

.footer-wrapper .footer-right .footer-widget h4 {
  color: #c6c9d8;
  font-weight: 500;
  margin-bottom: 30px;
  opacity: 0.75;
}

.footer-wrapper .footer-right .footer-widget .footer-link {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-wrapper .footer-right .footer-widget .footer-link li a {
  color: #c6c9d8;
  font-size: 16px;
  opacity: 0.75;
}
.footer-wrapper .footer-right .footer-widget .footer-link li a:hover{
  color: #fff;
}
.footer-wrapper .footer-right .footer-widget p {
  color: #c6c9d8;
  font-size: 16px;
  opacity: 0.75;
}

.footer-wrapper .footer-right .footer-widget .social-links .social-btn {
  border: solid 1px #c6c9d8;
  border-radius: 50%;
  color: #c6c9d8;
  font-size: 20px;
  padding: 8px;
  transition: all ease .3s;
}


.footer-wrapper .footer-right .footer-widget .social-links .social-btn:hover {
  border: solid 1px var(--white);
  color: var(--white);
  background-color: #000;
}

.footer-wrapper .footer-right .copyright-text {
  position: absolute;
  bottom: 0;
}

.footer-wrapper .footer-right .copyright-text p {
  color: #c6c9d8;
  font-size: 14px;
  opacity: 0.75;
}

@media (max-width:800px) {
  .footer-section .footer-wrapper .footer-left {
    margin: 0;
  }

  .footer-section .footer-wrapper .footer-left .inner h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 40px;
  }
  .footer-section .footer-wrapper .footer-left {
    padding: 120px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
   .footer-section .footer-wrapper .footer-right {
    padding-left: 70px;
  }
}

/* ---------------------- footer section ---------------------- */