:root {
  --theme-color1: #191e24;
  --theme-color2: #00c7c4;
  --theme-color3: #7054e6;
  --theme-color4: #f89321;
  --theme-color5: #ef5c72;
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color2: var(--theme-color2);
  --bg-theme-color3: var(--theme-color3);
  --bg-theme-color4: var(--theme-color4);
  --bg-theme-color5: var(--theme-color5);
  --border-theme-color1: var(--theme-color1);
  --border-theme-color2: var(--theme-color2);
  --border-theme-color3: var(--theme-color3);
  --border-theme-color4: var(--theme-color4);
  --border-theme-color5: var(--theme-color5);
  --text-color-bg-theme-color1: #fff;
  --text-color-bg-theme-color2: #164333;
  --text-color-bg-theme-color3: #fff;
  --text-color-bg-theme-color4: #fff;
  --text-color-bg-theme-color5: #fff;
  --text-color: #7d8185;
  --headings-color: var(--theme-color1);
  --link-color: var(--theme-color1);
  --link-hover-color: var(--theme-color1);
  --text-font: "DM Sans", sans-serif;
  --title-font: "DM Sans", sans-serif;
  --style-font: "Reey";
  --body-font-size: 18px;
  --body-line-height: 30px;
  --body-font-weight: 400;
  --line-height-heading-h1: 1em;
  --line-height-heading: 1.2em;
  --line-height-heading-small: 1.4em;
  --h1-font-size: 84px;
  --h2-font-size: 50px;
  --h3-font-size: 36px;
  --h4-font-size: 24px;
  --h5-font-size: 20px;
  --h6-font-size: 18px;
  --h1-font-weight: 700;
  --h2-font-weight: 700;
  --h3-font-weight: 700;
  --h4-font-weight: 700;
  --h5-font-weight: 700;
  --h6-font-weight: 700;
  --sec-title-subtitle-color: var(--theme-color2);
  --sec-title-subtitle-font-size: 16px;
  --sec-title-subtitle-font-family: var(--text-font);
  --sec-title-subtitle-font-weight: 700;
  --sec-title-subtitle-line-height: 1.1em;
  --sec-title-color: var(--headings-color);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: var(--h2-font-weight);
  --theme-light-background: #f8f6f1;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #222429;
  --container-width: 1200px;
  --small-container-width: 1000px;
  --large-container-width: 1550px;
  --container-pt: 120px;
  --container-pb: 120px;
}

/* ======================
List Style One 
====================== */

.list-style-one {
  position: relative;
  margin-bottom: 30px;
}

.list-style-one li {
  position: relative;
  padding-left: 70px;
  min-height: 50px;
  font-size: 20px;
  line-height: 30px;
  color: var(--theme-color1);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-right: 20px;
  letter-spacing: -0.01em;
}

.list-style-one li:hover .icon {
  -webkit-transform: scale(-1) rotate(-180deg);
  transform: scale(-1) rotate(-180deg);
}

.list-style-one li .icon {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--bg-theme-color5);
  -webkit-box-shadow: 0 10px;
  box-shadow: 0 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.list-style-one li:nth-child(4n + 2) .icon {
  background-color: var(--bg-theme-color3);
}

.list-style-one li:nth-child(4n + 3) .icon {
  background-color: var(--bg-theme-color4);
}

.list-style-one li:nth-child(4n + 4) .icon {
  background-color: var(--bg-theme-color2);
}

/* ======================
    List Style Two
====================== */

.content-column {
  width: 100%;
}

/* **
====================================================================
    Features Section
====================================================================
** */

/* ** 

====================================================================
    Categories Current
====================================================================

** */

.category-block-current {
  position: relative;
  margin-bottom: 50px;
}

.category-block-current .inner-box {
  position: relative;
  text-align: center;
  max-width: 160px;
  margin: 0 auto;
}

.category-block-current .inner-box:hover .icon {
  -webkit-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
  color: #ffffff !important;
  background-color: var(--bg-theme-color2);
}

.category-block-current .icon-box {
  position: relative;
  height: 170px;
  width: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  border: 2px dashed var(--border-theme-color2);
  border-radius: 50%;
  margin-bottom: 20px;
}

.category-block-current .icon-box .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 130px;
  width: 130px;
  background-color: #ffffff;
  font-size: 64px;
  line-height: 1em;
  border-radius: 50%;
  color: var(--theme-color2);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.category-block-current .title {
  margin-bottom: 0;
}

.category-block-current .title:hover {
  color: var(--theme-color2);
}

.category-block-current:nth-child(6n + 2) .inner-box .icon-box {
  border-color: #ef5c72;
}

.category-block-current:nth-child(6n + 2) .inner-box .icon {
  color: #ef5c72;
}

.category-block-current:nth-child(6n + 2) .inner-box:hover .icon {
  background-color: #ef5c72;
}

.category-block-current:nth-child(6n + 3) .inner-box .icon-box {
  border-color: #f8b81f;
}

.category-block-current:nth-child(6n + 3) .inner-box .icon {
  color: #f8b81f;
}

.category-block-current:nth-child(6n + 3) .inner-box:hover .icon {
  background-color: #f8b81f;
}

.category-block-current:nth-child(6n + 4) .inner-box .icon-box {
  border-color: #22d17e;
}

.category-block-current:nth-child(6n + 4) .inner-box .icon {
  color: #22d17e;
}

.category-block-current:nth-child(6n + 4) .inner-box:hover .icon {
  background-color: #22d17e;
}

.category-block-current:nth-child(6n + 5) .inner-box .icon-box {
  border-color: #8e56ff;
}

.category-block-current:nth-child(6n + 5) .inner-box .icon {
  color: #8e56ff;
}

.category-block-current:nth-child(6n + 5) .inner-box:hover .icon {
  background-color: #8e56ff;
}

.category-block-current:nth-child(6n + 6) .inner-box .icon-box {
  border-color: #41c2fa;
}

.category-block-current:nth-child(6n + 6) .inner-box .icon {
  color: #41c2fa;
}

.category-block-current:nth-child(6n + 6) .inner-box:hover .icon {
  background-color: #41c2fa;
}

/* **

==================================================================
    Pricing Section
==================================================================

** */

.pricing-block {
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.pricing-block .inner-box {
  position: relative;
  padding: 58px 30px 55px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
  border-left: 20px solid var(--bg-theme-color3);
  height: 100%;
}

.pricing-block .inner-box:before {
  position: absolute;
  right: 0;
  top: 0;
  height: 183px;
  width: 135px;
  content: "";
  background-image: url(/assets/ia/img//icon-event.png);
}

.pricing-block .price-box {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 2px solid #f1f1f1;
  margin-bottom: 30px;
}

.pricing-block .price-box .price {
  display: block;
  font-size: 60px;
  line-height: 1em;
  font-weight: 400;
  color: #2da397;
  font-family: "Satisfy", cursive;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
}

.pricing-block .price-box .title {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #012237;
  margin-bottom: 0;
}

.pricing-block .features {
  position: relative;
  margin-bottom: 30px;
}

.pricing-block .features li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 17px;
  color: #81868a;
  font-weight: 400;
  margin-bottom: 20px;
}

.pricing-block .btn-box {
  position: relative;
}

.pricing-block .btn-box .theme-btn {
  border-radius: 0;
  padding: 20px 50px;
  line-height: 26px;
  background-color: #f1f1f1;
  font-size: 16px;
  color: #81868a;
  text-transform: capitalize;
  letter-spacing: 0;
  margin-bottom: 30px;
  display: block;
}

.pricing-block .btn-box .theme-btn:before {
  background-color: #f16101;
}

.pricing-block .btn-box .theme-btn:hover {
  color: #fff;
}

.pricing-block .btn-box .sub-title {
  display: block;
  font-size: 12px;
  color: #2da397;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing-block:nth-child(3n + 2) .inner-box {
  border-left-color: var(--bg-theme-color2);
}

.pricing-block:nth-child(3n + 2) .inner-box .price-box .price {
  color: #f16101;
}

.pricing-block:nth-child(3n + 2) .inner-box .sub-title {
  color: #f16101;
}

.pricing-block:nth-child(3n + 3) .inner-box {
  border-left-color: var(--bg-theme-color5);
}

.pricing-block:nth-child(3n + 3) .inner-box .price-box .price {
  color: #7c4bc0;
}

.pricing-block:nth-child(3n + 3) .inner-box .sub-title {
  color: #7c4bc0;
}

/* **
Button
/***

.theme-btn .btn-title {
  position: relative;
}

/*Btn Style One */

/* Btn Style One */

.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme-btn .btn-title {
  position: relative;
}

/* Btn Style One */

.btn-style-one {
  position: relative;
  font-size: 12px;
  line-height: 24px;
  padding: 15px 60px;
  font-weight: 700;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 50px;
  z-index: 1;
  background: var(--bg-theme-color1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.btn-style-one:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: var(--bg-theme-color2);
  -webkit-clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
  clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.btn-style-one:hover:before {
  -webkit-clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
  clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.btn-style-one:hover {
  color: #ffffff;
}

.btn-style-one.hvr-light:hover {
  color: var(--theme-color2);
}

.btn-style-one.hvr-light:before {
  background-color: #ffffff;
}

/* Btn Style One */



#cover {
  background-image: url("/assets/ia/img/1.avif");
}

#header {
  height: 65px;
  padding: 10px;
}

h1 {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-size: calc(2.2rem + 3vw);
  color:  var(--headings-color);
}

#beforeh1 {
  color: orange;
  font-size: 24px;
  margin: 10px;
  margin-left: 0px;
}

#header_right {
  padding: 25px 0px;
}

#header_logo {
  max-height: 100%;
}

#after_h1 {
  font-size: 2.8rem;
}

.color-section {
  min-height: 100vh;
  background-color: #7054e6;
  position: relative;
  padding: 120px 0 0px;
}

.color-section-title-box {
  border-bottom: solid;
  border-color: white;
  border-top: solid;
  border-color: white;
  position: relative;
  margin-bottom: 50px;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 25px 15px;
  margin: 0 auto;
  width: 100%;
}

h2 {
  font-size: calc(2rem + .9vw);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

.why-section {
  background-color: #f1f7f7;
}
.why-section .title {
  font-weight: 600;
}

footer {
  background-color: #191e24;
  padding-top: 25px;
}

.color-section li {
  color: white;
  font-size: 24px;
  margin-bottom: 25px;
}

.action-text {
  color: white;
  font-size: calc(1.325rem + .9vw);
  text-align: center;
}

#exam-section .sub-title {
  position: relative;
  top: -10px;
  font-size: var(--sec-title-subtitle-font-size);
  color: var(--sec-title-subtitle-color);
  line-height: var(--sec-title-subtitle-line-height);
  font-weight: var(--sec-title-subtitle-font-weight);
  font-family: var(--sec-title-subtitle-font-family);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#contain-section {
  background-color: #7054e6;
  padding-top: 20px;
  padding-bottom: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(/assets/ia/img//pattern-1.png);
}

.vertical-line-right {
  border-bottom: 1px dotted white;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .vertical-line-right {
    border-right: 1px solid white;
    border-bottom: none!important;
  }
}

.contain-icon {
  color: white;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-size: 62px;
}

.contain-text {
  display: block;
  text-align: center;
  color: white;
  font-size: 32px;
}

#section-about .second {
  font-size: 21px;
  font-weight: 700;
}

#section-about .first {
  font-size: 28px;
  font-weight: 450;
  margin-bottom: 40px;
}

#section-about {
  padding-top: 50px;
  padding-bottom: 35px;
}

#section-about .third {
  font-size: 18px;
}

@media (min-width: 768px) {
  #logo-container {
    width: 80%;
  }
}

#logo-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: initial;
  margin-top: 75px;
  margin-bottom: 40px;
}

.contact-info {
  display: block;
  text-align: center;
  font-size: 20px;
}

#contact-details {
  margin-top: 15px;
  font-style: italic;
}

.logo img {
  width: 100%;
  opacity: 0.3;
}

.logo img:hover {
  opacity: 0.7;
}

.logo {
  width: 33%;
  height: 25%;
  color: white;
  font-size: 2rem;
  border: 4px solid white;
}

#section-about li {
  font-size: 18px;
  margin-top: 15px;
}

#bg-red {
  background-color: #f05a5a;
}

.color-section-end2 {
  text-align: center;
  color: white;
  font-size: 17px;
}

#section-about {
  background-color: #a6e654;
}

#bg-blue {
  background-color: #6d8de1;
  padding-bottom: 30px;
}

#quiz-section svg {
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--theme-color2);
  font-size: 18px;
  line-height: 26px;
}

#quiz-section li {
  position: relative;
  padding-left: 27px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 25px;
}

#quiz-section {
  margin: 50px 0;
}

#faq-section .accordion-item {
  border: 1px solid #dae6e6;
  border-radius: 25px;
  overflow: hidden;
}

.color-section h2 {
  color: white;
  text-align: center;
}

.accordion {
  --bs-accordion-border-color: none;
}

.accordion {
  --bs-accordion-bg: rgba(33,37,41,0);
  --bs-accordion-btn-focus-box-shadow: rgba(0, 0, 0, 0);
}

.accordion-button {
  background-color: transparent!important;
  color: black;
}

.accordion-button:after {
  color: black!important;
}

#faq-section .accordion-button {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  cursor: pointer;
  padding: 16px 30px;
  padding-right: 70px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #00c7c4!important;
  background-color: rgba(241,241,241,0.3)!important;
}

#faq-section .accordion-item {
  margin-bottom: 25px;
}

#airsoft-caption {
  color: white;
  font-weight: 400;
  font-size: 21px;
  text-align: center;
}

#bg-lightblue {
  background-color: #41c2fa;
}

.subject-image-box {
  background-image: url("/assets/ia/img/background-icons-grey.webp");
  background-size: cover;
  text-align: center;
  margin: initial;
}

#subjects-section p {
  font-size: 20px;
  margin-bottom: 30px;
}

#subjects-section div {
  align-self: center;
}

#faq-section p {
  color: grey;
}

#packages-section {
  padding-top: 50px;
  background-image: url("/assets/ia/img/packagesbg.webp");
  background-size: contain;
}

#packages-section h2 {
  background-color: white;
  height: 80px;
  margin-bottom: 0px;
}

.packages-box {
  background-color: white;
}

.packages-box ul {
  margin: 0;
  padding: 0;
}

#faq-section {
  margin-top: 50px;
}

#footer-end {
  text-align: center;
  padding-bottom: 10px;
}

footer h2 {
  color: white;
}

footer a, footer a:hover, footer a:link, footer a:visited, footer a:active {
  color: #d6cbcb;
  text-decoration: none;
  font-weight: normal;
}

footer li {
  margin-top: 10px;
}

#bg-bluegreen {
  background-color: #00c7c4;
}

.color-section-title-caption {
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.gotopackagesbtn {
  margin: 60px auto 0;
  display: block;
  text-align: center;
  width: 160px;
}

#exam-section p {
  line-height: 2.3rem;
}
.faq-answer {
  color: white;
}

.color-section .accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-button {
  background-color: #ffffff00!important;
  border-right-style: none;
  color: white!important;
}

a {
  color: #6d8de1;
}

#footer a:active, a:hover {
  color: #fcf8f8;
  text-decoration: none;
  font-weight: bold;
}

p {
  margin: 0 0 10px;
}

.color-section {
  min-height: 100vh;
  position: relative;
  padding: 120px 0px;
}

.color-section-big {
  text-align: center;
  color: white;
  font-size: 36px;
}

#bg-green {
  background-color: #55ac68;
}

#early_bird_title {
  color: white;
  text-align: center;
}

#early_bird_subtitle {
  color: white;
  text-align: center;
  font-size: 21px;
}

.list-comment {
  font-size: 17px;
  font-style: italic;
}

#early-bird-box {
  border-style: dashed;
  border-color: white;
  border-width: 4px;
  padding: 8px;
}

.color-section .faq-item {
  background: rgba(255,255,255,0);
  border-style: none;
  border-right-style: none;
}

h3 {
  color: white;
  margin-bottom: 25px;
}

a {
  color: white;
}

#exam-section {
  margin-top: 50px;
}

.caption {
  text-align: center;
  color: white;
  font-size: 25px;
}

.color-section .accordion-header {
  border-right-style: none;
  color: white;
}

.color-section .accordion-body p {
  color: white;
}

#footer-end p {
  color: grey;
  font-size: 12px;
  margin-top: 5px;
}

footer ul {
  color: white;
}
.animated{
  visibility: visible;
  animation-delay: 600ms;
}
#order-section input[type="text"], select {
  border: black;
  border-style: solid;
  border-width: 0.1px;
  border-radius: 9px;
  height: calc(2.25rem + 27px);
  margin-top: 15px;
  margin-bottom: 25px;
}

.form-label {
  font-weight: bold;
  font-size: 20px;
}

#order-bg {
  background-image: url("/assets/ia/img/orderbg.webp");
  padding-bottom: 75px;
}

#order-container {
  background-color: rgba(0,0,0,0.8);
  color: white;
  border-radius: 30px;
  padding: 25px;
}

#order-section h1 {
  text-align: center;
  font-size: 45px;
}

#order-section .btn {
  margin: 28px;
}

#order-section h2 {
  font-size: calc(1.175rem + 1.5vw);
  font-weight: 500;
  margin-top: 40px;
}

#order-section #change_package_link:link {
  color: white;
}

#order-section #change_package_link:active {
  color: white;
}

#order-section #change_package_link:hover {
  color: white;
  font-weight: bold;
}

#order-section #change_package_link:visited {
  color: white;
  font-weight: bold;
}

.order-info {
  font-size: 1.2rem;
}
#order-section h1 {
  color: white;
}

#earlybird-airsoft{
  background-color: #55ac68;
  padding-top: 50px;
  color: white;
}
#earlybird-airsoft h2{
  text-align: center;
  margin-bottom: 40px;
}
.accordion-body{
  padding-top: 0px;
}
#earlybird-pixity{
  background-color: #7054e6;;
  padding-top: 50px;
  color: white;
}
#earlybird-pixity h2{
  text-align: center;
  margin-bottom: 40px;
}

#early_bird_section{
  padding-top: 50px; padding-bottom: 50px; padding-left: 5px; padding-right: 5px;  background: linear-gradient(153deg, rgba(85,172,104,1) 30%, rgba(112,84,230,1) 73%);
}
#early_bird_container{
  border: red 7px dashed; padding-top: 50px; padding-bottom: 50px; padding-left: 15px; padding-right: 15px; background-color: rgba(0, 0, 0, 0.2);
}
#early_bird_or{
  color: white;position: absolute;background: orange;bottom: -30px; /* A szülőhöz képest az aljához igazítva */left: 10%;height: 72px;width: 210px;z-index: 10;padding: 10px;
}
#early_bird_questions_section{
  padding-top: 50px; padding-bottom: 50px; padding-left: 5px; padding-right: 5px; background: linear-gradient(153deg, rgba(85,172,104,1) 30%, rgba(112,84,230,1) 73%);
}
#early_bird_questions_container{
  background-color: rgba(0, 0, 0, 0.5); padding-top: 50px; padding-bottom: 50px; padding-left: 15px; padding-right: 15px;
}