html, body {
    width: 100%;
    height:100%;
  } 
  



  body, .card, .dot {
      
    /* background: linear-gradient(-45deg,#009fff, #ec2F4B, #009FFF, #ec2f4b); */
    background-size: 100% 100%;
   /* animation: gradient 8s ease infinite; */

   background: #0f0c29;  
   /* fallback for old browsers */
   background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  
   /* Chrome 10-25, Safari 5.1-6 */
   background: linear-gradient( -45deg, #24243e, #302b63, #0f0c29); 
   /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
   



  }

.feet {

background: transparent;

}



  
  /* body {
    background-color: lightblue;
  } */
  

  @media screen and (min-width: 200px) {
    body{
      background-size: 300% 300%;
    }
  }
  
  @media screen and (min-width: 400px) {
    body {
      background-size: 400% 400%;
    }
  }
  
  @media screen and (min-width: 800px) {
    body {
    background-size: 500% 500%;
    }
  }







  @keyframes gradient {
      0% {
          background-position: 0% 50%;
      }
      50% {
          background-position: 100% 50%;
      }
      100% {
          background-position: 0% 50%;
      }
  }

  /* test hero  */
  @import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@400;700&display=swap");

  :root {
    --primary-color: #333;
    --secondary-color: #444;
    --ternary-color: #555;
    --light-color: #ccc;
    --light-secondary-color: #ddd;
    --light-ternary-color: #eee;
    --overlay-color: rgba(0, 0, 0, 0.7);
  }
    
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Catamaran", sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    font-size: 1.1rem;
  }
  
  h1,
  h2,
  h3,
  h4 {
    line-height: 1.3;
  }
  
  a {
    color: var(--secondary-color);
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    width: 100%;
  }
  
  .container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
  }
  
  /* navbar */
  
  .navbar {
    font-size: 1.2rem;
    padding: 0.3rem 0;
  }
  
  .navbar .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .navbar ul {
    display: flex;
    justify-self: flex-end;
    align-items: center;
    justify-content: center;
  }
  
  .navbar a {
    padding: 0 1rem;
  }
  
  .navbar a:hover {
    color: var(--ternary-color);
  }
  
  /* showcase section */
  
  .section-showcase {
    margin: 2rem 0;
  }
  
  .section-showcase .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    justify-content: center;
  }
  
  .section-showcase h1 {
    font-size: 4rem;
    color: var(--primary-color);
  }
  
  .section-showcase p {
    margin: 1rem 0;
  }
  
  .btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 30px;
  }
  
  .btn:hover {
    background: var(--secondary-color);
  }
  
  /* large text section */
  
  .section-large-text {
    position: relative;
    background: url("https://images.unsplash.com/photo-1626908013351-800ddd734b8a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80") 
    
     bottom center/ cover 
      no-repeat;
    height: 600px;

    
  }
  
  .section-large-text2 {
    position: relative;
    background: url("") bottom center/cover
      no-repeat;
    height: 600px;
  }

  .section-large-text3 {
    position: relative;
    background: url("https://images.unsplash.com/photo-1535905557558-afc4877a26fc?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80") bottom center/cover
      no-repeat;
    height: 600px;
  }


  .section-large-text4 {
    position: relative;
    background: url("") bottom center/cover
      no-repeat;
    height: 600px;
  }

  .section-large-text5 {
    position: relative;
    background: url("") bottom center/cover
      no-repeat;
    height: 600px;
  }

  

  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background-color: var(--overlay-color); */
  }
  
  .section-large-text-inner {
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    max-width: 860px;
    padding: 5rem 0;
  }
  
  .section-large-text-inner h2 {
    font-size: 5rem;
    margin-top: 1rem;
  }
  
  .section-large-text-inner h3 {
    font-size: 2rem;
  }
  
  .section-large-text-inner p {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  
  /* gallery */
  
  .section-gallery .gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  
  .section-gallery .gallery img:first-child {
    grid-row: 1/3;
    grid-column: 1/3;
  }
  
  .section-gallery .gallery img:nth-child(2) {
    grid-column-start: 3;
    grid-column-end: 5;
  }
  
  .section-gallery .gallery img {
    width: 100%;
    height: 100%;
  }
  
  /* footer */
  
  .section-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4rem 0;
  }
  
  .section-footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .section-footer h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .section-footer h3 {
    margin-bottom: 0.7rem;
  }
  
  .section-footer a {
    line-height: 1.9;
    color: var(--light-color);
  }
  
  .section-footer a > i {
    color: var(--ternary-color);
    margin-right: 0.5rem;
  }
  
  .email-form {
    display: inline-block;
    width: 100%;
    background-color: var(--ternary-color);
    position: relative;
    border-radius: 20px;
    line-height: 0;
    margin-top: 1rem;
  }
  
  .email-form .form-control {
    display: inline-block;
    width: 100%;
    height: 45px;
    border-radius: 20px;
    border: 0;
    outline: 0;
    font-size: 1rem;
    color: var(--light-secondary-color);
    background-color: transparent;
    font-family: inherit;
    margin: 0;
    padding: 0 3rem 0 1.5rem;
  }
  
  .email-form .submit {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background-color: var(--light-ternary-color);
    font-size: 1rem;
    text-align: center;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    border-radius: 0 20px 20px 0;
    color: var(--primary-color);
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .section-showcase .container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .section-showcase .container div:first-child {
      order: 2;
    }
  
    .section-showcase .container div:nth-child(2) {
      order: -1;
    }
  
    .section-showcase h1 {
      font-size: 2rem;
    }
  
    .section-showcase img {
      width: 80%;
      margin: auto;
    }
  
    .section-large-text-inner h2 {
      font-size: 3rem;
    }
  
    .section-large-text-inner h3 {
      font-size: 1.5rem;
    }
  
    .section-large-text-inner p {
      font-size: 1.25rem;
    }
  
    .section-gallery .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
  
    .section-gallery .gallery img:first-child {
      grid-row: 1/1;
      grid-column: 1/1;
    }
  
    .section-gallery .gallery img:nth-child(2) {
      grid-row: 2/2;
      grid-column: 2/4;
    }
  
    .section-gallery .gallery img:last-child {
      display: none;
    }
  
    .section-footer {
      padding: 2rem 0;
    }
  
    .section-footer .container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .section-footer div:nth-child(2),
    .section-footer div:nth-child(3) {
      display: none;
    }
  }


  /* new form */
 .form-box {
  max-width: 500px;
  margin: auto;
  padding: 50px;
  background: rgb(20, 2, 36);
border: 2px solid #c33764;

}

input, textarea {
  width: 100%;
}


/* social media links  */


/* custom 3d links  */
.button .list {
  list-style:none;
  margin:0 5px;
  
} 

.button .list a .fa {
  font-size: 40px;
  color: #262626;
  line-height:80px;
  transition: .5s;
  padding-right: 14px;
}

.button .list a span {
  padding:0;
  margin:0;
  position:absolute;
  top: 30px;
  color: #262626;
  letter-spacing: 4px;
  transition: .5s;
}

/* social button size  */
.button .list a {
  text-decoration: none;

  position: relative;
  display: block;

  width:260px;
  height:80px;
  background: grey;
  text-align: left;
  padding-left: 20px;
  transform: rotate(-0deg) skew(0deg) translate(0,0);
  transition:.5s;
  box-shadow: -70px 20px 10px rgba(0,0,0,.5);
}
.button .list a:before {
  content: '';
  position: absolute;
  top:10px;
  left:-20px;
  height:100%;
  width:20px;
  background: #b1b1b1;
  transform: .5s;
  transform: rotate(0deg) skewY(-45deg);
}
.button .list a:after {
  content: '';
  position: absolute;
  bottom:-20px;
  left:-10px;
  height:20px;
  width:100%;
  background: #b1b1b1;
  transform: .5s;
  transform: rotate(0deg) skewX(-45deg);
}

.button .list a:hover {
  transform: rotate(-30deg) skew(25deg) translate(20px,-15px);
  box-shadow: -50px 50px 50px rgba(0,0,0,.5);
}

.button .list:hover .fa {
  color:#fff;
}

.button .list:hover span {
  color:#fff;
}
  
.button .list:hover:nth-child(1) a{
  background: #3b5998;
}
.button .list:hover:nth-child(1) a:before{
  background: #365492;
}
.button .list:hover:nth-child(1) a:after{
  background: #4a69ad;
}

.button .list:hover:nth-child(2) a{
  background: #00aced;
}
.button .list:hover:nth-child(2) a:before{
  background: #097aa5;
}
.button .list:hover:nth-child(2) a:after{
  background: #53b9e0;
}

.button .list:hover:nth-child(3) a{
  background: #dd4b39;
}
.button .list:hover:nth-child(3) a:before{
  background: #b33a2b;
}
.button .list:hover:nth-child(3) a:after{
  background: #e66a5a;
}

.button .list:hover:nth-child(4) a{
  background: #e4405f;
}
.button .list:hover:nth-child(4) a:before{
  background: #d81c3f;
}
.button .list:hover:nth-child(4) a:after{
  background: #e46880;
}

.button .list:hover:nth-child(5) a{
  background: grey;
}
.button .list:hover:nth-child(5) a:before{
  background: #555253;
}
.button .list:hover:nth-child(5) a:after{
  background: #aca5a6;
}

.button .list:hover:nth-child(6) a{
  background: #363634;
}
.button .list:hover:nth-child(6) a:before{
  background: #222324;
}
.button .list:hover:nth-child(6) a:after{
  background: #615f5f;
}

.button .list:hover:nth-child(7) a{
  background: #18610e;
}
.button .list:hover:nth-child(7) a:before{
  background: #174919;
}
.button .list:hover:nth-child(7) a:after{
  background: #015808;
}

.button .list:hover:nth-child(8) a{
  background: darkred;
}
.button .list:hover:nth-child(8) a:before{
  background: red;
}
.button .list:hover:nth-child(8) a:after{
  background: #d10101;
}

.button .list:hover:nth-child(9) a{
  background: blue;
}
.button .list:hover:nth-child(9) a:before{
  background: #109beb;
}
.button .list:hover:nth-child(9) a:after{
  background: #217ae0;
}

/* flexbox  */
.flex-container {
display: flex;
flex-wrap: wrap;
text-align: center;
justify-content: center;
} 

.list.item-1 {
padding-left: 10%;
padding-top: 10%;
}

.list.item-2 {
padding-left: 10%;
padding-top: 20%;
}

div.list.item-3{
padding-left: 10%;
padding-top: 20%;
}
div.list.item-4{
padding-left: 10%;
padding-top: 20%;
}

div.list.item-5{
padding-left: 10%;
padding-top: 20%;
}

div.list.item-6{
background-color: transparent;
padding-left: 10%;
padding-top: 20%;
}

div.list.item-7{
padding-left: 10%;
padding-top: 20%;
}
div.list.item-8{
padding-left: 10%;
padding-top: 20%;
}
div.list.item-9{
padding-left: 10%;
padding-top: 20%;
}

.row {
/* background: #000000;  fallback for old browsers */
/* background: -webkit-linear-gradient(to left, #434343, #000000);  Chrome 10-25, Safari 5.1-6 */
/* background: linear-gradient(to left, #434343, #000000); W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

h1 {
color: white;
font-family: 'Architects Daughter', cursive;
}