/*
Theme Name: LP Siemens Success Story
Author: Meduzzen
Description: A blank WordPress theme
Version: 1.0
*/

/* standartization */

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

/* primary */

/* container */

.container {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

/* body */

body {
  background: #f4f6ff;
}

body,
body p {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 125%;
}

@media screen and (min-width: 1201px) {
  body,
  body p {
    font-size: 26px;
  }
}

@media screen and (max-width: 1200px) {
  body,
  body p {
    font-size: 20px;
  }
}

/* buttons */

.btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 160%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  padding: 12px 39px;
  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;
  background-color: transparent;
  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,
.btn-arrow::before {
  background: linear-gradient(
    46deg,
    #ee3124 0%,
    #f57623 58.33%,
    #faaa23 92.51%
  );
  z-index: -1;
  opacity: 1;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 18px;
  border-radius: 131px;
  position: relative;
  background: transparent;
  transition: all 0.3s;
}

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

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

.btn::after,
.btn-arrow::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;
}

@media screen and (min-width: 1201px) {
  .btn:hover::before,
  .btn-arrow:hover::before {
    opacity: 0;
  }

  .btn:active,
  .btn-arrow:active {
    background-color: #ff492c;
  }
}

@media screen and (min-width: 921px) {
  .btn {
    font-size: 22px;
    padding: 12px 39px;
  }
}

@media screen and (max-width: 920px) {
  .btn {
    font-size: 18px;
    padding: 10px 33px;
  }
}
