/** Start Global Style **/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.scrollWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

/** End Global Style **/
/** Start Home Style **/
main {
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

header {
  width: max-content;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .mail {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  align-self: flex-start;
  position: relative;
  z-index: 10;
}
header .mail a {
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 24px;
  text-align: left;
  color: #d4013e;
  padding: 15px 29px;
  text-transform: uppercase;
}
header .mail a svg {
  position: relative;
  top: -4px;
}

section.wp {
  height: 83vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.wp .left-side {
  width: 610px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 90px;
  padding-right: 60px;
  background-color: #fff;
  position: relative;
}
section.wp .left-side:after {
  content: "";
  width: 275px;
  height: 25vh;
  background-color: #fff;
  position: absolute;
  bottom: -20%;
  left: 0;
}
section.wp .left-side .header-left {
  display: flex;
  flex-direction: column;
}
section.wp .left-side .header-left h2 {
  width: 85px;
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #d4013e;
}
section.wp .left-side .content-left {
  display: flex;
  flex-direction: column;
  padding-top: 35px;
}
section.wp .left-side .content-left p {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: normal;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #1d1d1d;
}
section.wp .social-media-left {
  display: flex;
  gap: 100px;
  margin-top: 130px;
  position: relative;
  top: 4px;
}
section.wp .social-media-left.mobile {
  display: none;
}
section.wp .social-media-left ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.wp .social-media-left ul li {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: uppercase;
}
section.wp .social-media-left ul li a {
  display: flex;
  gap: 8px;
  color: #1d1d1d;
  transition: 0.5s;
}
section.wp .social-media-left ul li a img {
  position: relative;
  top: -2px;
  opacity: 0;
  transition: 0.5s;
}
section.wp .social-media-left ul li a:hover {
  color: #d4013e;
}
section.wp .social-media-left ul li a:hover img {
  opacity: 1;
}
section.wp .social-media-left ul li.no-uppercase {
  width: 180px;
  font-size: 16px;
  text-transform: capitalize;
}
section.wp .social-media-left ul li.no-uppercase a {
  font-weight: 400;
}
section.wp .right-side {
  width: 610px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  padding-right: 60px;
  background-color: #fff;
  position: relative;
  left: -10px;
}
section.wp .right-side:after {
  content: "";
  width: 130%;
  height: 17vh;
  background-color: #fff;
  position: absolute;
  top: -20%;
  right: -15%;
}
section.wp .right-side .content-right {
  display: flex;
  flex-direction: column;
  padding-top: 90px;
  gap: 40px;
}
section.wp .right-side .content-right p {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: normal;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #1d1d1d;
}

/** End Home Style **/
/** Start Responsive Style **/
@media screen and (max-width: 780px) {
  header .logo {
    display: flex;
    align-self: flex-end;
  }
  section.wp .social-media-left.mobile {
    display: flex;
    margin-top: 0;
    padding-bottom: 50px;
  }
  section.wp .social-media-left.desktop {
    display: none;
  }
  section.wp .right-side .content-right {
    gap: 20px;
  }
  section.wp .social-media-left {
    position: relative;
    top: 0;
  }
  header {
    width: 100%;
    height: initial;
    gap: 240px;
  }
  main {
    position: initial;
    flex-direction: column;
    transform: initial;
    padding: 0;
  }
  section.wp {
    width: 100%;
    height: initial;
    overflow: hidden;
    padding: 0;
    flex-direction: column;
    background: #fff;
  }
  section.wp .social-media-left {
    gap: 30px;
    margin-top: 40px;
  }
  section.wp .left-side,
  section.wp .right-side {
    width: 100%;
    height: initial;
    justify-content: center;
    padding: 40px 20px;
    left: 0;
  }
  section.wp .left-side:after,
  section.wp .right-side:after {
    display: none;
  }
  section.wp .left-side {
    padding: 40px 20px 0 20px;
  }
  section.wp .right-side {
    padding: 20px 20px 40px 20px;
  }
  section.wp .right-side .content-right {
    padding-top: 0;
  }
  section.wp .right-side {
    margin-top: 0;
  }
}
/** End Responsive Style **/ /*# sourceMappingURL=style.css.map */
