.content-cover {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

header {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-content {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}

.navigation ul {
  list-style: none;
  display: flex;
}

.navigation a,
.navigation span {
  color: #010205;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 20px;
  margin: 0 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s linear;
}

.navigation a:hover,
.navigation span:hover {
  text-decoration: underline;
}

.navigation .drop-down {
  position: relative;
}

.navigation .drop-down-menu {
  position: absolute;
  top: 20px;
  left: 0;
  padding: 20px 0;
  display: flex;
  justify-content: space-around;
  align-items: start;
  flex-direction: column;
  width: 200px;
  height: 60px;
  z-index: 99;
  background-color: #fff;
}

.drop-down::after {
  content: url('../images/arrow-down.png');
  position: absolute;
  right: 8px;
  top: 2px;
  transition: all .1s linear;
}

.drop-down:hover::after {
  top: 4px;
}

.drop-down-menu.hidden {
  display: none;
}

.main-banner {
  margin-top: 90px;
}

.about-page .content {
  padding-top: 90px;
}

.content {
  padding: 120px 0 90px;
  min-height: 460px;
}

.content-about {
  padding: 120px 0 90px;
}

.content-about p {
  margin-bottom: 50px;
}

.content-about .column-37 img {
  width: 100%;
  margin-top: 0;
}

.flex-row {
  display: flex;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.column-43 {
  width: 43%;
  margin: 0 2%;
  position: relative;
}

.column-37 {
  width: 37%;
  margin: 0 2%;
  position: relative;
}

.column-49 {
  width: 49%;
  margin: 0 2%;
  position: relative;
}

h1 {
  color: #010205;
  font-family: "Plus Jakarta Sans";
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.92px;
  margin-top: 0;
}

h2 {
  color: #010205;
  font-family: "Plus Jakarta Sans";
  font-size: 61px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 76.8px */
  letter-spacing: -1.92px;
  margin-top: 0;
}

h3 {
  color: #575EFF;
  font-family: "Plus Jakarta Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 52px */
  letter-spacing: -1.2px;
  text-decoration-line: underline;
  margin-top: 0;
}

.content h1 {
  margin-top: 0;
}

p {
  color: #4c4d4d;
  font-family: "Plus Jakarta Sans";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.privacy-page {
  padding: 50px 0 ;
}

.privacy-page h4 {
  color: #010205;
  font-family: "Plus Jakarta Sans";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.92px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.content p {
  max-width: 530px;
  margin-bottom: 50px;
}

.partners-cover .content p {
  margin-bottom: 10px;
}

.partners-cover .content .btn-transparent {
  margin-top: 50px;
}

.about-page .content p {
  margin-bottom: 10px;
}

.about-page .cards-box {
  margin-top: 100px;
}

.btn-transparent {
  color: #010205;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
  display: flex;
  width: 156px;
  padding: 17px 16px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  border-radius: 50px;
  border: 1px solid #010205;
  background: var(--Color, #FFF);
  box-shadow: 0px 2px 0px 0px #8287FF;
  transition: all .2s linear;
  text-decoration: none;
}

.btn-transparent img {
  width: 15px;
}

.btn-transparent:hover {
  box-shadow: 0 -2px 0 0 #8287FF;
  transform: translateY(2px);
}

/* Slider 1 start */

.cards-box {
	position: relative;
	transform: translateX(-15px);
}

.cards-box .card {
	/* width: calc(18rem + 19vh); */
	max-width: 80vw;
	background: #f7fffd;
	border-radius: 30px;
	cursor: pointer;
}

.cards-box .card img {
  width: 100%;
}

.cards-box .card.hide {
	visibility: hidden;
}

.cards-box .card:not(.hide) {
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.8s cubic-bezier(0.18, 0.98, 0.45, 1);
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.07);
}

.cards-box .card:not(.hide)[data-slide='0'] {
	transform: translate(0px, 0px) scale(1);
	z-index: 6;
	opacity: 1;
}

.cards-box .card:not(.hide)[data-slide='1'] {
	transform: translate(-40px, -25px) scale(0.975);
	z-index: 5;
	opacity: 0.8;
}

.cards-box .card:not(.hide)[data-slide='2'] {
	transform: translate(-70px, -50px) scale(0.95);
	z-index: 4;
	opacity: 0.7;
}

.cards-box .card:not(.hide)[data-slide='3'] {
	transform: translate(-100px, -75px) scale(0.925);
	z-index: 3;
	opacity: 0.6;
}

.cards-box .card:not(.hide)[data-slide='4'] {
	transform: translate(-130px, -100px) scale(0.9);
	z-index: 2;
	opacity: 0.5;
}

.cards-box .card:not(.hide)[data-slide='5'] {
	transform: translate(-160px, -125px) scale(0.875);
	z-index: 1;
	opacity: 0.4;
}

.cards-box .card:not(.hide)[data-slide='0'] {
	transition: all 0.32s cubic-bezier(0.18, 0.98, 0.45, 1);
}

.content-placeholder {
	padding: 14px 18px 20px;
}

.content-placeholder .row {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	margin-bottom: calc(.8rem + 0.4vw);
}

.content-placeholder .row .img {
	flex-shrink: 0;
	position: relative;
	margin-right: 20px;
	background: #5eebc6;
	width: calc(56px + 2vw);
	height: calc(56px + 2vw);
	border-radius: 50%;
}

.content-placeholder .row .img::after {
	content: attr(data-letter);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: calc(30px + 1vw);
	font-weight: bold;
	color: white;
}

.content-placeholder .row .img-text {
	background: #a7f4e0;
	width: 45%;
	min-width: 145px;
	height: 20px;
	margin-top: -20px;
	border-radius: 10px;
}

.content-placeholder .row .img-text::after {
	content: "";
	display: block;
	width: 80%;
	height: 10px;
	margin-top: 30px;
	background: #a7f4e0;
	border-radius: 10px;
}

.content-placeholder .text {
	background: #a7f4e0;
	width: 90%;
	height: 2vh;
	min-height: 12px;
	max-height: 14px;
	border-radius: 10px;
}

.content-placeholder .text.text--m {
	width: 80%;
	margin-top: 2vh;
	height: 2vh;
	min-height: 12px;
}

.content-placeholder .text.text--s {
	width: 70%;
	margin-top: 2vh;
	height: 2vh;
	min-height: 12px;
}

.content-placeholder .btn {
	width: 100%;
	height: 50px;
	margin-top: 20px;
	background-color: #11d5af;
	border-radius: 40px;
}

.slider-next,
.slider-next-2 {
  position: absolute;
  left: 45%;
  transform: rotate(180deg);
  transition: all .1s linear;
}

.slider-prev,
.slider-prev-2 {
  position: absolute;
  left: 35%;
  transition: all .1s linear;
}

.slider-btns {
  background-image: url(../images/arrow.png);
  background-color: transparent;
  background-size: cover;
  width: 25px;
  height: 17px;
  border: none;
  cursor: pointer;
  bottom: -30px;
}

.slider-next:hover {
  transform: scale(1.2) rotate(180deg);
}

.slider-prev:hover {
  transform: scale(1.2);
}

/* Slider 1 end */

.divider {
  position: relative;
  width: 250px;
  margin: 0 auto;
}

.divider-line {
  background-color: #575EFF;
  width: 100%;
  height: 3px;
}

.divider-block {
  position: absolute;
  top: -6px;
  background-color: #575EFF;
  height: 6px;
  width: 50px;
}

.divider-block-1 {
  left: 0;
}

.divider-block-2 {
  left: 50px;
}

.divider-block-3 {
  left: 100px;
}


.divider-block-4 {
  left: 150px;
}


.divider-block-5 {
  left: 200px;
}

.content-portfolio {
  padding: 90px 0;
  text-align: center;
}

.max-width-1100 {
  max-width: 1100px;
}

.max-width-1140 {
  max-width: 1140px;
  margin: 0 auto;
}

.card-container {
  margin: 90px auto 0;
}

.portfolio-card {
  width: 100%;
  max-width: 530px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px 20px;
  box-sizing: border-box;
  border-radius: 45px;
  border: 1px solid  #191A23;
  background: #FFF;
  box-shadow: 0px 5px 0px 0px #191A23;
  margin-bottom: 40px;
  min-height: 360px;
  transition: all .2s linear;
}

.portfolio-card:hover {
  box-shadow: 0px -5px 0px 0px #191A23;
  transform: translateY(5px);
}

.portfolio-card h3 {
  color: #010205;
  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-align: left;
  text-decoration: none;
}

.portfolio-card p {
  color: #565656;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.portfolio-card-dark {
  border-radius: 45px;
  border: 1px solid #191A23;
  background: #34353F;
  box-shadow: 0px 5px 0px 0px #8287FF;
  transition: all .2s linear;
}

.portfolio-card-dark:hover {
  box-shadow: 0px -5px 0px 0px #8287FF;
  transform: translateY(5px);
}

.portfolio-card-dark h3,
.portfolio-card-dark p {
  color: #fff;
}

.portfolio-card img {
  width: 100%;
}

.card-content {
  width: 70%;
}

.card-content-100 {
  width: 100%;
}

.card-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.card-head img {
  width: 100px;
  margin-right: 30px;
}

.card-head h3 {
  margin-bottom: 0;
}

.card-pic {
  width: 28%
}

.partner-cover .cards-box {
  margin-top: 40px;
}

.partner-cover .slider-btns {
  margin-top: 40px;
  bottom: 10px;
}

.accordion-body p {
  margin: 0;
}

.color-blue {
  color: #575EFF;
}

.accordionjs .acc_section .acc_content {
  padding: 20px 30px 25px;
}

.accordionjs .acc_section .acc_head {
  padding: 20px;
}

.accordion-body h4 {
  color: #1C2129;
  font-family: "Plus Jakarta Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  margin: 0 10px;
}

.accordionjs .acc_section.acc_active > .acc_head {
  background: #fff;
  border-bottom: none;
}

.accordionjs .acc_section {
  border: none;
  border-top: 2px solid #000;
}

.accordionjs {
  border-bottom: 2px solid #000;
}

.acc_head {
  position: relative;
}

.acc_section .acc_head::after {
  content: "+";
  font-size: 45px;
  line-height: 55px;
  font-weight: 100;
  position: absolute;
  right: 20px;
  top: 10px;
  width: 30px;
  text-align: center;
}

.acc_section.acc_active .acc_head::after {
  content: "-"; 
  font-size: 55px;
}

.counters-cover {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 70px;
}

.counter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.counter .number {
  color: #575EFF;
  text-align: center;
  margin: 0;
  font-family: "Roboto Serif";
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.counter .text {
  color: var(--Black, #0C0C0C);
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin: 10px 0 0;
}

.footer {
  background-color: #34353F;
  padding: 80px 0 30px;
  background-image: url('../images/Illustration.svg');
  background-repeat: no-repeat;
  background-position: right center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-content h5 {
  color: #FFF;
  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 20px;
}

.copyright {
  margin: 50px 0 0;
}

.copyright p {
  text-align: center;
  color: #fff;
}

.col-50 {
  width: 46%;
  padding: 0 2%;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  margin-top: 45px;
}

.contact-form .form-input {
  display: flex;
  padding: 18px 30px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 30px;
  border: 1px solid #010205;
  background: #FFF;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
  color: #000;
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn-transparent-white {
  display: flex;
  width: 136px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 42px;
  border-radius: 70px;
  border: 1px solid #FFF;
  color: #FFF;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.32px;
  background: #34353F;
  box-shadow: 0px 2px 0px 0px #6167FF;
  cursor: pointer;
  transition: all .2s linear;
}

.btn-transparent-white:hover {
  box-shadow: 0px -2px 0px 0px #6167FF;
  transform: translateY(2px);
}

.submit-btn {
  margin-top: 40px;
}

.error_msg_contact {
  color: #ff0f0f;
  font-size: 18px;
}

.success_msg_contact {
  color: #00cd09;
  font-size: 18px;
}

.footer-contects {
  max-width: 445px;
  width: 100%;
  margin-top: 30px;
}

.footer-contects p {
  color: #FFF;
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  text-decoration: none;
}

.footer-contects p img {
  margin-right: 15px;
  margin-top: 5px;
  min-width: 25px;
}

.steps img {
  width: 100%;
}

.owl-carousel {
  margin-top: 80px;
}

.owl-nav,
.owl-dot {
  display: none;
}

.owl-carousel .owl-stage {
  margin: 0 auto;
}

.owl-carousel .owl-item img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-height: 90px;
}

.content-about .our-partners-img {
  margin-top: 0;
  width: 100%;
}

.founders-info {
  text-align: left;
}

.founders-info h3 {
  color: #010205;
  font-family: "Plus Jakarta Sans";
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; 
  letter-spacing: -1.92px;
  text-decoration: none;
  margin-bottom: 20px;
}

.founders-info h4 {
  color: #000;
  font-family: "Plus Jakarta Sans";
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  margin: 36px 0;
}

.founders-info h5 {
  color: #575EFF;
  font-family: "Plus Jakarta Sans";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.4px;
  /* text-decoration-line: underline; */
  text-transform: capitalize;
  margin: 0 0 30px;
  max-width: 560px;
}

.founders-info img {
  float: left;
  margin-right: 10px;
}

.founders-info p {
  color: #191A23;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}

.linkedin {
  position: relative;
  margin-left: 50px;
}

.linkedin svg {
  position: absolute;

}

.headline-center {
  margin: 50px 0 0;
  text-align: center;
}

.col-31 {
  width: 31%;
}

.portfolio-page {
  padding-top: 40px;
}

.portfolio-page-card {
  border-radius: 30px;
  border: 1px solid #000;
  background: #FFF;
  box-shadow: 0px 2px 0px 0px #010205;
  padding: 15px 30px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 35px;
}

.portfolio-visibile-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 400px;
}

.portfolio-page-card img {
  width: 100%;
  max-height: 200px;
  border-radius: 15px;
}

.portfolio-page-card h5 {
  color: #191A23;
  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  margin: 20px 0;
}

.portfolio-page-card p,
.portfolio-page-card li {
  color: #898989;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0 0 20px;
}

.portfolio-page-card ul {
  padding: 0 0 0 18px;
}

.portfolio-page-card li {
  margin: 0;
  padding: 0;
}

.portfolio-page-card-black {
  background: #34353F;
  box-shadow: 0px 2px 0px 0px #575EFF;
}

.portfolio-page-card-black h5,
.portfolio-page-card-black p,
.portfolio-page-card-black li {
  color: #fff;
}

.portfolio-page-card a {
  color: #575EFF;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  text-decoration-line: underline;
}

details {
  width: 100%;
}

summary {
  display: block;
  text-align: center;
  width: 40%;
  padding: 13px 24px;
  border-radius: 50px;
  border: 1px solid #010205;
  background: #FFF;
  box-shadow: 0px 2px 0px 0px #8287FF;
  color: #010205;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.32px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all .2s linear;
  float: right;
}

.portfolio-page-card-black summary {
  color: #fff;
  background-color: #34353F;
  border: 1px solid #fff;
}

details[open] summary {
  float: right;
}

.details-content-cover {
  margin-top: 80px;
}

summary:hover {
  box-shadow: 0px -2px 0px 0px #8287FF;
  transform: translateY(2px);
}

.navigation-mobile {
  display: flex;
}

.mobile-menu {
  /* display: none; */
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: #fff;
  list-style: none;
  box-sizing: border-box;
  padding: 20px;
  margin: 0;
  text-align: center;
  transform: translateX(100%);
  transition: all .5s ease-in;
}

.mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu li {
  margin-bottom: 20px;
}

.mobile-menu li a {
  font-size: 22px;
  text-decoration: none;
  color: #000;
  font-family: "Plus Jakarta Sans";
}

.open-mobile-menu {
  background-color: transparent;
  border: none;
  height: 25px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  cursor: pointer;
}

.close-mobile-menu {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 50px;
  line-height: 50px;
  transform: rotate(45deg);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.open-mobile-menu span {
  width: 30px;
  height: 4px;
  background-color: #000;
}

.navigation {
  display: block;
}  

.navigation-mobile {
  display: none;
} 

.privacy-links {
  width: 100%;
  border-top: 1px solid #fff;
  padding: 50px 20px 0;
  margin-top: 60px;
  box-sizing: border-box;
}

.links {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.links a {
  color: var(--Color, #FFF);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 0;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1600px) {
  .footer {
    background-position: 110% center;
  }
}

@media screen and (max-width: 1360px) {
  .footer {
    background-image: none;
  }
  .slider-prev,
  .slider-next,
  .slider-prev-2,
  .slider-next-2 {
    display: none;
  }

}

@media screen and (max-width: 1190px) {
  h1 {
    font-size: 44px;
  }
  .content {
    padding: 60px 0 60px;
    min-height: 390px;
  }
  .content-about {
    padding: 60px 0 60px;
  }
  h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  h3 {
      font-size: 30px;
  }
  .column-43 {
    max-width: 41%;
  }
  .content-about p {
    margin-bottom: 40px;
  }
  .content-about .column-37 img {
    margin-top: 0;
  }
  .content-portfolio {
    padding: 70px 0 90px;
  }
  .portfolio-card {
    padding: 25px 25px 20px;
  }
  .card-pic {
    text-align: center;
    width: 20%;
  }
  .card-content {
    width: 78%;
  }
  .accordion-body p {
    margin-bottom: 0;
  }
  .accordion-body h4 {
    font-size: 26px;
  }
  .accordionjs .acc_section .acc_head {
    padding: 10px;
  }
  .accordionjs .acc_section .acc_content {
    padding: 10px 20px 15px;
  }
  .acc_section .acc_head::after {
    top: 0;
  }
  .cards-box {
    margin-top: 100px;
  }  
  .partner-cover .cards-box {
    margin-top: 120px;
  }
  .counter .text {
    font-size: 20px;
  }
  .about-page .flex-row {
    flex-direction: column;
  }
  .about-page .column-43 {
    max-width: 100%;
    width: 100%;
  }
  .about-page .content p {
    max-width: 97%;
    margin-bottom: 40px;
  }
  .about-page {
    min-height: 1000px;
  }
  .about-page .cards-box {
    margin-top: 60px;
  }
  .about-page .cards-box .card:not(.hide) {
    left: 54%;
    width: 100%;
    margin-left: -250px;
    max-width: 500px;
  }
  .about-page-cards .portfolio-card {
    max-width: initial;
    min-height: 280px;
  }
  .about-page-cards .card-container {
    margin: 50px auto 0;
  }
  .founders-info.flex-row {
    flex-direction: column;
  }
  .founders-info.flex-row .col-50 {
    width: 100%;
    margin-bottom: 50px;
  }
  .founders-info h3 {
    font-size: 34px;
    margin-bottom: 12px;
  }
  .founders-info h5 {
    font-size: 28px;
    margin: 0 0 20px;
  }
  .founders-info h4 {
    margin: 20px 0;
  }
}

@media screen and (max-width: 900px) {
  .navigation {
    display: none;
  }  
  .navigation-mobile {
    display: flex;
    align-items: center;
  } 
  .flex-row {
    flex-direction: column;
  }
  .column-43 {
    max-width: 97%;
    width: 97%;
  }
  .content p {
    max-width: initial;
    margin-bottom: 30px;
  }
  .cards-box .card:not(.hide) {
    width: 500px;
    margin-left: -250px;
    left: 54%;
  }
  .cards-box {
    min-height: 400px;
  }
  .content-about .column-37 {
    display: none;
  }
  .content-about .column-49 {
    width: 100%;
  }
  .card-container {
    margin: 40px auto 0;
  }
  .content-portfolio .col-50 {
    width: 97%;
  }
  .content-portfolio .portfolio-card {
    max-width: initial;
  }
  .content-portfolio {
    padding: 50px 0 50px;
  }
  .content-cover.steps img {
    display: none;
  }
  .steps .content {
    min-height: initial;
    padding: 20px 0;
  }
  .content-about .column-43 {
    text-align: center;
  }
  .content-about .column-43 img {
    width: 70%;
    margin-bottom: 30px;
  }
  .portfolio-page .flex-row {
    flex-direction: row;
  }
  .portfolio-page .col-31 {
    width: 48%;
  }
}

@media screen and (max-width: 720px) {
  .footer-content .col-50 {
    width: 100%;
    box-sizing: border-box  ;
  }
  .footer-content {
    flex-direction: column;
  }
  .contact-form {
    width: 100%;
    box-sizing: border-box;
    max-width: initial;
  }
  .footer-content .footer-logo {
    display: none;
  }
  .footer-contects {
    margin-top: 50px;
    max-width: initial;
  }
  .links {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 520px) {
  .header-content {
    padding: 12px 0;
  }
  .content-cover {
    padding: 0 25px 0 20px;
  }
  .content-portfolio .portfolio-card {
    padding: 20px 18px 15px;
    margin-bottom: 20px;
    border-radius: 24px;
  }
  .cards-box .card:not(.hide) {
    width: 360px;
    margin-left: -160px;
    left: 58%;
  }
  .card-content {
    width: 100%;
  }  
  .content {
    padding: 20px 0 20px;
    min-height: 340px;
  }
  .cards-box {
    min-height: 300px;
  } 
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 24px;
  }
  .card-pic {
    width: 0;
  }
  .accordion-body h4 {
    font-size: 22px;
  }
  .counter .number {
    font-size: 34px;
  }
  .counters-cover {
    margin-top: 30px;
  }
  .counter .text {
    font-size: 15px;
  }
  .portfolio-page .col-31 {
    width: 100%;
  }
  .portfolio-visibile-content {
    min-height: 300px;
    margin-bottom: 20px;
  }
  summary {
    width: 50%;
  }  
  .mobile-alignment {
    text-align: left;
  }
  .about-page .cards-box .card:not(.hide) {
    left: 58%;
    width: 100%;
    margin-left: -180px;
    max-width: 360px;
  }
  .founders-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .founders-info h5 {
    font-size: 18px;
    margin: 0;
  }
  .founders-info h4 {
    margin: 10px 0;
    font-size: 16px;
  }
  .linkedin {
    margin-left: 20px;
  }
}

@media screen and (max-width: 350px) {
  .content-cover {
    padding: 0 20px;
  }
  .cards-box .card:not(.hide) {
    width: 240px;
    margin-left: -120px;
    left: 66%;
  }
  .cards-box {
    min-height: 230px;
  }
  .card-pic {
    display: none;
  }
  .card-content {
    width: 100%;
  }
  .about-page .cards-box .card:not(.hide) {
    left: 65%;
    width: 100%;
    margin-left: -120px;
    max-width: 240px;
  }
}