.serviceBox {
    color: #999;
    font-family: poppins, sans-serif;
    text-align: center;
    padding: 10px 0 15px;
    position: relative
}

.serviceBox:before,
.serviceBox:after {
    content: "";
    background: #5f9ea0;
    width: 150px;
    height: 10px;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
    clip-path: polygon(7% 0%, 93% 0%, 100% 100%, 0% 100%)
}

.serviceBox:after {
    width: 80%;
    height: 15px;
    border-radius: 0 0 10px 10px;
    top: auto;
    bottom: 0;
    clip-path: none
}

.serviceBox .service-content {
    background: #e9ecef;
    padding: 25px 20px;
    border-radius: 10px
}

.serviceBox .service-content:before {
    content: "";
    background: #5f9ea0;
    width: 128px;
    height: 100px;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
    clip-path: polygon(0 0, 100% 0, 50% 100%)
}

.serviceBox .service-icon {
    color: #77787a;
    background: linear-gradient(to left, #dedfe1, #f3f3f3);
    font-size: 40px;
    line-height: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, .03);
    position: relative;
    z-index: 1
}

.serviceBox .service-icon:before {
    content: "";
    background: linear-gradient(to right, #dedfe1, #f3f3f3);
    width: 88%;
    height: 88%;
    border-radius: 50%;
    box-shadow: 5px 0 5px rgba(0, 0, 0, .1);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1
}

.serviceBox .title {
    color: #1e5270;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin: 0 0 10px
}

.serviceBox .description {
    font-size: 14px;
    line-height: 24px;
    margin: 0
}

.serviceBox.green:before {
    background: #719e2a
}

.serviceBox.green:after,
.serviceBox.green .service-content:before {
    background: #85bc16
}

.serviceBox.green .title {
    color: #85bc16
}

@media only screen and (max-width:990px) {
    .serviceBox {
        margin: 0 0 30px
    }
}

.title-main {
    text-align: center;
    color: #1e5270;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .5px;
    margin: 0 0 10px
}

header * {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

header {
    height: 70px;
    width: 100%;
    position: relative;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .4)
}

.timlogo {
    width: 166px;
    display: block;
    margin: 0 auto;
    padding-top: 15px
}

.head {
    position: absolute;
    top: 20px;
    right: 420px
}

.head .tile {
    display: inline-block;
    height: 50px;
    width: 50px;
    margin-left: 5px;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in
}

.head .tile.socialmedia {
    color: #0b253e;
    font-size: 50px;
    text-align: center;
    line-height: 50px;
    position: relative;
    top: -6px
}

header.clicked .head .tile.socialmedia {
    color: #fff
}

.head .burger {
    margin-left: 25px;
    padding: 5px;
    cursor: pointer;
    background-color: transparent
}

.meat {
    height: 40px;
    width: 40px;
    position: relative;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in
}

header.clicked .head .burger .meat {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

.meat .line {
    height: 4px;
    width: 40px;
    background-color: #0b253e;
    border-radius: 3px;
    position: absolute;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in
}

.meat .line.one {
    top: 5px;
    left: 0
}

.meat .line.two {
    top: 18px;
    left: 0
}

.meat .line.three {
    top: 31px;
    left: 0
}

header.clicked .burger .line {
    background-color: #fff
}

header.clicked .burger .line.one {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 18px
}

header.clicked .burger .line.two {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    top: 18px
}

header.clicked .burger .line.three {
    opacity: 0
}

header.clicked .burger:hover .meat {
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg)
}

.nav-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    pointer-events: none
}

header.clicked .nav-modal {
    visibility: visible;
    opacity: 1;
    pointer-events: initial
}

.nav-modal .blob {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin: 0 auto;
    background-color: #0b253e;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all .3s ease-in
}

header.clicked .nav-modal .blob {
    width: 100vw;
    height: 100vh;
    border-radius: 0
}

nav {
    position: fixed;
    left: 20%;
    top: 30%;
    color: #fff
}

nav a {
    color: #fff;
    text-decoration: none;
    font-family: sans-serif;
    font-family: oswald, sans-serif;
    font-size: 30px
}

nav ul li {
    list-style: none;
    text-align: right;
    border-right: 6px solid #fff;
    padding-bottom: 10px;
    padding-right: 10px;
    position: relative
}

nav {
    opacity: 0;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

header.clicked nav {
    opacity: 1
}

nav ul li ul {
    position: absolute;
    right: -300px;
    top: -4px;
    display: none
}

nav ul li ul li {
    border: none;
    padding-bottom: 10;
    padding-left: 10px;
    height: 50px;
    width: 300px
}

nav ul li ul li a {
    display: block;
    height: 50px;
    font-size: 20px;
    text-align: left;
    padding: 10px
}

nav ul li.selected ul {
    display: block
}

nav ul li.notselected a {
    opacity: .5
}

nav ul li.selected ul li a {
    opacity: 1
}

@media screen and (max-width:820px) {
    .timlogo {
        margin-left: 50px
    }
}

@media screen and (max-width:580px) {
    .timlogo {
        width: 130px;
        padding-top: 30px
    }
    nav ul li a {
        font-size: 16px
    }
    nav ul li ul {
        top: -9px
    }
    nav ul li ul li {
        height: 40px
    }
    nav ul li ul li a {
        font-size: 16px;
        height: 40px
    }
}

@media screen and (max-width:500px) {
    .timlogo {
        display: none
    }
}

@media screen and (max-width:320px) {
    header .head .tile.socialmedia {
        display: none
    }
}

.successimage a {
    color: #fff;
    display: block
}

.loading {
    display: none;
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8))
}

.loading:not(:required) {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: .5em;
    -webkit-box-shadow: rgba(255, 255, 255, .75) 1.5em 0 0 0, rgba(255, 255, 255, .75) 1.1em 1.1em 0 0, rgba(255, 255, 255, .75) 0 1.5em 0 0, rgba(255, 255, 255, .75) -1.1em 1.1em 0 0, rgba(255, 255, 255, .75) -1.5em 0 0 0, rgba(255, 255, 255, .75) -1.1em -1.1em 0 0, rgba(255, 255, 255, .75) 0 -1.5em 0 0, rgba(255, 255, 255, .75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, .75) 1.5em 0 0 0, rgba(255, 255, 255, .75) 1.1em 1.1em 0 0, rgba(255, 255, 255, .75) 0 1.5em 0 0, rgba(255, 255, 255, .75) -1.1em 1.1em 0 0, rgba(255, 255, 255, .75) -1.5em 0 0 0, rgba(255, 255, 255, .75) -1.1em -1.1em 0 0, rgba(255, 255, 255, .75) 0 -1.5em 0 0, rgba(255, 255, 255, .75) 1.1em -1.1em 0 0
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.cloundcontainer {
    background-color: #5f9ea0;
    padding-bottom: 20px;
    margin-top: 32px;
    border-radius: 5px
}

.center {
    text-align: center
}

#top {
    margin-top: 20px
}

.btn-container {
    background: #fff;
    border-radius: 5px;
    padding-bottom: 20px;
    margin-bottom: 20px
}

.white {
    color: #fff
}

.imgupload {
    color: #1e2832;
    padding-top: 40px;
    font-size: 7em
}

#namefile {
    color: #000
}

h4>strong {
    color: #ff3f3f
}

/* .btn-primary {
    border-color: #ff3f3f !important;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
    background-color: #ff3f3f !important;
    border-color: #ff3f3f !important
} */

.imgupload.ok {
    display: none;
    color: green
}

.imgupload.stop {
    display: none;
    color: red
}

#fileup {
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    width: 200px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    height: 50px
}

#submitbtn {
    padding: 5px 50px;
    display: none
}

#fakebtn {
    padding: 5px 40px
}

#sign {
    color: #1e2832;
    position: fixed;
    right: 10px;
    bottom: 10px;
    text-shadow: 0 0 0 #1e2832;
    transition: all.3s
}

#sign:hover {
    color: #1e2832;
    text-shadow: 0 0 5px #1e2832
}

/* gks css */
div#main-manager {
    float: right;
    margin: 10px 0px 10px 0px;
}
div#main-manager div.image {
    float: left;
    margin-left: 3px;
}
div#main-manager div.image a {
    display: block;
    width: 64px;
    height: 65px;
    border: #DDDDDD 1px solid;
    text-align: center;
    padding-top: 5px;
    color: #333333;
}

.orgn .col-form-label {
    font-weight: 600;
}

div#main-manager-save {
    float: left;
    margin: 10px 0px 10px 0px;
}

div#main-manager-save div.image-save {
    float: left;
    margin-left: 0px;
}

div#main-manager-save div.image-save a {
    display: block;
    width: 92px;
    height: 65px;
    text-align: center;
    padding-top: 5px;
}