

#ContactSec {
    
height: calc(100vh);
    max-height: 1200px;
    min-height: 600px;
    
}

#ContactRightDiv {
    
    width: 400px;;
    float: right;
    background-color: #880000;
    height: 100%;
    box-shadow: inset 2px 0px 8px rgba(0,0,0,0.5);
    
}

#ContactLeftDiv {
    
    width: calc(100% - 400px);
    float: left;
    background-color: white;
    height: 100%;
    border-bottom: solid;
    border-width: 1px;
    border-color: lightgray;
}

#CLTitle {
    
    font-size: 35px;
    color: dimgrey;
    font-weight: 100;
    padding-bottom: 10px;
    text-align: center;
}

#CLInnerDiv {
    
    max-width: 450px;
    margin: 0 auto;
    width: 90%;
    text-align: center;
    
}

#ContactButton {
    background:#b41932;
    width:180px;
    margin-top:20px;
    font-size: 20px;
    font-weight: 300;
}
#ContactButton:hover {
        background:#de2341;

}

#IconInput {
    margin-top: 5px;
}

/* label color */
   .input-field label {
     color: grey;
       font-weight: 100;
       text-align: left;
   }

    .input-field input {
        color: grey;
        padding-left: 10px;
    }
    .input-field input[type=text]:focus {
     color: #881124;
   }

  
   /* label focus color */
   .input-field input[type=text]:focus + label {
     color: #881124;
   }
   /* label underline focus color */
   .input-field input[type=text]:focus {
     border-bottom: 1px solid #881124;
     box-shadow: none;
   }
   /* valid color */
   .input-field input[type=text].valid {
     border-bottom: 1px solid grey;
     box-shadow: none;
   }
   /* invalid color */
   .input-field input[type=text].invalid {
     border-bottom: 1px solid #881124;
     box-shadow: none;
   }



/* Text Area Color */
   .input-field label {
     color: grey;
       font-weight: 300;
   
   }

    .input-field textarea {
        color: grey;
        padding-left: 10px;
        max-height: 150px;
        overflow-y: scroll;
    }

    .input-field textarea::-webkit-scrollbar {
        display: none;
    }

    .input-field textarea:focus {
     color: #881124;
   }

  
   /* label focus color */
   .input-field textarea:focus + label {
     color: #881124 !important;
   }
   /* label underline focus color */
   .input-field textarea:focus {
     border-bottom: 1px solid #881124 !important;
     box-shadow: none !important;
   }
 



    
#CRInnerDiv {
    
    width: 270px;
    margin: 0 auto;
    padding-left: 30px;
    
}

#CRItem {
    font-size: 20px;
    color: white;
    font-weight: 100;
}

#CRItem i {
    
    position: relative;
    top: 5px;
    right: 15px;
    
}

@media only screen and (max-width: 1000px) {
   
    #ContactLeftDiv {
        width: 100%;
        padding: 0 30px;
        height: 800px;
    }
    #ContactRightDiv {
        width: 100%;
        height: 500px;
    }
    
}
 