@import url("https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:wght@400;600;700&family=Inder&display=swap");

:root {
  --color-primary: #1e1928;
  --color-secondary: #592041;
  --color-tertiary: #e7634c;
  --color-quaternary: #ffd393;
  --color-quinary: #ede6dd;
  --color-senary: #a0b4bb;
  --color-white: #ffffff;
  --color-black: #000000;
  --body-font-family: "Inder", sans-serif;
  --heading-font-family: "Ibarra Real Nova", serif;
  --body-font-size: 1.25rem;
  --body-font-weight: 400;
  --body-line-height: 1.5;
  --heading-line-height: 1.3;
  --heading-font-weight: 400;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

/*! 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: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  color: var(--body-color);
  background-color: var(--color-white);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-x: hidden;
}

/**
 * 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: 2em;
  margin: 0.67em 0;
}

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

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

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

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

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

a {
  background-color: transparent;
  text-decoration: none;
  color: var(--color-primary);
}

a:hover {
  color: var(--color-secondary);
}

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

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

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

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

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

/* 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 {
  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 {
  /* 1 */
  text-transform: none;
}

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

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

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

button::-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="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:focus-visible {
  outline: 1px solid var(--color-tertiary);
}
/**
 * Correct the padding in Firefox.
 */

/**
 * 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.
 */

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

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

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

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

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

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

/**
 * 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.
 */

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

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

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

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

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media only screen and (min-width: 576px) {
  .container {
    width: 540px;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    width: 720px;
  }
}

@media only screen and (min-width: 992px) {
  .container {
    width: 960px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}

@media only screen and (min-width: 1400px) {
  .container {
    width: 1320px;
  }
}

h1,
h2 {
  font-family: var(--heading-font-family);
  line-height: var(--heading-line-height);
}

img {
  max-width: 100%;
}

.color-tertiary {
  color: var(--color-tertiary);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-quinary {
  background-color: var(--color-quinary);
}

.bg-senary {
  background-color: var(--color-senary);
}

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

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* custom cursor style */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  border: 2px solid var(--color-tertiary);
  transition: transform 0.3s ease;
  transform-origin: center center;
  pointer-events: none;
  z-index: 1000;
}

.grow,
.grow-small {
  transform: scale(4);
  background: white;
  mix-blend-mode: difference;
  border: none;
}

.grow-small {
  transform: scale(2);
}

header {
  position: absolute;
  width: 100%;
  padding-top: 15px;
}
#burger-menu {
  cursor: pointer;
  height: 27px;
  width: 27px;
  overflow: visible;
  position: relative;
  z-index: 2;
}

#burger-menu span,
#burger-menu span::before,
#burger-menu span::after {
  background: var(--color-black);
  display: block;
  height: 4px;
  opacity: 1;
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#burger-menu span::before,
#burger-menu span::after {
  content: "";
  background: var(--color-tertiary);
}

#burger-menu span {
  right: 0px;
  top: 13px;
  width: 27px;
}

#burger-menu span::before {
  left: 0px;
  top: -10px;
  width: 16px;
}

#burger-menu span::after {
  left: 0px;
  top: 10px;
  width: 20px;
}

#burger-menu.close span {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 13px;
  width: 27px;
}

#burger-menu.close span::before {
  top: 0px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 27px;
}

#burger-menu.close span::after {
  top: 0px;
  left: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 0;
  width: 0;
}

.menu {
  position: relative;
}

.menu-list {
  list-style: none;
  position: absolute;
  width: 200px;
  background: var(--color-white);
  padding: 10px 0 20px;
  text-align: center;
  right: 0;
  overflow: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.menu-list.menu-control {
  width: 200px;
  height: auto;
  opacity: 1;
  overflow: initial;
}

.menu-list::after {
  display: block;
  content: "";
  position: absolute;
  top: -10px;
  right: 3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent var(--color-white) transparent;
}

.menu-list a {
  display: inline-block;
  padding: 10px 0;
}

.menu-list button {
  padding: 10px;
  color: var(--color-white);
  background-color: var(--color-tertiary);
  border: none;
}

.menu-list button:hover {
  cursor: pointer;
}

.v-icon {
  width: 68px;
  height: 68px;
  margin-right: 30px;
}

.pulse {
  height: 52px;
  width: 52px;
  background: var(--color-tertiary);
  position: absolute;
  margin: auto;
  border-radius: 50%;
  place-items: center;
  color: var(--color-tertiary);
  z-index: 1;
  overflow: initial;
}

.pulse::before,
.pulse::after {
  content: "";
  position: absolute;
  height: 34px;
  width: 34px;
  background-color: var(--color-tertiary);
  border-radius: 50%;
  z-index: -1;
  opacity: 1;
}

.pulse::before {
  -webkit-animation: pulse 2s ease-out infinite;
  animation: pulse 2s ease-out infinite;
}

.pulse::after {
  -webkit-animation: pulse 2s 1s ease-out infinite;
  animation: pulse 2s 1s ease-out infinite;
}

@-webkit-keyframes pulse {
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

.play-backdrop {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
}

.play-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 45px;
  top: 30px;
  border: none;
  outline: none;
  background: none;
  opacity: 0;
  cursor: pointer;
}

.play-close::before,
.play-close::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #fff;
}

.play-close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.play-perspective {
  position: relative;
  padding-bottom: 40.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.play-triangle {
  background-color: #fff;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.play-video {
  width: 100%;
  height: 100%;
}

.button {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 0 8.5px 14px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  z-index: 0;
}
.hero {
  overflow: auto;
  margin-bottom: -9px;
}

.hero h1 {
  margin: 100px 0 30px;
}

.hero p {
  max-width: 680px;
  margin: 0 auto;
}

.hero form {
  max-width: 400px;
  margin: 50px auto 0;
}

.hero form input[type="email"] {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: none;
  padding: 11px 15px;
  border: 1px solid var(--color-white);
  border-radius: 22.5px;
}

.hero form input[type="email"]:focus {
  outline: none;
  border: 1px solid var(--color-tertiary);
}

.hero form .submit-button {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 10px 50px;
  border: 0;
  font-size: 1rem;
  border-radius: 22.5px;
  margin-top: 10px;
}

.hero form .submit-button:hover {
  cursor: pointer;
}

.hero #mce-responses {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 0.875rem;
}

.hero #mce-responses #mce-error-response {
  color: #dc3545;
}

.hero #mce-responses #mce-success-response {
  color: #198754;
}

.hero img {
  margin-top: 50px;
}

.offer {
  padding: 80px 0;
}

.offer h2 {
  color: var(--color-quinary);
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}

.offer h2:first-child {
  padding: 30px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.offer h2:last-child {
  text-align: right;
  padding: 0px 0 30px;
  border-bottom: 1px solid #e5e5e5;
  margin-top: -8px;
}

.offer a {
  color: var(--color-secondary);
  display: inline-block;
  position: relative;
  top: -15px;
  left: 50%;
  padding: 0 30px;
  -webkit-transform: perspective(1px) translateX(-50%);
  transform: perspective(1px) translateX(-50%);
}

footer {
  overflow: hidden;
  padding: 60px 0;
}

footer .w-menu,
footer .tab-img,
footer .tab-desc {
  margin-top: 30px;
}

footer .tab-img {
  background-color: var(--color-primary);
}
footer .tab-desc p:first-child {
  margin-top: 0;
}
footer .w-menu a.tab-active,
footer .tab-desc h2 {
  color: var(--color-senary);
  font-weight: 400;
  padding: 0 0 10px 0;
  position: relative;
  margin: 0;
}
footer .w-menu a {
  display: block;
  padding: 5px 0;
  color: #a1a1aa;
}
footer .w-menu a.tab-active {
  font-size: 1.75rem;
}
footer .w-menu a.tab-active::after,
footer .tab-desc h2::after {
  content: "";
  display: block;
  width: 3000%;
  height: 0.5px;
  background-color: #a1a1a1;
  position: absolute;
  bottom: 0;
  right: -100%;
  z-index: -1;
}
footer .tab-content {
  display: none;
  background-color: var(--color-primary);
  margin-top: 1px;
  position: relative;
  z-index: 1;
}
footer .tab-content.tab-active {
  display: block;
}
footer .w-menu,
footer .tab-img {
  position: relative;
  z-index: 1;
}

footer .tab-desc p {
  color: rgba(161, 161, 170, 0.47);
}

footer .social ul {
  list-style: none;
  padding-left: 0;
  margin: 30px -16px 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer .social ul li a {
  width: 100px;
  height: 100px;
  border-radius: 72.5px;
  background-color: #191424;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 30px 16px 0;
}

footer .social ul a.dribble:hover {
  background: #191424 url(../images/dribble-shadow.svg) no-repeat center center;
}

footer .social ul a.behance:hover {
  background: #191424 url(../images/behance-shadow.svg) no-repeat center center;
}

footer .social ul a.facebook:hover {
  background: #191424 url(../images/facebook-shadow.svg) no-repeat center center;
}

footer .social ul a.instagram:hover {
  background: #191424 url(../images/instagram-shadow.svg) no-repeat center
    center;
}

footer .social ul a.linkedin:hover {
  background: #191424 url(../images/linkedin-shadow.svg) no-repeat center center;
}

footer .social ul a.twitter:hover {
  background: #191424 url(../images/twitter-shadow.svg) no-repeat center center;
}

footer .social ul img {
  width: 45px;
}

footer .rotate-btn {
  display: none;
}

@media (max-width: 320px) {
  .galaxy-fold-open-your-device {
    display: block !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    position: fixed;
    z-index: 2147483647;
  }

  .galaxy-fold-open-your-device::after {
    content: "Please unfold your phone ðŸ¤£";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100vh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .portfolio-link {
    display: none;
  }
}

@media only screen and (min-width: 576px) {
  .hero h1 {
    margin: 150px 0 30px;
    font-size: 48px;
  }
  .hero form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--color-white);
    padding: 5px;
    border-radius: 27.5px;
    border: 1px solid var(--color-white);
  }

  .hero form:focus-within {
    border: 1px solid var(--color-tertiary);
  }

  .hero form input[type="email"],
  .hero form input[type="email"]:focus {
    border: none;
  }

  .hero form .submit-button {
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) {
  .v-icon {
    margin-right: 10px;
  }

  #burger-menu {
    display: none;
  }

  .menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    position: inherit;
    background: transparent;
    padding: 0;
    text-align: left;
    left: 0;
    overflow: hidden;
    width: auto;
    height: auto;
    opacity: 1;
  }
  .menu-list.menu-control {
    width: auto;
  }
  .menu-list::after {
    display: none;
  }
  .menu-list a {
    padding: 10px 20px;
  }
  .hero h1 {
    margin: 200px 0 30px;
    font-size: 56px;
  }

  .offer {
    padding: 100px 0;
  }

  .offer h2 {
    font-size: 2.5rem;
  }

  .offer h2:first-child {
    padding: 40px 0;
  }

  .offer h2:last-child {
    padding: 5px 0 40px;
    margin-top: 0;
  }

  footer .tab-content.tab-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  footer .tab-img {
    -ms-flex-preferred-size: 65%;
    flex-basis: 65%;
    max-width: 65%;
  }
  footer .tab-img img {
    width: 100%;
    object-fit: cover;
    padding-right: 30px;
  }
  footer .tab-desc {
    -ms-flex-preferred-size: 35%;
    flex-basis: 35%;
    max-width: 35%;
  }

  footer .tab-desc h2::after {
    left: -50%;
  }
}

@media only screen and (min-width: 992px) {
  .hero h1 {
    font-size: 64px;
  }

  .offer {
    padding: 120px 0;
  }

  .offer h2 {
    font-size: 3rem;
  }

  .offer h2:first-child {
    padding: 40px 0;
  }

  .offer h2:last-child {
    padding: 5px 0 40px;
  }

  footer .tabs-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .w-menu {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  footer .tab-content {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  footer .tab-img {
    -ms-flex-preferred-size: 65%;
    flex-basis: 65%;
    max-width: 65%;
  }

  footer .tab-desc {
    -ms-flex-preferred-size: 35%;
    flex-basis: 35%;
    max-width: 35%;
  }

  footer .social ul li a {
    width: 120px;
    height: 120px;
  }

  footer .click-btn {
    font-size: 0.875rem;
    color: var(--color-white);
    background: var(--color-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10000;
    -webkit-animation: rotate 20s linear infinite;
    animation: rotate 20s linear infinite;
    width: 162px;
    height: 162px;
  }

  footer .click-btn span {
    height: 162px;
    position: absolute;
  }

  footer .click-btn .char1 {
    -webkit-transform: rotate(18.94737deg);
    -ms-transform: rotate(18.94737deg);
    transform: rotate(18.94737deg);
  }

  footer .click-btn .char2 {
    -webkit-transform: rotate(37.89474deg);
    -ms-transform: rotate(37.89474deg);
    transform: rotate(37.89474deg);
  }

  footer .click-btn .char3 {
    -webkit-transform: rotate(56.84211deg);
    -ms-transform: rotate(56.84211deg);
    transform: rotate(56.84211deg);
  }

  footer .click-btn .char4 {
    -webkit-transform: rotate(75.78947deg);
    -ms-transform: rotate(75.78947deg);
    transform: rotate(75.78947deg);
  }

  footer .click-btn .char5 {
    -webkit-transform: rotate(94.73684deg);
    -ms-transform: rotate(94.73684deg);
    transform: rotate(94.73684deg);
  }

  footer .click-btn .char6 {
    -webkit-transform: rotate(113.68421deg);
    -ms-transform: rotate(113.68421deg);
    transform: rotate(113.68421deg);
  }

  footer .click-btn .char7 {
    -webkit-transform: rotate(132.63158deg);
    -ms-transform: rotate(132.63158deg);
    transform: rotate(132.63158deg);
  }

  footer .click-btn .char8 {
    -webkit-transform: rotate(151.57895deg);
    -ms-transform: rotate(151.57895deg);
    transform: rotate(151.57895deg);
  }

  footer .click-btn .char9 {
    -webkit-transform: rotate(170.52632deg);
    -ms-transform: rotate(170.52632deg);
    transform: rotate(170.52632deg);
  }

  footer .click-btn .char10 {
    -webkit-transform: rotate(189.47368deg);
    -ms-transform: rotate(189.47368deg);
    transform: rotate(189.47368deg);
  }

  footer .click-btn .char11 {
    -webkit-transform: rotate(208.42105deg);
    -ms-transform: rotate(208.42105deg);
    transform: rotate(208.42105deg);
  }

  footer .click-btn .char12 {
    -webkit-transform: rotate(227.36842deg);
    -ms-transform: rotate(227.36842deg);
    transform: rotate(227.36842deg);
  }

  footer .click-btn .char13 {
    -webkit-transform: rotate(246.31579deg);
    -ms-transform: rotate(246.31579deg);
    transform: rotate(246.31579deg);
  }

  footer .click-btn .char14 {
    -webkit-transform: rotate(265.26316deg);
    -ms-transform: rotate(265.26316deg);
    transform: rotate(265.26316deg);
  }

  footer .click-btn .char15 {
    -webkit-transform: rotate(284.21053deg);
    -ms-transform: rotate(284.21053deg);
    transform: rotate(284.21053deg);
  }

  footer .click-btn .char16 {
    -webkit-transform: rotate(303.15789deg);
    -ms-transform: rotate(303.15789deg);
    transform: rotate(303.15789deg);
  }

  footer .click-btn .char17 {
    -webkit-transform: rotate(322.10526deg);
    -ms-transform: rotate(322.10526deg);
    transform: rotate(322.10526deg);
  }

  footer .click-btn .char18 {
    -webkit-transform: rotate(341.05263deg);
    -ms-transform: rotate(341.05263deg);
    transform: rotate(341.05263deg);
  }

  footer .click-btn .char19 {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  @-webkit-keyframes rotate {
    from {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  @keyframes rotate {
    from {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
}

@media only screen and (min-width: 1200px) {
  .menu-list button {
    display: none;
  }
  .offer h2 {
    font-size: 4rem;
  }

  footer .social ul {
    margin-right: 90px;
  }

  footer .rotate-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    bottom: 50px;
    right: 50px;
    mix-blend-mode: exclusion;
    background-color: transparent;
    border: none;
    z-index: 2;
  }

  footer .rotate-btn:focus {
    border: none;
    outline: none;
  }

  footer .rotate-btn:hover {
    cursor: pointer;
  }

  footer .rotate-btn span.btn-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    width: 71px;
    height: 71px;
    border-radius: 50%;
    color: var(--color-primary);
    background: var(--color-white);
    -webkit-box-shadow: 0px 4px 4px rgba(195, 186, 173, 0.63);
    box-shadow: 0px 4px 4px rgba(195, 186, 173, 0.63);
    -webkit-transform: rotate(-21.49deg);
    -ms-transform: rotate(-21.49deg);
    transform: rotate(-21.49deg);
    font-size: 0.875rem;
    z-index: 10000;
  }
}

@media only screen and (min-width: 1400px) {
  footer .social ul {
    margin-right: 100px;
  }

  footer .social ul li a {
    width: 130px;
    height: 130px;
  }

  footer .rotate-btn {
    right: 100px;
  }
}

@media only screen and (min-width: 1600px) {
  footer .social ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  footer .social ul li a {
    width: 140px;
    height: 140px;
  }
}

@media only screen and (min-width: 1900px) {
  footer .rotate-btn {
    right: 250px;
  }
}
