123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505 |
- /**
- * Template Name: Scaffold - v4.2.0
- * Template URL: https://bootstrapmade.com/scaffold-bootstrap-metro-style-template/
- * Author: BootstrapMade.com
- * License: https://bootstrapmade.com/license/
- */
- /*--------------------------------------------------------------
- # General
- --------------------------------------------------------------*/
- body {
- font-family: "Open Sans", sans-serif;
- color: #444444;
- }
-
- a {
- color: #009cea;
- text-decoration: none;
- }
-
- a:hover {
- color: #1eb4ff;
- text-decoration: none;
- }
-
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-family: "Raleway", sans-serif;
- }
-
- /*--------------------------------------------------------------
- # Back to top button
- --------------------------------------------------------------*/
- .back-to-top {
- position: fixed;
- visibility: hidden;
- opacity: 0;
- right: 15px;
- bottom: 15px;
- z-index: 996;
- background: #009cea;
- width: 40px;
- height: 40px;
- border-radius: 4px;
- transition: all 0.4s;
- }
-
- .back-to-top i {
- font-size: 28px;
- color: #fff;
- line-height: 0;
- }
-
- .back-to-top:hover {
- background: #14b1ff;
- color: #fff;
- }
-
- .back-to-top.active {
- visibility: visible;
- opacity: 1;
- }
-
- /*--------------------------------------------------------------
- # Disable AOS delay on mobile
- --------------------------------------------------------------*/
- @media screen and (max-width: 768px) {
- [data-aos-delay] {
- transition-delay: 0 !important;
- }
- }
-
- /*--------------------------------------------------------------
- # Header
- --------------------------------------------------------------*/
- #header {
- height: 72px;
- transition: all 0.5s;
- z-index: 997;
- transition: all 0.5s;
- background: #fff;
- }
-
- #header.header-scrolled {
- box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
- }
-
- #header .logo h1 {
- font-size: 28px;
- margin: 0;
- line-height: 0;
- font-weight: 600;
- letter-spacing: 1px;
- font-family: "Open Sans", sans-serif;
- }
-
- #header .logo h1 a,
- #header .logo h1 a:hover {
- color: #576971;
- text-decoration: none;
- }
-
- #header .logo img {
- padding: 0;
- margin: 0;
- max-height: 40px;
- }
-
- /*--------------------------------------------------------------
- # Header Social Links
- --------------------------------------------------------------*/
- .header-social-links {
- margin: 0 0 0 30px;
- }
-
- @media (max-width: 768px) {
- .header-social-links {
- margin: 0 15px 0 0;
- }
- }
-
- .header-social-links a {
- color: #7b909a;
- display: inline-block;
- line-height: 0px;
- transition: 0.3s;
- padding-left: 10px;
- }
-
- .header-social-links a:hover {
- color: #009cea;
- }
-
- /*--------------------------------------------------------------
- # 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 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10px 0 10px 30px;
- font-size: 15px;
- font-family: "Poppins", sans-serif;
- color: #7b909a;
- white-space: nowrap;
- transition: 0.3s;
- }
-
- .navbar a i {
- font-size: 12px;
- line-height: 0;
- margin-left: 5px;
- }
-
- .navbar a:hover,
- .navbar .active,
- .navbar li:hover > a {
- color: #009cea;
- }
-
- .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: 14px;
- color: #003651;
- }
-
- .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: #009cea;
- }
-
- .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: #364146;
- 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(32, 38, 41, 0.9);
- 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 {
- padding: 10px 20px;
- font-size: 15px;
- color: #364146;
- }
-
- .navbar-mobile a:hover,
- .navbar-mobile .active,
- .navbar-mobile li:hover > a {
- color: #009cea;
- }
-
- .navbar-mobile .getstarted {
- 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: #009cea;
- }
-
- .navbar-mobile .dropdown > .dropdown-active {
- display: block;
- }
-
- /*--------------------------------------------------------------
- # Footer
- --------------------------------------------------------------*/
- #footer {
- background: #f7f8f9;
- padding: 0 0 30px 0;
- color: #364146;
- font-size: 14px;
- }
-
- #footer .footer-top {
- background: #fff;
- padding: 60px 0 30px 0;
- border-top: 2px solid #e9ecee;
- border-bottom: 2px solid #e9ecee;
- }
-
- #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: "Raleway", sans-serif;
- color: #576971;
- }
-
- #footer .footer-top .social-links a {
- font-size: 18px;
- display: inline-block;
- background: #e9ecee;
- color: #8a9ca5;
- 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: #009cea;
- color: #fff;
- text-decoration: none;
- }
-
- #footer .footer-top h4 {
- font-size: 16px;
- font-weight: 600;
- color: #364146;
- 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: #009cea;
- font-size: 18px;
- line-height: 1;
- margin-left: -5px;
- }
-
- #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: #576971;
- transition: 0.3s;
- display: inline-block;
- line-height: 1;
- }
-
- #footer .footer-top .footer-links ul a:hover {
- color: #009cea;
- }
-
- #footer .footer-top .footer-newsletter form {
- margin-top: 30px;
- background: #fff;
- padding: 6px 10px;
- position: relative;
- border-radius: 4px;
- border: 1px solid #e3e7e9;
- }
-
- #footer .footer-top .footer-newsletter form input[type="email"] {
- border: 0;
- padding: 4px;
- width: calc(100% - 110px);
- outline: none;
- }
-
- #footer .footer-top .footer-newsletter form input[type="submit"] {
- position: absolute;
- top: -1px;
- right: -2px;
- bottom: -1px;
- border: 0;
- background: none;
- font-size: 16px;
- padding: 0 20px;
- background: #009cea;
- color: #fff;
- transition: 0.3s;
- border-radius: 0 4px 4px 0;
- }
-
- #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
- background: #007ab7;
- }
-
- #footer .copyright {
- text-align: center;
- padding-top: 30px;
- }
-
- #footer .credits {
- padding-top: 8px;
- text-align: center;
- font-size: 13px;
- color: #364146;
- }
-
|