@import url("https://fonts.googleapis.com/css2?&family=Water+Brush&display=swap");

:root{
    --font-size: 14px;
    --custom-margin : 1rem;
    --button-padding : .4rem;
    --custom-width : 
}

.font-12{
    font-size: var(--font-size);
}
.custom-margin{
    margin-left: var(--custom-margin);
    margin-right: var(--custom-margin);
    margin-bottom: var(--custom-margin);
}
.custombuttonpadding{
    padding: var(--button-padding);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --color: #7e15ce;
}

.wrapper {
    height: 100vh;
  }
  
  .container1{
    max-width: 1380;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin: auto;
  }
  /* grid xl:grid-cols-3 md:grid-cols-4 xl:gap-10 lg:gap:rem mx-auto xl:px-[4rem] xl:py-[2rem] md:px-[2rem] md:py-[1rem] justify-items-center sm:mb-10 */
.mainsection{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding: 4rem;
}
.info-container{
    grid-column-start: 1;
    grid-column-end: 3;
}
.name-sign {
  font-family: "Water Brush", cursive;
  font-size: 40px;
  font-weight: 400;
  position: relative;
    display: inline;
}
.name-sign::after{
    content: "";
    font-family: "Water Brush", cursive;
    width: 100px;
    height: 2px;
    background-color: var(--color);
    position: absolute;
    left: 50px;
    right: 0;
    bottom: 10px;
}
.button-text-size {
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.call-link{
    position: relative;
}
.call-link::before{
    content: "";
    background-color: var(--color);
    width: 0;
    height: 10%;
    border-radius: 10%;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    margin: auto;
    filter: blur(8px);
    transition: width 5s ease linear;

}
.call-link:hover::before{
    width: 80%;
}
.call-link:hover{
    animation: drop-down 1s ease infinite;
}
@keyframes drop-down {
    0%{
        transform : translateY(5px);
    }
    50%{
        transform : translateY(-5px) ;
    }
    100%{
        transform : translateY(5px);}
}
.about-image {
    width: 500px;
    height: 500px;
  }

.call-link:hover {
  -webkit-text-shadow: 2px 2px 4px blueviolet; 
  text-shadow: 2px 2px 4px blueviolet;  
}


/* responsive start */
@media only screen and (max-width: 1280px) and (min-width: 1180px){
    .mainsection{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        padding: 2.5rem;
    }
    .image-container .about-image{
        width: 700px;
        height: 350px;
        margin-left: 2rem;
        transform: translateY(50px);
        /* background: #000; */
    }
}
@media only screen and (max-width : 1180px) {
    .container {
        max-width: 1180px;
        width: 100%;
        display: flex;
    }
    .mainsection{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        padding: 2rem 1rem;
    }
    .name-sign {
        font-size: 30px;
        font-weight: 400;
      }
    .name-sign::after{
        content: "";
        width: 60px;
        height: 2px;    
    }
    .image-container{
        width: 320px;
        height: 350px;
        /* border: 2px solid red; */
        transform: translate(0%, 11%);
    }
    .image-container .about-image{
        width: 100%;
        height: 100%;
        margin-left: 2rem;
       
    }
    .button-text-size {
        font-size: 12px;
        font-family: Arial, Helvetica, sans-serif;
      }
}

@media only screen and (max-width : 767px){
    .mainsection{
        display: flex;
        flex-direction: column;
        padding: 2rem 1rem;
    }
    .info-container{
        order: 1;
        margin-top: -4rem;
    }
    .about-image{
        order: 0;
    }
    .image-container .about-image{
        width: 300px;
        height: 250px;
        margin-left: none;
        transform: none;
        margin-bottom: 2rem;
        margin-top: -3rem;
    }
    .name-sign {
        font-size: 25px;
        font-weight: 400;
      }
      .name-sign::after{
        content: "";
        width: 40px;
        height: 2px;    
        transform: translate(-15px, 3px);
    }
}
/* responsive end */