* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rowdies", sans-serif;

  font-style: normal;

  color: #000;
}
html,
body {
  width: 100%;
  height: 100%;
}
.main {
  padding: 10px 50px;
}
.nav {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;

  cursor: pointer;
}
.logo img {
  width: 60px;
  height: 60px;
  background: #fff;
}
.nav .logo .b {
  width: 30px;
  height: 30px;
  background-color: rgb(27, 7, 136);
  border-radius: 50%;
  display: flex;
  padding: 20px;
  margin-top: 1vh;
  transition: all linear 0.4s;
}
.logo h1 {
  font-size: 35px;
  display: flex;
  align-items: center;
    font-family: "Rowdies", sans-serif;

  font-style: normal;
}
.nav .r {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
}

.nav .r .a {
  height: 4vh;
  width: 1px;
  background-color: #000;
}
.nav .r a {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  transition: all ease 0.4s;
}

.nav .r a:hover {
  color: #b6b4b4;
}
.underline {
  width: 100%;
  height: 1px;
  background-color: #222222;
}

.hero {
  width: 100%;
  height: 80vh;
  /* background-color: brown; */
  margin-top: 2vh;
  display: flex;
  
}
.hero .w{
    width: 1px;
    height: 60px;
    background-color: #000;
}
.hero h3 {
  width: 100px;
  height: 80px;
   font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  display: flex;
  justify-content: sp;
}
.left {
  width: 75%;
  height: 100%;
  display: flex;
  /* justify-content: center; */
}
.left .top {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;
  margin-bottom: 15vh;
  margin-right: 15vh;
}
.left .top :nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10vw;
}
.left .top :nth-child(2) {
  display: flex;
  align-items: center;
  font-size: 10vw;
 
}

.left .aaa img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  cursor: pointer;
}
.left .aa img {
  width: 120px;
  height: 120px;
  border-radius: 50%;

  display: flex;
  cursor: pointer;
}
.right {
  width: 25%;
  height: 100%;
  /* background-color: aqua; */
  /* padding-left: 5vw; */
}
.right img{
    width: 270px;
    height: 190px;
    
}
.right .y{
    width: 1px;
    height: 70%;
    background-color: #000;
    position: absolute;
   
}
.right .r{
    width: 19vw;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 50%;
}
.right .con{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2vh;
    position: absolute;
    top: 50%;
    margin-left: 2vw;

}
.right .con h2{
    font-size: 2vw;
    font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;

}
.right .con i{
    font-size: 30px;
    cursor: pointer;
    transition: all ease 0.3s;
    margin: 1vw;
    
}
.right .con i:hover{
    color: #b6b4b4;
}

.right .p{
    width: 19vw;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 30%;
    
}
.right h4 {
  /* font-family: "poppins"; */
  font-size: 15px;
  letter-spacing: 2px;

  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: absolute;
  bottom: 10%;
    margin-left: 2vw;

}
.scroll{
    width: 100%;
    padding: 0px 200px;
    height: 200px;
    /* background-color: #000; */
    white-space: nowrap;
    overflow: hidden;
    position: relative;
   
}
.scroll::before,
.scroll::after {
    position: absolute;
    top: 0;
    
    width: 200px;
    height: 140px;
    
    content: "";
    z-index: 2;
}
.scroll::before{
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0),#fff);
    
}
.scroll::after{
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0),#fff);
    
}
.scroll .imgs{
    display: inline-block;
    
    overflow: hidden;
    
    white-space: nowrap;
    animation: 10s ami infinite linear;
}
.scroll .imgs img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    /* background-color: black; */
    margin: 20px;
    cursor: pointer;
    
}
@keyframes ami {
    from {
        transform: translateX(-100%);
    }
    to{
        transform: translateY(0);
    }
    
  }

.footer{
  width: 100%;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 50px;
}
.y{
  width: 100%;
  height: 1px;
  background-color: #000;
  
  
}
.footer .phone h2{
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
}
.footer .phone h5{
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
}
.footer .email h2{
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
}
.footer .email h5{
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
}
.footer .follow h2{
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
}
.footer .follow i{
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 25px;
  cursor: pointer;
}
.footer .co h2{
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
}
.footer .co h5{
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
}


.contact_from{
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 20px 50px;
    
}
.con_left{
    width: 40%;
    height: 100%;
    margin: 10vh;
    
    
}
.con_left .i{
    
    
}
.con_left .i h1{
    font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  
    
}
.con_left .i h3{
    font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  margin-top: 2vh;


}
.con_left .t h1{
    font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 25px;
  margin-top: 7vh;

m

}
.con_left .t h4{
    font-family: "Source Code Pro", monospace;
    font-weight: 400;
  margin-top: 2vh;

}
.con_left .tt h1{
    font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 25px;
  margin-top: 7vh;


}
.con_left .tt h4{
    font-family: "Source Code Pro", monospace;
  margin-top: 2vh;
    font-weight: 400;
}
.icon{
    margin-top: 5vh;
}
.icon i{
    font-size: 30px;
    cursor: pointer;
    transition: all ease 0.3s;
    margin: 1vw;
    
    
}
.icon i:hover{
    color: #b6b4b4;
}

.d{
    width: 1px;
    height: 80%;
    background-color: #000;
}









.con_right{
    width: 60%;
    height: 100%;
    padding-left: 5px;
    padding-top: 30px;
}
.n{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.n input{
        font-family: "Source Code Pro", monospace;
    padding: 10px 40px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #000;
    margin-bottom: 5vh;
}
.c{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.c input{
        font-family: "Source Code Pro", monospace;
    padding: 10px 40px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #000;
}
.m{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.m input{
        font-family: "Source Code Pro", monospace;
    padding: 100px 120px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #000;
    margin-top: 10vh;
}
.m button{
    padding: 10px 40px;
    cursor: pointer;
    border: none;
    transition: all ease 0.4s;
    border-radius: 5px;
    font-family: "Source Code Pro", monospace;
    font-weight: 700;
    font-size: 20px;
    background-color: #000;
    color: #fff;
}
.m button:hover{
    color: #000;
    background-color: #b6b4b4;
}