/*
Theme Name: Plus Theme
Theme URI:  
Version: 1.0.0
Description: Green - Responsive Multi-Purpose WordPress Theme
Author: Bartlomiej Bankosz
Author URI: 
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: translation-ready, custom-menu
Text Domain: plus-theme
*/

/* General */

:root {
  --white: #ffffff;
  --primary: #00B6C7;
  --black: #000000;
  --lightGrey: #f5f5f5;
  --darkBlue: #00283D;
  --promo: #A6CE3A;	
}

html {
  font-size: 10px;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spacer {
  padding-bottom: 2rem;
}

br {
  display: none;
}

.btn {
	border-radius: 50px;
}

/* navbar */

header {
  background: var(--white);
  position: sticky;
  top: 0;	
  z-index: 10;
  width: 100%;
  height: 7.2rem;
  box-shadow: 0px 2px 16px 0px rgba(32, 17, 62, 0.08);
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;	
  height: 100%;
  padding: 0 1.6rem
}

.logo__wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.logo__left {
	display: none;
}

.logo__left img {
	max-width: 113px;
}

.logo__spacer {
	display: none;
}

.logo__right {
	color: var(--black);
	font-size: 1.8rem;	
}

.logo__right span {
	font-size: inherit;
	font-weight: bold;
}

.login__btn {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.6rem;
  padding: 1.2rem;
}

.login__btn:hover {
  background: var(--white);
  color: var(--primary);
}

.register__btn {
  display: none;
}

.menu {
  display: flex;
  gap: 1rem;
}

.site-nav {
  position: absolute;
  top: 100%;
  right: 0%;
  background: #fff;
  height: 0px;
  overflow: hidden;
  width: 100%;
}

.site-nav-open {
  height: auto;
}

.site-nav ul {
  margin: 0;
  /* padding: 0 1.6rem; */
  list-style: none;
}

.site-nav li {
  border: 1px solid #e8e8e8;
  border-left: none;
  border-right: none;
}

.site-nav li:last-child {
  border-bottom: 2px solid #e8e8e8;
}

.site__nav--link {
  color: var(--black);
  display: block;
  padding: 1.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
}

.create__account--wrapper {
  margin: 1.6rem;
}

.site__nav--link:hover,
.site__nav--link:focus {
  background: var(--primary);
  color: var(--white);
}

.create__account--wrapper a {
  border: 2px solid var(--primary);
  box-shadow: 0px 4px 32px rgba(32, 17, 62, 0.08);
  text-align: center;
  color: var(--primary);
  padding: 1rem;
}

.create__account--wrapper a:hover {
  border: 2px solid var(--primary);
}
/*--------------------------------------*/
/* Acts as btn & contains hamburger     */
/*--------------------------------------*/

.menu-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

/*--------------------------------------*/
/*   Styles the hamburger for btn       */
/*--------------------------------------*/

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  background: var(--black);
  height: 3px;
  width: 1.75em;
  border-radius: 2px;
  transition: all ease-in-out 500ms;
}

/*--------------------------------------*/
/* Instance of hamburger (top line)     */
/*--------------------------------------*/

.hamburger::before {
  transform: translateY(-7px);
}

/*--------------------------------------*/
/* Instance of hamburger bottom line    */
/*--------------------------------------*/

.hamburger::after {
  transform: translateY(4px);
}

/*--------------------------------------*/
/* When Nav menu is open, hamburger = X */
/*--------------------------------------*/

.open .hamburger {
  transform: rotate(45deg);
  background: var(--black);
}

/*--------------------------------------*/
/* Before hamburger line is invisible   */
/*--------------------------------------*/
.open .hamburger::before {
  opacity: 0;
}

/*--------------------------------------*/
/* Animates after line to create an X   */
/*--------------------------------------*/
.open .hamburger::after {
  transform: translateY(-3px) rotate(-90deg);
  background: var(--black);
}

/*--------------------------------------*/
/*    For Device (Screens > 1200px )     */
/*--------------------------------------*/

@media (min-width: 320px) and (max-width: 76px) {
  .site-nav {
     position: absolute;
  }
}

@media (min-width: 1400px) {
  .menu-toggle {
     /* Removes hamburger menu */
     display: none;
  }

  .site-nav {
     /* Positions site nav & removes background color */
     height: auto;
     position: inherit;
     top: 0;
     background: transparent;
     float: right;
     font-weight: 300;
  }
	
	.site-nav ul {
		display: flex;
		gap: 4rem;
	}	

  .site-nav li {
     /* inline-block and removes border from bottom */
     display: inline-block;
     border: none;
  }

  .site__nav--link {
     /* Adds spacing between Nav links */
     padding: 0;
     font-size: 16px;
  }

  .site__nav--link:hover,      /* Makes link background transparent on hover */
  .site__nav--link:focus {
     /* Changes font color to light blue */
     background: transparent;
     font-weight: 800;
     color: var(--primary);
  }

  .site-nav .site-nav-icon {
     /* Removes Font Awesome Icons for larger screens */
     display: none;
  }
}

/* Safe Child Section */

section.safe__child {
  background-color: var(--darkBlue);
}

.safe__child--welcome {
  padding: 12.8rem 1.6rem 0 1.6rem;
}

.safe__child--content {
  color: var(--white);
}

.safe__child--content h1 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 150%;
  color: var(--primary);
}

.safe__child--content .generation {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 100%;
  padding-top: 1.6rem;
}

.safe__child--content .help {
  font-weight: 300;
  font-size: 2rem;
  line-height: 150%;
  padding: 1.6rem 0 4.8rem 0;
}

.safe__child--content .check__btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 20px 16px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid var(--primary);
}

.check__btn:hover {
  background: var(--white);
  color: var(--primary);
}

.safe__child--welcome-img {
  position: relative;
  padding-top: 6.4rem;
}

.safe__child--welcome-img::after{
	content: '';
	position: absolute;
	background-image: url('https://dzieciwplus.pl/wp-content/uploads/2024/02/header-image-2.png')
}

.safe__child--welcome-img img {
  width: 100%;
  height: auto;
}

.promo {
  display: none;
}

/* How It's Works Section */

.how__its__works--content {
  padding: 6.4rem 1.6rem 0 1.6rem;
}

.how__its__works--content .title,
.how__its__works--content .title span {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 140%;
}

.how__its__works--content .desc {
  font-weight: 300;
  font-size: 2rem;
  line-height: 150%;
  padding: 1.6rem 0 3.3rem 0;
}

.step__wrapper {
  padding-bottom: 1.7rem;
}

.step__wrapper:last-child {
  padding-bottom: 0;
}

.step__title {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
}

.step__title p {
  font-weight: 700;
}

.step__number {
  display: grid;
  place-content: center;
  width: 32px;
  height: 32px;	  	
  color: var(--white);
  background-color: var(--primary);
  border-radius: 50%;
}

.step__description {
  padding-top: 0.8rem;
  padding-left: 4.8rem;
}

.how__its__works--img {
  padding-top: 4.1rem;
}

.how__its__works--img img {
  width: 100%;
  height: auto;
}

/* Functions Section */

section.functions {
  padding-bottom: 6.4rem;
}

.container-slider {
  display: none;
}

.functions__wrapper {
  padding: 6.5rem 1.6rem 0 1.6rem;
}

.functions__wrapper h2 {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 140%;
  text-align: center;

  padding-bottom: 2.7rem;
}

.single__function {
  padding: 5.6rem 1.6rem 0 1.6rem;
}

.first-function {
  padding: 4.4rem 1.6rem 0 1.6rem;
}

.single__function h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 150%;
}

.single__function .description {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  padding: 1.6rem 0;
  color: #3d3d3d;
}

.try__now {
  position: relative;
}

.try__now a {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.try__now a:hover {
   background-color: var(--white);
   color: var(--primary);
}

div.arrow {
  background-image: url("assets/img/arrow.svg");
  width: 24px;
  height: 24px;
  margin-left: 0.5rem;
}

.function__img {
  padding-top: 4.4rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.gradient {
  width: 100%;
  height: 190px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(360deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* .function__img img {
  z-index: -1;
}

.opacity {
  background: linear-gradient(360deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 200px;
  z-index: 1;
} */

/* Pricing Section */

section.pricing {
  background: var(--lightGrey);
  padding-bottom: 6.4rem;
}

.pricing__wrapper {
  padding: 0 1.6rem 0 1.6rem;
  display: grid;
  justify-items: center;
  gap: 5rem;
}

section.pricing h2 {
  padding-top: 6.4rem;
  padding-bottom: 4rem;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 140%;
  text-align: center;
}

.pricing__box {
  background: #ffffff;
  box-shadow: 0px 0.2rem 1.6rem rgba(32, 17, 62, 0.08);
  border-radius: 0.8rem;
  padding: 3.2rem 1.6rem;
}

.pricing__box h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 150%;
  text-align: center;
}

.pricing__box p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  text-align: center;
  padding-top: 0.8rem;
}

.pricing__box h3 span {
  font-weight: 700;
}

.price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--primary);
  padding: 2.4rem 0;
}

.price p {
  font-weight: 700;
  font-size: 3rem;
  line-height: 150%;
}

.price span {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  padding-left: 0.7rem;
  padding-bottom: 0.7rem;
}

.benefits p {
  border-bottom: 0.1rem solid #e8e8e8;
  width: 100%;
  text-align: center;
  padding: 1.6rem 0;
}

.benefits p:last-child {
  border-bottom: none;
}

.trial__btn {
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 100%;
  padding: 2rem 0;
  color: var(--white);
  background: var(--primary);
  margin-top: 0.8rem;
  border: 2px solid var(--primary);
}

.trial__btn:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Try for free Section */

section.free {
  background: var(--white);
}

.free__img--desktop {
  display: none;
}

.free__wrapper--content {
  padding: 6.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.free__wrapper--content h2 {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 140%;
}

.free__wrapper--content p {
  padding: 2.4rem 0;
  font-weight: 300;
  font-size: 2rem;
  line-height: 150%;
  text-align: center;
}

.store {
  display: flex;
}

.store a:first-child {
  padding-right: 1.7rem;
}

.free__img img {
  width: 100%;
  height: auto;
}

/* Footer */

footer {
  background: var(--darkBlue);
}

.footer__wrapper {
  color: var(--white);
  padding: 2.4rem 1.6rem;
  display: flex;
  flex-direction: column;
}

.footer__wrapper a {
  max-width: fit-content;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 160%;
  color: var(--white);
}

.footer__wrapper a:hover {
  color: var(--primary);
}

.footer__wrapper p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 160%;
  color: #ababab;
  padding-top: 1.2rem;
  padding-bottom: 2.4rem;
}

.copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #3d3d3d;
  padding-top: 2.4rem;
  font-size: 1.2rem;
}

.rules {
  display: flex;
  gap: 1rem;	
}

.copy span {
  font-size: 1.2rem;
  color: #ababab;
}

.copy a {
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
}

.copy a:hover {
  color: var(--primary);
}


/* Tablet Version */

@media (min-width: 768px) {
  /* Navbar */

  .logo__wrapper {
     height: 100%;
     display: flex;
     align-items: center;
  }
	
    .logo__left {
		display: block;
   }
	
	.logo__spacer {
		display: block;
		width: 3px;
		height: 50px;
		background-color: var(--black);
	}	
	
   .logo__right {
	   font-size: 2.4rem;	
	   line-height: 200%;
  }	

	.menu {
		gap: 2rem;
	}

  .login__btn,
  .register__btn {
     width: 10.8rem;
     display: flex;
     align-items: center;
     justify-content: center;
	 color: var(--white);
     line-height: 100%;
  }
	
  .login__btn {
     background-color: var(--primary);
  }
	
  .login__btn:hover {
     background-color: var(--white);
	 color: var(--primary);
  }

  .register__btn {
     font-weight: 700;
     font-size: 1.6rem;
     padding: 1.2rem;
	 background-color: var(--darkBlue);
     border: 2px solid var(--darkBlue);
  }

  .register__btn:hover {
     background-color: var(--white);
     color: var(--darkBlue);
  }

  .create__account--wrapper {
     display: none;
  }

  /* Safe Child Section */

  .safe__child--welcome {
     padding: 15rem 1.6rem 0 1.6rem;
  }

  .safe__child--content {
     max-width: 640px;
  }

  .safe__child--content .title {
     display: flex;
  }
  .safe__child--content h1 {
     font-size: 2.4rem;
  }

  .safe__child--content .generation {
     font-size: 4.8rem;
     padding-top: 1.6rem;
     width: 678px;
  }

  .safe__child--content .help {
     font-size: 2.4rem;
     padding: 1.6rem 0 4.8rem 0;
  }

  .safe__child--content .check__btn {
     max-width: 200px;
  }

  .safe__child--welcome-img {
     padding-top: 8rem;
     position: relative;
  }

  .promo {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     position: absolute;
     width: 144px;
     height: 144px;
     background-color: var(--promo);
     border-radius: 100px;
     right: 2%;
     top: 9%;
  }

  .promo span:first-child {
     font-weight: 400;
     font-size: 12px;
     line-height: 150%;
  }

  .promo span:last-child {
     font-weight: 700;
     font-size: 24px;
     line-height: 150%;
  }

  /* How It's Works Section */

  .how__its__works--content {
     padding: 9.6rem 1.6rem 0 1.6rem;
     max-width: 608px;
  }

  .how__its__works--content .title {
	 max-width: 80%;  
     display: flex;
     flex-direction: column;
     font-size: 3.6rem;
  }
  .how__its__works--content .title span {
     font-size: 3.6rem;
  }

  .how__its__works--content .desc {
     padding: 2.4rem 0 3.9rem 0;
     font-size: 2.4rem;
  }

  .step__wrapper {
     padding-bottom: 3rem;
  }
  .how__its__works--img {
     padding-top: 6.8rem;
     display: flex;
     justify-content: center;
  }

  .how__its__works--img img {
     width: 498px;
     height: 304px;
  }

  /* Functions Section */

  section.functions {
     padding-bottom: 9.6rem;
  }

  .functions__wrapper {
     padding: 9.6rem 1.6rem 1.2rem 1.6rem;
  }
  .single__function {
     display: flex;
     justify-content: space-between;
  }

  .single__function:nth-child(2n) {
     padding-right: 1rem;
  }

  .single__function:nth-child(2n + 1) {
     display: flex;
     flex-direction: row-reverse;
     padding-left: 1rem;
  }

  .function__img {
     padding-top: 0;
  }

  .function__img img {
     width: 301px;
  }

  .gradient {
     height: 220px;
  }

  .single__function--content {
     max-width: 395px;
     padding-top: 12.5rem;
  }

  .single__function h3 {
     font-size: 2.4rem;
  }

  .single__function .description {
     font-size: 1.8rem;
     padding-top: 2.4rem;
     padding-bottom: 2.8rem;
     max-width: 365px;
  }

  .try__now {
     max-width: 50%;
  }
  .try__now a {
     padding: 2rem 1.6rem;
  }
  .functions__wrapper h2 {
     padding-bottom: 0;
  }

  .opacity {
     z-index: inherit;
  }

  /* Pricing Section */

  section.pricing {
     padding-bottom: 9.6rem;
  }

  section.pricing h2 {
     padding-top: 9.6rem;
     padding-bottom: 4.8rem;
  }

  .pricing__box {
     padding: 4rem 4rem;
  }

  .pricing__box h3 {
     font-size: 2.4rem;
  }

  .pricing__box h3 span {
     font-size: 1.8rem;
  }

  .price span {
     font-size: 1.8rem;
  }

  .trial__btn {
     margin-top: 1.6rem;
  }

  /* Try for free Section */

  .free__wrapper--content {
     padding: 9.6rem 1.6rem;
  }
  .free__wrapper--content h2 {
     font-size: 3.6rem;
  }


  /* Footer */

  .footer__wrapper {
     color: var(--white);
     padding: 6.4rem 1.6rem 2.4rem 1.6rem;
  }
}

/* Desktop Version */

@media (min-width: 1024px) {
  /* Navbar */

  .create__account--wrapper {
     display: none !important;
  }

  .site-nav li:last-child {
     border-bottom: none;
  }
  /* Safe Child Section */

  /* section.safe__child {
     display: flex;
     justify-content: space-between;
  } */

  .safe__child--wrapper {
     display: flex;
  }

  .safe__child--welcome {
     margin: 0 auto;
     padding-top: 7.2rem;
     display: flex;
     align-items: center;
  }

  .safe__child--welcome-img {
     padding-top: 7.2rem;
     position: relative;
	 isolation: isolate;
  }

  .safe__child--content .generation {
     width: 100%;
  }

  .promo {
     bottom: 19%;
     right: 16%;
     top: unset;
  }

  /* How It's Works Section */

  .how__its__works--wrapper {
     display: flex;
     flex-direction: row-reverse;
     justify-content: center;
  }

  /* Functions Section */

  .container-slider {
     display: block;
  }
  .single__function {
     display: none !important;
  }

  .slick-dots {
     position: absolute;
     top: 43%;
     right: 2%;
  }

  .slick-arrow {
     box-sizing: border-box;
     width: 56px;
     height: 56px;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     z-index: 5;
	 border-radius: 40px;
     background-color: var(--primary);
     box-shadow: 0px 2px 16px 0px rgba(32, 17, 62, 0.08); 
  }

  .slick-arrow:focus-visible {
     outline: 1px solid var(--primary);
  }

  .slick-next {
     position: absolute;
     right: 0%;
     top: 47%;
  }

  .slick-prev {
     position: absolute;
     top: 47%;
     left: 0%;
  }
	
	/* Download Section */
	
	.free__wrapper {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: space-between;
	}
	
	.free__img {
		display: none;
	}
	
	.free__img--desktop {
		display: block;
	}

    .free__img--desktop img{
		width: 780px;
	}
	
	.free__wrapper--content {
		align-items: flex-start;
	}
	
	.free__wrapper--content p {
		max-width: 80%;
		text-align: left;
	}
}

@media (min-width: 1401px) {
  /* Navbar */
  header {
     display: flex;
     justify-content: center;
  }

  .header__wrapper {
     max-width: 1440px;
  }
  .header_logo {
     padding-left: 10rem;
  }

  .site-nav {
     display: flex;
     justify-content: center;
     margin: 0 4rem;
     position: relative;
     width: initial;
  }

  .site__nav--link {
     color: var(--black);
  }
}

@media (min-width: 1440px) {
  .container {
     width: 1440px;
  }

  /* Navbar */

  header {
     padding: 0;
  }

  .header__wrapper {
     max-width: 1440px;
  }

  .login__btn {
     margin-right: 0;
  }

  .site-nav ul {
     padding: 0;
  }

  /* Safe Child Section */

  section.safe__child {
     display: flex;
     justify-content: center;
	 padding-top: 3rem;
  }

  .safe__child--wrapper {
     /* width: 1440px; */
     display: flex;
     justify-content: space-between;
  }

  .safe__child--welcome {
     margin: 0;
     padding-top: 7.2rem;
     padding-left: 4rem;
     display: flex;
     align-items: center;
  }

  .safe__child--welcome-img img {
     width: 720px;
  }

  .promo {
  	bottom: 65%;
    right: 38%;
    z-index: -1;
  }

  /* How It's Works Section */

  section.how__its__works {
     display: flex;
     justify-content: center;
  }

  /* .how__its__works--wrapper { */
  /* width: 1440px; */
  /* justify-content: center; */
  /* } */

  .how__its__works--content {
     padding: 10.4rem 16.6rem 0 1.6rem;
  }

  .how__its__works--img {
     padding-top: 15rem;
  }

  .how__its__works--img img {
     width: 632px;
     height: 386px;
  }

  /* Functions Section */
  section.functions {
     display: flex;
     justify-content: center;
     /* width: 100%; */
     padding-bottom: 0;
  }

  .functions__wrapper {
     padding: 10.4rem 0 10.4rem 0;
  }

  .function__img--slider {
     position: relative;
  }

  .gradient {
     width: 100%;
     height: 220px;
     position: absolute;
     bottom: 0;
     background: linear-gradient(360deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  }

  /* Pricing Section */

  section.pricing {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding-bottom: 9.9rem;
  }
  section.pricing h2 {
     padding-top: 10.4rem;
     padding-bottom: 5.6rem;
  }

  .pricing__wrapper {
     padding: 0;
  }

  /* Try for free Section */

  section.free {
     display: flex;
     justify-content: center;
  }

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

  /* Footer */

  footer {
     display: flex;
     justify-content: center;
  }

  .footer__wrapper {
     padding: 6.4rem 10rem 2.4rem 10rem;
  }

  .free__wrapper--content h2 {
     line-height: 150%;
  }

  .slick-dots li button {
     font-size: 0;
  }

  .slick-dots {
     display: flex;
     flex-direction: column;
     list-style: none;
     position: absolute;
     right: 6%;
     top: 43%;
  }

  .slick-next {
     position: absolute;
     right: 13%;
     top: 47%;
  }

  .slick-prev {
     position: absolute;
     top: 47%;
     left: 12%;
  }
}

@media (min-width: 1440px) {
  .safe__child--content .generation {
     font-size: 60px;
     line-height: 62px;
     padding-top: 2.4rem;
  }
  .safe__child--content .help {
     font-size: 24px;
     line-height: 150%;
     padding: 2.4rem 0 4.8rem 0;
  }

  .slick-dots {
     right: 12%;
     top: 43%;
  }
}

.slick-dots li {
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  margin-bottom: 0.8rem;
}

.slick-dots button {
  display: block;
  width: 15px;
  height: 15px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  width: 15px;
  height: 15px;
  background: var(--primary);
  border: 1px solid white;
}

.container-slider {
  padding-top: 5.6rem;
}

.single__function--slider {
  display: flex !important;
  justify-content: center !important;
}

.single__function--content-slider {
  max-width: 364px;
  padding-right: 13.2rem;
  padding-top: 12.5rem;
}

.single__function--content-slider h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
}

.description-slider {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  padding-top: 2.4rem;
  padding-bottom: 2.8rem;
  color: #3d3d3d;
}

.function__img--slider img {
  width: 301px;
  height: 500px;
}

/* Terms */

section.terms {
  display: flex;
  justify-content: center;
}

.terms__wrapper {
  width: 1440px;
  padding-top: 15rem;
  padding: 15rem 1.6rem 8rem 1.6rem;
}

@media (min-width: 1550px) {
  .terms__wrapper {
     padding: 15rem 0 8rem 0;
  }
}
.competition_terms {
 padding-top: 1.5rem;
}

.terms__wrapper h1 {
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: 600;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
}

.list_of_attachments {
  padding-top: 2rem;
}

.list_of_attachments a {
  color: black;
}

.list_of_attachments a:hover {
  color: var(--primary);
}

.list_of_attachments img {
  width: 16px;
  height: 19px;
  padding-right: 1rem;
}

.single_attachment {
  display: flex;
  align-items: center;
}



@media (min-width: 1300px) and (max-width: 1439px) {
  .slick-next {
     position: absolute;
     right: 8%;
     top: 47%;
  }

  .slick-prev {
     position: absolute;
     top: 47%;
     left: 8%;
  }
}

section.contact-form-section {
  display: flex;
  justify-content: center;
}


.contact-form {
 padding-top: 15rem;
}
.contact-form form {
   display: flex;
 flex-direction: column;
 align-items: center;
}

.contact-form p {
 width: 350px;
 margin-top: 2rem;
}
.contact-form input {
 width: 350px;

}

.contact-form textarea {
 width: 350px;
}




.form-name, 
.form-number,
.form-email,
.form-message {
 padding: 15px 10px;
 font-size: 1.6rem;
 background: #ffff;
 outline: none;
 border: 2px solid rgba(204, 204, 204,0.5);
 width: 100%;
}

.form-name:focus, 
.form-number:focus,
.form-email:focus,
.form-message:focus {
   outline: none;
   border-bottom: 2px solid var(--primary);
}

.wpcf7-not-valid-tip {
 margin-top: 10px;
}



.wpcf7-submit {
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 100%;
  padding: 2rem 0;
  color: var(--white);
  background: var(--primary);
  margin-top: 0.8rem;
  border: 1px solid var(--primary);
  width: 100%;
}

.wpcf7-submit:hover {
  background-color: var(--white);
  color: var(--primary);
}

.wpcf7-form label {
 display: flex;
 flex-direction: column;
}

.wpcf7 form .wpcf7-response-output{
 margin: 2em 0.5em 4em !important;
}

@media (max-width: 767px)  {
  .contact-form {
 padding-top: 9rem;
}
.contact-form textarea {
 width: 270px;
}
 .contact-form input {
 width: 270px;

}
 
 .contact-form p {
 width: 290px;
}
 
 .wpcf7-submit {
   width: 100% !important;
 }
}

@media (min-width: 1550px) {
  .contact-form {
     padding: 15rem 0 8rem 0;
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
   /* display: none; <- Crashes Chrome on hover */
   -webkit-appearance: none;
   margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
   -moz-appearance:textfield; /* Firefox */
}

/* COMPETITION PAGE */

section.competition {
  display: flex;
  justify-content: center;
  background: #f5f5f5;
}

.competition__wrapper {
  width: 1440px;
  padding: 7rem 0 0 0;
}

.competition__wrapper--img {
  width: 100%;
}

.competition__wrapper--welcomeText {
  background: #000000;
  color: white;
  font-weight: 700;
  font-size: 28px;
  padding: 1.6rem;
}

.competition__wrapper--welcomeText p {
  color: white;
  font-weight: 700;
  font-size: 28px;
}

.competition__wrapper--welcomeText span {
  color: var(--primary);
  font-weight: 700;
  font-size: 28px;
}

.competition__steps {
  padding: 1.6rem;
  padding: 4rem 1.6rem 2.4rem 1.6rem;
}

.competition__steps h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
}

.competition__steps .hint {
  padding: 1.6rem 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.competition__steps .step {
  display: flex;
  align-items: center;

  font-size: 16px;
  line-height: 150%;
}

.competition__steps .step img {
  padding-right: 1.6rem;
  width: 24px;
  height: 24px;
}

.competition__steps .description {
  padding-left: 4.1rem;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 150%;
}

.competition__downloadCard {
  padding: 0 1.6rem 4rem 1.6rem;
}
.competition__downloadCard--wrapper {
  padding: 2.4rem;
  background: #e8e8e8;
}
.competition__downloadCard--wrapper p {
  font-size: 1.6rem;
  line-height: 150%;
  padding-bottom: 2.4rem;
}

.competition__downloadCard--wrapper span {
  font-weight: 600;
}

.competition__form--inactive {
  position: relative;
  opacity: .4;
}

.competition__form--inactive::after {
  content: '';
  position: absolute;
  inset: 0;
  color:red;
  background-color: rgb(128 128 128 / 40%);
  display: grid;
  place-content: center;
  font-size: 3rem;
  font-weight: bold;
  backdrop-filter: blur(2px);
  z-index: 1;
}

.competition__form {
  padding: 0 1.6rem;
}

.competition__form--wrapper {
  background: #ffff;
  padding: 2.4rem 1.6rem;
  box-shadow: 0px 2px 16px rgba(32, 17, 62, 0.08);
}

.competition__form--wrapper h3 {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 150%;
  text-align: center;
}

.competition__form--wrapper .prize {
  background: #fef4ec;
  padding: 2.4rem;
  margin: 2.4rem 0;
}

.competition__form--wrapper .prize h4 {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 160%;
  color: var(--primary);
}

.competition__form--wrapper .prize p {
  font-size: 1.6rem;
  line-height: 150%;
  padding-top: 0.8rem;
}

.competition__form--wrapper .prize span {
  font-weight: 600;
  font-size: 1.6rem;
}

.safeandsound {
  padding: 4rem 1.6rem;
}

.safeandsound h2 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 150%;
}
.safeandsound span {
  color: var(--primary);
  font-weight: 700;
  font-size: 2rem;
  line-height: 150%;
}

.safeandsound--infoWrapper {
  padding-top: 0.8rem;
}

.safeandsound--infoWrapper .info {
  display: flex;
  font-size: 16px;
  line-height: 150%;
  padding-top: 1.6rem;
}

.safeandsound--infoWrapper img {
  padding-right: 1.7rem;
}

@media (min-width: 320px) and (max-width: 374px) {
  .competition__downloadCard {
     padding: 0 0 4rem 0;
  }

  .competition__downloadCard--wrapper {
     padding: 1.6rem;
  }
}

@media (min-width: 320px) {
  .competition__tablet {
     display: none;
  }

  .competition__desktop {
     display: none;
  }

  .col-2 {
     display: none;
  }

  .competition__form--desktop__version {
     display: none;
  }
 
 .wpcf7-form-control-wrap {
   margin-right: 2.2rem;
 }
 
   .wpcf7-form label {
   margin-top: 2rem;
 }
}

@media (min-width: 768px) {
  .competition__mobile {
     display: none;
  }

  .competition__tablet {
     display: block;
  }

  .competition__wrapper--welcomeText p {
     width: 456px;
     font-size: 3.6rem;
     line-height: 150%;
  }

  .competition__wrapper--welcomeText span {
     font-size: 3.6rem;
     line-height: 150%;
  }

  .competition__steps h3 {
     font-weight: 700;
     font-size: 2.8rem;
     line-height: 140%;
  }

  .competition__steps .hint {
     font-size: 2rem;
     padding-top: 3rem;
     padding-bottom: 2.4rem;
  }

  .competition__form--wrapper h3 {
     text-align: left;
     font-size: 2.8rem;
     line-height: 140%;
  }
}

@media (min-width: 1240px) {
  section.competition {
     padding-top: 7.2rem;
  }
  .competition__tablet,
  .competition__mobile {
     display: none;
  }

  .competition__desktop {
     display: block;
  }

  .competition__wrapper {
     display: flex;
  }

  .col {
     width: 713px;
     min-width: 713px;
  }

  .col-2 {
     display: flex;
    
  }

  .competition__form--mobile__version {
     display: none;
  }

  .competition__form--desktop__version {
     display: block;
  }

  .competition__steps {
     padding: 4rem 1.6rem 3.2rem 1.6rem;
  }

  .safeandsound {
     padding: 0 1.6rem 7.2rem 1.6rem;
  }

  .competition__downloadCard {
     padding: 0 1.6rem 3.2rem 1.6rem;
  }

  .competition__form {
    padding: 0;
    padding-left: 2.4rem;
    
  }

  .competition__form--wrapper {
     padding: 3.2rem;
  }
 
 .wpcf7-form-control-wrap {
   margin-right: unset;
 }
 
 .form-name, 
.form-number,
.form-email,
.form-message {
width: 97%;
}
 
 .wpcf7-form label {
   margin-top: 24px;
 }
}

input::placeholder,
textarea::placeholder{
   color: #9c9c9c;
   opacity: 1;

}

