@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700,900');

.FOS{
    font-family: 'Oswald';
    font-weight: 400;
}

.bounce,.fadein,.fadedown,.fadeleft,.slideright,
.fadeup,.faderight,.slideup,.slideleft,.slidedown,.zoomin{
    opacity: 0;
}

body{
    --main-color: #FF9900;
    --main-op2: rgba(255, 153, 0, 0.2);
    --main-op5: rgba(255, 153, 0, 0.5);
    --purple-color: #7f5ee7;
    --purple-op2: rgba(127, 94, 231, 0.3);
    --light-grey: #666;
    --dark-color: #333;
    --darkx2-color: #000;
}
body{
    font-size: 15px;
    font-family: 'Open Sans';
    font-weight: 400;
    line-height: normal;
    color: var(--dark-color);
    overflow-x: hidden;
}

.sectionP20{
    padding-top: 20px;
    padding-bottom: 20px;
}
.sectionP30{
    padding-top: 30px;
    padding-bottom: 30px;
}
.sectionP40{
    padding-top: 40px;
    padding-bottom: 40px;
}
.sectionP60{
    padding-top: 60px;
    padding-bottom: 60px;
}
.sectionP80{
    padding-top: 80px;
    padding-bottom: 80px;
}

.bold{
    font-weight: 500;
    color: var(--dark-color);
}
.f-16{
    font-size: 16px !important;
}
.LH p{
    line-height: 18pt;
}


/*================================================
    FORM ELEMENTS
================================================*/

.form-control{
    border: 1px solid #ddd;
    background: #f5f5f5;
    min-height: 44px;
    font-size: 15px;
    font-weight: 300;
    color: var(--main-color);
}
.form-control:hover{
    border-color: #ccc;
}
.form-control:focus{
    color: var(--main-color);
    border-color: var(--main-color);
}


/*================================================
    NAVIGATION
================================================*/
.nav-top{
    position: absolute;
    width: 100%;
}
.nav-top.otherPages{
    position: unset !important;
    background: url(../images/slider/slider-1.jpg);
    background-size: cover;
    background-position: top center;
}
.nav-top.otherPages .color-setting{
    background: rgba(0,0,0,0.8);
}
nav.navbar{
    padding-top: 0;
    padding-bottom: 0;
}
.top-bar{
    width: 100%;
    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 100%);
}
.top-bar .d-flex{
    padding: 4px 0 2px;
}
.top-bar .price-div{
    width: 20%;
    opacity: .75;
}
.top-bar span{
    color: var(--main-color);
    font-family: 'Oswald';
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
}
.top-bar .price{
    margin: 0;
    color: #fff;
}

.navbar .navbar-nav{
    display: inline-flex;
}

.navbar .logo{
    max-height: 75px;
}
.main-menu{
    width: 100%;
    display: flex;
}

.navbar .navbar-nav .nav-item{
    margin-left: 30px;
}
.navbar .navbar-nav .nav-link{
    color: rgba(255,255,255,0.75);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus{
    color: #fff;
    transition: all 0.3s;
}
.navbar .navbar-nav .nav-link.active{
    color: var(--main-color);
    transition: all 0.3s;
}

.navbar .navbar-nav.user-menu{
    float: right;
    position: relative;
}

.navbar .navbar-nav.user-menu .nav-link.btn{
    padding: 8px 25px !important;
    font-size: 17px !important;
    font-weight: 500 !important;
}


/*================================================
    BUTTONS
================================================*/

.btn{
    cursor: pointer;
    border-radius: 4px;
    padding: 10px 25px;
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 600;
    border: 0;
}
.btn-lg{
    padding: 13px 44px;
}
.btn-xs{
    padding: 7px 25px;
    font-size: 14px;
}

.btn-white{
    color: var(--main-color) !important;
    background: #fff;
    transition: all 0.3s;
}
.btn-white:hover{
    background: var(--main-color);
    color: #fff !important;
    transition: all 0.3s;
}
.btn-white:focus{
    -webkit-filter: contrast(150%); /* Safari */
    filter: contrast(150%);
    box-shadow: inset 1px 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.btn-main{
    color: #fff;
    background: var(--main-color);
    transition: all 0.3s;
}
.btn-main:hover{
    background: var(--dark-color);
    color: #fff;
    transition: all 0.3s;
}
.btn-main:focus{
    background: var(--dark-color);
    color: #fff;
    box-shadow: inset 1px 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.btn-purple{
    color: #fff;
    background: var(--purple-color);
    box-shadow: 0 7px 15px var(--purple-op2);
    transition: all 0.3s;
}
.btn-purple:hover{
    -webkit-filter: contrast(200%); /* Safari */
    filter: contrast(200%);
    transition: all 0.3s;
}
.btn-purple:focus{
    -webkit-filter: contrast(200%); /* Safari */
    filter: contrast(200%);
    box-shadow: inset 1px 2px 4px rgba(0,0,0,0.08);
    transition: all 0.3s;
}


.btn-outline{
    color: var(--dark-color);
    border: 1px solid var(--dark-color) !important;
    background: transparent;
    transition: all 0.3s;
}
.btn-outline:hover{
    color: #fff !important;
    background: var(--dark-color);
    transition: all 0.3s;
}
.btn-outline:focus{
    color: #fff !important;
    background: var(--dark-color);
    box-shadow: inset 1px 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s;
}


/*================================================
    BANNER
================================================*/
.banner-bg{
    background-position: center !important;
    background-size: cover !important;
}
.banner-gradient{
    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,.35) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,.35) 0%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,.35) 0%, rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,.35) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,1) 100%);
    min-height: 650px;
}
.banner-bg .content{
    font-size: 22px;
    color: #fff;
    font-weight: 300;
    line-height: 23pt;
}
.slider{
    margin-top: 60px;
}
.slider .slide{
    background-repeat: no-repeat !important;
    position: absolute !important;
    width: 100%;
    background-size: cover !important;
}

.background-img{
    position: absolute;
    width: 100%;
    z-index: -1;
    background-size: cover !important;
    background-position: top center !important;
    transition: all 0.3s;
}

.big-text{
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    /*text-shadow: 0 0 80px rgba(0,0,0,.75);*/
    text-transform: uppercase;
}

.login-div{
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    padding: 35px 25px 0;
    max-width: 330px;
    margin: 0 auto;
}
.login-div .FOS{
    color: var(--main-color);
    font-weight: 500;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.login-div span{
    text-transform: uppercase;
    color: var(--main-color);
    font-weight: 300;
    font-size: 13px;
}

a.link{
    color: var(--light-grey);
    font-size: 14px;
    transition: all 0.3s;
}
a.link:hover{
    color: var(--dark-color);
    transition: all 0.3s;
    text-decoration: none;
}

.register-quick-link{
    border-top: 1px solid #eee;
    padding: 15px 0;
    text-align: center;
}
.register-quick-link span{
    color: var(--light-grey);
    text-transform: none;
}
.register-quick-link a.link:hover{
    text-decoration: underline;
}
.register-quick-link a.link{
    color: var(--main-color);
}




.section-heading .FOS{
    color: var(--dark-color);
    font-size: 30px;
    line-height: 30pt;
    text-transform: uppercase;
}
.section-heading span{
    color: var(--light-grey);
}






.service{
    text-align: center;
    width: 20%;
    margin: 0 auto 50px;
}
.service span{
    font-size: 14px;
    color: var(--light-grey);
    line-height: 18pt;
}
.service-icon{
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: block;
}
.service-icon i{
    color: var(--light-grey);
    font-size: 50px;
    line-height: 120px;
}

.service-title{
    color: var(--main-color);
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.table-setting .table{
    max-width: 580px;
    margin: 0 auto;
}
.table-setting .table th{
    color: var(--light-grey) !important;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 0;
    border: 0;
}
.table-setting .table tr td{
    border-top: 0;
    color: var(--dark-color);
    font-size: 17px;
    font-family: 'Oswald';
    font-weight: 400;
    padding: 20px 10px;
    border-bottom: 1px solid var(--main-op2);
    background: rgba(255, 153, 0, 0.1);
    text-align: left;
}
.table-setting .table tr td.phase-name{
    color: var(--main-color);
}
.table-setting .table tr td:first-child{
    background: -moz-linear-gradient(left, rgba(255, 153, 0, 0) 0%, rgba(255, 153, 0, 0.1) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 153, 0, 0) 0%, rgba(255, 153, 0, 0.1) 100%);
    background: -o-linear-gradient(left, rgba(255, 153, 0, 0) 0%, rgba(255, 153, 0, 0.1) 100%);
    background: -ms-linear-gradient(left, rgba(255, 153, 0, 0) 0%, rgba(255, 153, 0, 0.1) 100%);
    background: linear-gradient(to right, rgba(255, 153, 0, 0) 0%, rgba(255, 153, 0, 0.1) 100%);
}
.table-setting .table tr td:last-child{
    background: -moz-linear-gradient(right, rgba(255, 153, 0, 0) 0%, rgba(255, 153, 0, 0.1) 100%);
    background: -webkit-linear-gradient(right, rgba(255, 153, 0, 0) 0%, rgba(255, 153, 0, 0.1) 100%);
    background: -o-linear-gradient(right, rgba(255, 153, 0, 0) 0%, rgba(255, 153, 0, 0.1) 100%);
    background: -ms-linear-gradient(right, rgba(255, 153, 0, 0) 0%, rgba(255, 153, 0, 0.1) 100%);
    background: linear-gradient(to left, rgba(255, 153, 0, 0) 0%, rgba(255, 153, 0, 0.1) 100%);
}


.footer{
    background: var(--darkx2-color);
}
.footer .navbar-brand{
    position: relative;
    margin-right: 0;
    margin-bottom: 80px;
}
.footer .navbar-brand img{
    max-width: 80%;
}
.footer .color-bg{
    background: rgba(11,11,11,0.7);
}

.footer .content{
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 18px;
}

.footer .link-title{
    font-weight: 700;
    color: var(--dark-color);
}

.footer a {
    color: #fff;
    font-size: 17px;
    text-decoration: none !important;
    transition: all 0.3s;
}

.footer a:hover{
    color: var(--main-color);
    transition: all 0.3s;
}


.overlay{
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.overlay.show{
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
}

@media screen and (max-width: 992px) {

    nav.navbar #navbar-toggler{
        z-index: 99;
        color: #fff !important;
    }

    .main-menu{
        background: #fff;
        position: fixed;
        top: 0;
        bottom: 0;
        width: 280px;
        right: 0;
        z-index: 9999;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        display: block;
        transform: translateX(280px);
        transition: transform 0.5s;
    }
    .main-menu.open{
        transform: translateX(0px);
        transition: transform 0.4s;
    }
    .navbar .navbar-nav{
        display: block;
        float: none !important;
    }

    .navbar .navbar-nav .nav-item{
        margin-left: 0;
    }

    .navbar .navbar-nav .nav-link{
        padding: 15px;
        font-size: 15px;
    }
    .user-menu .nav-link{
        color: var(--dark-color) !important;
        background: #fff;
    }
    .user-menu .back-menu .nav-link{
        background: rgba(0,0,0,0.1) !important;
    }
    .user-menu .nav-link:hover{
        color: var(--main-color) !important;
        background: var(--main-op2);
    }
    .user-menu .nav-link:focus{
        color: #fff !important;
        background: var(--main-color);
    }

    .bounce,.fadein,.fadedown,.fadeleft,.slideright,
    .fadeup,.faderight,.slideup,.slideleft,.slidedown,.zoomin{
        opacity: 1;
    }
    .service-icon{
        width: 90px;
        height: 90px;
    }
    .service-icon i{
        line-height: 90px;
    }
}

@media screen and (max-width: 767px) {
    .top-bar{
        display: none;
    }
    .slider{
        margin-top: -50px;
        margin-bottom: 150px;
    }
    .service{
        width: 33.33%;
    }
    .service-icon{
        width: 90px;
        height: 90px;
    }
    .service-icon i{
        line-height: 90px;
    }
}
@media screen and (max-width: 576px) {
    .banner-bg .content{
        font-size: 18px;
        color: #fff;
        font-weight: 300;
        line-height: 23pt;
    }
    .big-text{
        font-size: 36px;
        font-weight: 500;
        color: #fff;
        text-shadow: 0 0 80px rgba(0,0,0,.75);
        text-transform: uppercase;
    }
}

@media screen and (max-width: 450px) {
    .service{
        width: 100%;
    }
    .service-icon{
        width: 90px;
        height: 90px;
    }
    .service-icon i{
        line-height: 90px;
    }

    .table-setting .table{
        min-width: 420px;
    }
}.timeline ul {  background: transparent;  padding: 50px 0;}.timeline ul li {  list-style-type: none;  position: relative;  width: 6px;  margin: 0 auto;  padding-top: 50px;  background: #eee;}.timeline ul li::after {  content: '';  position: absolute;  left: 50%;  bottom: 0;  transform: translateX(-50%);  width: 30px;  height: 30px;  border-radius: 50%;  background: inherit;}.timeline ul li div {  position: relative;  bottom: 0;  width: 400px;  padding: 15px;  background: #FF9900;   color: #fff;}.timeline ul li div::before {  content: '';  position: absolute;  bottom: 7px;  width: 0;  height: 0;  border-style: solid;}.timeline ul li:nth-child(odd) div {  left: 45px;}.timeline ul li:nth-child(odd) div::before {  left: -15px;  border-width: 8px 16px 8px 0;  border-color: transparent #FF9900 transparent transparent;}.timeline ul li:nth-child(even) div {  left: -439px;}.timeline ul li:nth-child(even) div::before {  right: -15px;  border-width: 8px 0 8px 16px;  border-color: transparent transparent transparent #FF9900;}time {  display: block;  font-size: 1.2rem;  font-weight: bold;  margin-bottom: 8px;}/* EFFECTS–––––––––––––––––––––––––––––––––––––––––––––––––– */.timeline ul li::after {  transition: background .5s ease-in-out;}.timeline ul li.in-view::after {  background: #FF9900;}.timeline ul li div {  visibility: hidden;  opacity: 0;  transition: all .5s ease-in-out;}.timeline ul li:nth-child(odd) div {  transform: translate3d(200px, 0, 0);}.timeline ul li:nth-child(even) div {  transform: translate3d(-200px, 0, 0);}.timeline ul li.in-view div {  transform: none;  visibility: visible;  opacity: 1;}/* GENERAL MEDIA QUERIES–––––––––––––––––––––––––––––––––––––––––––––––––– */@media screen and (max-width: 900px) {  .timeline ul li div {    width: 250px;  }  .timeline ul li:nth-child(even) div {    left: -289px;    /*250+45-6*/  }}@media screen and (max-width: 600px) {  .timeline ul li {    margin-left: 20px;  }  .timeline ul li div {    width: calc(100vw - 91px);  }  .timeline ul li:nth-child(even) div {    left: 45px;  }  .timeline ul li:nth-child(even) div::before {    left: -15px;    border-width: 8px 16px 8px 0;    border-color: transparent #F45B69 transparent transparent;  }}.timeline ul{    	padding-top:0px;    }