/*Header*/
.navBar {
    background-color: black !important;
    color: #4B4D4F;
}

.verticalLine{
    height: 70%;
    margin-top: 0.3rem;
    width: 2px !important;
    background-color: #4B4D4F;
    display: inline-block;
    margin-left: 1rem;
    margin-right: 1rem;
}

.headerIcon{
    margin: 0px;
    padding-right: 0.1rem !important;
    padding-left: 0.rem !important;
}

.align-items-center {
  display: flex; 
  align-items: center;  /*Aligns vertically center */
  justify-content: center; /*Aligns horizontally center */
}

.bg-black{
    background-color: black;
}

.footerBorder{
    border-color: #4B4D4F !important;
}

.lightText{
    color: #4B4D4F !important;
}
.lighterText{
    color: #B8BEC4 !important;
}
.cardText{
    color: #878D90 !important;
}

.navLink{
    font-size: large !important;
}

@media screen and (max-width: 1400px){
    .mainTitle{
        font-size: 40px !important;
    }
}


/*phone*/
@media screen and (max-width: 1000px) {
    .phoneInvisible{
        display: none !important;
    }
    .imageShrink{
        width: 70%;
    }
    .flexRowOnMobile{
        flex-direction: column !important;
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        justify-content: normal !important;
        align-items: normal !important;
        align-content: normal !important;
    }
    .flexOnMobile{
          display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: center;
            align-items: normal;
            align-content: normal;
    }
}

@media screen and (min-width: 1000px) {
    .computerInvisible{
        display: none ;
    }
    .topPart{
        height: 100vh !important;
    }
    .flexOnMobile{
        display: flex;
        justify-content: center;
    }
}

label {
    font-size: 16px;
}

textarea {
    resize: none;
    border-radius: 8px;
    background-color: black !important;
    color: white !important;
    resize: none !important;
    font-size: 16px !important;
  }

/* input type  */
input[type=text] {
    
    background-color: #000000;
    color: white;
    font-size: 16px;

  }

/* input type  */
input[type=email] {
    
    background-color: #000000;
    color: white;
    font-size: 16px;

  }

input[type=text]:focus {
    background-color: black;
    color: white;
    font-size: 16px;
}
input[type=email]:focus {
    background-color: black;
    color: white;
    font-size: 16px;
}

::placeholder {

    color: rgb(255, 255, 255) !important;
    opacity: 1; /* Firefox */
  }
  
  ::-ms-input-placeholder { /* Edge 12-18 */
    color: rgb(255, 255, 255) !important;
  }

.btn {
    background-color: black;
    font-size: 16px;
}
