html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

:root {
  --icons-on-screen: 20;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #f4f0e9;
  padding: 0;
  color: #171717;
}
body a {
  color: #ef4823;
}
body * {
  box-sizing: border-box;
}
body.fixed {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  transition: all 0.5s linear;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 25px 50px;
}
header.active {
  padding: 10px 50px;
  background: rgba(255, 255, 255, 0.368627451);
  backdrop-filter: blur(20px);
}
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}
header .logo img {
  width: 40px;
}
header .logo span {
  background: -webkit-linear-gradient(0deg, #3f3b35, #a79f96);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
header .main-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 45px;
}
header .main-menu li {
  font-size: 16px;
  font-weight: 600;
}
header .main-menu li a {
  transition: all 0.2s linear;
  color: #3f3b35;
}
header .main-menu li a:hover {
  color: #ef4823;
}
header .cta {
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 50px;
  background: white;
  display: inline-flex;
  color: #3f3b35;
  gap: 15px;
  font-weight: 600;
}
header .cta img {
  width: 20px;
}

.main {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 150px 0;
  height: 100vh;
}
.main .logo-wrapper {
  position: absolute;
  width: 30vh;
  height: 30vh;
}
.main .glow-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(30vh + 30px);
  height: calc(30vh + 30px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.8;
  z-index: 1;
}
.main .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(30vh - 40px);
  height: calc(30vh - 40px);
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.4);
  animation: light 2s linear infinite;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.main .dashed-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30vh;
  height: 30vh;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
  z-index: 3;
}
.main .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20vh;
  transform: translate(-50%, -50%);
  z-index: 4;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes light {
  0% {
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
  }
}
.main .scrolling-icons {
  padding-top: 40px;
  width: 100%;
  overflow: hidden;
  background: #f4f0e9;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main .icon-row {
  overflow: hidden;
  white-space: nowrap;
}
.main .icons {
  display: flex;
  gap: 20px;
  opacity: 0.7;
  animation-timing-function: linear;
}
.main .icon-row.top .icons {
  animation: scroll-left 40s linear infinite;
}
.main .icon-row.bottom .icons {
  animation: scroll-right 40s linear infinite;
}
.main .icons img {
  flex: 0 0 calc(100% / var(--icons-on-screen));
  max-width: calc(100% / var(--icons-on-screen));
  height: auto;
  opacity: 0.5;
  padding: 25px;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(to right, #faf4ef, rgba(235, 222, 211, 0.68)) border-box, #f4f0e9 padding-box;
  border: 4px solid transparent;
  box-sizing: border-box;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.main h1 {
  padding-top: 10vh;
  font-size: 62px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
}
.main p {
  text-align: center;
  max-width: 65%;
  color: rgba(114, 104, 96, 0.68);
  margin-bottom: 30px;
  line-height: 1.5;
}
.main p img {
  width: 20px;
  margin: 0 2px;
  vertical-align: sub;
}
.main a.cta {
  background: #ef4823;
  font-size: 20px;
  padding: 15px 40px;
  border: 1px solid rgba(255, 255, 255, 0.7294117647);
  border-radius: 50px;
  display: inline-flex;
  color: white;
  gap: 15px;
}
.main a.cta img {
  width: 30px;
}
.main .scrollto {
  position: absolute;
  bottom: 30px;
  left: calc(50% - 15px);
  display: inline-flex;
  margin: 0 auto;
}
.main .scrollto img {
  width: 30px;
  animation: updown 1s linear infinite;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

.bg {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  pointer-events: none;
  bottom: -50%;
  width: 200%;
  height: 200vh;
  background: transparent url(http://assets.iceable.com/img/noise-transparent.png) repeat 0 0;
  background-size: 15%;
  background-repeat: repeat;
  animation: bg-animation 2s infinite;
  opacity: 0.5;
  visibility: visible;
  z-index: 2;
}
@keyframes bg-animation {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -5%);
  }
  20% {
    transform: translate(-10%, 5%);
  }
  30% {
    transform: translate(5%, -10%);
  }
  40% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-10%, 5%);
  }
  60% {
    transform: translate(15%, 0);
  }
  70% {
    transform: translate(0, 10%);
  }
  80% {
    transform: translate(-15%, 0);
  }
  90% {
    transform: translate(10%, 5%);
  }
  100% {
    transform: translate(5%, 0);
  }
}

a {
  text-decoration: none;
}

.badge {
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.42));
  border-radius: 40px;
  display: inline-flex;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
  color: #ef4823;
  border: 1px solid #faf4ef;
  margin-bottom: 20px;
}

.details {
  display: flex;
  flex-direction: column;
  width: 1000px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}
.details h3 {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 30px;
}
.details p.additional {
  font-size: 14px;
  line-height: 1.5;
  max-width: 800px;
  margin-bottom: 50px;
}
.details .pseudo-section {
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
}
.details .pseudo-section h5 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
}
.details .pseudo-section > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  min-height: 300px;
}
.details .pseudo-section > div:nth-child(1) {
  background: transparent;
}
.details .pseudo-section > div:nth-child(2) {
  background: linear-gradient(45deg, rgba(241, 241, 241, 0.2117647059), white);
  border: 1px solid rgba(255, 255, 255, 0.7294117647);
  border-radius: 20px;
  box-shadow: 30px 60px 107px 0px rgba(0, 0, 0, 0.1882352941);
  box-sizing: border-box;
  padding: 9px;
  transition: all 0.5s ease;
}
.details .pseudo-section:nth-child(2n) h5, .details .pseudo-section:nth-child(2n) p {
  text-align: left;
}
.details .pseudo-section:nth-child(2n) > div:nth-child(1) {
  background: linear-gradient(45deg, rgba(241, 241, 241, 0.2117647059), white);
  border: 1px solid rgba(255, 255, 255, 0.7294117647);
  border-radius: 20px;
  box-shadow: 30px 60px 107px 0px rgba(0, 0, 0, 0.1882352941);
  box-sizing: border-box;
  padding: 9px;
  transition: all 0.5s ease;
}
.details .pseudo-section:nth-child(2n) > div:nth-child(2) {
  background: transparent;
  box-shadow: none;
  border: none;
}

.services {
  width: calc(100% - 100px);
  margin: 100px auto;
}
.services .menu-wrapper {
  width: 1000px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
}
.services .menu-image {
  width: 400px;
  height: 400px;
  background: url(../img/se-bg.svg) no-repeat;
  background-size: 400px;
  background-position: center;
}
.services .menu-image img {
  width: 400px;
  display: none;
}
.services .menu-image img.active {
  display: block;
  animation: goIn 0.5s linear forwards;
}
@keyframes goIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.services .heading {
  display: flex;
  width: 1000px;
  margin: 0 auto 20px auto;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px 0;
  border-bottom: 1px solid rgba(216, 205, 196, 0.4392156863);
}
.services h3 {
  color: #ef4823;
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
}
.services .add {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
.services ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  font-size: 58px;
  gap: 5px;
  text-align: right;
  font-weight: 400;
}
.services ul a {
  color: #7e7468;
}
.services ul li {
  transition: all 0.2s linear;
}
.services ul li:hover, .services ul li.active {
  transform: translateY(-5px);
}
.services ul li:hover a, .services ul li.active a {
  color: #ef4823;
}

.ready {
  height: 450px;
  background-color: #111111;
  background-image: url(../img/logo-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 600px;
  width: calc(100% - 100px);
  margin: 50px auto;
  border-radius: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.ready h4 {
  color: white;
  text-align: center;
  margin-bottom: 30px;
  font-size: 3rem;
  line-height: 1.2;
}
.ready h4 i {
  color: #ef4823;
}
.ready p {
  color: rgba(255, 255, 255, 0.71);
  margin-bottom: 50px;
}
.ready a.cta {
  background: #ef4823;
  font-size: 20px;
  padding: 15px 40px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 50px;
  display: inline-flex;
  color: white;
  gap: 15px;
}
.ready a.cta img {
  width: 30px;
}

.about {
  background: white;
  padding: 150px 50px;
}
.about a.cta {
  margin-top: 20px;
  background: #ef4823;
  font-size: 14px;
  padding: 15px 20px 15px 25px;
  border-radius: 50px;
  display: inline-flex;
  color: white;
  gap: 15px;
}
.about a.cta img {
  width: 16px;
}
.about img {
  width: 32px;
  margin-right: 10px;
}
.about .container {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.about .container > div {
  width: 47%;
}
.about .container > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.about .container > div:last-child > div {
  padding: 30px;
  border: 1px solid #f5ede3;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  width: 45%;
  height: 150px;
}
.about h5 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 30px;
}
.about h5 i {
  color: #ef4823;
}
.about h6 {
  font-size: 48px;
  line-height: 1.2;
}
.about h6 i {
  color: #ef4823;
}
.about p {
  font-size: 13px;
}

footer .bottom-section {
  display: flex;
  width: calc(100% - 100px);
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 25px 0;
  font-size: 13px;
}
footer .bottom-section ul {
  display: flex;
  gap: 25px;
  align-items: center;
  list-style: none;
}
footer .bottom-section ul a {
  color: #171717;
}
footer .bottom-section:before {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  background: rgba(216, 205, 196, 0.4392156863);
  height: 1px;
  position: absolute;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  top: 0;
  background: transparent;
  backdrop-filter: blur(20px);
  z-index: 999;
  overflow: hidden;
}
.overlay .form .contact-form {
  padding: 30px;
  width: 850px;
  border-radius: 20px;
  height: calc(100% - 40px);
  position: fixed;
  top: 20px;
  right: -850px;
  background: white;
  z-index: 99999;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}
.overlay .form .contact-form h2 {
  margin-bottom: 50px;
  max-width: 80%;
  color: black;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
}
.overlay .form .contact-form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.overlay .form .contact-form input, .overlay .form .contact-form textarea {
  width: 100%;
  padding: 20px 20px;
  margin-top: 5px;
  border: none;
  margin-bottom: 20px;
  outline: none;
  border-radius: 5px;
  background: #f8f8f8;
}
.overlay .form .contact-form textarea {
  height: 100%;
  resize: none;
  font-family: "Poppins", sans-serif;
}
.overlay .form .submit-btn {
  margin-top: 20px;
  padding: 15px 25px;
  border-radius: 30px;
  background: #242424;
  color: white;
  border: none;
  cursor: pointer;
}
.overlay .form .close-btn {
  position: absolute;
  top: 40px;
  right: 45px;
  border: none;
  cursor: pointer;
  font-size: 32px;
  background: #f1f1f1;
  width: 45px;
  height: 45px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.overlay .form .field-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 30px;
}
.overlay .form .field-container > div {
  width: 50%;
}
.overlay .form .field-container > div input {
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

.text {
  padding: 50px;
  display: flex;
  justify-content: flex-start;
}
.text .heading {
  width: 400px;
  font-size: 32px;
  font-weight: 700;
}
.text .content h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0;
}
.text .content li {
  list-style: none;
  font-weight: 500;
  margin: 10px 0;
  padding-left: 0px;
}
.text .content li:before {
  content: "-";
  margin-right: 10px;
}

@media (max-height: 850px) {
  .main {
    padding: 70px 0;
  }
  .main p {
    max-width: 80%;
  }
  .main .icons img {
    padding: 10px;
  }
}
@media (max-width: 700px) {
  .main {
    height: auto;
  }
  .main h1 {
    font-size: 38px;
  }
  .scrollto {
    display: none !important;
  }
  .main p {
    font-size: 14px;
  }
  .scrolling-icons, .bg {
    display: none;
  }
  header {
    padding: 10px 30px;
  }
  header .main-menu {
    display: none;
  }
  header .cta {
    font-size: 14px;
    padding: 13px 20px;
    border-radius: 50px;
    gap: 7px;
  }
  header .cta img {
    width: 18px;
  }
  header .logo span {
    display: none;
  }
  .container {
    max-width: 100%;
  }
  .about {
    padding: 100px 30px;
  }
  .about .container {
    flex-direction: column;
  }
  .about .container > div {
    width: 100%;
    text-align: center;
  }
  .about .container > div:last-child {
    margin-top: 30px;
  }
  .about .container > div:last-child div {
    padding: 30px 15px;
  }
  .about .container > div:last-child div p {
    font-size: 12px;
  }
  .about h6 {
    font-size: 30px;
  }
  .services {
    width: calc(100% - 60px);
  }
  .services .menu-wrapper, .services .heading {
    max-width: 100%;
  }
  .services .menu-wrapper .add, .services .heading .add {
    display: none;
  }
  .services .menu-wrapper {
    flex-direction: column;
  }
  .services .menu-image {
    width: 300px;
    margin: 0 auto 30px auto;
    height: 300px;
    background-size: 300px;
  }
  .services .menu-image img {
    max-width: 100%;
  }
  .services ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    font-size: 36px;
    gap: 5px;
    text-align: left;
    font-weight: 400;
  }
  .details {
    max-width: 100%;
    padding: 50px 30px;
  }
  .details h3 {
    font-size: 24px;
  }
  .details .pseudo-section {
    flex-direction: column;
    padding: 30px 0;
    gap: 30px;
  }
  .details .pseudo-section > div {
    width: 100%;
    text-align: center !important;
  }
  .details .pseudo-section > div h5, .details .pseudo-section > div p {
    text-align: center !important;
  }
  .details .pseudo-section > div:nth-child(2) {
    text-align: left;
  }
  .ready {
    width: calc(100% - 60px);
    margin: 30px auto;
    padding: 30px 20px;
    text-align: center;
    height: auto;
  }
  .ready h4 {
    font-size: 24px;
  }
  .overlay .form .contact-form {
    width: calc(100% - 40px);
  }
  .overlay .form .contact-form h2 {
    margin-bottom: 20px;
    max-width: 65%;
    color: black;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
  }
  .overlay .form .contact-form .field-container {
    flex-direction: column;
    gap: 0;
  }
  .overlay .form .contact-form .field-container > div {
    width: 100%;
  }
  .overlay .form .contact-form label {
    margin-bottom: 0;
  }
  .overlay .form .contact-form .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    cursor: pointer;
    font-size: 32px;
    background: #f1f1f1;
    width: 30px;
    height: 30px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
  }
  .bottom-section p {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
