@charset "UTF-8";

/**
 * Google Font import
 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600&display=swap');


/**
 * Projecy colors
 */

:root {
  --light-orange: #f59d00;
  --light-blue: #0065b0;
  --dark-orange: #f07c03;
  --dark-blue: #193c91;
}

/*
Theme Name: Anzo
Author: Anzo
Author URI: https://an-zo.com
Version: 2.0.0
Requires PHP: 5.6
*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  overflow-x: hidden;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 3em;
  font-weight: 300;
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 2em;
  }
}

h2 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

.footer .design {
  display: flex;
  justify-content: end;
}

.wrapper {
	width: 82rem;
	max-width: calc(100% - 6rem);
	margin: 0 auto;
	position: relative;
}

@media only screen and (max-width: 1024px) {
  .wrapper {
    width: 100%;
    max-width: calc(100% - 4rem);
  }
}

.teaser {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 2em;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  .teaser {
    font-size: 12px;
  }
}

.row-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-12 {
    display: flex;
    justify-content: space-between;
  }
}

.row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .row-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.row-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-5 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.row-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .row-6 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.mt-1 {
  margin-top: 1em;
}


.mt-2 {
  margin-top: 2em;
}

.mt-3 {
  margin-top: 3em;
}

.mt-4 {
  margin-top: 4em;
}

.mt-40 {
  margin-top: 40px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-160 {
  margin-top: 160px;
}

.mb-80 {
  margin-bottom: 80px;
}

.d-flex {
  display: flex;
  gap: 1em;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.transition {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}

p, ul, ol {
  line-height: 1.6;
  font-weight: 300;
  text-align: justify;
}

strong {
  font-weight: 600;
}

/* Go to top */

a.go-to-top {
  position: fixed;
  display: none;
  bottom: 40px;
  right: 40px;
  background-color: transparent;
  border: 1px solid #000000;
  padding: 10px 10px 5px 10px;
  cursor: pointer;
  transition: 300ms ease-in-out;
  transform: rotate(270deg);
}

/* header */

header {
  position: fixed;
  width: 100%;
  z-index: 9;
  padding: 16px 0;
  top: 0;
}

header.scroll,
header.dark {
  background-color: #fafafa;
}

.logo,
.logoFooter {
  width: 349px;
  height: 22px;
  background-image: url(img/logo.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.logoFooter {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1366px) {
  .logo,
  .logoFooter {
    width: 220px;
    height: 14px;
  }
}

header.scroll .logo {
  width: 220px;
  height: 14px;
  background-image: url(img/logo-scroll.png);
}

header .social {
  display: flex;
  gap: 1em;
  justify-content: end;
}

.site-branding {
  grid-column: 1 / span 3;
}

.main-navigation {
  display: grid;
  grid-column: 4 / span 9;
  justify-content: end;
}

.menu-toggle {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .menu-toggle {
    display: block;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border: none;
  }
}

/* menu */

#primary-menu  {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.25em;
  list-style-type: none;
  display: flex;
  gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .main-navigation #primary-menu {
    display: none;
  }

  .main-navigation #primary-menu a {
    text-decoration: none;
    position: relative;
    color: #000000;
  }

  .main-navigation.toggled #primary-menu {
    display: grid;
    position: fixed;
    left: 0;
    right: 0;
    gap: 3em;
    background-color: #ffffff;
    padding: 40px 0;
    justify-content: center;
    overflow: auto;
    height: 80vh;
  }
}

#primary-menu a {
  text-decoration: none;
  position: relative;
  color: #ffffff;
  font-weight: 300;
}

#primary-menu .sub-menu a {
  color: #000000;
  font-weight: 300;
  font-size: 12px;
}

#primary-menu .sub-menu a:after {
  display: none;
}

.scroll #primary-menu a {
  color: #000000;
}

#primary-menu a:hover {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

#primary-menu a:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #ffffff;
  margin-top: 8px;
  display: block;
  position: absolute;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.scroll #primary-menu a:after {
  background-color: #000000;
}

#primary-menu a:hover:after {
  width: 100%;
}
#primary-menu .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background-color: #fafafa;
  padding: 40px;
  margin: 0;
  list-style: none;
  display: grid;
  row-gap: 1em;
  border: none;
}

@keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg)
  }
  70% {
    transform: rotateX(20deg)
  }
  100% {
    transform: rotateX(0deg)
  }
}

#primary-menu li.menu-item:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  animation: rotateMenu 500ms ease-in-out forwards;
  transform-origin: top center;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  #primary-menu li.menu-item:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    animation: none;
    position: relative;
  }
}

@media only screen and (max-width: 768px) {
  .main-navigation.toggled #primary-menu {
    gap: 2em;
    padding: 24px;
  }

  #primary-menu .sub-menu {
    visibility: visible;
    opacity: 1;
    animation: none;
    position: relative;
    display: grid;
    padding: 24px 0;
    background-color: #ffffff;
  }
}

/* images */

.image {
  width: 100%;
  height: auto;
}

/* slider */

.slider.slick-initialized.slick-slider {
    height: 100vh;
    align-items: center;
    display: flex;
}

.slider-next {
  background-color: transparent;
  border: none;
  background-image: url(img/svg/next.svg);
  background-size: cover;
  width: 48px;
  height: 48px;
  font-size: 0%;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
}

.entry .slider-next {
  background-image: url(img/svg/next-white.svg);
}

@media only screen and (max-width: 768px) {
  .entry .slider-next {
    display: none !important;
  }
}

.slider-prev {
  background-color: transparent;
  border: none;
  background-image: url(img/svg/next.svg);
  background-size: cover;
  transform: rotate(180deg);
  width: 48px;
  height: 48px;
  font-size: 0%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}

.entry .slider-prev {
  background-image: url(img/svg/next-white.svg);
}

@media only screen and (max-width: 768px) {
  .entry .slider-prev {
    display: none !important;
  }
}

/* Headers */

h1.title {
  margin-top: 1rem;
  margin-bottom: 2rem;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  h1.title {
    font-size: 40px;
  }
}

.preTitle {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
  gap: 1em;
}

.preTitle::before {
  content: "";
  width: 4em;
  height: 1px;
  background-color: #000000;
  display: block;
}

/* Buttons */

.btn {
  text-decoration: none;
  font-weight: 300;
  color: #000000;
  background-color: transparent;
  display: inline-block;
  outline: none;
  border: 1px solid #000000;
  padding: 18px 31px;
  transition: all .3s ease-in-out;
  margin-top: 1em;
}

.btn:hover {
  background-color: #000000;
  color: #ffffff;
}

/* entry */

.entry {
  height: 100vh;
  width: 100%;
  color: #ffffff;
}

.entry h1 {
  margin-bottom: 0;
  font-size: 4em;
  font-weight: 300;
}

@media only screen and (max-width: 768px) {
  .entry h1 {
    font-size: 2em;
  }
}

.entry p {
  font-size: 2em;
  font-weight: 100;
  margin-top: 0;
}

.entry .slider__slide {
  display: grid !important;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.entry .slider__slide:before {
  content: "";
  width: 100%;
  height: 100vh;
  background-color: #00000080;
  display: block;
  position: absolute;
}

.entry .slider .slide-1 {
  background-image: url(img/drutex-dom.webp);
}

.entry .slider .slide-2 {
  background-image: url(img/uslugi-budowlane.jpg);
}

.entry .slider .slide-3 {
  background-image: url(img/drutex-nowoczesny-dom.webp);
}

/* aboutus */

.aboutus {
  padding: 120px 0;
}

/* offer */

.offer {
  padding: 120px 0;
}

.offer .group .item {
  text-align: center;
  color: #ffffff;
  height: 400px;
  display: grid;
  align-items: center;
  align-content: center;
  position: relative;
}

.offer .group .item:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #00000080;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;   
}

.offer .group .item:hover:before {
  background-color: #000000CC;
}

.offer .group .item h2 {
  z-index: 1;
  padding: 0 8px;
  font-weight: 100;
}

.offer .doradztwo {
  background-image: url(img/oferta-doradztwo.jpg);
  background-repeat: no-repeat;
}

.offer .uslugiBudowlane {
  background-image: url(img/oferta-budowlane.jpg);
  background-repeat: no-repeat;
}

.offer .okna {
  background-image: url(img/oferta-okna.jpg);
  background-repeat: no-repeat;
}

.offer .fasady {
  background-image: url(img/oferta-fasady.jpg);
  background-repeat: no-repeat;
}

.offer .ogrodyZimowe {
  background-image: url(img/oferta-ogrodyzimowe.jpg);
  background-repeat: no-repeat;
}

.offer .drzwiZewnetrzne {
  background-image: url(img/oferta-drzwizewnetrzne.jpg);
  background-repeat: no-repeat;
}

.offer .drzwiWewnetrzne {
  background-image: url(img/oferta-drzwiwewnetrzne.jpg);
  background-repeat: no-repeat;
}

.offer .bramyGarazowe {
  background-image: url(img/oferta-bramygarazowe.jpg);
  background-repeat: no-repeat;
}

.offer .bramyWjazdowe {
  background-image: url(img/oferta-ogrodzenia.jpg);
  background-repeat: no-repeat;
}

.offer .rolety {
  background-image: url(img/oferta-zaluzje.jpg);
  background-repeat: no-repeat;
}

.offer .oslony {
  background-image: url(img/oferta-oslony.jpg);
  background-repeat: no-repeat;
}

.offer .wiazary {
  background-image: url(img/oferta-wiazary.jpg);
  background-repeat: no-repeat;
}

.offer .izolacja {
  background-image: url(img/oferta-izolacja.jpg);
  background-repeat: no-repeat;
}

/* partners */

.partners {
  padding: 120px 0;
}

.partners .slider-prev {
  top: calc(50% - 24px);
  left: -40px;
}

@media only screen and (max-width: 768px) {
  .partners .slider-prev {
    width: 32px;
    height: 32px;
    left: -20px;
  }
}

.partners .slider-next {
  top: calc(50% - 24px);
  right: -40px;
}

@media only screen and (max-width: 768px) {
  .partners .slider-next {
    width: 32px;
    height: 32px;
    right: -20px;
  }
}

.partners .partners-slider img {
  opacity: 0.8;
}

.partners .partners-slider img:hover {
  opacity: 1;
}

/* cta */

.cta {
  background-color: #f28300;
  padding: 80px 0;
}

/* whoWeAre */

.whoWeAre {
  padding-bottom: 120px;
}

.whoWeAre .teamMembers .col {
  background-color: #fafafa;
  padding: 24px;
}

/* whywe */

.whywe {
  padding: 120px 0;
}

.whywe h1 {
  background-color: #fafafa;
  display: inline-block;
  padding: 16px 24px;
}

.whywe h1.title {
  background-color: transparent;
}

/* page */

.page-header {
  height: 50vh;
  color: #ffffff;
  display: flex;
  position: relative;
  align-items: end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-header::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #00000080;
  position: absolute;
}

.page-header h1 {
  font-size: 4em;
  font-weight: 100;
}

/* contact */

.contact {
  padding: 120px 0;
}

.contact .group {
  display: grid;
  gap: 2em;
}

.contact .group .item {
  display: flex;
  align-items: center;
  gap: 1em;
}

.contact .group .key {
  color: #00000080;
}

.contact .group .value {
  font-weight: 600;
  margin-top: 0.25em;
}

.contact .group .value a {
  text-decoration: dashed;
  color: inherit;
}

.contact .form {
  display: grid;
  gap: 1em;
  justify-content: center;
  background-color: #fafafa;
  padding: 40px;
}

@media only screen and (max-width: 768px) {
  .contact .form {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
}

.contact .form .contactUs {
  font-size: 20px;
  font-weight: 600;
}

.formControl input {
  padding: 18px;
  border: 1px solid #000000;
  background-color: transparent;
  outline: none;
  width: calc(100% - 36px);
}

@media only screen and (max-width: 768px) {
  .formControl input {
    width: calc(100% - 36px);
  }
}

.formControl textarea {
  padding: 18px;
  border: 1px solid #000000;
  background-color: transparent;
  outline: none;
  width: calc(100% - 36px);
}

@media only screen and (max-width: 768px) {
  .formControl textarea {
    width: calc(100% - 36px);
  }
}

.formControl.acceptance {
  width: 100%;
  font-size: 12px;
}

.formControl.acceptance label {
  display: flex;
  gap: 1em  ;
}

.formControl.acceptance label > input {
  width: 30px;
}

.contact .wpcf7-submit {
  text-decoration: none;
  color: #000000;
  display: inline-block;
  outline: none;
  background-color: transparent;
  border: 1px solid #000000;
  padding: 18px 31px;
  transition: all .3s ease-in-out;
  margin-top: 1em;
}

/* page */

section.page {
  padding-top: 320px;
  padding-bottom: 160px;
}

@media only screen and (max-width: 1024px) {
  section.page {
    padding-top: 240px;
  }
}

/* footer */

.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 0;
  font-size: 14px;
}

.footer .design {
  display: flex;
  gap: 0.5em;
  align-items: flex-start;
}

.footer .contact {
  padding: 0;
  background-image: none;
}

.footer .contact .group {
  gap: 0.5em;
}

.footer .contact .group .value {
  font-weight: 400;
}

.footer .policy a {
  color: inherit;
  text-decoration: none;
}

.footer .bottomBar {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid;
  display: flex;
  justify-content: center;
}

.footer ul {
  padding-left: 20px;
}

/* accordion */

ul.accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
  
ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFF;
  padding: 0 24px;
  margin: 0 auto 15px auto;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  ul.accordion-list li {
    width: auto;
  }
}

ul.accordion-list .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul.accordion-list li .title .icon img {
  transform: rotate(90deg);
}

ul.accordion-list li.active .title .icon img {
  transform: rotate(-0.25turn);
}

ul.accordion-list li .answer li {
  list-style-type: disc;
  border: none;
  padding: 0 ;
}