@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap");
:root {
  --dark: #000000;
  --dark-s2: #272727;
  --light: #ffffff;
  --accent-one: #e7c95b;
  --accent-two: #FB8C77;
  --accent-two-dark: #e4725f;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

body {
  width: 100%;
}
body .primary_btn {
  text-decoration: none;
  padding: 10px 30px;
  border: none;
  background: var(--accent-two);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4666666667);
  border-radius: 100rem;
  border-top-right-radius: 10rem;
  border-bottom-left-radius: 10rem;
  color: var(--light);
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
body .primary_btn:hover {
  background: var(--accent-two-dark);
}
body .loader {
  pointer-events: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--bright-light);
  animation: load 1s ease infinite;
}
@keyframes load {
  0% {
    transform: rotate(0turn);
  }
  100% {
    transform: rotate(1turn);
  }
}
body .secondary_btn {
  padding: 10px 17px;
  border: 2px solid var(--accent-two);
  border-radius: 50px;
  background: none;
  font-weight: 500;
  color: #e4725f;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
body .secondary_btn:hover {
  background: var(--accent-two);
  color: var(--light);
}
body .title_bar {
  width: 100%;
  height: 30px;
  background: var(--accent-two-dark);
  box-shadow: inset 0 0 7px #BF5846;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
body .title_bar .link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light);
  font-size: 0.9rem;
}
body .title_bar .link ion-icon {
  font-size: 1.2rem;
}
body .nav_sec {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 70px;
  background: var(--light);
  box-shadow: 3px 3px 7px var(--dark-s2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
body .nav_sec .logo {
  width: 70px;
}
body .landing_sec {
  width: 100%;
  min-height: calc(100vh - 100px);
  padding: 70px;
  background: linear-gradient(to right, #000000 17%, transparent), url(../Assets/landing_background.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  gap: 2rem;
}
body .landing_sec .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
body .landing_sec .left .header {
  font-size: 3rem;
  font-weight: 700;
  color: var(--light);
}
body .landing_sec .left .header span {
  color: var(--accent-one);
}
body .landing_sec .left .desc {
  font-size: 1.4rem;
  color: var(--light);
}
body .landing_sec .left .desc span {
  color: var(--accent-one);
}
body .landing_sec .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .landing_sec .right .quoteForm {
  width: 90%;
  padding: 50px;
  background: rgba(0, 0, 0, 0.4666666667);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  border-radius: 2rem;
  border-top-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
body .landing_sec .right .quoteForm .form_header {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-two);
}
body .landing_sec .right .quoteForm input {
  width: 100%;
  padding: 17px 30px;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--light);
  border-bottom-right-radius: 2rem;
  font-size: 1rem;
  background: none;
  color: var(--light);
}
body .landing_sec .right .quoteForm .primary_btn {
  margin-top: 1.6rem;
}
body .kf_sec {
  width: 100%;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .kf_sec .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body .kf_sec .container .content {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
body .kf_sec .container .content p {
  text-transform: capitalize;
}
body .serv_sec {
  padding: 50px 70px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .serv_sec .header {
  position: relative;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 7px;
  color: var(--accent-two-dark);
}
body .serv_sec .container {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
body .serv_sec .container .box {
  width: 200px;
  height: 200px;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s linear;
  cursor: none;
}
body .serv_sec .container .box img {
  width: 40%;
}
body .serv_sec .container .box p {
  color: #777777;
}
body .serv_sec .container .box:hover {
  background: #ee9485;
}
body .serv_sec .container .box:hover p {
  color: var(--light);
}
body .const_serv_sec {
  min-height: 100vh;
  padding: 50px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .const_serv_sec .header {
  position: relative;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 7px;
  color: var(--accent-two-dark);
}
body .const_serv_sec .container {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body .const_serv_sec .container .card {
  height: 80vh;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}
body .const_serv_sec .container .card img {
  flex: 1;
  width: 100%;
}
body .const_serv_sec .container .card .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body .const_serv_sec .container .card .text .card_header {
  font-size: 1.2rem;
  font-weight: 700;
  color: #575757;
}
body .const_serv_sec .container .card:nth-child(odd) {
  flex-direction: column-reverse;
}
body .trending_sec {
  padding: 50px 70px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
body .trending_sec .header {
  position: relative;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 7px;
  color: var(--accent-two-dark);
}
body .trending_sec .container {
  margin-top: 3rem;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
body .trending_sec .container .box {
  position: relative;
  width: 200px;
  border-radius: 7px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
}
body .trending_sec .container .box img {
  width: 100%;
  border-radius: 7px;
  transition: all 0.6s linear;
}
body .trending_sec .container .box p {
  position: absolute;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s linear;
}
body .trending_sec .container .box:hover {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3764705882);
}
body .trending_sec .container .box:hover img {
  filter: brightness(1) blur(0.1rem);
  opacity: 0.5;
}
body .trending_sec .container .box:hover p {
  opacity: 1;
  transform: scale(1);
  font-weight: 500;
  color: var(--dark);
}
body .cta_sec {
  padding: 50px 70px;
  background: var(--accent-two-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
body .cta_sec .header {
  position: relative;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 7px;
  color: var(--light);
}
body .cta_sec .desc {
  width: 70%;
  font-size: 1.1rem;
  color: var(--light);
}
body .cta_sec button {
  font-size: 1rem;
  background: var(--light);
  color: var(--accent-two-dark);
  font-weight: 500;
}
body .cta_sec button:hover {
  background: var(--light);
  box-shadow: 2px 2px 7px var(--light);
}
body .partner_sec {
  padding: 50px 70px 0 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
body .partner_sec .header {
  position: relative;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 7px;
  color: var(--accent-two-dark);
}
body .partner_sec .slider_path {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: hSlide 20s linear infinite;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body .partner_sec .slider_path img {
  width: 100px;
  border-radius: 3px;
}
@keyframes hSlide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
body .footer_sec {
  padding: 50px 70px;
  background: #f8f8f8;
  display: flex;
  align-items: flex-start;
  gap: 20rem;
  border-top: 2px solid var(--accent-one);
  border-bottom: 2px solid var(--accent-one);
}
body .footer_sec .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
body .footer_sec .col img {
  width: 100px;
}
body .footer_sec .col .header {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-two-dark);
}
body .footer_sec .col button {
  font-size: 1rem;
}
body .footer_sec .col .row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body .footer_sec .col .row .row_header {
  font-size: 1.2rem;
  font-weight: 600;
  color: #777777;
}
body .dec_sec {
  padding: 10px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}
body .dec_sec p {
  color: #373737;
  font-size: 0.8rem;
  font-weight: 500;
}
body .dec_sec .developer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body .dec_sec .developer a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #373737;
  font-weight: 500;
}
body .dec_sec .developer a box-icon {
  transform: scale(0.5);
}
body .dec_sec .developer a:hover {
  color: #0395a8;
}
body .bubble_box {
  position: fixed;
  right: 0;
  bottom: 60px;
  padding: 16px 12px;
  background: var(--dark-s2);
  border-top-left-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
  box-shadow: -2px -2px 7px rgba(0, 0, 0, 0.4666666667);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  z-index: 1000;
}
body .bubble_box ion-icon {
  font-size: 1.7rem;
}
body .bubble_box .wpChatBubble {
  color: #25D366;
}
body .bubble_box .instaChatBubble {
  color: #f56b0e;
}
body .pop_sec {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8078431373);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-in-out;
}
body .pop_sec .form_container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .pop_sec .form_container .quoteForm {
  position: relative;
  width: 40%;
  padding: 50px;
  background: var(--light);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4666666667);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
body .pop_sec .form_container .quoteForm .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 2px;
  border-top-right-radius: 10px;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
body .pop_sec .form_container .quoteForm .form_header {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-s2);
}
body .pop_sec .form_container .quoteForm input {
  width: 100%;
  padding: 17px 17px;
  outline: none;
  border: 1px solid #777777;
  border-radius: 17px;
  font-size: 1rem;
}
body .popUp_show {
  opacity: 1;
  visibility: visible;
}
body .loader_sec {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--accent-two-dark);
}
body .loader_sec .loader {
  width: 30px;
  height: 30px;
  border-top: 3px dotted var(--light);
  border-radius: 100%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
body .loader_sec .text {
  color: var(--light);
}

@media all and (max-width: 999px) {
  body {
    width: 100%;
  }
  body .secondary_btn {
    padding: 10px 17px;
    border: 2px solid var(--accent-two);
    border-radius: 50px;
    background: none;
    font-weight: 500;
    color: #e4725f;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  body .secondary_btn:hover {
    background: var(--accent-two);
    color: var(--light);
  }
  body .title_bar {
    display: none;
  }
  body .nav_sec {
    padding: 0 30px;
  }
  body .nav_sec .logo {
    font-size: 2rem;
  }
  body .landing_sec {
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(to bottom, #000000 17%, transparent), url(../Assets/landing_background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  body .landing_sec .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  body .landing_sec .left .header {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--light);
  }
  body .landing_sec .left .header span {
    color: var(--accent-one);
  }
  body .landing_sec .left .desc {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--light);
  }
  body .landing_sec .left .desc span {
    color: var(--accent-one);
  }
  body .landing_sec .right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  body .landing_sec .right .quoteForm {
    padding: 30px;
    width: 100%;
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.4666666667);
  }
  body .landing_sec .right .quoteForm input {
    padding: 17px 10px;
    border-bottom-right-radius: 0;
  }
  body .kf_sec {
    width: 100%;
    padding: 50px 0;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .kf_sec .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  body .kf_sec .container .content {
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  body .kf_sec .container .content img {
    width: 70px;
  }
  body .kf_sec .container .content p {
    text-transform: capitalize;
  }
  body .serv_sec {
    padding: 50px 30px;
  }
  body .serv_sec .header {
    text-align: center;
  }
  body .serv_sec .container {
    gap: 1rem;
  }
  body .serv_sec .container .box {
    width: 140px;
    height: 140px;
  }
  body .serv_sec .container .box img {
    width: 40%;
  }
  body .serv_sec .container .box p {
    color: #777777;
    text-align: center;
  }
  body .serv_sec .container .box:hover {
    background: #ee9485;
  }
  body .serv_sec .container .box:hover p {
    color: var(--light);
  }
  body .const_serv_sec {
    padding: 50px 30px;
  }
  body .const_serv_sec .header {
    text-align: center;
  }
  body .const_serv_sec .container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  body .const_serv_sec .container .card {
    gap: 1rem;
  }
  body .const_serv_sec .container .card:nth-child(odd) {
    flex-direction: column;
  }
  body .trending_sec {
    padding: 50px 30px;
  }
  body .trending_sec .header {
    text-align: center;
  }
  body .trending_sec .container {
    margin-top: 1.5rem;
    width: 100%;
    gap: 1rem;
  }
  body .trending_sec .container .box {
    width: 100%;
    height: 100%;
  }
  body .cta_sec {
    padding: 50px 30px;
  }
  body .cta_sec .desc {
    width: 100%;
  }
  body .partner_sec {
    padding: 50px 30px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  body .partner_sec .header {
    position: relative;
    text-transform: uppercase;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 7px;
    color: var(--accent-two-dark);
  }
  body .partner_sec .slider_path {
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: hSlide 20s linear infinite;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  body .partner_sec .slider_path img {
    width: 100px;
    border-radius: 3px;
  }
  @keyframes hSlide {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  body .footer_sec {
    padding: 50px 30px;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    border-top: 2px solid var(--accent-one);
    border-bottom: 2px solid var(--accent-one);
  }
  body .footer_sec .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  body .footer_sec .col img {
    width: 100px;
  }
  body .footer_sec .col .header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-two-dark);
  }
  body .footer_sec .col button {
    font-size: 1rem;
  }
  body .footer_sec .col .row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  body .footer_sec .col .row .row_header {
    font-size: 1.2rem;
    font-weight: 600;
    color: #777777;
  }
  body .dec_sec {
    padding: 10px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background: #ffffff;
  }
  body .dec_sec p {
    color: #373737;
    font-size: 0.8rem;
    font-weight: 500;
  }
  body .dec_sec .developer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  body .dec_sec .developer a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #373737;
    font-weight: 500;
  }
  body .dec_sec .developer a box-icon {
    transform: scale(0.5);
  }
  body .dec_sec .developer a:hover {
    color: #0395a8;
  }
  body .bubble_box {
    bottom: 0;
    border-bottom-left-radius: 0;
  }
  body .pop_sec .form_container .quoteForm {
    width: 90%;
    padding: 50px 30px;
  }
}/*# sourceMappingURL=style.css.map */