@charset "utf-8";

/* CSS Document */

@media all {
    .col {
        display: inline-block;
    }
    .container {
        text-align: center;
    }
    #container {
        background-color: #fc7e1a;
        width: 100%;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        z-index: 1;
    }
    .line {
        width: 80%;
        height: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        float: none;
        background-color: #45b1d8;
    }
    .Bblue {
        background-color: #2bbbd8;
        z-index: 2;
    }
    .Borange {
        background-color: #f78d3f;
        z-index: 2;
    }
    body {
        margin: 0px;
        background-image: url(../Images/back.jpg);
        background-position: center;
        background-attachment: fixed;
        padding-top: constant(safe-area-inset-top);
        /* iOS 11.0 */
        padding-top: env(safe-area-inset-top);
        /* iOS 11.2 */
        margin-bottom: constant(safe-area-inset-bottom);
        /* iOS 11.0 */
        margin-bottom: env(safe-area-inset-bottom);
        /* iOS 11.2 */
    }
    .main {
        position: relative;
        margin: 0px;
        width: 100%;
        z-index: 3;
        height: auto;
    }
    #About {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 50px;
        color: #f78d3f;
    }
    .title {
        font-size: 60px !important;
    }
    .person {
        border-radius: 50%;
        width: 10vw;
        /* 20% of the viewport width */
        height: 10vw;
        margin: 0 auto;
        -webkit-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1);
        -moz-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1);
        -o-transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1);
        transition: all 400ms cubic-bezier(0.42, 0, 0.58, 1);
    }
    .person:hover {
        transform: scale(1.1);
    }
    .officerName {
        text-align: center;
        font-weight: 400;
        font-size: 24px;
    }
    .card {
        //box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        max-width: 300px;
        margin: auto;
        padding: 20px;
        text-align: center;
    }
    .desc {
        color: #4bb1d6;
        font-size: 18px;
    }
    .buttonContact {
        border: none;
        outline: 0;
        display: inline-block;
        padding: 8px;
        color: white;
        background-color: #000;
        text-align: center;
        cursor: pointer;
        width: 100%;
        font-size: 18px;
        color: white;
        background-color: #102e37;
    }
    .aContact {
        text-decoration: none;
        font-size: 20px;
        color: #102e37;
        font-size: 23px;
        padding: 5px;
    }
    .buttonContact:hover,
    .aContact:hover {
        opacity: 0.7;
    }
    /*When the modal fills the screen it has an even 2.5% on top and bottom*/
    /*Centers the modal*/
    .modal-dialog {
        margin: 2.5vh auto;
        -webkit-overflow-scroll: visible;
        overflow-y: visible;
    }
    /*Sets the maximum height of the entire modal to 95% of the screen height*/
    .modal-content {
        height: 95vh !important;
        overflow-x: hidden;
        overflow-y: visible;
    }
    /*Sets the maximum height of the modal body to 90% of the screen height*/
    .modal-body {
        height: 100vh !important;
        padding: 0px !important;
    }
}


/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (max-width: 1280px) {
    .person {
        width: 10vw;
        height: 10vw;
    }
    input[type=text],
    [type=tel],
    [type=email] {
        width: 320px !important;
    }
}


/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (max-width: 1024px) {
    .person {
        width: 20vw;
        height: 20vw;
    }
    input[type=text],
    [type=tel],
    [type=email] {
        width: 300px !important;
    }
}


/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (max-width: 768px) {
    .title {
        font-size: 50px !important;
    }
    .person {
        width: 24vw;
        height: 24vw;
    }
    .modal-dialog {
        width: 350px;
        margin: 0 auto;
    }
    input[type=text],
    [type=tel],
    [type=email] {
        width: 200px !important;
    }
}


/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (max-width: 320px) {
    .person {
        width: 25vw;
        height: 25vw;
    }
    .modal-dialog {
        width: 320px;
    }
}