* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    position: relative;
    font-family: Roboto;
}

section {
    padding: 0;
    margin: 0;
}
.main-container {
    min-height: 100vh; /* will cover the 100% of viewport */

    display: block;
    position: relative;
    padding-bottom: 100px; /* height of your footer */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #748553;
    font-size: .9rem;
}

/*------------------------------------------------------------------
  	[header Banner]
------------------------------------------------------------------*/
.header-banner {
    height: 140px;
    border-top: 1px solid #afafaf;
    text-align: center;
    background-image: url('../img/1920x1080/01.jpg');
    background-position: 50% 72%;
}

.header-banner .header-banner-title {
    font-size: 2rem;
    color: #fff;
}

.header-banner .header-banner-text {
    font-size: 1.2rem;
    color: #fff;
    opacity: .8;
}



/*------------------------------------------------------------------
    [Progress Bar]
------------------------------------------------------------------*/
.progress-box .progress {
  box-shadow: none;
  height: 3px;
}

.progress-box .progress-bar {
  transition-duration: 2000ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/*------------------------------------------------------------------
  	[Button]
------------------------------------------------------------------*/
.btn-theme {
    position: relative;
    display: inline-block;
    line-height: 1;
    text-align: center;
    background-image: none;
    border-style: solid;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-theme:focus, .btn-theme:active:focus, .btn-theme.active:focus, .btn-theme.focus, .btn-theme:active.focus, .btn-theme.active.focus {
    outline: none;
}

.btn-theme:hover {
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.btn-theme:hover, .btn-theme:focus, .btn-theme.focus {
    text-decoration: none;
}

.btn-theme:active, .btn-theme.active {
    background-image: none;
    outline: 0;
}

.btn-theme.disabled, .btn-theme[disabled],
fieldset[disabled] .btn-theme {
    cursor: not-allowed;
    box-shadow: none;
    opacity: .65;
    pointer-events: none;
}

.btn-icon {
    position: relative;
    top: 1px;
    margin-right: 10px;
}

.btn-white-bg {
    color: #515769;
    background: #fff;
    border-color: transparent;
    border-width: 0;
}

.btn-white-bg:hover, .btn-white-bg:focus, .btn-white-bg.focus {
    color: #fff;
    background: #17bed2;
    border-color: transparent;
}

.btn-white-brd {
    color: #fff;
    background: transparent;
    border-color: #fff;
    border-width: 2px;
}

.btn-white-brd:hover, .btn-white-brd:focus, .btn-white-brd.focus {
    color: #515769;
    background: #fff;
    border-color: #fff;
}

.btn-default-bg {
    color: #515769;
    background: #f3f4f5;
    border-color: transparent;
    border-width: 0;
}

.btn-default-bg:hover, .btn-default-bg:focus, .btn-default-bg.focus {
    color: #fff;
    background: #17bed2;
    border-color: transparent;
}

.btn-theme-sm {
    font-size: 13px;
    font-weight: 600;
    padding: 15px 40px;
}

.btn-theme-md {
    font-size: 15px;
    font-weight: 600;
    padding: 20px 30px;
}

/*------------------------------------------------------------------
  	[Service]
------------------------------------------------------------------*/
.service {
    background: #fff;
    padding: 30px;
}

.service .service-element,
.service .service-info {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.service .service-icon {
    display: block;
    font-size: 30px;
    color: #999caa;
    margin-bottom: 30px;
}

.service:hover .service-element {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.service:hover .service-info {
    -webkit-transform: translate3d(0, -30%, 0);
    -moz-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}


/*------------------------------------------------------------------
  	[Text Colors]
------------------------------------------------------------------*/
.color-base {
    color: #17bed2 !important;
}

.color-white {
    color: #fff !important;
}

.color-heading {
    color: #515769 !important;
}

.color-subtitle {
    color: #a6a7aa !important;
}

.color-link {
    color: #81848f !important;
}

.color-link-hover {
    color: #999caa !important;
}

.color-sky-light {
    color: #fafafa !important;
}

/*------------------------------------------------------------------
  	[Background Colors]
------------------------------------------------------------------*/
.bg-color-base {
    background: #17bed2 !important;
}

.bg-color-white {
    background: #fff !important;
}

.bg-color-heading {
    background: #515769 !important;
}

.bg-color-subtitle {
    background: #a6a7aa !important;
}

.bg-color-link {
    background: #81848f !important;
}

.bg-color-link-hover {
    background: #999caa !important;
}

.bg-color-sky-light {
    background: #fafafa !important;
}




/*------------------------------------------------------------------
  	[Overwrite Bootstrap]
------------------------------------------------------------------*/
.navbar-nav .nav-link {
    color: #fff !important;
}
.navbar-nav .nav-link:hover {
    color: #fdf0ff !important;
    text-decoration: underline;
}

.navbar-brand {
    color: #0a6aa1;
    font-weight: bold;
}

.navbar-dark .navbar-toggler {
    color: #fff !important;
    border-color: rgba(255,255,255,.3) !important;
}