634 lines
No EOL
11 KiB
CSS
634 lines
No EOL
11 KiB
CSS
/*--------------------------------------------------------------
|
|
# General
|
|
--------------------------------------------------------------*/
|
|
body {
|
|
font-family: "Open Sans", sans-serif;
|
|
color: #334240;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #1bbca3;
|
|
}
|
|
|
|
a:hover {
|
|
color: #2ae0c4;
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: "Roboto", sans-serif;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Back to top button
|
|
--------------------------------------------------------------*/
|
|
.back-to-top {
|
|
position: fixed;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
right: 15px;
|
|
bottom: 15px;
|
|
z-index: 99999;
|
|
background: #1bbca3;
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 4px;
|
|
transition: all 0.4s;
|
|
}
|
|
|
|
.back-to-top i {
|
|
font-size: 24px;
|
|
color: #fff;
|
|
line-height: 0;
|
|
}
|
|
|
|
.back-to-top:hover {
|
|
background: #21dfc2;
|
|
color: #fff;
|
|
}
|
|
|
|
.back-to-top.active {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Header
|
|
--------------------------------------------------------------*/
|
|
#header {
|
|
height: 70px;
|
|
z-index: 997;
|
|
transition: all 0.5s;
|
|
background: #fff;
|
|
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
#header .logo h1 {
|
|
font-size: 28px;
|
|
margin: 0;
|
|
padding: 10px 0;
|
|
line-height: 1;
|
|
font-weight: 400;
|
|
}
|
|
|
|
#header .logo h1 a,
|
|
#header .logo h1 a:hover {
|
|
color: #425451;
|
|
text-decoration: none;
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#header .logo img {
|
|
padding: 0;
|
|
margin: 0;
|
|
max-height: 40px;
|
|
}
|
|
|
|
.scrolled-offset {
|
|
margin-top: 70px;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Navigation Menu
|
|
--------------------------------------------------------------*/
|
|
/**
|
|
* Desktop Navigation
|
|
*/
|
|
.navbar {
|
|
padding: 0;
|
|
}
|
|
|
|
.navbar ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
list-style: none;
|
|
align-items: center;
|
|
}
|
|
|
|
.navbar li {
|
|
position: relative;
|
|
}
|
|
|
|
.navbar a,
|
|
.navbar a:focus {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 10px 0 10px 30px;
|
|
font-family: "Roboto", sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: #637f7b;
|
|
white-space: nowrap;
|
|
transition: 0.3s;
|
|
letter-spacing: 0.3px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.navbar a i,
|
|
.navbar a:focus i {
|
|
font-size: 12px;
|
|
line-height: 0;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.navbar a:hover,
|
|
.navbar .active,
|
|
.navbar .active:focus,
|
|
.navbar li:hover>a {
|
|
color: #1bbca3;
|
|
}
|
|
|
|
.navbar .getstarted,
|
|
.navbar .getstarted:focus {
|
|
background: #1bbca3;
|
|
padding: 8px 20px;
|
|
margin-left: 30px;
|
|
border-radius: 4px;
|
|
color: #fff;
|
|
}
|
|
|
|
.navbar .getstarted:hover,
|
|
.navbar .getstarted:focus:hover {
|
|
color: #fff;
|
|
background: #1ed2b6;
|
|
}
|
|
|
|
.navbar .dropdown ul {
|
|
display: block;
|
|
position: absolute;
|
|
left: 14px;
|
|
top: calc(100% + 30px);
|
|
margin: 0;
|
|
padding: 10px 0;
|
|
z-index: 99;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
background: #fff;
|
|
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.navbar .dropdown ul li {
|
|
min-width: 200px;
|
|
}
|
|
|
|
.navbar .dropdown ul a {
|
|
padding: 10px 20px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
text-transform: none;
|
|
}
|
|
|
|
.navbar .dropdown ul a i {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.navbar .dropdown ul a:hover,
|
|
.navbar .dropdown ul .active:hover,
|
|
.navbar .dropdown ul li:hover>a {
|
|
color: #1bbca3;
|
|
}
|
|
|
|
.navbar .dropdown:hover>ul {
|
|
opacity: 1;
|
|
top: 100%;
|
|
visibility: visible;
|
|
}
|
|
|
|
.navbar .dropdown .dropdown ul {
|
|
top: 0;
|
|
left: calc(100% - 30px);
|
|
visibility: hidden;
|
|
}
|
|
|
|
.navbar .dropdown .dropdown:hover>ul {
|
|
opacity: 1;
|
|
top: 0;
|
|
left: 100%;
|
|
visibility: visible;
|
|
}
|
|
|
|
@media (max-width: 1366px) {
|
|
.navbar .dropdown .dropdown ul {
|
|
left: -90%;
|
|
}
|
|
|
|
.navbar .dropdown .dropdown:hover>ul {
|
|
left: -100%;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Mobile Navigation
|
|
*/
|
|
.mobile-nav-toggle {
|
|
color: #58716d;
|
|
font-size: 28px;
|
|
cursor: pointer;
|
|
display: none;
|
|
line-height: 0;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.mobile-nav-toggle.bi-x {
|
|
color: #fff;
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.mobile-nav-toggle {
|
|
display: block;
|
|
}
|
|
|
|
.navbar ul {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.navbar-mobile {
|
|
position: fixed;
|
|
overflow: hidden;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
background: rgba(21, 27, 26, 0.8);
|
|
transition: 0.3s;
|
|
z-index: 999;
|
|
}
|
|
|
|
.navbar-mobile .mobile-nav-toggle {
|
|
position: absolute;
|
|
top: 15px;
|
|
right: 15px;
|
|
}
|
|
|
|
.navbar-mobile ul {
|
|
display: block;
|
|
position: absolute;
|
|
top: 55px;
|
|
right: 15px;
|
|
bottom: 15px;
|
|
left: 15px;
|
|
padding: 10px 0;
|
|
background-color: #fff;
|
|
overflow-y: auto;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.navbar-mobile a,
|
|
.navbar-mobile a:focus {
|
|
padding: 10px 20px;
|
|
font-size: 15px;
|
|
color: #58716d;
|
|
}
|
|
|
|
.navbar-mobile a:hover,
|
|
.navbar-mobile .active,
|
|
.navbar-mobile li:hover>a {
|
|
color: #1bbca3;
|
|
}
|
|
|
|
.navbar-mobile .getstarted,
|
|
.navbar-mobile .getstarted:focus {
|
|
margin: 15px;
|
|
}
|
|
|
|
.navbar-mobile .dropdown ul {
|
|
position: static;
|
|
display: none;
|
|
margin: 10px 20px;
|
|
padding: 10px 0;
|
|
z-index: 99;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
background: #fff;
|
|
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
|
|
}
|
|
|
|
.navbar-mobile .dropdown ul li {
|
|
min-width: 200px;
|
|
}
|
|
|
|
.navbar-mobile .dropdown ul a {
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.navbar-mobile .dropdown ul a i {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.navbar-mobile .dropdown ul a:hover,
|
|
.navbar-mobile .dropdown ul .active:hover,
|
|
.navbar-mobile .dropdown ul li:hover>a {
|
|
color: #1bbca3;
|
|
}
|
|
|
|
.navbar-mobile .dropdown>.dropdown-active {
|
|
display: block;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Hero Section
|
|
--------------------------------------------------------------*/
|
|
#hero {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background-color: rgba(21, 27, 26, 0.7);
|
|
overflow: hidden;
|
|
padding: 0;
|
|
}
|
|
|
|
#hero .carousel-item {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
#hero .carousel-item::before {
|
|
content: "";
|
|
background-color: rgba(21, 27, 26, 0.7);
|
|
position: absolute;
|
|
height: 100vh;
|
|
width: 100%;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
#hero .carousel-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: absolute;
|
|
bottom: 0;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
#hero .carousel-content {
|
|
text-align: center;
|
|
}
|
|
|
|
#hero h2 {
|
|
color: #fff;
|
|
margin-bottom: 30px;
|
|
font-size: 48px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
#hero p {
|
|
width: 80%;
|
|
animation-delay: 0.4s;
|
|
margin: 0 auto 30px auto;
|
|
color: #fff;
|
|
}
|
|
|
|
#hero .carousel-inner .carousel-item {
|
|
transition-property: opacity;
|
|
background-position: center top;
|
|
}
|
|
|
|
#hero .carousel-inner .carousel-item,
|
|
#hero .carousel-inner .active.carousel-item-start,
|
|
#hero .carousel-inner .active.carousel-item-end {
|
|
opacity: 0;
|
|
}
|
|
|
|
#hero .carousel-inner .active,
|
|
#hero .carousel-inner .carousel-item-next.carousel-item-start,
|
|
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
|
|
opacity: 1;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
#hero .carousel-inner .carousel-item-next,
|
|
#hero .carousel-inner .carousel-item-prev,
|
|
#hero .carousel-inner .active.carousel-item-start,
|
|
#hero .carousel-inner .active.carousel-item-end {
|
|
left: 0;
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
#hero .carousel-control-prev,
|
|
#hero .carousel-control-next {
|
|
width: 10%;
|
|
}
|
|
|
|
#hero .carousel-control-next-icon,
|
|
#hero .carousel-control-prev-icon {
|
|
background: none;
|
|
font-size: 48px;
|
|
line-height: 1;
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
|
|
#hero .carousel-indicators li {
|
|
list-style-type: none;
|
|
cursor: pointer;
|
|
opacity: 1;
|
|
}
|
|
|
|
#hero .carousel-indicators .active {
|
|
background-color: #1bbca3;
|
|
}
|
|
|
|
#hero .btn-get-started {
|
|
font-family: "Roboto", sans-serif;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
letter-spacing: 1px;
|
|
display: inline-block;
|
|
padding: 12px 32px;
|
|
border-radius: 50px;
|
|
transition: 0.5s;
|
|
line-height: 1;
|
|
margin: 10px;
|
|
color: #fff;
|
|
animation-delay: 0.8s;
|
|
border: 2px solid #1bbca3;
|
|
}
|
|
|
|
#hero .btn-get-started:hover {
|
|
background: #1bbca3;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
#hero h2 {
|
|
font-size: 28px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
#hero p {
|
|
width: 60%;
|
|
}
|
|
|
|
#hero .carousel-control-prev,
|
|
#hero .carousel-control-next {
|
|
width: 5%;
|
|
}
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
# Footer
|
|
--------------------------------------------------------------*/
|
|
#footer {
|
|
background: #344341;
|
|
padding: 0 0 30px 0;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
}
|
|
|
|
#footer .footer-top {
|
|
background: #3d4f4c;
|
|
border-bottom: 1px solid #4d635f;
|
|
padding: 60px 0 30px 0;
|
|
}
|
|
|
|
#footer .footer-top .footer-info {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
#footer .footer-top .footer-info h3 {
|
|
font-size: 24px;
|
|
margin: 0 0 20px 0;
|
|
padding: 2px 0 2px 0;
|
|
line-height: 1;
|
|
font-weight: 700;
|
|
}
|
|
|
|
#footer .footer-top .footer-info p {
|
|
font-size: 14px;
|
|
line-height: 24px;
|
|
margin-bottom: 0;
|
|
font-family: "Roboto", sans-serif;
|
|
color: #fff;
|
|
}
|
|
|
|
#footer .footer-top .social-links a {
|
|
font-size: 18px;
|
|
display: inline-block;
|
|
background: #58716d;
|
|
color: #fff;
|
|
line-height: 1;
|
|
padding: 8px 0;
|
|
margin-right: 4px;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
width: 36px;
|
|
height: 36px;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
#footer .footer-top .social-links a:hover {
|
|
background: #1bbca3;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#footer .footer-top h4 {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
position: relative;
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
#footer .footer-top .footer-links {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul i {
|
|
padding-right: 2px;
|
|
color: #56e7d0;
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul li {
|
|
padding: 10px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul li:first-child {
|
|
padding-top: 0;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul a {
|
|
color: #fff;
|
|
transition: 0.3s;
|
|
display: inline-block;
|
|
line-height: 1;
|
|
}
|
|
|
|
#footer .footer-top .footer-links ul a:hover {
|
|
color: #40e4ca;
|
|
}
|
|
|
|
#footer .footer-top .footer-newsletter form {
|
|
margin-top: 30px;
|
|
background: #fff;
|
|
padding: 6px 10px;
|
|
position: relative;
|
|
border-radius: 4;
|
|
}
|
|
|
|
#footer .footer-top .footer-newsletter form input[type=email] {
|
|
border: 0;
|
|
padding: 4px;
|
|
width: calc(100% - 110px);
|
|
}
|
|
|
|
#footer .footer-top .footer-newsletter form input[type=submit] {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
border: 0;
|
|
background: none;
|
|
font-size: 16px;
|
|
padding: 0 20px;
|
|
background: #1bbca3;
|
|
color: #fff;
|
|
transition: 0.3s;
|
|
border-radius: 4;
|
|
}
|
|
|
|
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
|
|
background: #158f7c;
|
|
}
|
|
|
|
#footer .copyright {
|
|
text-align: center;
|
|
padding-top: 30px;
|
|
}
|
|
|
|
#footer .credits {
|
|
padding-top: 10px;
|
|
text-align: center;
|
|
font-size: 13px;
|
|
color: #fff;
|
|
} |