@import url('https://fonts.googleapis.com/css2?family=Ephesis&family=Montserrat+Alternates:ital,wght@0,200;0,300;0,400;0,500;1,400&family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:wght@100;200;300;400;600;700&display=swap');
:root{
    --orange:#ff7800;
    --lightcolor:#666;
    --black:#130f40;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: .2s;
    text-decoration: none;
    text-transform: capitalize;
    font-family: 'Montserrat';
}
html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.header{
    padding: 2rem 7%;
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
}
#logo{
    font-size: 2.5rem;
    color: rgb(96, 233, 176);
}
#logo span{
    color: rgb(59, 238, 214);
}
#logo .gradient-text {
  background-image: linear-gradient(to right, #833ab4, #fd1d1d,#fcb045);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.icons #menu-bars{
    color: rgb(59, 238, 214);
    font-size: 2rem;
}
.navbar.active{
    left: 0;
}
.navbar{
    position: absolute;
    top: 100%;
    /*background: rgb(59, 238, 214);*/

    width: 30rem;
    height: 100vh;
    left: -200%;
    transition: .5s;
}
.navbar a{
    display: block;
    margin: 1rem;
    padding: 1rem;
    color: white;
    font-size: 1.5rem;
}
.navbar a:hover {
  color: rgb(59, 238, 214);
}
.background-image{
    background: url(images/Replace\ your\ Image.png);
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;

}

.inner-text-background{
    text-align: center;
}
.inner-text-background h2{
    color: white;
    font-size: 30px;
}
.inner-text-background h1{
    color: rgb(59, 238, 214);
    font-size: 50px;
}
.animate-character
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 190px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.inner-text-background h3{
    color: rgb(59, 238, 214);
    font-size: 30px;
} 

.get-in-touch{
    padding: 4rem 7%;
    background: rgb(59, 238, 214);
}
.get-in-touch h1{
    color: white;
    font-size: 40px;
    text-align: center;
}
.get-in-touch h1:hover {
    color: #666;
}
.main-touch p{
    color: white;
    text-align: center;
    font-size: 1.5rem;
}
.touch-icons{
    text-align: center;
    margin-top: 20px;
}
.touch-icons a{
    color: white;
    font-size: 2rem;
    margin-right: 2rem;
}

/* =================================== */




/* video background */
#background-video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}



@media (max-width: 750px) {
    #background-video { display: none; }
    body {
      background: url("https://assets.codepen.io/6093409/river.jpg") no-repeat;
      background-size: cover;
    }
}



@media (max-width:768px) {
  html{
      font-size: 55%;
  }
  .inner-prices{
      flex-basis: 100%;
  }
  .inner-we-do img{
      width: 50%;
      margin-top: 50px;
      
  }
  .we-do-image{
      text-align: center;
  }
}





.formcarry-container * {
  box-sizing: border-box;
	font-family: "Inter", sans-serif;

  /* colors */
  --color-blue: #2552d0;
  --color-light-blue: #3266e3;
  --color-gray: #e5e7eb;
  --color-dark-gray: #9da3ae;
  --color-pink: #edadd2;
}

.formcarry-container {
  /* container */
  --c-width: 50%;
  --c-max-width: 500px;

  width: var(--c-width);
  max-width: var(--c-max-width);
  display: block;
  margin: 10vh auto 0 auto;
}

.formcarry-form label {
  display: block;
  padding: 12px 0 2px 0;
  letter-spacing: -0.2px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: rgb(59, 238, 214);
}

.formcarry-form input,
.formcarry-form textarea {
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  border: none;
  border: 1px solid var(--color-gray);
  outline: none;
  border-radius: 8px;
  color: var(--color-dark-gray);
}

.formcarry-form input:focus,
.formcarry-form textarea:focus {
  background-color: #fff;
  color: var(--color-dark-gray);
}

.formcarry-form input:focus:required:invalid {
  border-color: var(--color-pink);
  background-color: #fff;
}

.formcarry-form button {
  display: block;
  margin-top: 12px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
	border-color: transparent;
  background-color: var(--black);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  transition: 300ms all;
  margin-bottom: 10px;
}

.formcarry-form button:hover {
  background-color: transparent;
  border: 1px solid rgb(59, 238, 214);
  color: #130f40;
}

.formcarry-alert {
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-top: 12px;
  display: none;
}

.formcarry-alert.visible {
  display: block;
}

.formcarry-alert.success {
  background: #69cf9d;
}

.formcarry-alert.error {
  background: #de524c;
}