:root {
  --var-light: white;
  --var-purple: #962c91;
  --var-blue: rgba(0, 166, 237, 0.24);
  --var-pink: rgba(249, 132, 167, 0.2);
}
/* css reset */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
  width: 100%;
  height: 100%;
  font-family: "Luckiest Guy", cursive;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}
*,
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Carter One", cursive;
  color: var(--var-light);
}
#logo {
  width: 500px;
  margin: 0px auto;
  margin-bottom: 0px;
}
#logo img {
  width: 100%;
  height: auto;
}
#logo ~ p {
  color: #ffb200;
  text-align: center;
  margin: 30px 0;
}
.content-wrap {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.btn {
  background: var(--var-purple);
  color: var(--var-light);
  border-radius: 10px;
  padding: 22px 30px;
  font-size: 1.4em;
  display: block;
  margin: 0 auto;
  width: 230px;
  text-align: center;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.5s;
}
.btn:hover {
  background: #ff6600;
}
section {
  position: relative;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  min-height: 600px;
  padding: 50px 0;
}
.content-wrap {
  z-index: 20;
  position: relative;
  padding: 0 20px;
}
section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
section#two::after {
  background-color: rgba(255, 2555, 255, 0.4);
}
section#three::after {
  background: none;
}
section#four::after {
  background-color: rgba(255, 2555, 255, 0.9);
}
#one {
  background: url("/gay-harem/bg1.webp") center bottom no-repeat;
  background-size: cover;
}
#two {
  background: url("/gay-harem/bg2.webp") center bottom no-repeat;
  background-size: cover;
}
#three {
  background: url("/gay-harem/bg3.webp") center bottom;
  background-size: cover;
}
#four {
  background: url("/gay-harem/bg4.webp") center bottom;
}
.columns {
  display: flex;
}
.columns div {
  display: flex;
  align-items: center;
}
.columns .left {
  flex: 0 1 50%;
  margin-right: 30px;
}

#two .columns .left {
  flex: 0 1 30%;
  margin-right: 30px;
}
#two .columns .right {
  flex: 1 0;
  flex-direction: column;
  justify-content: center;
}
#one .columns .right {
  align-items: center;
  justify-content: center;
}
#one .columns .right p {
  line-height: 1.3em;
}
#one .columns .left img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 3px solid white;
}
.video-wrapper {
  padding-bottom: 56.25%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
video {
  width: 100%;
  position: relative;
  display: block;
}
.columns .right {
  flex: 0 1 50%;
  width: 50%;
  flex-direction: column;
}
.heading {
  text-align: center;
  padding: 20px 0;
  font-size: 2.1em;
}
.black {
  background: black;
  color: white;
}
.white {
  background: white;
  color: black;
}
.blue {
  background: var(--var-blue);
  color: black;
}
.pink {
  background: var(--var-pink);
  color: black;
}
.facebook {
  display: flex;
  align-items: center;
  justify-content: center;
}
.facebook iframe {
  margin-top: 0px;
}
.slider {
  margin: 0 auto;
  display: flex;
  width: calc(100% - 20px);
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}
.slide {
  width: 570px;
}
.slide img {
  width: 100%;
  height: auto;
  max-width: 720px;
}

.slick-slide {
  margin: 0 5px;
  outline: none;
}
.slick-slide a,
.slick-slide:focus {
  outline: none;
}

.slick-list {
  margin: 0 -5px;
}
.slick-next {
  right: 10px !important;
}
.slick-prev {
  left: 10px !important;
  z-index: 20;
}

#facebook-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
#facebook-container iframe {
  border: none;
}

footer {
  padding: 30px 0;
}
footer p {
  text-align: center;
  font-size: 2.1em;
}
footer ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
footer ul li {
  margin: 2px;
  transition: all 0.3s;
}
footer ul li:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 720px) {
  #logo {
    width: 80%;
  }
  .columns {
    flex-direction: column;
  }
  .columns div {
    display: flex;
    align-items: center;
    width: 100% !important;
  }
  .left {
    flex: 0 1 100%;
  }
  #one .columns .right p {
    margin-top: 30px;
  }
  #two .columns .left {
    flex-grow: 1;
    justify-content: center;
  }
}