/*-------------------------------------------------------------- # General --------------------------------------------------------------*/ body { font-family: "Roboto", Helvetica, Arial, sans-serif; color: #333; font-size: 16px; } a { color: #3f51b5; text-decoration: none; } a:hover { color: #4b5ec8; text-decoration: none; } .color--primary { color: #3f51b5; } /*-------------------------------------------------------------- # Back to top button --------------------------------------------------------------*/ .back-to-top { position: fixed; visibility: hidden; opacity: 0; right: 15px; bottom: 15px; z-index: 996; background: #3f51b5; 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: #4b5ec8; color: #fff; } .back-to-top.active { visibility: visible; opacity: 1; } /*-------------------------------------------------------------- # Header --------------------------------------------------------------*/ #header { background: rgba(0, 0, 0, 0.75); transition: all 0.5s; z-index: 997; height: 80px; } #header .logo { font-size: 28px; margin: 0; padding: 0; line-height: 1; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; } #header .logo a { color: #fff; } #header .logo img { max-height: 40px; } /*-------------------------------------------------------------- # 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>ul>li { white-space: nowrap; padding: 10px 0 10px 22px; } .navbar a, .navbar a:focus { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; font-size: 16px; font-weight: 500; color: rgba(255, 255, 255, 0.7); white-space: nowrap; transition: 0.3s; text-transform: uppercase; position: relative; } .navbar a i, .navbar a:focus i { font-size: 12px; line-height: 0; margin-left: 5px; } .navbar>ul>li>a:before { content: ""; position: absolute; width: 100%; height: 2px; bottom: -6px; left: 0; background-color: #3f51b5; visibility: hidden; width: 0px; transition: all 0.3s ease-in-out 0s; } .navbar a:hover:before, .navbar li:hover>a:before, .navbar .active:before { visibility: visible; width: 100%; } .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a { color: #fff; } .navbar .getstarted { padding: 8px 25px; margin-left: 12px; border-radius: 4px; color: #fff; font-weight: 400; border: 2px solid #3f51b5; } .navbar .getstarted:hover { color: #fff; background: #3f51b5; } .navbar .getstarted:hover:before, .navbar li:hover>.getstarted:before { visibility: hidden; } .navbar .dropdown ul { display: block; position: absolute; left: 22px; 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-weight: 500; text-transform: none; color: #2a2a2a; } .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: #3f51b5; } .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: #fff; font-size: 28px; cursor: pointer; display: none; line-height: 0; transition: 0.5s; } .mobile-nav-toggle img { width: 36px; } .mobile-nav-toggle.bi-x { color: #3f51b5; } @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(17, 17, 17, 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: #2a2a2a; } .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a { color: #3f51b5; } .navbar-mobile>ul>li { white-space: nowrap; padding: 0; } .navbar-mobile a:hover:before, .navbar-mobile li:hover>a:before, .navbar-mobile .active:before { visibility: hidden; } .navbar-mobile .getstarted { margin: 15px; color: #3f51b5; padding-left: 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: #3f51b5; } .navbar-mobile .dropdown>.dropdown-active { display: block; } /*-------------------------------------------------------------- # Hero Section --------------------------------------------------------------*/ #hero { width: 100%; height: 100vh; background-color: rgba(17, 17, 17, 0.8); overflow: hidden; padding: 0; } #hero .carousel-item { width: 100%; height: 100vh; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; transition: 0.3; } #hero .carousel-item::before { content: ''; background-color: rgba(0, 0, 0, 0.5); position: absolute; 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: 16px; font-size: 48px; font-weight: 700; } #hero h2 span { color: #3f51b5; } #hero p { margin: 0 auto 30px; color: #fff; font-size: 24px; } #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-next-icon, #hero .carousel-control-prev-icon { background: none; font-size: 30px; line-height: 0; width: auto; height: auto; background: rgba(255, 255, 255, 0.2); border-radius: 50px; transition: 0.3s; color: rgba(255, 255, 255, 0.5); width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; } #hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover { background: rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.8); } #hero .carousel-indicators li { cursor: pointer; background: #fff; overflow: hidden; border: 0; width: 12px; height: 12px; border-radius: 50px; opacity: .6; transition: 0.3s; } #hero .carousel-indicators li.active { opacity: 1; background: #3f51b5; } @media (max-width: 768px) { #hero h2 { font-size: 30px; } #hero p { font-size: 18px; } } @media (min-width: 1024px) { #hero .carousel-control-prev, #hero .carousel-control-next { width: 5%; } } /*-------------------------------------------------------------- # Sections General --------------------------------------------------------------*/ section { padding: 60px 0 24px; } .section-bg { background-color: #f8f8f8; } .section-title { text-align: center; padding-bottom: 30px; } .section h2 { font-size: 32px; font-weight: bold; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 0; } .section-title p { margin-bottom: 0; } /*-------------------------------------------------------------- # About --------------------------------------------------------------*/ .about { padding-top: 0; background-color: #3f51b5; padding-bottom: 60px; } .about .content p { margin-bottom: 24px; } .about .content p:last-child { margin-bottom: 0; } .about .content b { color: #3f51b5; } /*-------------------------------------------------------------- # Counts --------------------------------------------------------------*/ .counts { padding: 30px 0; background-color: #3f51b5; } .counts .count-box { padding: 16px; width: 100%; text-align: center; } .counts .count-box span { font-size: 48px; line-height: 40px; display: inline-block; font-weight: 700; color: #fff; } .counts .count-box p { padding: 15px 0 0 0; margin: 0; color: #fff; } /*-------------------------------------------------------------- # profile --------------------------------------------------------------*/ .profile { background-color: #ffffff; padding: 46px 32px; } .profile .section-title { text-align: left; color: #3f51b5; padding: 0; } @media (min-width: 992px) { .profile { padding: 60px 100px; } } /*-------------------------------------------------------------- # founder --------------------------------------------------------------*/ .founder { padding: 60px 0; } .founder img { width: 100%; } .founder h2 { margin: 0; } .founder h3 { font-size: 20px; color: #3f51b5; font-weight: normal; margin-top: 16px; } .founder p { margin: 8px 0 0 0; } /*-------------------------------------------------------------- # Clients --------------------------------------------------------------*/ .clients { padding: 60px 0; text-align: center; } .clients .section-title { padding-bottom: 12px; } .clients .row { animation: scrollToRight-clients 36s linear infinite; } .clients h2 { color: #333; } .clients img { width: 100%; margin-top: 16px; } /*-------------------------------------------------------------- # Services --------------------------------------------------------------*/ .services .icon-box { margin-bottom: 20px; text-align: center; } .services .icon { display: inline-flex; justify-content: center; align-items: center; width: 80px; height: 80px; margin-bottom: 20px; background: #fff; border-radius: 50%; transition: 0.5s; color: #3f51b5; overflow: hidden; box-shadow: 0px 0 10px rgba(0, 0, 0, 0.15); } .services .icon img { width: 50px; } .services .title { font-weight: 600; margin-bottom: 15px; font-size: 20px; position: relative; padding-bottom: 15px; } .services .title a { color: #444444; transition: 0.3s; } .services .title a:hover { color: #3f51b5; } .services .title::after { content: ''; position: absolute; display: block; width: 50px; height: 2px; background: #3f51b5; bottom: 0; left: calc(50% - 25px); } .services .description { line-height: 24px; } /*-------------------------------------------------------------- # Contact --------------------------------------------------------------*/ .contact .contact-info { margin-bottom: 20px; text-align: center; } .contact .contact-info i { font-size: 48px; display: inline-block; margin-bottom: 10px; color: #3f51b5; } .contact .contact-info address, .contact .contact-info p { margin-bottom: 0; color: #000; } .contact .contact-info h3 { font-size: 18px; margin-bottom: 15px; font-weight: bold; text-transform: uppercase; color: #999; } .contact .contact-info a { color: #000; } .contact .contact-info a:hover { color: #3f51b5; } .contact .contact-address, .contact .contact-phone, .contact .contact-email { margin-bottom: 20px; } @-webkit-keyframes animate-loading { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes animate-loading { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @media (min-width: 768px) { .contact .contact-phone { border-left: 1px solid #ddd; border-right: 1px solid #ddd; } .contact .contact-address, .contact .contact-phone, .contact .contact-email { padding: 20px 0; } } /*-------------------------------------------------------------- # Footer --------------------------------------------------------------*/ #footer { background: #111111; padding: 0 0 30px 0; color: #fff; font-size: 14px; } #footer .footer-top { background: #1d1d1d; border-bottom: 1px solid #2f2f2f; padding: 50px 0; } #footer .footer-top h4 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 8px; } #footer .footer-top .qrcode-wrap { padding: 10px 0; } #footer .copyright { text-align: center; padding-top: 30px; } #footer .credits { padding-top: 10px; text-align: center; font-size: 13px; color: #fff; }