.fade-in{
    opacity:0;
    transition: opacity 250ms ease-in;

}
.fade-in.appear{
    opacity:1;
}
.from-left{
    transform: translateX(-60%);
}
.from-right{
    transform: translateX(60%);
}
.from-left, .from-right{
    transition:opacity 400ms ease-in 300ms, transform 600ms ease-in;
    
    opacity:0;
}
.from-left.appear, .from-right.appear {
    transform: translateX(0);
    opacity:1;
}

.red{
    color:rgb(129, 15, 15);
}
.btn{
    display:none;
}
/* ----------------------------------------header------------------------------------------------ */

.header{
    display: grid;
    align-content: center;
    grid-template-columns: 10% 40% 40% 10%;
 
    background-image: url('../image/services.jpg');

    background-attachment: fixed;
    background-position: top;    
    background-repeat: no-repeat;
    background-size:cover; 
    background-color: #fff;    

    padding:10% 0px; 
    height:500px;
}
@media screen and (min-width:1600px){
    .header{

    background-size:1600px; 

    }
}
.header-left{
    grid-area:1/1/1/span 3;
    background-color:rgba(255, 255, 255, 0.3);
     padding-left:10px;
}
.header-right{
    grid-area: 2/2/2/span 4;  
    background-color:rgb(129, 15, 15);
     position: relative;
   
    top:-10px;
   
    padding-left:10px;


    
}
.header-right h1, .header-left h1{     
    color:white;
    font-size: 2.8rem;
    font-weight: 650;
}
.header-right p, .header-left p{   
    text-align: center;  
    color:white;
    font-size: 2.5rem;
    font-weight: 650;
    width:100%;
}
@media screen and (min-width:1024px){
    .header-left{
    grid-area:1/1/1/span 2;
    background-color:rgba(255, 255, 255, 0.3);
     padding-left:10px;
     width:105%;
    }
    .header-right{
        grid-area: 2/3/2/span 4;  
        background-color:rgb(129, 15, 15);

        position: relative;
        left:-70px;
        top:-20px;
        width:110%;
        max-width:860px;
    
        padding-left:10px;   
    }
}
/* -------------------------------------------------------end------------------------------------- */
/* -----------------------------section-one------------------------------------------------------- */
/* -------------------------------------------section-one----------------------------------------*/
.desk-grid{
    display: grid;   
    grid-template-columns: auto auto; 
    justify-content: center; 
    }
.section-one{
    background-color:rgb(129, 15, 15);
    width:300px;
  	height:1000px;
    margin: 10px;
    border-radius:0px 5px 5px;
} 
.section-one h1{
    margin:0;
    text-align:center;
    color:#fff;
    padding:20px;
}
.service-list{
    list-style: none;
    padding:10px;
    display:grid;
    row-gap:10px;
    background-color:#fff;
    margin:10px;    
}
.service-list li{
    padding:10px;
    text-decoration: none;
    cursor:pointer;
    
    transition:all 250ms ease-in;
}
.active{
    background-color:rgb(129, 15, 15);
    color:#fff;
}
.service-list li:hover{
    background-color:rgb(129, 15, 15);
    color:#fff;
    transition:all 250ms ease-in;
}
@media screen and (min-width:1300px){
    .section-one{
        width:450px;
    }
}

/* -------------------------------------------end----------------------------------------------- */
/* -------------------------------------------------section-two---------------------------------------- */
.section-two{
    display:grid;
    grid-template-rows: auto auto;
    padding:40px 5px 0px 5px;
}
.section-two h1{
    text-align:center;
    font-size:1.5rem;
}
.section-two p{
    padding:20px;
    font-size:1rem;
}

.section-two img{
    width:100%;
    max-width:400px;
    margin:0px auto;

}
#section-two-input{
    padding:20px 60px;
} 
@media screen and (min-width:900px){
    .section-two img{
        max-width:500px;
    }
}
@media screen and (min-width:1000px){
    .section-two img{
        max-width:700px;
    }
}

    /* ------------------------------------------section-three--------------------------------------- */
.section-three{
     background-color: rgb(129, 15, 15); 
     margin-top:20px;
}
.section-three h1{
    text-align:center;
    color:#fff;
    margin:0;
    padding:20px;
}
.section-three a{
    text-decoration: none;
    color:rgb(251, 146, 146);
    transition: all 250ms ease-in;
}
.section-three a:hover{
    color:rgb(172, 56, 56);
    transition: all 250ms ease-in;
}
.name, .telephone, .email, .submit{
    display:block;
   
    height:45px;
    border-width:0;
    border-style:none;
}
.note{
    display:block;
    margin:20px 0px;
    
    border-width:0;
    border-style:none;

    min-width:350px;
    max-width:350px;
    min-height:150px;
    max-height:150px;
}
.submit{
    display:inline-block;
    cursor:pointer;
    font-size:1.2rem;
    color:#fff;
    border:2px solid #fff;
    background:rgba(0,0,0,0);
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.3);
    margin: 20px auto;

    width:130px;
    height:50px;
    transition: all 250ms ease-in;
}
.submit:hover{
    background-color:rgb(214, 28, 28);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
    transition: all 250ms ease-in;
}
.disabled{
    display:inline-block;
    cursor:initial;
    font-size:1.2rem;
    color:#fff;
    border:2px solid #fff;
    background:rgb(214, 28, 28);
    margin: 20px auto;

    width:130px;
    height:50px;
    transition: all 250ms ease-in;
}

::-webkit-input-placeholder { /* Edge */
    color:rgba(0,0,0,0.5);
}

:-ms-input-placeholder { /* Internet Explorer */
    color:rgba(0,0,0,0.5);
}

::placeholder {
  color:rgba(0,0,0,0.5);
  padding-left:5px;
   font-family:montserrat, sans-serif; 
  font-weight:600;
}

label{
    padding:12%;
    padding-left:20%;
    margin:auto 0;
    
    color:#fff;
    font-weight:600;
    
}

.form-grid{
  display:grid;
  justify-items: center;
  
}
.grid-left, .grid-right{
    display: grid;
    grid-template-columns: 124px 350px;
}
.grid-left{
    grid-template-rows:45px 45px 45px;
    grid-row-gap:60px;
    margin-top:25px;
}
.disclaimer{
    
    font-size:0.6rem;
    font-style:italic;
    grid-area:2/2/2/2;
    color:#fff;

    display:grid;
    grid-template-columns: 10% 90%;

}
.check{
    display:inline-block;

    margin: auto auto;
}
.reCaptcha{
    grid-area: 3/2/3/2;
    color:#fff;
    padding-left:35px;
     font-size:0.6rem;
    font-style:italic;
}
.grecaptcha-badge { visibility: hidden; }
@media screen and (min-width:998px){
    .form-grid{
        display:grid;
        grid-template-columns:auto;
        justify-content:center;
    }
    .submit{
        grid-area:2/1/2/span 2;
    }
     .disabled{
        grid-area:2/1/2/span 2;
    }
}

/* -------------------------------------------end------------------------------------------------*/