/* --------------------------------------------------------------------------------
                                Common
-------------------------------------------------------------------------------- */
::selection {
    background-color:#1e80c3;
    color:#fff;
}
::-moz-selection {
    background-color:#1e80c3;
    color:#fff;
}
body {
    overflow-x: hidden;
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 1.6;
    font-weight:500;
    color:#333;
}
a, a:focus, a:hover {
    transition: .6s;
    outline: 0;
    text-decoration: none;
}
img {
    width: 100%;
}
h1, h2, h3, h4, h5, h6 {}
h1, h2, h3, h4, h5, h6, p {
    margin: 0 0 15px 0px;
}
p {}
ol, ul {
    padding: 0;
    margin: 0;
}
li {
    list-style-type: none;
}
button:focus,
button:active {
    outline:none;
    box-shadow:none;
}
/* --------------------------------------------------------------------------------
                                Bootstrap Edit
-------------------------------------------------------------------------------- */
.container {
    max-width: 1170px;
}
.navbar-toggler-icon {
    background-image: url(../images/toggle.svg);
}
.btn {
    font-size: 16px;
    line-height: 1.6;
    text-transform: capitalize;
    padding: 10px 15px;
    border:none;
    border-radius:0;
}
.btn,
.btn:focus,
.btn:active,
.btn:hover {
    outline:none;
    box-shadow:none;
    border:none;
    transition:0.6s;
}
.btn_blue {
    background-color:#1e80c3;
    color:#fff;
}
.btn_blue:hover,
.btn_blue:focus {
    background-color:#484848;
    color:#fff;
}
.btn_red {
    background-color:#e31f26;
    color:#fff;
}
.btn_red:hover,
.btn_red:focus {
    background-color:#484848;
    color:#fff;
}
.form-control {
    padding: 10px 15px;
    line-height: 1.3;
    border-radius: 0px;
    color: #333;
    font-size: 16px;
}
.form-control:focus {
    box-shadow:none;
    border-color:#009ae1;
}
/* --------------------------------------------------------------------------------
                                To Top
-------------------------------------------------------------------------------- */
#back-to-top {
    position: fixed;
    bottom: 80px;
    right: 40px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 34px;
    font-size: 24px;
    background: #1e80c3;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    text-decoration: none;
    transition:0.6s;
    opacity: 0
}
#back-to-top:hover {
    background: #484848;
}
#back-to-top.show {
    opacity: 1
}