*{





    margin: 0px;

    padding: 0px;
box-sizing: border-box;

font-family: Arial, Helvetica, sans-serif;


}

body{

    background-color: #0a0c10;
    color: #f1f5f9;
    font-weight: 400;
        font-family: Poppins, Inter, -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.5;

    }

a{


    text-decoration: none;
}

.d1{


    height: 40px;

    width: 100%;

background: #3F5EFB;
background: radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    /* background-color: #8782826a ; */

    border: 1px #0a0a0a;

    border-radius: 0px;
 font-size: 20px;

 padding: 5px;

 font-family: Arial, Helvetica, sans-serif;

 
 overflow: hidden;
 
 white-space: nowrap;

 
 position: relative;
}


.slider{
    
font-weight:600;
    animation-name: moving;

    animation-duration: 25s;

animation-iteration-count: infinite;

animation-timing-function: ease-in;
animation-delay: 5s;


}

.main{

  padding-left: 20px;
  padding-right: 20px;
  

}

@keyframes moving {
     
    
    
    
    from{
        
        margin-left: 100%;



    }
    

    to{
    margin-left: -100%;
    }

}

/* nav bar  */

.logo{


    float: left;
}

#navigation{


margin-bottom: 20px;
padding: 20px;

padding-bottom: 10px;
border-bottom:2px solid #3a3a3a ;

position: sticky;
      box-shadow: 0px 0px 10px 5px  rgba(26, 13, 166, 0.35);

top:0 ;
background: transparent; /* Makes the background see-through */
  backdrop-filter: blur(10px); /* Applies a blur to content behind the element */
  z-index: 100; /* Ensures it stays on top of other elements */
  width: 100%;
  height: 60px; /* Adjust as needed */
}


.logo{


  padding-bottom: 10px;
}
.logo:hover{

    font-size: 30px;
    font-weight: 600;
    color: gold;
    float: left;
     transform: translateY(-5px);




}


nav{



    display: flex;
    padding-right: 12px;
    justify-content: end;

    gap:40px;
    
    border-radius: 20px;
   
font-size: 20px;


}

nav a{


    text-decoration: none;
    color: #a0a0a0;
    font-weight: 500;


display: inline-block; /* Or float: left for a traditional layout */
  color: white;
padding: 2px;
  
  border-radius: 30%;
}


nav a:hover{
  box-shadow: 0px 0px 50px 1px   rgb(98, 0, 255);
  

  
  

    color: #ffbf00;

}


.active{


    color: #ffbf00;
}


/* container  */
.grid-container{
    max-width: 1400px;
    margin: 20px;
    padding:  20px;
display: flex;
gap: 40px;
border-radius: 10px;

height: 442px;





}


.item1{

height: 450px;
width: 450px;

}








.contain {
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;


}

.box-card {


  margin-top: 150px;
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s ease;
    cursor: pointer;
    box-shadow: 0px 0px 500px 25px  rgb(49, 34, 144);


}

.box-card:hover {
    animation: rotate3d 8s infinite linear;
    box-shadow: 0px 0px 500px 25px  rgb(49, 34, 144);


}

.face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    
    font-weight: bold;
    backface-visibility: visible;
    border-radius: 12px;
    background: linear-gradient(145deg, #2a2a2a, #383838);
    border: 2px solid #646cff;
    transition: all 0.3s ease;
    overflow: hidden;
}
.face img{


  width: 100%;
  height: 100%;
  object-fit: fill;
}


.face::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
    transform: translateZ(20px);
}

.face::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.face:hover::before {
    top: 100%;
    left: 100%;
}

.face:hover::after {
    opacity: 1;
}

.front {
    transform: translateZ(100px);
    border-color: #646cff;
}

.back {
    transform: translateZ(-100px) rotateY(180deg);
    border-color: #00bcd4;
}

.right {
    transform: translateX(100px) rotateY(90deg);
    border-color: #4caf50;
}

.left {
    transform: translateX(-100px) rotateY(-90deg);
    border-color: #ff4081;
}

.top {
    transform: translateY(-100px) rotateX(90deg);
    border-color: #ffc107;
}

.bottom {
    transform: translateY(100px) rotateX(-90deg);
    border-color: #9c27b0;
}

@keyframes rotate3d {
    0% {
        transform: rotateX(0) rotateY(0);
    }
    25% {
        transform: rotateX(90deg) rotateY(90deg);
    }
    50% {
        transform: rotateX(180deg) rotateY(180deg);
    }
    75% {
        transform: rotateX(270deg) rotateY(270deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@media (max-width: 768px) {
    .box-card {
        width: 150px;
        height: 150px;
    }
    
    .front { transform: translateZ(75px); }
    .back { transform: translateZ(-75px) rotateY(180deg); }
    .right { transform: translateX(75px) rotateY(90deg); }
    .left { transform: translateX(-75px) rotateY(-90deg); }
    .top { transform: translateY(-75px) rotateX(90deg); }
    .bottom { transform: translateY(75px) rotateX(-90deg); }
}
.item2{


  margin-left: 20px;
max-width: 800px;
height: 450px;

font-size: 40px;
margin-top: 0px;
border-radius: 16px;
padding: 20px;
padding-top: 20px;
padding-left: 50px;

}


@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600");

:root {
  --bar-scale-y: 0;
  --sparkle-color: rgb(253 244 215 / 40%);
}

@keyframes pop-word {
  to {
    transform: rotateX(0);
  }
}

@keyframes show {
  to {
    opacity: 1;
  }
}

@keyframes bar-scale {
  to {
    transform: scaleY(1);
  }
}

@keyframes sparkle {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1) translate(4px, 1px) rotate(8deg);
  }

  100% {
    transform: scale(0) translate(4px, 1px) rotate(8deg);
  }
}

@keyframes shimmer {
  to {
    text-shadow: 0 0 8px red;
  }
}

.item2{
  display: grid;

  background-color: 1a1a1a;
  place-items: center;
}

.word {
  color: gold;
  font-family: "Playfair Display", Vidaloka, serif;
  font-size: 8rem;

  line-height: 0.85;
}

.word {
  display: block;

  animation: show 0.01s forwards, pop-word 1.5s forwards;
  animation-timing-function: cubic-bezier(0.14, 1.23, 0.33, 1.16);
  opacity: 0;

  transform: rotateX(120deg);
  transform-origin: 50% 100%;
}

.word:nth-of-type(2) {
  padding: 0 2rem;

  animation-delay: 1.5s;

  color: gold;
}


@media screen and (max-width: 600px) {
  h1 {
    font-size: 5rem;
  }

}


/* .item2:hover{


transform: scale(1.1);


box-shadow: 0px 0px 10px 5px  rgba(0,0,0,0.3);


border-radius: 16px;


} */


.part{
    font-size: 70px;

}
.coming-soon{
    color: #ffbf00;
    font-size: 50px;
    margin-top: 20px;

    animation: fadeout 6s infinite ease-out forwards ;



}
.strike{
    font-size: 60px;
    margin-top: 20px;

}



/* @keyframes fadeout {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: -1;
  }
} */





/* course */


.courses{
    max-width: 1400px;
    margin: 20px;
border-radius: 10px;

height: 60px;

margin-top: 60px;

background-color: #3a3a3a;

margin-bottom: 50px;



/* display: grid; */

/* grid-template-columns: 350px 1fr; */

}

























@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400');
.courses {
  text-align:center;
  color:#fff;
  font-family:'Roboto';
  font-size:36px;
  font-weight:100;
  overflow:hidden;
  animation:bg 5s linear infinite;

}

.dropping-texts {
background-size: cover;
  display: inline-block;
  width: 50px;
  text-align: left;
  height: 36px;
  vertical-align: -2px;

}

.dropping-texts > div {
  font-size:0px;
  opacity:0;
  margin-left:-30px;
  position:absolute;
  font-weight:300;   
  box-shadow: 0px 60px 25px -20px rgba(0,0,0,0.5);
}

.dropping-texts > div:nth-child(1) {
  animation: roll 5s linear infinite 0s;
}
.dropping-texts > div:nth-child(2) {
  animation: roll 5s linear infinite 1s;
}
.dropping-texts > div:nth-child(3) {
  animation: roll 5s linear infinite 2s;
}
.dropping-texts > div:nth-child(4) {
  animation: roll 5s linear infinite 3s;
}

.dropping-texts > div:nth-child(5) {
  animation: roll 5s linear infinite 4s;

}

@keyframes roll {
  0% {
    font-size:0px;
    opacity:0;
    margin-left:-30px;
    margin-top:0px;
    transform: rotate(-25deg);
  }
  3% {
    opacity:1;
    transform: rotate(0deg);
  }
  5% {
    font-size:inherit;
    opacity:1;
    margin-left:0px;
    margin-top:0px;
  }
  20% {
    font-size:inherit;
    opacity:1;
    margin-left:0px;
    margin-top:0px;
    transform: rotate(0deg);
  }
  27% {
    font-size:0px;
    opacity:0.5;
    margin-left:20px;
    margin-top:100px;
  }
  100% {
    font-size:0px;
    opacity:0;
    margin-left:-30px;
    margin-top:0px;
    transform: rotate(15deg);
  }
}

@keyframes roll1 {
  0% {
    font-size:0px;
    opacity:0;
    margin-left:-30px;
    margin-top:0px;
    transform: rotate(-25deg);
  }
  3% {
    opacity:1;
    transform: rotate(0deg);
  }
  5% {
    font-size:inherit;
    opacity:1;
    margin-left:0px;
    margin-top:0px;
  }
  30% {
    font-size:inherit;
    opacity:1;
    margin-left:0px;
    margin-top:0px;
    transform: rotate(0deg);
  }
  37% {
    font-size:1500px;
    opacity:0;
    margin-left:-1000px;
    margin-top:-800px;
  }
  100% {
    font-size:0px;
    opacity:0;
    margin-left:-30px;
    margin-top:0px;
    transform: rotate(15deg);
  }
}


@keyframes bg {
  0% {background: radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%)}
  3% {background: #0094ff  radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%) ;}
  20% {background: #ff0075 ;}
  23% {background: #b200ff;}
  40% {background: #ff0075;}
  43% {background: #8BC34A;}
  60% {background: #ff0075;}
  63% {background: #F44336;}
  80% {background:#ff0075;}
  83% {background: #F44336;}
  100% {background:#ff0075;;}
}




.mentors{

margin-top: 10px;
margin-bottom: 20px;
max-width: 1400px;
border-radius: 20px; 
height: 400px;
max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}


.mentor{

margin-top: 10px;
margin-bottom: 20px;

height: 400px;
max-width: 1400px;
border-radius: 20px; 


    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-left: 75px;

}

.our-mentors{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    text-shadow: 0 0 5px gold, 0 0 10px gold, 0 0 20px gold;
    animation: shimmer 2s infinite;

margin-top: 30px;

margin-bottom:40px
}








.posters{

    height: 300px;
    width: 300px;
    margin: 20px;
    margin-top: 0px;
    border-radius: 10px;
    box-shadow: 0px 0px 500px 25px  rgb(49, 34, 144);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

  }

  .card-inner {
  position: relative;
  width: 300px;
  height: 300px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
  .posters:hover .card-inner {
  transform: rotateY(180deg);
}

  .card-front,
.card-back {
  position: absolute;
  width: 300px;
  height: 300px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.card-front {
  background: white;
  border: 1px solid #e5e7eb;
}

.card-back {
  background: #8b5cf6;
  color: white;
  transform: rotateY(180deg);
}

  

.posters:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 15px 5px  gold;
}


.posters img {
  height: 100%;
  width: 100%;
    border-radius: 10px;

}


@import url('https://fonts.googleapis.com/css?family=Roboto:700');



p {
  text-shadow: 0 0 7px rgba(255,255,255,.3), 0 0 3px rgba(255,255,255,.3);
}
.rohit{
  color: #e5e5e5;
  position: relative;

  font-size: 2.26rem;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
    font-family:'Roboto';
align-items: center;
margin-bottom: 270px;


}

.rohit :hover{

     transform: translateY(-5px);
}


.animation {
  height:50px;
  overflow:hidden;
  margin-left: 1rem;
}

.animation > div > div {
  height:2.81rem;
  margin-bottom: 2.81rem;
  display:inline-block;
}

.animation div:first-child {
  animation: text-animation 8s infinite;
}

.first div {
  background-color:#20a7d8;
}
.second div {
  background-color:#CD921E;
}
.third div {
  background-color:#c10528;
}

@keyframes text-animation {
  0% {margin-top: 0;}
  10% {margin-top: 0;}
  20% {margin-top: -5.62rem;}
  30% {margin-top: -5.62rem;}
  40% {margin-top: -11.24rem;}
  60% {margin-top: -11.24rem;}
  70% {margin-top: -5.62rem;}
  80% {margin-top: -5.62rem;}
  90% {margin-top: 0;}
  100% {margin-top: 0;}
}


.Rohit-about{
  width: 720px;
  height: 240px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-left: 380px;
position: absolute;
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: end;
margin-bottom: 5px;
margin-top: 40px;
  }


  .aditya-about{

  width: 720px;
  height: 150px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-left: 320px;
position: absolute;
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: end;
margin-bottom:50px;
position: absolute;




  }



  .classes{

    
      min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Arial, sans-serif;
  }



.container {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1400px;
    border-radius: 12px;
  }

.cursor-box {

  width: 300px;
    height: 160px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cursor-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
}

.cursor-box:hover::before {
    top: 100%;
    left: 100%;
}

/* Unique styles for each cursor type */
.pointer {
    cursor: pointer;
    background: linear-gradient(145deg, #2a2a2a, #383838);
}
.pointer:hover {
       transform: scale(1.05) translateY(-5px);

    box-shadow: 0px 0px 15px 5px   gold;
}

.help {
    cursor: pointer;
    background: linear-gradient(145deg, #2a2a2a, #383838);
}
.help:hover {
    transform: scale(1.05) translateY(-5px);
      box-shadow: 0px 0px 15px 5px   gold;

}

.wait {
    cursor: pointer;
    background: linear-gradient(145deg, #2a2a2a, #383838);
}
.wait:hover {
    transform: scale(1.05) translateY(-5px);

     box-shadow: 0px 0px 15px 5px  gold;

}

.crosshair {
    cursor: pointer;
    background: linear-gradient(145deg, #2a2a2a, #383838);
}
.crosshair:hover {
    transform: scale(1.05);
       box-shadow: 0px 0px 15px 5px  gold;

}

.text {
    cursor: pointer;
    background: linear-gradient(145deg, #2a2a2a, #383838);
}
.text:hover {
    transform: scale(1.05);
       box-shadow: 0px 0px 15px 5px  gold;

}

.not-allowed {
    cursor: pointer;
    background: linear-gradient(145deg, #2a2a2a, #383838);
}
.not-allowed:hover {
    transform: scale(1.05);
      box-shadow: 0px 0px 15px 5px  gold;
}

.grab {
    cursor: pointer;
    background: linear-gradient(145deg, #2a2a2a, #383838);
}
.grab:hover {
        box-shadow: 0px 0px 15px 5px  gold;
    transform: scale(1.05) translateY(-5px);

}

.zoom-in {
    cursor: pointer;
    background: linear-gradient(145deg, #2a2a2a, #383838);
}
.zoom-in:hover {
    box-shadow: 0px 0px 15px 5px  gold;
    transform: scale(1.05) translateY(-5px);


}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1.05); }
    50% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) scale(1.05); }
    25% { transform: translateX(-5px) scale(1.05); }
    75% { transform: translateX(5px) scale(1.05); }
}

@keyframes moveAround {
    0% { transform: translate(0, 0) scale(1.05); }
    25% { transform: translate(5px, -5px) scale(1.05); }
    50% { transform: translate(0, 0) scale(1.05); }
    75% { transform: translate(-5px, 5px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1.05); }
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: repeat(3, 1fr);
    }
    .cursor-box {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .cursor-box {
        width: 140px;
        height: 140px;
    }
}





    .cursor-box img{


width: 100%;
height: 100%;
  object-fit: cover;
    }



    



.arch_contact_us_duplicate * {
  font-family: Nunito, sans-serif;
}

.arch_contact_us_duplicate .icon-block svg {
  width: 100%;
  height: 100%;
}

.arch_contact_us_duplicate .icon-block {
  width: 30px;
  height: 30px;
}

.arch_contact_us_duplicate .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  line-height: 25px;
}

.arch_contact_us_duplicate .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.arch_contact_us_duplicate .responsive-cell-block {
  min-height: 75px;
}

.arch_contact_us_duplicate .responsive-container-block.big-container {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
}

.arch_contact_us_duplicate .responsive-container-block.container {
  max-width: 1100px;
  justify-content: space-evenly;
}

.arch_contact_us_duplicate .text-blk.section-head {
  font-size: 60px;
  line-height: 65px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
    box-shadow: 0px 0px 500px 25px  rgb(49, 34, 144);


}

.arch_contact_us_duplicate .text-blk.section-subhead {
  font-size: 14px;
  line-height: 18px;

}

.arch_contact_us_duplicate .input {

  width: 100%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  height: 54px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color:  rgb(49, 34, 144);
  border-right-color:  rgb(49, 34, 144);
  border-bottom-color:  rgb(49, 34, 144);
  border-left-color:  rgb(49, 34, 144);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 1px;
  padding-right: 16px;
  padding-bottom: 1px;
  padding-left: 16px;
  font-size: 16px;
}

.arch_contact_us_duplicate .textinput {

  width: 100%;
  height: 125px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 27px;
  margin-left: 0px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: rgb(49, 34, 144);
  border-right-color: rgb(49, 34, 144);
  border-bottom-color: rgb(49, 34, 144);
  border-left-color: rgb(49, 34, 144);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  font-size: 16px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
}

.arch_contact_us_duplicate .button {
    box-shadow: 0px 0px 500px 50px  rgb(49, 34, 144);

  height: 50px;
  min-width: 240px;
  font-size: 16px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: rgb(49, 34, 144);
  border-right-color: rgb(49, 34, 144);
  border-bottom-color: rgb(49, 34, 144);
  border-left-color: rgb(49, 34, 144);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 60px;
  margin-left: 0px;
  background-color: white;
  border-radius: 5px;

}

.arch_contact_us_duplicate .form-wrapper {
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-bottom-color:rgb(49, 34, 144);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 60px;
  margin-left: 0px;

}

.arch_contact_us_duplicate .social-media-icon-container {
  display: flex;
  max-width: 400px;
  justify-content: space-evenly;
}

.arch_contact_us_duplicate .input-element {
  background-color: white;
  color: rgb(49, 34, 144);
}

.arch_contact_us_duplicate .icon-block.social-icon {
  fill: rgb(49, 34, 144);
}

@media (max-width: 1024px) {
  .arch_contact_us_duplicate .text-blk.section-head {
    font-size: 55px;
    line-height: 60px;
  }

  .arch_contact_us_duplicate .responsive-container-block.container {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .arch_contact_us_duplicate .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-ipadp-6.wk-desk-5 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 80px;
    margin-left: 0px;
  }

  .arch_contact_us_duplicate .responsive-cell-block.wk-mobile-12.wk-ipadp-6.wk-desk-5.wk-tab-10 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 80px;
    margin-left: 0px;
    text-align: center;
  }

  .arch_contact_us_duplicate .input {
    height: 45px;
  }

  .arch_contact_us_duplicate .responsive-container-block.container {
    justify-content: space-evenly;
    margin-top: 80px;
    margin-right: 0px;
    margin-bottom: 80px;
    margin-left: 0px;
  }

  .arch_contact_us_duplicate .responsive-cell-block.wk-mobile-12.wk-desk-5.wk-tab-10.wk-ipadp-5 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 80px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .arch_contact_us_duplicate .text-blk.section-head {
    font-size: 40px;
    line-height: 45px;
  }

  .arch_contact_us_duplicate .responsive-container-block.big-container {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }

  .arch_contact_us_duplicate .input {
    height: 40px;
  }

  .arch_contact_us_duplicate .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-ipadp-6.wk-desk-5 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 80px;
    margin-left: 0px;
  }

  .arch_contact_us_duplicate .responsive-cell-block.wk-mobile-12.wk-ipadp-6.wk-desk-5.wk-tab-10 {
    text-align: left;
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }

  .arch_contact_us_duplicate .responsive-container-block.big-container {
    padding-top: 0px;
    padding-right: 30px;
    padding-bottom: 0px;
    padding-left: 30px;
  }

  .arch_contact_us_duplicate .responsive-cell-block.wk-mobile-12.wk-desk-5.wk-tab-10.wk-ipadp-5 {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }

  .arch_contact_us_duplicate .button {
    width: 100%;
  }

  .arch_contact_us_duplicate .button {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
    height: 50px;
  }

  .arch_contact_us_duplicate .form-wrapper {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
  }

  .arch_contact_us_duplicate .icon-block {
    width: 25px;
    height: 25px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}



hr{


    border: 0.5px solid #3a3a3a;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}





.footer-content{
    text-align: center;
    font-size: 14px;
padding-top: 20px;
    color: #888;
height: 60px;

      /* position: fixed; */
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
      border: 0.5px solid #3a3a3a;

      box-shadow: 0px 0px 10px 5px  rgba(26, 13, 166, 0.35);
}
