/*
Theme Name: INFUSE Sendoso - Better Together
Author: Meduzzen
Description: A blank WordPress theme
Version: 1.0
*/

/* standartization */

:root {
  --font-family: "Asap", sans-serif;
}

/* primary */

@media screen and (min-width: 769px) {
  body {
    margin: 40px 40px 0 40px;
  }
}

@media screen and (max-width: 768px) {
  body {
    margin: 12px 10px 0 10px;
  }
}

/* container */

.container {
  max-width: 1400px;
  margin: 0 auto;
}

@media screen and (min-width: 1401px) {
  .container {
    padding-left: 145px;
    padding-right: 145px;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 990px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

body {
  background: #f4f6ff;
}

body,
body p {
  font-family: var(--font-family);
  font-weight: 400;
}

/* buttons */

.btn {
  font-family: var(--font-family);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 500px;
  cursor: pointer;
  outline: none !important;
  max-width: fit-content;
  max-height: fit-content;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: transparent;
  transition: all 0.3s;
  font-size: 22px;
  padding: 12px 40px;
}

.btn > * {
  position: relative;
  z-index: 2;
}

.btn svg {
  min-width: 24px;
  max-width: 24px;
  width: 100%;
  height: auto;
}

.btn svg * {
  transition: all 0.3s;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  transition: all 0.3s;
}

.btn::before {
  background: linear-gradient(
    46deg,
    #ee3124 0%,
    #f57623 58.33%,
    #faaa23 92.51%
  );
  z-index: 1;
  opacity: 1;
}

.btn::after {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  z-index: 1;
  opacity: 1;
  padding: 2px;
  background: linear-gradient(
    46deg,
    #ee3124 0%,
    #f57623 58.33%,
    #faaa23 92.51%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.btn:active {
  background-color: #ef4223;
}

@media screen and (min-width: 1201px) {
  .btn:hover {
    color: #ff880f;
  }

  .btn:hover svg path {
    fill: #ff880f;
  }

  .btn:hover::before {
    opacity: 0;
  }
}

@media screen and (min-width: 768px) {
  .btn {
    line-height: 160%;
  }
}

@media screen and (max-width: 768px) {
  .btn {
    line-height: 115%;
  }
}
