/*hide image from contact form*/
@media (max-width: 900px) {
    #public-image {
        display: none;
    }
}

.form-floating label {
    margin-left: 8px;
}

/*style for upload personal images, and drivers licence*/
.filelabel, .filelabel1, .filelabel2 {
    width: 98%;
    height: 140px;
    border: 2px solid lightgrey;
    border-radius: 5px;
    display: block;
    padding: 5px;
    transition: border 300ms ease;
    cursor: pointer;
    text-align: center;
    margin: 0;
}

.filelabel i, .filelabel1 i, .filelabel2 i {
    display: block;
    font-size: 30px;
    padding-bottom: 5px;
}

.filelabel i,
.filelabel .title, .filelabel1 i,
.filelabel1 .title, .filelabel2 i,
.filelabel2 .title {
    color: grey;
    transition: 200ms color;
}

.filelabel:hover, .filelabel1:hover, .filelabel2:hover {
    border: 2px solid #1665c4;
}

.filelabel:hover i,
.filelabel:hover .title, .filelabel1:hover i,
.filelabel1:hover .title, .filelabel2:hover i,
.filelabel2:hover .title {
    color: #1665c4;
}

#FileInput, #FileInput1, #FileInput2 {
    display: none;
}

.add-icon {
    font-size: 50px !important;
    margin-top: 20px;
}

.img-chooser-label {
    width: 100%;
    text-align: center;
    margin-top: 5px;
}

.img-chooser {
    width: 100%;
    height: 140px;
    border-radius: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: rgba(18, 57, 92, 0.5);
}

.preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 0px);
    left: calc(50% - 30px);
    border: 6px solid #25262A;
    border-top-color: rgba(18, 57, 92, 0.5);
    border-bottom-color: rgba(18, 57, 92, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# header large
--------------------------------------------------------------*/

#header-left-part {
    font-size: 20px;
    color: #ffffff;
    background-color: #00223e;
    /*height: 90px;*/
    transform: Skew(-50deg);
    margin-left: -40px;
    border-right: 25px solid #ededef;

}

#header-right-part {
    margin-left: -1px;
    transform: Skew(-50deg);
    background-color: #ededef;
    /*border: 1px solid red;*/

}

#header-right-part .top-header {
    height: 35px;
    margin-left: 15px;
    background-color: #ededef

}

#header-right-part .top-header .th-content {
    transform: Skew(50deg);
    text-align: right;
    padding-right: 10%;
    padding-top: 1%;
    font-size: 14px;
}

.social-links {
    float: left;
    text-align: right;
    padding-left: 0;
    padding-top: 3px;
}

.social-links a {
    color: rgba(0, 34, 62, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.social-links a:hover {
    color: #ffbe00
}

.th-content span:hover i {
    color: #ffbe00
}
.th-content span {
    cursor:pointer;
}

#header-right-part .bottom-header {
    height: 55px;
    background-color: #ffffff;
    padding-left: 8.5%;
    padding-top: 5px;
}

.bottom-header ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

bottom-header. li {
    position: relative;
}

.bottom-header a,
.bottom-header a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.bottom-header a i,
.bottom-header a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.bottom-header a:hover,
.bottom-header .active,
.bottom-header .active:focus,
.bottom-header li:hover > a {
    color: #00223e;

}

.bottom-header li:hover a {
    color: #ffbe00

}

.bottom-header li > a {
    color: #00223e;
}

/*--------------------------------------------------------------
# header mobile
--------------------------------------------------------------*/
#header-sm {
    background-color: #00223e;;
    height: 80px;
}

#header-sm .right-side {
    border: 1px solid #FFF;
    margin-right: -50px;
    background-color: #FFF;
    color: #00223e;;
    height: 80px;
    transform: skew(-50deg);
}

#header-sm .right-side .rs-content {
    transform: skew(50deg);
    margin-top: 20px;
    text-align: center
}
#header-sm .right-side .rs-content i:hover{
    color: #ffbe00
}

/*--------------------------------------------------------------
# Navbar mobile
--------------------------------------------------------------*/
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #00223e;
    transition: 0.3s;
    width: 100%;
    z-index: 1000;
    color: #FFF;
    display: none;
}

.navbar-mobile-header {
    height: 50px;
    background-color: #00223e;
}

.mobile-nav-toggle {
    position: absolute;
    top: 12px;
    left: 15px;
    border: 1px solid #3e5d7a;
    padding: 0px 5px;
    border-radius: 5px;
    background-color: #00223e;
    color: #ffbe00
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 50px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    padding: 10px 20px;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile ul li {
    list-style-type: none;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #FFF;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #FFF;
}




