@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {

    --siteBackround: #e1f9ff;
    --primaryLight: #fcb0ff;
    
    --primary: #8c38ff;
    --light: #EEEEEE;
    --dark: #212121;

    --CreamWhite: rgb(236, 236, 236);
    --LavaBlack: #111111;

    --footerTheme: rgba(255, 0, 212, 0.3);

    --gradient-B1: #000000;
    --gradient-B2: #000000;

    --gradient-C1: #000000;
    --gradient-C2: #000000;
    --gradient-C3: #000000;

    --gradient-D1: #000000;
    --gradient-D2: #000000;

    --gradient-E1: #000000;
    --gradient-E2: #000000;

    --gradient-F1: #000000;
    --gradient-F2: #000000;

    --gradient-G1: #000000;
    --gradient-G2: #000000;

    --gradient-H1: #000000;
    --gradient-H2: #000000;
    --gradient-H3: #000000;

    --gradient-I1: #000000;
    --gradient-I2: #000000;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}
body{
    background: var(--siteBackround);;
}

/*#region nav*/
.navcontainer {
    max-width: 1280px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 16px 32px;
    transition: all 0.45s;
}

.nav-scrolled {
  background-color: #9b9b9b;
  border-bottom: 3px solid var(--primaryLight);
}
.nav-scrolled h1 {
  color: var(--light);
}

.nav-scrolled .hamburger span {
  background-color: var(--light);
}

.nav-scrolled .menu a {
  color: var(--light);
}

h1 {
    color: var(--dark);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
}

.hamburger {
    display: block;
    position: relative;
    z-index: 999;

    user-select: none;

    appearance: none;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background-color: var(--dark);
    border-radius: 6px;
    z-index: 999;

    transform-origin: 0 0;

    transition: 0.4s;
}

.hamburger:hover span:nth-child(2) {
    transform: translateX(10px);
    background-color: var(--primaryLight);
}

.hamburger.is-active span:nth-child(1) {
    transform: translate(0px, -2px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX();
}

.hamburger.is-active span:nth-child(3) {
    transform: translate(-3px, 3px) rotate(-45deg);
}

.hamburger.is-active:hover span {
    background-color: var(--primaryLight);
}

.menu {
    display: none;
    flex: 1 1 0%;
    justify-content: flex-end;
    margin: 0px -16px;
}

.menu a {
    color: var(--dark);
    margin: 0 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    padding: 8px 16px;
}

.menu a.is-active {
    color: var(--primaryLight);
    padding-top: 4px;
}

.is-active {
    color: var(--primaryLight);
    padding-top: 4px;
}

.menu a:hover {
    padding-top: 4px;
}

@media (min-width: 835px) {
    .hamburger {
        display: none;
    }

    .menu {
        display: flex;
    }
}

@media (max-width: 480px) {
  h1 {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
  }
}


.mobile-nav {
  border-left: 3px solid var(--primaryLight);
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  display: block;
  z-index: 998;
  background-color: var(--dark);
  padding-top: 120px;
  transition: 0.4s;
}

.mobile-nav.is-active {
  left: 0;
}

.mobile-nav a {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 16px;
  text-align: center;
  padding: 12px 16px;
  background-color: var(--light);
  color: var(--dark);
  text-decoration: none;
  transition: padding 0.2s;
  font-weight: 900;
  border-radius: 25px;
}

.mobile-nav a:hover {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #d8d8d8;
}
/*#endregion nav*/

/*#region Hero Section */
.hero {
  background: var(--siteBackround);
  background: linear-gradient(to right, var(--siteBackround), var(--siteBackround));
  padding: 2px 0;
}

.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 90%;
  text-align: center;
  padding: 30px;
}

.hero__heading {
  font-size: 100px;
  margin-bottom: 24px;
  color: var(--dark);
}

.hero__heading span {
  background: #ffffff; /* fallback for old browsers */
    background: var(--dark);
      background-size: 100%;
      -webkit-background-clip: text;
      -moz-background-clip: text;
      background-clip: none;
      -webkit-text-fill-color: transparent;
      -mo-text-fill-color: transparent;
    }
    
  .hero__description {
    font-size: 40px;
    background: #da22ff; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      var(--gradient-B1),
      var(--gradient-B2)
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      var(--gradient-B1),
      var(--gradient-B2)
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    background-clip: none;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }
  
  @media screen and (max-width: 768px) {
    .hero__heading {
      font-size: 60px;
    }
  
    .hero__description {
      font-size: 40px;
    }
  }
  .main__btn {
      font-size: 1.8rem;
      background: #e1cbf0;
      padding: 10px 40px;
      border: none;
      border-radius: 90px;
      margin-top: 2rem;
      cursor: pointer;
      position: relative;
      transition: all 0.2s;
      outline: none;
      margin: 1rem;
    }
    
    .main__btn a {
      position: relative;
      z-index: 2;
      color: #fff;
      text-decoration: none;
      font-weight: 300;
    }
    
    .main__btn:after {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 0%;
      background: #ff00ea;
      transition: all 0.35s;
      border-radius: 90px;
    }
    
    .main__btn:hover {
      color: #fff;
      padding-top: 1rem;
    }
    
    /*bp - homepage*/
    @media screen and (max-height: 800px) {
      .hero__heading {
        font-size: 60px;
      }
    
      .hero__description {
        font-size: 40px;
      }
    }
/*#endregion Hero Section */
  
/*#region about-section*/
.main {
    background-color: var(--siteBackround);
    padding: 5rem 0;
  }
  
  .main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 90%;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
  }
  
  .main__content {
    color: #fff;
    width: 100%;
  }
  
  .main__content h1 {
    font-size: 2rem;
    background-color: #ff799c;
    background-image: linear-gradient(to top, var(--gradient-D1) 0%, var(--gradient-D2) 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: none;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 32px;
  }
  
  .main__content h2 {
    font-size: 1.7rem;
    background: #ff8177; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      var(--gradient-E1),
      var(--gradient-E2)
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      var(--gradient-E1),
      var(--gradient-E2)
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: none;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }
  
  .main__content p {
    margin-top: 1rem;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark);
  }
  .main__img--container {
    text-align: center;
  }
  
  .main__img--card {
    margin: 10px;
    height: 740px;
    width: 500px;
    border-radius: 20px;
    box-shadow: -54px 24px #dadad8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff0;
    background-repeat: no-repeat;
    background-image: url('media/desk-portrait.jpg');
  }
  .homeimage {
    height: 425px;
    width: 425px;
    background-image: url('media/brand/logo-medium.png');
    box-shadow: none;
  }
  
  .fa-layer-group,
  .fa-users {
    font-size: 14rem;
  }
  
  /* Mobile Responsive */
  @media screen and (max-width: 1100px) {
    .main__container {
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin: 0 auto;
      height: 90%;
    }
  
    .main__img--container {
      display: flex;
      justify-content: center;
    }
  
    .main__img--card {
      height: 425px;
      width: 425px;
      background-image: url('media/desk-small.png');
      border-radius: 4px;
      box-shadow: none;
    }

    .homeimage {
      height: 425px;
      width: 425px;
      background-image: url('media/brand/logo-medium.png');
      box-shadow: none;
    }
  
    .main__content {
      text-align: center;
      margin-bottom: 4rem;
    }
  
    .main__content h1 {
      font-size: 2.5rem;
      margin-top: 1rem;
    }
  
    .main__content h2 {
      font-size: 2rem;
    }
  
    .main__content p {
      margin-top: 1rem;
      font-size: 1.5rem;
    }
  }

  @media screen and (min-width: 1300px) {
    .homeimage {
      background-image: url('media/brand/logo-big.png');
      height: 625px;
      width: 625px;
    }
  }
  
  @media screen and (max-width: 480px) {
    
    .homeimage {
      background-image: url('media/brand/logo-small.png') !important;
    }

    .main__img--card {
      background-image: url('media/desk-small.png');
      height: 325px;
      width: 325px;
    }


    .fa-users,
    .fa-layer-group {
      font-size: 4rem;
    }
  
    .main__content h1 {
      font-size: 2rem;
      margin-top: 3rem;
    }
    .main__content h2 {
      font-size: 1.3rem;
    }
  
    .main__content p {
      margin-top: 1.7rem;
    }
  
    .main__btn {
      padding: 12px 36px;
      margin: 2.5rem 0;
    }
  }
/*#endregion about-section*/

/*#region services*/
.services {
    background: var(--siteBackround);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10rem 0;
  }
  
  .services h1 {
    background-color: #ff8177;
    background-image: linear-gradient(to right, var(--gradient-F1) 0%, var(--gradient-F2) 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: none;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-bottom: 5rem;
    font-size: 2.5rem;
    text-align: center;
  }
  
  .services__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
  
  .services__card {
    margin: 10px;
    height: 340px;
    width: 220px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background: #e4e4e4;
    transition: 0.3s ease-in;
    box-shadow: -10px 14px #dadad8;
  }
  
  .services__card:nth-child(2) {
    background: #e4e4e4; /* fallback for old browsers */
 /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
  
  .services__card:nth-child(3) {
    background: #e4e4e4;
  }

  .services__card:nth-child(4) {
    background: #e4e4e4; /* fallback for old browsers */
  }
  
  .services__card h2 {
    text-align: center;
    color: #000000;
    font-size: 22px;
  }
  
  .services__card p {
    text-align: center;
    margin-top: 24px;
    font-size: 20px;
    color: #000000;
  }
  
  .services__btn {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }

  .services__card button {
    color: #fff;
    padding: 10px 18px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f0afec;
    font-size: 1rem;
  }
  
  .services__card button a {
    color: #fff;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f0afec;
    font-size: 1rem;
    text-decoration: none;
  }
  
  .services__card button:hover {
    cursor: pointer;
  }
  
  .services__card:hover {
    transform: scale(1.075);
    transition: 0.3s ease-in;
    cursor: pointer;
  }
  
  @media screen and (max-width: 1300px) {
    .services__wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media screen and (max-width: 768px) {
    .services__wrapper {
      grid-template-columns: 1fr 0fr;
    }
    @media screen and (max-width: 490px) {
      .services__card {
        height: 260px;
        width: 160px;
        border-radius: 4px;
        box-shadow: -8px 12px #dadad8;
      }
      .services__card button {
        padding: 8px 14px;
      }
      .services__card button a {
        font-size: 0.7rem;
      }
      .services__card h2 {
        
        font-size: 14px;
      }
      
      .services__card p {
        text-align: center;
        margin-top: 24px;
        font-size: 12px;
        color: #000000;
      }
    }
    @media screen and (max-width: 381px) {
      .services__card {
        height: 230px;
        width: 130px;
        border-radius: 4px;
        box-shadow: -8px 12px #dadad8;
      }
      .services__card button {
        padding: 6px 12px;
      }
      .services__card button a {
        font-size: 0.6rem;
      }
      .services__card h2 {
        
        font-size: 11px;
      }
      
      .services__card p {
        text-align: center;
        margin-top: 24px;
        font-size: 10px;
        color: #000000;
      }
    }
  }
/*#endregion services*/

/*#region learnmore*/
.lm__container {
    display: grid;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 90%;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
  }

.learnmore__content {
    color: var(--dark);
    width: 100%;
}

.learnmore__content {
    text-align: center;
    margin-bottom: 4rem;
  }

  .learnmore__content p {
    padding-bottom: 2rem;
  }

  .learnmore__content h2 {
    font-size: 2rem;
    background: #ff8177; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      var(--gradient-E1),
      var(--gradient-E2)
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      var(--gradient-E1),
      var(--gradient-E2)
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: none;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }
  
  .learnmore__content p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
  }

  .learnmore__content {
    text-align: center;
    margin-bottom: 4rem;
  }

  .learnmore__content h1 {
    font-size: 2.5rem;
    margin-top: 1rem;
  }

  .learnmore__content h2 {
    font-size: 2rem;
  }

  .learnmore__content p {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
 
/*bp - aboutpage*/
  @media screen and (max-width: 640px) {

    .learnmore__content h1 {
      font-size: 2rem;
      margin-top: 3rem;
    }
    .learnmore__content h2 {
      font-size: 2rem;
    }
  
    .learnmore__content p {
      margin-top: 2rem;
      font-size: 1rem;
    }
  }

  /*bp - aboutpage*/
@media screen and (max-height: 785px) {
  .learnmore__content h1 {
    font-size: 1.5rem;
  }

  .learnmore__content h2 {
    font-size: 1.5rem;
  }

  .learnmore__content p {
    font-size: 1rem;
  }
}
/*#endregion learnmore*/

/*#region contact*/
.contact {
    padding: 200px 0;
    background-color: var(--siteBackround);
}
.contact__heading {
    font-size: 30px;
    margin-bottom: 24px;
    color: var(--dark);
}

.contact__heading span {
    background: #000000; /* fallback for old browsers */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: none;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
  }

.contact__description {
    font-size: 20px;
    background: #da22ff; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      var(--gradient-B1),
      var(--gradient-B2)
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      var(--gradient-B1),
      var(--gradient-B2)
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    background-clip: none;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }

  .contact__description span {
    background: #ee0979; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      var(--gradient-I1),
      var(--gradient-I2)
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      var(--gradient-I1),
      var(--gradient-I2)
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: none;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
  }

@media screen and (max-width: 768px) {
    .contact__heading {
      font-size: 30px;
    }
  
    .contact__description {
      font-size: 20px;
    }
  }
/*#endregion contact*/

body{
	height: 100vh;
	width: 100%;
}

.contact-form{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 100px;
}

.contact-form:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url("media/contactbg.jpg") no-repeat center;
	background-size: cover;
	filter: blur(50px);
	z-index: -1;
}
.testimonialwrapper .smallbox i.quote {
  padding-bottom: 1.8rem;
}
.contact-box{
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
}

.left{
	background: url("media/contactbg.jpg") no-repeat center;
	background-size: cover;
	height: 100%;
}

.right{
	padding: 25px 40px;
}

.contact-form h2{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

.contact-form h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #f179c9;
}

.field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

.field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

textarea{
	min-height: 150px;
}

.contact-form .btn{
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #f179c9;
	color: #fff;
	font-size: 1.1rem;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .3s;
}

.contact-form .btn:hover{
    background-color: #f797d7;
}

.field:focus{
    border: 2px solid rgba(243, 30, 250, 0.47);
    background-color: #fff;
}

@media screen and (max-width: 880px){
	.contact-box{
		grid-template-columns: 1fr;
	}
	.left{
		height: 200px;
	}
}
@media screen and (max-width: 550px){
	.contact-form{
    padding: 12px 60px;
  }
}

/*#region footer*/
.footer {
    background-color: #e4e4e4;
    padding: 5rem 1rem;
    margin-top: 25vh;
}

.footer .container {
    flex-grow: 1;
    margin: 0 auto;
    position: relative;
    width: auto;
}
.footer .container h2 {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--footerTheme);
    max-width: 936px;
}

.field {
  resize: none;
}

.footer .column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0.75rem;
}

.columns:not(.is-desktop) {
    display: flex;
}

.footer .container ul {
    list-style: none;
}
.footer a {
    color: var(--LavaBlack);
    transition: padding .2s ease-out;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 4px;
    padding-left: 0;
    font-weight: bold;
    text-decoration: none;
}
.footer a:hover {
    padding: 4px;
    padding-left: 8px;
    background-color: var(--footerTheme);
    color: var(--CreamWhite);
}

.copyright-text {
    text-align: center;
}

.plug-text {
    padding-top: 1rem;
    text-align: center;
}

.ToTop {
    text-align: center;
}

.ToTop:hover {
    padding-top: 8px !important;
    padding-left: 0px !important;
    background-color: var(--footerTheme);
    color: var(--CreamWhite);
}

.plug-button {
    text-align: center;
}

.plug-button:hover {
    padding-top: 8px !important;
    padding-left: 0px !important;
    background-color: var(--footerTheme);
    color: var(--CreamWhite);
}

li {
    display: list-item;
}
/*#endregion footer*/
.wrapper {
  width: 100%;
  place-items: center;
  display: flex;
  justify-content: center;
}
.wrapper .button{
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 0 5px;
  overflow: hidden;
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease-out;
}
.wrapper .button:hover{
  width: 200px;
}
.wrapper .button .icon{
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 60px;
  transition: all 0.3s ease-out;
}
.wrapper .button:nth-child(1):hover .icon{
  background: #4267B2;
}
.wrapper .button:nth-child(2):hover .icon{
  background: #0E76A8;
}
.wrapper .button .icon i{
  font-size: 25px;
  line-height: 60px;
  transition: all 0.3s ease-out;
}
.wrapper .button:hover .icon i{
  color: #fff;
}
.wrapper .button span{
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  margin-left: 10px;
  transition: all 0.3s ease-out;
}
.wrapper .button:nth-child(1) span{
  color: #4267B2;
}
.wrapper .button:nth-child(2) span{
  color: #1DA1F2;
}
.wrapper .button:nth-child(3) span{
  color: #E1306C;
}
.wrapper .button:nth-child(4) span{
  color: #333;
}
.wrapper .button:nth-child(5) span{
  color: #ff0000;
}


.testimonialwrapper{
  display: grid;
  height: 100%;
  place-items: center;
}
.testimonialwrapper{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.testimonialwrapper .box{
  background: #fff;
  width: calc(33% - 10px);
  padding: 25px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
}
.testimonialwrapper .box i.quote{
  font-size: 20px;
  color: #f76de4;
}
.testimonialwrapper .box .content{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.box .info .name{
  font-weight: 600;
  font-size: 17px;
}
.box .info .job{
  font-size: 16px;
  font-weight: 500;
  color: #f76de4;
}
.box .info .stars{
  margin-top: 2px;
}
.box .info .stars i{
  color: #f76de4;
}
.box .content .image{
  height: 75px;
  width: 75px;
  padding: 3px;
  background: #f76de4;
  border-radius: 50%;
}
.content .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}
.box:hover .content .image img{
  border-color: #fff;
}
.unimp {
  display: none;
}
@media (max-width: 2000px) {
  .testimonialwrapper .box{
    width: calc(50% - 10px);
    margin: 10px 0px;
  }
}
@media (max-width: 702px) {
  .testimonialwrapper .box{
    width: 100%;
  }
  .unimp {
    display: block;
  }
}