Spaces:
Runtime error
Runtime error
| /*-------------------------------------------------------------- | |
| # General | |
| --------------------------------------------------------------*/ | |
| body { | |
| font-family: "Open Sans", sans-serif; | |
| color: #555555; | |
| } | |
| a { | |
| color: #060641; | |
| } | |
| a:hover { | |
| color: #9ed49a; | |
| text-decoration: none; | |
| } | |
| h1, | |
| h2, | |
| h3, | |
| h4, | |
| h5, | |
| h6 { | |
| font-family: "Montserrat", sans-serif; | |
| } | |
| /*-------------------------------------------------------------- | |
| # Back to top button | |
| --------------------------------------------------------------*/ | |
| .back-to-top { | |
| position: fixed; | |
| display: none; | |
| right: 15px; | |
| bottom: 15px; | |
| z-index: 99999; | |
| } | |
| .back-to-top i { | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-size: 24px; | |
| width: 40px; | |
| height: 40px; | |
| border-radius: 4px; | |
| background: #060641; | |
| color: #fff; | |
| transition: all 0.4s; | |
| } | |
| .back-to-top i:hover { | |
| background: #61b959; | |
| color: #fff; | |
| } | |
| /*-------------------------------------------------------------- | |
| # Disable AOS delay on mobile | |
| --------------------------------------------------------------*/ | |
| @media screen and (max-width: 768px) { | |
| [data-aos-delay] { | |
| transition-delay: 0 ; | |
| } | |
| } | |
| /*-------------------------------------------------------------- | |
| # Header | |
| --------------------------------------------------------------*/ | |
| #header { | |
| height: 100px; | |
| transition: all 0.5s; | |
| z-index: 997; | |
| transition: all 0.5s; | |
| background: #fff; | |
| box-shadow: 0 4px 10px -3px rgba(191, 191, 191, 0.5); | |
| } | |
| #header .logo h1 { | |
| font-size: 28px; | |
| margin: 0; | |
| line-height: 1; | |
| font-weight: 400; | |
| letter-spacing: 3px; | |
| text-transform: uppercase; | |
| } | |
| #header .logo h1 a, | |
| #header .logo h1 a:hover { | |
| color: #fff; | |
| text-decoration: none; | |
| } | |
| #header .logo img { | |
| padding: 0; | |
| margin: 0; | |
| max-height: 40px; | |
| } | |
| @media (max-width: 992px) { | |
| #header { | |
| height: 70px; | |
| } | |
| } | |
| /*-------------------------------------------------------------- | |
| # Navigation Menu | |
| --------------------------------------------------------------*/ | |
| /* Desktop Navigation */ | |
| .nav-menu { | |
| width: 100%; | |
| } | |
| .nav-menu, | |
| .nav-menu * { | |
| margin: 0; | |
| padding: 0; | |
| list-style: none; | |
| } | |
| .nav-menu>ul>li { | |
| position: relative; | |
| white-space: nowrap; | |
| float: left; | |
| } | |
| .nav-menu .nav-inner { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| .nav-menu .nav-logo { | |
| padding: 0 20px; | |
| } | |
| .nav-menu a { | |
| display: block; | |
| position: relative; | |
| color: #151515; | |
| padding: 15px 25px; | |
| transition: 0.3s; | |
| font-size: 15px; | |
| text-transform: uppercase; | |
| font-family: "Open Sans", sans-serif; | |
| } | |
| .nav-menu a:hover, | |
| .nav-menu .active>a, | |
| .nav-menu li:hover>a { | |
| color: #060641; | |
| text-decoration: none; | |
| } | |
| .nav-menu .drop-down ul { | |
| display: block; | |
| position: absolute; | |
| left: 0; | |
| top: calc(100% - 30px); | |
| z-index: 99; | |
| opacity: 0; | |
| visibility: hidden; | |
| padding: 10px 0; | |
| background: #fff; | |
| box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); | |
| transition: ease all 0.3s; | |
| } | |
| .nav-menu .drop-down:hover>ul { | |
| opacity: 1; | |
| top: 100%; | |
| visibility: visible; | |
| } | |
| .nav-menu .drop-down li { | |
| min-width: 180px; | |
| position: relative; | |
| } | |
| .nav-menu .drop-down ul a { | |
| padding: 10px 20px; | |
| font-size: 14px; | |
| font-weight: 400; | |
| color: #151515; | |
| } | |
| .nav-menu .drop-down ul a:hover, | |
| .nav-menu .drop-down ul .active>a, | |
| .nav-menu .drop-down ul li:hover>a { | |
| color: #060641; | |
| } | |
| .nav-menu .drop-down>a:after { | |
| content: "\ea99"; | |
| font-family: IcoFont; | |
| padding-left: 5px; | |
| } | |
| .nav-menu .drop-down .drop-down ul { | |
| top: 0; | |
| left: calc(100% - 30px); | |
| } | |
| .nav-menu .drop-down .drop-down:hover>ul { | |
| opacity: 1; | |
| top: 0; | |
| left: 100%; | |
| } | |
| .nav-menu .drop-down .drop-down>a { | |
| padding-right: 35px; | |
| } | |
| .nav-menu .drop-down .drop-down>a:after { | |
| content: "\eaa0"; | |
| font-family: IcoFont; | |
| position: absolute; | |
| right: 15px; | |
| } | |
| /* Mobile Navigation */ | |
| .mobile-nav-toggle { | |
| position: fixed; | |
| right: 15px; | |
| top: 20px; | |
| z-index: 9998; | |
| border: 0; | |
| background: none; | |
| font-size: 24px; | |
| transition: all 0.4s; | |
| outline: none ; | |
| line-height: 1; | |
| cursor: pointer; | |
| text-align: right; | |
| } | |
| .mobile-nav-toggle i { | |
| color: #060641; | |
| } | |
| .mobile-nav { | |
| position: fixed; | |
| top: 55px; | |
| right: 15px; | |
| bottom: 15px; | |
| left: 15px; | |
| z-index: 9999; | |
| overflow-y: auto; | |
| background: #fff; | |
| transition: ease-in-out 0.2s; | |
| opacity: 0; | |
| visibility: hidden; | |
| border-radius: 10px; | |
| padding: 10px 0; | |
| } | |
| .mobile-nav * { | |
| margin: 0; | |
| padding: 0; | |
| list-style: none; | |
| } | |
| .mobile-nav a { | |
| display: block; | |
| position: relative; | |
| color: #151515; | |
| padding: 10px 20px; | |
| font-weight: 500; | |
| outline: none; | |
| } | |
| .mobile-nav a:hover, | |
| .mobile-nav .active>a, | |
| .mobile-nav li:hover>a { | |
| color: #060641; | |
| text-decoration: none; | |
| } | |
| .mobile-nav .drop-down>a:after { | |
| content: "\ea99"; | |
| font-family: IcoFont; | |
| padding-left: 10px; | |
| position: absolute; | |
| right: 15px; | |
| } | |
| .mobile-nav .active.drop-down>a:after { | |
| content: "\eaa1"; | |
| } | |
| .mobile-nav .drop-down>a { | |
| padding-right: 35px; | |
| } | |
| .mobile-nav .drop-down ul { | |
| display: none; | |
| overflow: hidden; | |
| } | |
| .mobile-nav .drop-down li { | |
| padding-left: 20px; | |
| } | |
| .mobile-nav-overly { | |
| width: 100%; | |
| height: 100%; | |
| z-index: 9997; | |
| top: 0; | |
| left: 0; | |
| position: fixed; | |
| background: rgba(0, 0, 0, 0.6); | |
| overflow: hidden; | |
| display: none; | |
| transition: ease-in-out 0.2s; | |
| } | |
| .mobile-nav-active { | |
| overflow: hidden; | |
| } | |
| .mobile-nav-active .mobile-nav { | |
| opacity: 1; | |
| visibility: visible; | |
| } | |
| .mobile-nav-active .mobile-nav-toggle i { | |
| color: #fff; | |
| } | |
| /*-------------------------------------------------------------- | |
| # Hero Section | |
| --------------------------------------------------------------*/ | |
| #hero { | |
| width: 100%; | |
| height: 100vh; | |
| background: url("../img/hero-bg.jpeg"); | |
| background-repeat: no-repeat; | |
| background-size: cover; | |
| position: relative; | |
| } | |
| #hero .hero-container { | |
| position: absolute; | |
| bottom: 0; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| flex-direction: column; | |
| text-align: center; | |
| padding: 0 15px; | |
| } | |
| #hero .hero-logo { | |
| margin-bottom: 30px; | |
| } | |
| #hero h1 { | |
| margin: 0 0 30px 0; | |
| font-size: 48px; | |
| font-weight: 500; | |
| line-height: 56px; | |
| color: #fff; | |
| } | |
| #hero h2 { | |
| color: #aeaeae; | |
| margin-bottom: 30px; | |
| font-size: 14px; | |
| font-weight: 400; | |
| text-transform: uppercase; | |
| } | |
| #hero .btn-get-started { | |
| font-family: "Montserrat", sans-serif; | |
| text-transform: uppercase; | |
| font-weight: 400; | |
| font-size: 16px; | |
| letter-spacing: 1px; | |
| display: inline-block; | |
| padding: 14px 30px; | |
| border-radius: 3px; | |
| transition: 0.5s; | |
| margin: 10px; | |
| color: #fff; | |
| background: #060641; | |
| } | |
| #hero .btn-get-started:hover { | |
| background: #fff; | |
| color: #060641; | |
| } | |
| @media (min-width: 1024px) { | |
| #hero { | |
| background-attachment: fixed; | |
| } | |
| } | |
| @media (max-width: 768px) { | |
| #hero h1 { | |
| font-size: 28px; | |
| line-height: 36px; | |
| } | |
| #hero h2 { | |
| line-height: 22px; | |
| } | |
| } | |
| /*-------------------------------------------------------------- | |
| # Sections General | |
| --------------------------------------------------------------*/ | |
| section { | |
| padding: 60px 0; | |
| overflow: hidden; | |
| } | |
| .section-bg { | |
| background-color: whitesmoke; | |
| } | |
| .section-title { | |
| text-align: center; | |
| padding-bottom: 40px; | |
| } | |
| .section-title h2 { | |
| font-size: 32px; | |
| font-weight: bold; | |
| text-transform: uppercase; | |
| margin-bottom: 15px; | |
| padding-bottom: 0; | |
| color: #151515; | |
| } | |
| .section-title p { | |
| margin-bottom: 0; | |
| color: #aeaeae; | |
| } | |
| /*-------------------------------------------------------------- | |
| # About Us | |
| --------------------------------------------------------------*/ | |
| .about .image { | |
| padding: 20px; | |
| box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); | |
| } | |
| .about .content h3 { | |
| font-weight: 600; | |
| font-size: 26px; | |
| } | |
| .about .content ul { | |
| list-style: none; | |
| padding: 0; | |
| } | |
| .about .content ul li { | |
| padding-bottom: 10px; | |
| display: flex; | |
| align-items: flex-start; | |
| } | |
| .about .content ul i { | |
| font-size: 24px; | |
| padding: 2px 6px 0 0; | |
| color: #060641; | |
| } | |
| .about .content p:last-child { | |
| margin-bottom: 0; | |
| } | |
| /*-------------------------------------------------------------- | |
| # Services | |
| --------------------------------------------------------------*/ | |
| .services .icon-box h4 { | |
| font-size: 20px; | |
| font-weight: 700; | |
| margin: 5px 0 10px 60px; | |
| } | |
| .services .icon-box i { | |
| font-size: 48px; | |
| float: left; | |
| color: #1e1e5a; | |
| } | |
| .services .icon-box p { | |
| font-size: 15px; | |
| color: #959595; | |
| margin-left: 60px; | |
| } | |
| .services .image { | |
| background-position: center center; | |
| background-repeat: no-repeat; | |
| background-size: cover; | |
| min-height: 400px; | |
| } | |
| /*-------------------------------------------------------------- | |
| # Featured | |
| --------------------------------------------------------------*/ | |
| .featured { | |
| padding: 40px 0 0 0; | |
| background: white; | |
| } | |
| .featured .nav-tabs { | |
| border: 0; | |
| } | |
| .featured .nav-link { | |
| border: 0; | |
| padding: 20px; | |
| color: #151515; | |
| transition: 0.3s; | |
| } | |
| .featured .nav-link h4 { | |
| font-size: 18px; | |
| font-weight: 600; | |
| transition: 0.3s; | |
| } | |
| .featured .nav-link:hover h4 { | |
| color: #060641; | |
| } | |
| .featured .nav-link p { | |
| font-size: 14px; | |
| margin-bottom: 0; | |
| } | |
| .featured .nav-link.active { | |
| box-shadow: 0px 0 25px rgba(0, 0, 0, 0.08); | |
| } | |
| .featured .nav-link.active h4 { | |
| color: #060641; | |
| } | |
| .featured .tab-pane.active { | |
| -webkit-animation: slide-down 0.5s ease-out; | |
| animation: slide-down 0.5s ease-out; | |
| } | |
| @-webkit-keyframes slide-down { | |
| 0% { | |
| opacity: 0; | |
| } | |
| 100% { | |
| opacity: 1; | |
| } | |
| } | |
| @keyframes slide-down { | |
| 0% { | |
| opacity: 0; | |
| } | |
| 100% { | |
| opacity: 1; | |
| } | |
| } | |
| /*-------------------------------------------------------------- | |
| # Why Us | |
| --------------------------------------------------------------*/ | |
| .why-us { | |
| background: whitesmoke; | |
| padding: 0; | |
| } | |
| .why-us .content { | |
| padding: 60px 100px 0 100px; | |
| } | |
| .why-us .content h3 { | |
| font-weight: 400; | |
| font-size: 34px; | |
| } | |
| .why-us .content h4 { | |
| font-size: 20px; | |
| font-weight: 700; | |
| margin-top: 5px; | |
| } | |
| .why-us .content p { | |
| font-size: 15px; | |
| color: #959595; | |
| } | |
| .why-us .video-box { | |
| background-size: cover; | |
| background-repeat: no-repeat; | |
| background-position: center center; | |
| min-height: 400px; | |
| position: relative; | |
| } | |
| .why-us .accordion-list { | |
| padding: 0 100px 60px 100px; | |
| } | |
| .why-us .accordion-list ul { | |
| padding: 0; | |
| list-style: none; | |
| } | |
| .why-us .accordion-list li+li { | |
| margin-top: 15px; | |
| } | |
| .why-us .accordion-list li { | |
| padding: 20px; | |
| background: #fff; | |
| border-radius: 4px; | |
| } | |
| .why-us .accordion-list a { | |
| display: block; | |
| position: relative; | |
| font-family: "Poppins", sans-serif; | |
| font-size: 16px; | |
| line-height: 24px; | |
| font-weight: 500; | |
| padding-right: 30px; | |
| outline: none; | |
| } | |
| .why-us .accordion-list span { | |
| color: #060641; | |
| font-weight: 600; | |
| font-size: 18px; | |
| padding-right: 10px; | |
| } | |
| .why-us .accordion-list i { | |
| font-size: 24px; | |
| position: absolute; | |
| right: 0; | |
| top: 0; | |
| } | |
| .why-us .accordion-list p { | |
| margin-bottom: 0; | |
| padding: 10px 0 0 0; | |
| } | |
| .why-us .accordion-list .icon-show { | |
| display: none; | |
| } | |
| .why-us .accordion-list a.collapsed { | |
| color: #343a40; | |
| } | |
| .why-us .accordion-list a.collapsed:hover { | |
| color: #060641; | |
| } | |
| .why-us .accordion-list a.collapsed .icon-show { | |
| display: inline-block; | |
| } | |
| .why-us .accordion-list a.collapsed .icon-close { | |
| display: none; | |
| } | |
| .why-us .play-btn { | |
| width: 94px; | |
| height: 94px; | |
| background: radial-gradient(#060641 50%, rgba(124, 197, 118, 0.4) 52%); | |
| border-radius: 50%; | |
| display: block; | |
| position: absolute; | |
| left: calc(50% - 47px); | |
| top: calc(50% - 47px); | |
| overflow: hidden; | |
| } | |
| .why-us .play-btn::after { | |
| content: ''; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translateX(-40%) translateY(-50%); | |
| width: 0; | |
| height: 0; | |
| border-top: 10px solid transparent; | |
| border-bottom: 10px solid transparent; | |
| border-left: 15px solid #fff; | |
| z-index: 100; | |
| transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19); | |
| } | |
| .why-us .play-btn::before { | |
| content: ''; | |
| position: absolute; | |
| width: 120px; | |
| height: 120px; | |
| -webkit-animation-delay: 0s; | |
| animation-delay: 0s; | |
| -webkit-animation: pulsate-btn 2s; | |
| animation: pulsate-btn 2s; | |
| -webkit-animation-direction: forwards; | |
| animation-direction: forwards; | |
| -webkit-animation-iteration-count: infinite; | |
| animation-iteration-count: infinite; | |
| -webkit-animation-timing-function: steps; | |
| animation-timing-function: steps; | |
| opacity: 1; | |
| border-radius: 50%; | |
| border: 5px solid rgba(124, 197, 118, 0.7); | |
| top: -15%; | |
| left: -15%; | |
| background: rgba(198, 16, 0, 0); | |
| } | |
| .why-us .play-btn:hover::after { | |
| border-left: 15px solid #060641; | |
| transform: scale(20); | |
| } | |
| .why-us .play-btn:hover::before { | |
| content: ''; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translateX(-40%) translateY(-50%); | |
| width: 0; | |
| height: 0; | |
| border: none; | |
| border-top: 10px solid transparent; | |
| border-bottom: 10px solid transparent; | |
| border-left: 15px solid #fff; | |
| z-index: 200; | |
| -webkit-animation: none; | |
| animation: none; | |
| border-radius: 0; | |
| } | |
| @media (max-width: 1024px) { | |
| .why-us .content, | |
| .why-us .accordion-list { | |
| padding-left: 0; | |
| padding-right: 0; | |
| } | |
| } | |
| @media (max-width: 992px) { | |
| .why-us .content { | |
| padding-top: 30px; | |
| } | |
| .why-us .accordion-list { | |
| padding-bottom: 30px; | |
| } | |
| } | |
| @-webkit-keyframes pulsate-btn { | |
| 0% { | |
| transform: scale(0.6, 0.6); | |
| opacity: 1; | |
| } | |
| 100% { | |
| transform: scale(1, 1); | |
| opacity: 0; | |
| } | |
| } | |
| @keyframes pulsate-btn { | |
| 0% { | |
| transform: scale(0.6, 0.6); | |
| opacity: 1; | |
| } | |
| 100% { | |
| transform: scale(1, 1); | |
| opacity: 0; | |
| } | |
| } | |
| /*-------------------------------------------------------------- | |
| # Portfolio | |
| --------------------------------------------------------------*/ | |
| .portfolio .portfolio-item { | |
| margin-bottom: 30px; | |
| } | |
| .portfolio #portfolio-flters { | |
| padding: 0; | |
| margin: 0 auto 25px auto; | |
| list-style: none; | |
| text-align: center; | |
| } | |
| .portfolio #portfolio-flters li { | |
| cursor: pointer; | |
| display: inline-block; | |
| padding: 10px 18px 12px 18px; | |
| font-size: 14px; | |
| font-weight: 400; | |
| line-height: 1; | |
| text-transform: uppercase; | |
| color: #555555; | |
| transition: all 0.3s ease-in-out; | |
| margin: 0 4px 10px 4px; | |
| background: whitesmoke; | |
| border-radius: 4px; | |
| } | |
| .portfolio #portfolio-flters li:hover, | |
| .portfolio #portfolio-flters li.filter-active { | |
| background: #060641; | |
| color: #fff; | |
| } | |
| .portfolio #portfolio-flters li:last-child { | |
| margin-right: 0; | |
| } | |
| .portfolio .portfolio-wrap { | |
| transition: 0.3s; | |
| position: relative; | |
| overflow: hidden; | |
| z-index: 1; | |
| background: rgba(0, 0, 0, 0.6); | |
| } | |
| .portfolio .portfolio-wrap::before { | |
| content: ""; | |
| background: rgba(21, 21, 21, 0.6); | |
| position: absolute; | |
| left: 30px; | |
| right: 30px; | |
| top: 30px; | |
| bottom: 30px; | |
| transition: all ease-in-out 0.3s; | |
| z-index: 2; | |
| opacity: 0; | |
| } | |
| .portfolio .portfolio-wrap .portfolio-info { | |
| opacity: 0; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| text-align: center; | |
| z-index: 3; | |
| transition: all ease-in-out 0.3s; | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| .portfolio .portfolio-wrap .portfolio-info::before { | |
| display: block; | |
| content: ""; | |
| width: 48px; | |
| height: 48px; | |
| position: absolute; | |
| top: 35px; | |
| left: 35px; | |
| border-top: 3px solid #fff; | |
| border-left: 3px solid #fff; | |
| transition: all 0.5s ease 0s; | |
| z-index: 9994; | |
| } | |
| .portfolio .portfolio-wrap .portfolio-info::after { | |
| display: block; | |
| content: ""; | |
| width: 48px; | |
| height: 48px; | |
| position: absolute; | |
| bottom: 35px; | |
| right: 35px; | |
| border-bottom: 3px solid #fff; | |
| border-right: 3px solid #fff; | |
| transition: all 0.5s ease 0s; | |
| z-index: 9994; | |
| } | |
| .portfolio .portfolio-wrap .portfolio-info h4 { | |
| font-size: 20px; | |
| color: #fff; | |
| font-weight: 600; | |
| } | |
| .portfolio .portfolio-wrap .portfolio-info p { | |
| color: #ffffff; | |
| font-size: 14px; | |
| text-transform: uppercase; | |
| padding: 0; | |
| margin: 0; | |
| } | |
| .portfolio .portfolio-wrap .portfolio-links { | |
| text-align: center; | |
| z-index: 4; | |
| } | |
| .portfolio .portfolio-wrap .portfolio-links a { | |
| color: #fff; | |
| margin: 0 2px; | |
| font-size: 28px; | |
| display: inline-block; | |
| transition: 0.3s; | |
| } | |
| .portfolio .portfolio-wrap .portfolio-links a:hover { | |
| color: #060641; | |
| } | |
| .portfolio .portfolio-wrap:hover::before { | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| opacity: 1; | |
| } | |
| .portfolio .portfolio-wrap:hover .portfolio-info { | |
| opacity: 1; | |
| } | |
| .portfolio .portfolio-wrap:hover .portfolio-info::before { | |
| top: 15px; | |
| left: 15px; | |
| } | |
| .portfolio .portfolio-wrap:hover .portfolio-info::after { | |
| bottom: 15px; | |
| right: 15px; | |
| } | |
| /*-------------------------------------------------------------- | |
| # Testimonials | |
| --------------------------------------------------------------*/ | |
| /* .testimonials { | |
| padding: 60px 0; | |
| background: url("../img/testimonials-bg.jpg") no-repeat; | |
| background-position: center center; | |
| background-size: cover; | |
| position: relative; | |
| } | |
| .testimonials::before { | |
| content: ""; | |
| position: absolute; | |
| left: 0; | |
| right: 0; | |
| top: 0; | |
| bottom: 0; | |
| background: rgba(0, 0, 0, 0.1); | |
| } | |
| .testimonials .quote-icon { | |
| text-align: center; | |
| margin-bottom: 30px; | |
| } | |
| .testimonials .quote-icon i { | |
| color: white; | |
| font-size: 24px; | |
| padding: 18px; | |
| border-radius: 50px; | |
| border: 2px solid white; | |
| } | |
| .testimonials .testimonial-item { | |
| text-align: center; | |
| color: #fff; | |
| } | |
| .testimonials .testimonial-item p { | |
| font-style: italic; | |
| margin: 0 auto 30px auto; | |
| font-size: 20px; | |
| } | |
| .testimonials .testimonial-item .testimonial-img { | |
| width: 100px; | |
| border-radius: 50%; | |
| border: 6px solid rgba(255, 255, 255, 0.15); | |
| margin: 0 auto; | |
| } | |
| .testimonials .testimonial-item h3 { | |
| font-size: 20px; | |
| font-weight: bold; | |
| margin: 10px 0 5px 0; | |
| color: #fff; | |
| } | |
| .testimonials .testimonial-item h4 { | |
| font-size: 14px; | |
| color: #ddd; | |
| margin: 0 0 15px 0; | |
| } | |
| .testimonials .owl-nav, | |
| .testimonials .owl-dots { | |
| margin-top: 5px; | |
| text-align: center; | |
| } | |
| .testimonials .owl-dot { | |
| display: inline-block; | |
| margin: 0 5px; | |
| width: 12px; | |
| height: 12px; | |
| border-radius: 50%; | |
| background-color: rgba(255, 255, 255, 0.4) !important; | |
| } | |
| .testimonials .owl-dot.active { | |
| background-color: #060641 !important; | |
| } | |
| @media (min-width: 1024px) { | |
| .testimonials { | |
| background-attachment: fixed; | |
| } | |
| } | |
| @media (min-width: 992px) { | |
| .testimonials .testimonial-item p { | |
| width: 80%; | |
| } | |
| } | |
| /*-------------------------------------------------------------- | |
| # Clients | |
| /* --------------------------------------------------------------*/ | |
| /* .clients { | |
| background: whitesmoke; | |
| padding: 15px 0; | |
| text-align: center; | |
| } | |
| .clients img { | |
| width: 50%; | |
| -webkit-filter: grayscale(100); | |
| filter: grayscale(100); | |
| transition: all 0.4s ease-in-out; | |
| display: inline-block; | |
| padding: 15px 0; | |
| } | |
| .clients img:hover { | |
| -webkit-filter: none; | |
| filter: none; | |
| transform: scale(1.2); | |
| } | |
| @media (max-width: 768px) { | |
| .clients img { | |
| width: 40%; | |
| } | |
| } | |
| @media (max-width: 575px) { | |
| .clients img { | |
| width: 50%; | |
| } | |
| } */ | |
| /*-------------------------------------------------------------- | |
| # Team | |
| --------------------------------------------------------------*/ | |
| .team { | |
| background: #fff; | |
| padding: 60px 0; | |
| } | |
| .team .member { | |
| margin-bottom: 20px; | |
| overflow: hidden; | |
| } | |
| .team .member .member-img { | |
| position: relative; | |
| overflow: hidden; | |
| border-radius: 5px; | |
| } | |
| .team .member .social { | |
| position: absolute; | |
| left: 0; | |
| bottom: -40px; | |
| right: 0; | |
| height: 40px; | |
| opacity: 0; | |
| transition: bottom ease-in-out 0.4s; | |
| text-align: center; | |
| background: rgba(124, 197, 118, 0.8); | |
| } | |
| .team .member .social a { | |
| transition: color 0.3s; | |
| color: #fff; | |
| margin: 0 10px; | |
| padding-top: 8px; | |
| display: inline-block; | |
| } | |
| .team .member .social a:hover { | |
| color: #060641; | |
| } | |
| .team .member .social i { | |
| font-size: 18px; | |
| margin: 0 2px; | |
| } | |
| .team .member .member-info h4 { | |
| font-weight: 700; | |
| margin: 15px 0 5px 0; | |
| font-size: 18px; | |
| } | |
| .team .member .member-info span { | |
| display: block; | |
| font-size: 13px; | |
| text-transform: uppercase; | |
| font-weight: 400; | |
| margin-bottom: 15px; | |
| color: #060641; | |
| } | |
| .team .member .member-info p { | |
| font-style: italic; | |
| font-size: 14px; | |
| line-height: 26px; | |
| color: #888888; | |
| } | |
| .team .member:hover .social { | |
| bottom: 0; | |
| opacity: 1; | |
| transition: bottom ease-in-out 0.4s; | |
| } | |
| /*-------------------------------------------------------------- | |
| # Pricing | |
| --------------------------------------------------------------*/ | |
| .pricing .box { | |
| padding: 20px; | |
| background: #fff; | |
| text-align: center; | |
| border-radius: 8px; | |
| position: relative; | |
| overflow: hidden; | |
| border: 1px solid #fff; | |
| } | |
| .pricing .box h3 { | |
| font-weight: 400; | |
| padding: 15px; | |
| margin-top: 15px; | |
| font-size: 18px; | |
| font-weight: 600; | |
| color: #151515; | |
| } | |
| .pricing .box h4 { | |
| font-size: 42px; | |
| color: #151515; | |
| font-weight: 700; | |
| font-family: "Open Sans", sans-serif; | |
| margin-bottom: 20px; | |
| } | |
| .pricing .box h4 sup { | |
| font-size: 20px; | |
| top: -15px; | |
| left: -3px; | |
| } | |
| .pricing .box h4 span { | |
| color: #bababa; | |
| font-size: 16px; | |
| font-weight: 300; | |
| } | |
| .pricing .box ul { | |
| padding: 0; | |
| list-style: none; | |
| color: #151515; | |
| text-align: center; | |
| line-height: 20px; | |
| font-size: 14px; | |
| } | |
| .pricing .box ul li { | |
| padding-bottom: 16px; | |
| } | |
| .pricing .box ul i { | |
| color: #060641; | |
| font-size: 18px; | |
| padding-right: 4px; | |
| } | |
| .pricing .box ul .na { | |
| color: #ccc; | |
| text-decoration: line-through; | |
| } | |
| .pricing .box .btn-wrap { | |
| padding: 15px; | |
| text-align: center; | |
| } | |
| .pricing .box .btn-buy { | |
| display: inline-block; | |
| padding: 10px 40px 12px 40px; | |
| border-radius: 5px; | |
| border: 2px solid #060641; | |
| color: #060641; | |
| font-size: 14px; | |
| font-weight: 400; | |
| font-family: "Montserrat", sans-serif; | |
| font-weight: 600; | |
| transition: 0.3s; | |
| } | |
| .pricing .box .btn-buy:hover { | |
| background: #060641; | |
| color: #fff; | |
| } | |
| .pricing .recommended { | |
| border-color: #060641; | |
| } | |
| .pricing .recommended .btn-buy { | |
| background: #060641; | |
| color: #fff; | |
| } | |
| .pricing .recommended .btn-buy:hover { | |
| background: #61b959; | |
| border-color: #61b959; | |
| } | |
| .pricing .recommended-badge { | |
| position: absolute; | |
| top: 5px; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| z-index: 1; | |
| font-size: 12px; | |
| padding: 4px 25px 6px 25px; | |
| background: #eaf6e9; | |
| color: #060641; | |
| border-radius: 50px; | |
| text-transform: uppercase; | |
| font-weight: 600; | |
| } | |
| /*-------------------------------------------------------------- | |
| # Frequently Asked Questions | |
| --------------------------------------------------------------*/ | |
| .faq .faq-list { | |
| padding: 0; | |
| list-style: none; | |
| } | |
| .faq .faq-list li { | |
| border-bottom: 1px solid #eee; | |
| margin-bottom: 20px; | |
| padding-bottom: 20px; | |
| } | |
| .faq .faq-list a { | |
| display: block; | |
| position: relative; | |
| font-family: #060641; | |
| font-size: 18px; | |
| line-height: 24px; | |
| font-weight: 400; | |
| padding-right: 25px; | |
| } | |
| .faq .faq-list i { | |
| font-size: 24px; | |
| position: absolute; | |
| right: 0; | |
| top: 0; | |
| } | |
| .faq .faq-list p { | |
| margin-bottom: 0; | |
| padding: 10px 0 0 0; | |
| } | |
| .faq .faq-list .icon-show { | |
| display: none; | |
| } | |
| .faq .faq-list a.collapsed { | |
| color: #343a40; | |
| } | |
| .faq .faq-list a.collapsed:hover { | |
| color: #060641; | |
| } | |
| .faq .faq-list a.collapsed .icon-show { | |
| display: inline-block; | |
| } | |
| .faq .faq-list a.collapsed .icon-close { | |
| display: none; | |
| } | |
| /*-------------------------------------------------------------- | |
| # Contact | |
| /* --------------------------------------------------------------*/ | |
| /* .contact .info { | |
| width: 100%; | |
| height: 100%; | |
| background: #fff; | |
| padding: 20px; | |
| border-radius: 5px; | |
| } | |
| .contact .info i { | |
| font-size: 20px; | |
| color: #060641; | |
| float: left; | |
| width: 44px; | |
| height: 44px; | |
| background: #eaf6e9; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| border-radius: 50px; | |
| transition: all 0.3s ease-in-out; | |
| } | |
| .contact .info h4 { | |
| padding: 0 0 0 60px; | |
| font-size: 22px; | |
| font-weight: 600; | |
| margin-bottom: 5px; | |
| color: #151515; | |
| } | |
| .contact .info p { | |
| padding: 0 0 0 60px; | |
| margin-bottom: 0; | |
| font-size: 14px; | |
| color: #484848; | |
| } | |
| .contact .info .email, | |
| .contact .info .phone { | |
| margin-top: 40px; | |
| } | |
| .contact .info .email:hover i, | |
| .contact .info .address:hover i, | |
| .contact .info .phone:hover i { | |
| background: #060641; | |
| color: #fff; | |
| } | |
| .contact .php-email-form { | |
| width: 100%; | |
| background: #fff; | |
| padding: 20px; | |
| border-radius: 5px; | |
| } | |
| .contact .php-email-form .form-group { | |
| padding-bottom: 8px; | |
| } | |
| .contact .php-email-form .validate { | |
| display: none; | |
| color: red; | |
| margin: 0 0 15px 0; | |
| font-weight: 400; | |
| font-size: 13px; | |
| } | |
| .contact .php-email-form .error-message { | |
| display: none; | |
| color: #fff; | |
| background: #ed3c0d; | |
| text-align: center; | |
| padding: 15px; | |
| font-weight: 600; | |
| } | |
| .contact .php-email-form .sent-message { | |
| display: none; | |
| color: #fff; | |
| background: #18d26e; | |
| text-align: center; | |
| padding: 15px; | |
| font-weight: 600; | |
| } | |
| .contact .php-email-form .loading { | |
| display: none; | |
| background: #fff; | |
| text-align: center; | |
| padding: 15px; | |
| } | |
| .contact .php-email-form .loading:before { | |
| content: ""; | |
| display: inline-block; | |
| border-radius: 50%; | |
| width: 24px; | |
| height: 24px; | |
| margin: 0 10px -6px 0; | |
| border: 3px solid #18d26e; | |
| border-top-color: #eee; | |
| -webkit-animation: animate-loading 1s linear infinite; | |
| animation: animate-loading 1s linear infinite; | |
| } | |
| .contact .php-email-form input, | |
| .contact .php-email-form textarea { | |
| border-radius: 0; | |
| box-shadow: none; | |
| font-size: 14px; | |
| } | |
| .contact .php-email-form input { | |
| height: 44px; | |
| } | |
| .contact .php-email-form textarea { | |
| padding: 10px 12px; | |
| } | |
| .contact .php-email-form button[type="submit"] { | |
| background: #060641; | |
| border: 0; | |
| padding: 10px 24px; | |
| color: #fff; | |
| transition: 0.4s; | |
| border-radius: 4px; | |
| } | |
| .contact .php-email-form button[type="submit"]:hover { | |
| background: #61b959; | |
| } | |
| @-webkit-keyframes animate-loading { | |
| 0% { | |
| transform: rotate(0deg); | |
| } | |
| 100% { | |
| transform: rotate(360deg); | |
| } | |
| } | |
| @keyframes animate-loading { | |
| 0% { | |
| transform: rotate(0deg); | |
| } | |
| 100% { | |
| transform: rotate(360deg); | |
| } | |
| } */ | |
| */ | |
| /*-------------------------------------------------------------- | |
| # Breadcrumbs | |
| --------------------------------------------------------------*/ | |
| .breadcrumbs { | |
| padding: 40px 0; | |
| } | |
| .breadcrumbs h2 { | |
| font-size: 26px; | |
| font-weight: 300; | |
| } | |
| .breadcrumbs ol { | |
| display: flex; | |
| flex-wrap: wrap; | |
| list-style: none; | |
| padding: 0; | |
| margin: 0; | |
| font-size: 15px; | |
| } | |
| .breadcrumbs ol li+li { | |
| padding-left: 10px; | |
| } | |
| .breadcrumbs ol li+li::before { | |
| display: inline-block; | |
| padding-right: 10px; | |
| color: #2f2f2f; | |
| content: "/"; | |
| } | |
| @media (max-width: 768px) { | |
| .breadcrumbs .d-flex { | |
| display: block ; | |
| } | |
| .breadcrumbs ol { | |
| display: block; | |
| } | |
| .breadcrumbs ol li { | |
| display: inline-block; | |
| } | |
| } | |
| /*-------------------------------------------------------------- | |
| # Portfolio Details | |
| --------------------------------------------------------------*/ | |
| .portfolio-details { | |
| padding-top: 0; | |
| } | |
| .portfolio-details .portfolio-details-container { | |
| position: relative; | |
| } | |
| .portfolio-details .portfolio-details-carousel { | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .portfolio-details .portfolio-details-carousel .owl-nav, | |
| .portfolio-details .portfolio-details-carousel .owl-dots { | |
| margin-top: 5px; | |
| text-align: left; | |
| } | |
| .portfolio-details .portfolio-details-carousel .owl-dot { | |
| display: inline-block; | |
| margin: 0 10px 0 0; | |
| width: 12px; | |
| height: 12px; | |
| border-radius: 50%; | |
| background-color: #ddd ; | |
| } | |
| .portfolio-details .portfolio-details-carousel .owl-dot.active { | |
| background-color: #060641 ; | |
| } | |
| .portfolio-details .portfolio-info { | |
| padding: 30px; | |
| position: absolute; | |
| right: 0; | |
| bottom: -70px; | |
| background: #fff; | |
| box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); | |
| z-index: 2; | |
| } | |
| .portfolio-details .portfolio-info h3 { | |
| font-size: 22px; | |
| font-weight: 400; | |
| margin-bottom: 20px; | |
| padding-bottom: 20px; | |
| border-bottom: 1px solid #eee; | |
| } | |
| .portfolio-details .portfolio-info ul { | |
| list-style: none; | |
| padding: 0; | |
| font-size: 15px; | |
| } | |
| .portfolio-details .portfolio-info ul li+li { | |
| margin-top: 10px; | |
| } | |
| .portfolio-details .portfolio-description { | |
| padding-top: 50px; | |
| } | |
| .portfolio-details .portfolio-description h2 { | |
| width: 50%; | |
| font-size: 26px; | |
| font-weight: 400; | |
| margin-bottom: 20px; | |
| } | |
| .portfolio-details .portfolio-description p { | |
| padding: 0 0 0 0; | |
| } | |
| @media (max-width: 768px) { | |
| .portfolio-details .portfolio-info { | |
| position: static; | |
| margin-top: 30px; | |
| } | |
| } | |
| /*-------------------------------------------------------------- | |
| # Footer | |
| --------------------------------------------------------------*/ | |
| #footer { | |
| background: url("../img/footer-bg.jpg") center center no-repeat; | |
| color: #fff; | |
| font-size: 14px; | |
| position: relative; | |
| } | |
| #footer::before { | |
| content: ""; | |
| position: absolute; | |
| left: 0; | |
| right: 0; | |
| top: 0; | |
| bottom: 0; | |
| background: rgba(0, 0, 0, 0.85); | |
| z-index: 1; | |
| } | |
| #footer .footer-top { | |
| position: relative; | |
| z-index: 2; | |
| text-align: center; | |
| padding: 60px 0; | |
| } | |
| #footer .footer-top .footer-logo img { | |
| height: 80px; | |
| } | |
| #footer .footer-top h3 { | |
| font-size: 36px; | |
| font-weight: 700; | |
| color: #fff; | |
| position: relative; | |
| font-family: "Poppins", sans-serif; | |
| padding: 30px 0 0 0; | |
| margin-bottom: 0; | |
| } | |
| #footer .footer-top p { | |
| font-size: 15; | |
| font-style: italic; | |
| margin: 30px 0 0 0; | |
| padding: 0; | |
| } | |
| #footer .footer-top .footer-newsletter { | |
| text-align: center; | |
| font-size: 15px; | |
| margin-top: 30px; | |
| } | |
| #footer .footer-top .footer-newsletter form { | |
| background: #fff; | |
| padding: 6px 10px; | |
| position: relative; | |
| border-radius: 50px; | |
| box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); | |
| text-align: left; | |
| } | |
| #footer .footer-top .footer-newsletter form input[type="email"] { | |
| border: 0; | |
| padding: 4px 8px; | |
| width: calc(100% - 100px); | |
| } | |
| #footer .footer-top .footer-newsletter form input[type="submit"] { | |
| position: absolute; | |
| top: 0; | |
| right: -1px; | |
| bottom: 0; | |
| border: 0; | |
| background: none; | |
| font-size: 16px; | |
| padding: 0 20px; | |
| background: #060641; | |
| color: #fff; | |
| transition: 0.3s; | |
| border-radius: 50px; | |
| box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); | |
| } | |
| #footer .footer-top .footer-newsletter form input[type="submit"]:hover { | |
| background: #14145a; | |
| } | |
| #footer .footer-top .social-links { | |
| margin-top: 30px; | |
| } | |
| #footer .footer-top .social-links a { | |
| font-size: 18px; | |
| display: inline-block; | |
| background: #060641; | |
| 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: #5ab652; | |
| color: #fff; | |
| text-decoration: none; | |
| } | |
| #footer .footer-bottom { | |
| border-top: 1px solid #222222; | |
| z-index: 2; | |
| position: relative; | |
| padding-top: 40px; | |
| padding-bottom: 40px; | |
| } | |
| #footer .copyright { | |
| text-align: center; | |
| } | |
| #footer .credits { | |
| text-align: center; | |
| font-size: 13px; | |
| padding-top: 5px; | |
| } | |
| .our-skill-area { | |
| position: relative; | |
| } | |
| .our-skill-area { | |
| background: rgba(248, 248, 248, 0.8) url("../img/background/bg1.jpg") no-repeat fixed center top / cover; | |
| } | |
| .test-overly { | |
| background: rgba(0, 0, 0, 0.80); | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| .progress-h4 { | |
| color: #fff; | |
| font-weight: 500; | |
| } | |
| .area-padding-2 { | |
| padding: 70px 0px 50px; | |
| } | |
| /* for circular progress bar*/ | |
| /**************************************************************** | |
| * | |
| * CSS Percentage Circle | |
| * Author: Andre Firchow | |
| * | |
| *****************************************************************/ | |
| .rect-auto, | |
| .c100.p51 .slice, | |
| .c100.p52 .slice, | |
| .c100.p53 .slice, | |
| .c100.p54 .slice, | |
| .c100.p55 .slice, | |
| .c100.p56 .slice, | |
| .c100.p57 .slice, | |
| .c100.p58 .slice, | |
| .c100.p59 .slice, | |
| .c100.p60 .slice, | |
| .c100.p61 .slice, | |
| .c100.p62 .slice, | |
| .c100.p63 .slice, | |
| .c100.p64 .slice, | |
| .c100.p65 .slice, | |
| .c100.p66 .slice, | |
| .c100.p67 .slice, | |
| .c100.p68 .slice, | |
| .c100.p69 .slice, | |
| .c100.p70 .slice, | |
| .c100.p71 .slice, | |
| .c100.p72 .slice, | |
| .c100.p73 .slice, | |
| .c100.p74 .slice, | |
| .c100.p75 .slice, | |
| .c100.p76 .slice, | |
| .c100.p77 .slice, | |
| .c100.p78 .slice, | |
| .c100.p79 .slice, | |
| .c100.p80 .slice, | |
| .c100.p81 .slice, | |
| .c100.p82 .slice, | |
| .c100.p83 .slice, | |
| .c100.p84 .slice, | |
| .c100.p85 .slice, | |
| .c100.p86 .slice, | |
| .c100.p87 .slice, | |
| .c100.p88 .slice, | |
| .c100.p89 .slice, | |
| .c100.p90 .slice, | |
| .c100.p91 .slice, | |
| .c100.p92 .slice, | |
| .c100.p93 .slice, | |
| .c100.p94 .slice, | |
| .c100.p95 .slice, | |
| .c100.p96 .slice, | |
| .c100.p97 .slice, | |
| .c100.p98 .slice, | |
| .c100.p99 .slice, | |
| .c100.p100 .slice { | |
| clip: rect(auto, auto, auto, auto); | |
| } | |
| .pie, | |
| .c100 .bar, | |
| .c100.p51 .fill, | |
| .c100.p52 .fill, | |
| .c100.p53 .fill, | |
| .c100.p54 .fill, | |
| .c100.p55 .fill, | |
| .c100.p56 .fill, | |
| .c100.p57 .fill, | |
| .c100.p58 .fill, | |
| .c100.p59 .fill, | |
| .c100.p60 .fill, | |
| .c100.p61 .fill, | |
| .c100.p62 .fill, | |
| .c100.p63 .fill, | |
| .c100.p64 .fill, | |
| .c100.p65 .fill, | |
| .c100.p66 .fill, | |
| .c100.p67 .fill, | |
| .c100.p68 .fill, | |
| .c100.p69 .fill, | |
| .c100.p70 .fill, | |
| .c100.p71 .fill, | |
| .c100.p72 .fill, | |
| .c100.p73 .fill, | |
| .c100.p74 .fill, | |
| .c100.p75 .fill, | |
| .c100.p76 .fill, | |
| .c100.p77 .fill, | |
| .c100.p78 .fill, | |
| .c100.p79 .fill, | |
| .c100.p80 .fill, | |
| .c100.p81 .fill, | |
| .c100.p82 .fill, | |
| .c100.p83 .fill, | |
| .c100.p84 .fill, | |
| .c100.p85 .fill, | |
| .c100.p86 .fill, | |
| .c100.p87 .fill, | |
| .c100.p88 .fill, | |
| .c100.p89 .fill, | |
| .c100.p90 .fill, | |
| .c100.p91 .fill, | |
| .c100.p92 .fill, | |
| .c100.p93 .fill, | |
| .c100.p94 .fill, | |
| .c100.p95 .fill, | |
| .c100.p96 .fill, | |
| .c100.p97 .fill, | |
| .c100.p98 .fill, | |
| .c100.p99 .fill, | |
| .c100.p100 .fill { | |
| position: absolute; | |
| border: 0.08em solid #307bbb; | |
| width: 0.84em; | |
| height: 0.84em; | |
| clip: rect(0em, 0.5em, 1em, 0em); | |
| -webkit-border-radius: 50%; | |
| -moz-border-radius: 50%; | |
| -ms-border-radius: 50%; | |
| -o-border-radius: 50%; | |
| border-radius: 50%; | |
| -webkit-transform: rotate(0deg); | |
| -moz-transform: rotate(0deg); | |
| -ms-transform: rotate(0deg); | |
| -o-transform: rotate(0deg); | |
| transform: rotate(0deg); | |
| } | |
| .pie-fill, | |
| .c100.p51 .bar:after, | |
| .c100.p51 .fill, | |
| .c100.p52 .bar:after, | |
| .c100.p52 .fill, | |
| .c100.p53 .bar:after, | |
| .c100.p53 .fill, | |
| .c100.p54 .bar:after, | |
| .c100.p54 .fill, | |
| .c100.p55 .bar:after, | |
| .c100.p55 .fill, | |
| .c100.p56 .bar:after, | |
| .c100.p56 .fill, | |
| .c100.p57 .bar:after, | |
| .c100.p57 .fill, | |
| .c100.p58 .bar:after, | |
| .c100.p58 .fill, | |
| .c100.p59 .bar:after, | |
| .c100.p59 .fill, | |
| .c100.p60 .bar:after, | |
| .c100.p60 .fill, | |
| .c100.p61 .bar:after, | |
| .c100.p61 .fill, | |
| .c100.p62 .bar:after, | |
| .c100.p62 .fill, | |
| .c100.p63 .bar:after, | |
| .c100.p63 .fill, | |
| .c100.p64 .bar:after, | |
| .c100.p64 .fill, | |
| .c100.p65 .bar:after, | |
| .c100.p65 .fill, | |
| .c100.p66 .bar:after, | |
| .c100.p66 .fill, | |
| .c100.p67 .bar:after, | |
| .c100.p67 .fill, | |
| .c100.p68 .bar:after, | |
| .c100.p68 .fill, | |
| .c100.p69 .bar:after, | |
| .c100.p69 .fill, | |
| .c100.p70 .bar:after, | |
| .c100.p70 .fill, | |
| .c100.p71 .bar:after, | |
| .c100.p71 .fill, | |
| .c100.p72 .bar:after, | |
| .c100.p72 .fill, | |
| .c100.p73 .bar:after, | |
| .c100.p73 .fill, | |
| .c100.p74 .bar:after, | |
| .c100.p74 .fill, | |
| .c100.p75 .bar:after, | |
| .c100.p75 .fill, | |
| .c100.p76 .bar:after, | |
| .c100.p76 .fill, | |
| .c100.p77 .bar:after, | |
| .c100.p77 .fill, | |
| .c100.p78 .bar:after, | |
| .c100.p78 .fill, | |
| .c100.p79 .bar:after, | |
| .c100.p79 .fill, | |
| .c100.p80 .bar:after, | |
| .c100.p80 .fill, | |
| .c100.p81 .bar:after, | |
| .c100.p81 .fill, | |
| .c100.p82 .bar:after, | |
| .c100.p82 .fill, | |
| .c100.p83 .bar:after, | |
| .c100.p83 .fill, | |
| .c100.p84 .bar:after, | |
| .c100.p84 .fill, | |
| .c100.p85 .bar:after, | |
| .c100.p85 .fill, | |
| .c100.p86 .bar:after, | |
| .c100.p86 .fill, | |
| .c100.p87 .bar:after, | |
| .c100.p87 .fill, | |
| .c100.p88 .bar:after, | |
| .c100.p88 .fill, | |
| .c100.p89 .bar:after, | |
| .c100.p89 .fill, | |
| .c100.p90 .bar:after, | |
| .c100.p90 .fill, | |
| .c100.p91 .bar:after, | |
| .c100.p91 .fill, | |
| .c100.p92 .bar:after, | |
| .c100.p92 .fill, | |
| .c100.p93 .bar:after, | |
| .c100.p93 .fill, | |
| .c100.p94 .bar:after, | |
| .c100.p94 .fill, | |
| .c100.p95 .bar:after, | |
| .c100.p95 .fill, | |
| .c100.p96 .bar:after, | |
| .c100.p96 .fill, | |
| .c100.p97 .bar:after, | |
| .c100.p97 .fill, | |
| .c100.p98 .bar:after, | |
| .c100.p98 .fill, | |
| .c100.p99 .bar:after, | |
| .c100.p99 .fill, | |
| .c100.p100 .bar:after, | |
| .c100.p100 .fill { | |
| -webkit-transform: rotate(180deg); | |
| -moz-transform: rotate(180deg); | |
| -ms-transform: rotate(180deg); | |
| -o-transform: rotate(180deg); | |
| transform: rotate(180deg); | |
| } | |
| .c100 { | |
| position: relative; | |
| font-size: 120px; | |
| width: 1em; | |
| height: 1em; | |
| -webkit-border-radius: 50%; | |
| -moz-border-radius: 50%; | |
| -ms-border-radius: 50%; | |
| -o-border-radius: 50%; | |
| border-radius: 50%; | |
| float: left; | |
| margin: 0 0.1em 0.1em 0; | |
| background-color: #cccccc; | |
| } | |
| .c100 *, | |
| .c100 *:before, | |
| .c100 *:after { | |
| -webkit-box-sizing: content-box; | |
| -moz-box-sizing: content-box; | |
| box-sizing: content-box; | |
| } | |
| .c100.center { | |
| float: none; | |
| margin: 0 auto; | |
| } | |
| .c100.big { | |
| font-size: 200px; | |
| } | |
| .c100.small { | |
| font-size: 80px; | |
| } | |
| .c100>span { | |
| position: absolute; | |
| width: 100%; | |
| z-index: 1; | |
| left: 0; | |
| top: 0; | |
| width: 5em; | |
| line-height: 5em; | |
| font-size: 0.2em; | |
| color: #cccccc; | |
| display: block; | |
| text-align: center; | |
| white-space: nowrap; | |
| -webkit-transition-property: all; | |
| -moz-transition-property: all; | |
| -o-transition-property: all; | |
| transition-property: all; | |
| -webkit-transition-duration: 0.2s; | |
| -moz-transition-duration: 0.2s; | |
| -o-transition-duration: 0.2s; | |
| transition-duration: 0.2s; | |
| -webkit-transition-timing-function: ease-out; | |
| -moz-transition-timing-function: ease-out; | |
| -o-transition-timing-function: ease-out; | |
| transition-timing-function: ease-out; | |
| } | |
| .c100:after { | |
| position: absolute; | |
| top: 0.08em; | |
| left: 0.08em; | |
| display: block; | |
| content: " "; | |
| -webkit-border-radius: 50%; | |
| -moz-border-radius: 50%; | |
| -ms-border-radius: 50%; | |
| -o-border-radius: 50%; | |
| border-radius: 50%; | |
| background-color: whitesmoke; | |
| width: 0.84em; | |
| height: 0.84em; | |
| -webkit-transition-property: all; | |
| -moz-transition-property: all; | |
| -o-transition-property: all; | |
| transition-property: all; | |
| -webkit-transition-duration: 0.2s; | |
| -moz-transition-duration: 0.2s; | |
| -o-transition-duration: 0.2s; | |
| transition-duration: 0.2s; | |
| -webkit-transition-timing-function: ease-in; | |
| -moz-transition-timing-function: ease-in; | |
| -o-transition-timing-function: ease-in; | |
| transition-timing-function: ease-in; | |
| } | |
| .c100 .slice { | |
| position: absolute; | |
| width: 1em; | |
| height: 1em; | |
| clip: rect(0em, 1em, 1em, 0.5em); | |
| } | |
| .c100.p1 .bar { | |
| -webkit-transform: rotate(3.6deg); | |
| -moz-transform: rotate(3.6deg); | |
| -ms-transform: rotate(3.6deg); | |
| -o-transform: rotate(3.6deg); | |
| transform: rotate(3.6deg); | |
| } | |
| .c100.p2 .bar { | |
| -webkit-transform: rotate(7.2deg); | |
| -moz-transform: rotate(7.2deg); | |
| -ms-transform: rotate(7.2deg); | |
| -o-transform: rotate(7.2deg); | |
| transform: rotate(7.2deg); | |
| } | |
| .c100.p3 .bar { | |
| -webkit-transform: rotate(10.8deg); | |
| -moz-transform: rotate(10.8deg); | |
| -ms-transform: rotate(10.8deg); | |
| -o-transform: rotate(10.8deg); | |
| transform: rotate(10.8deg); | |
| } | |
| .c100.p4 .bar { | |
| -webkit-transform: rotate(14.4deg); | |
| -moz-transform: rotate(14.4deg); | |
| -ms-transform: rotate(14.4deg); | |
| -o-transform: rotate(14.4deg); | |
| transform: rotate(14.4deg); | |
| } | |
| .c100.p5 .bar { | |
| -webkit-transform: rotate(18deg); | |
| -moz-transform: rotate(18deg); | |
| -ms-transform: rotate(18deg); | |
| -o-transform: rotate(18deg); | |
| transform: rotate(18deg); | |
| } | |
| .c100.p6 .bar { | |
| -webkit-transform: rotate(21.6deg); | |
| -moz-transform: rotate(21.6deg); | |
| -ms-transform: rotate(21.6deg); | |
| -o-transform: rotate(21.6deg); | |
| transform: rotate(21.6deg); | |
| } | |
| .c100.p7 .bar { | |
| -webkit-transform: rotate(25.2deg); | |
| -moz-transform: rotate(25.2deg); | |
| -ms-transform: rotate(25.2deg); | |
| -o-transform: rotate(25.2deg); | |
| transform: rotate(25.2deg); | |
| } | |
| .c100.p8 .bar { | |
| -webkit-transform: rotate(28.8deg); | |
| -moz-transform: rotate(28.8deg); | |
| -ms-transform: rotate(28.8deg); | |
| -o-transform: rotate(28.8deg); | |
| transform: rotate(28.8deg); | |
| } | |
| .c100.p9 .bar { | |
| -webkit-transform: rotate(32.4deg); | |
| -moz-transform: rotate(32.4deg); | |
| -ms-transform: rotate(32.4deg); | |
| -o-transform: rotate(32.4deg); | |
| transform: rotate(32.4deg); | |
| } | |
| .c100.p10 .bar { | |
| -webkit-transform: rotate(36deg); | |
| -moz-transform: rotate(36deg); | |
| -ms-transform: rotate(36deg); | |
| -o-transform: rotate(36deg); | |
| transform: rotate(36deg); | |
| } | |
| .c100.p11 .bar { | |
| -webkit-transform: rotate(39.6deg); | |
| -moz-transform: rotate(39.6deg); | |
| -ms-transform: rotate(39.6deg); | |
| -o-transform: rotate(39.6deg); | |
| transform: rotate(39.6deg); | |
| } | |
| .c100.p12 .bar { | |
| -webkit-transform: rotate(43.2deg); | |
| -moz-transform: rotate(43.2deg); | |
| -ms-transform: rotate(43.2deg); | |
| -o-transform: rotate(43.2deg); | |
| transform: rotate(43.2deg); | |
| } | |
| .c100.p13 .bar { | |
| -webkit-transform: rotate(46.8deg); | |
| -moz-transform: rotate(46.8deg); | |
| -ms-transform: rotate(46.8deg); | |
| -o-transform: rotate(46.8deg); | |
| transform: rotate(46.8deg); | |
| } | |
| .c100.p14 .bar { | |
| -webkit-transform: rotate(50.4deg); | |
| -moz-transform: rotate(50.4deg); | |
| -ms-transform: rotate(50.4deg); | |
| -o-transform: rotate(50.4deg); | |
| transform: rotate(50.4deg); | |
| } | |
| .c100.p15 .bar { | |
| -webkit-transform: rotate(54deg); | |
| -moz-transform: rotate(54deg); | |
| -ms-transform: rotate(54deg); | |
| -o-transform: rotate(54deg); | |
| transform: rotate(54deg); | |
| } | |
| .c100.p16 .bar { | |
| -webkit-transform: rotate(57.6deg); | |
| -moz-transform: rotate(57.6deg); | |
| -ms-transform: rotate(57.6deg); | |
| -o-transform: rotate(57.6deg); | |
| transform: rotate(57.6deg); | |
| } | |
| .c100.p17 .bar { | |
| -webkit-transform: rotate(61.2deg); | |
| -moz-transform: rotate(61.2deg); | |
| -ms-transform: rotate(61.2deg); | |
| -o-transform: rotate(61.2deg); | |
| transform: rotate(61.2deg); | |
| } | |
| .c100.p18 .bar { | |
| -webkit-transform: rotate(64.8deg); | |
| -moz-transform: rotate(64.8deg); | |
| -ms-transform: rotate(64.8deg); | |
| -o-transform: rotate(64.8deg); | |
| transform: rotate(64.8deg); | |
| } | |
| .c100.p19 .bar { | |
| -webkit-transform: rotate(68.4deg); | |
| -moz-transform: rotate(68.4deg); | |
| -ms-transform: rotate(68.4deg); | |
| -o-transform: rotate(68.4deg); | |
| transform: rotate(68.4deg); | |
| } | |
| .c100.p20 .bar { | |
| -webkit-transform: rotate(72deg); | |
| -moz-transform: rotate(72deg); | |
| -ms-transform: rotate(72deg); | |
| -o-transform: rotate(72deg); | |
| transform: rotate(72deg); | |
| } | |
| .c100.p21 .bar { | |
| -webkit-transform: rotate(75.6deg); | |
| -moz-transform: rotate(75.6deg); | |
| -ms-transform: rotate(75.6deg); | |
| -o-transform: rotate(75.6deg); | |
| transform: rotate(75.6deg); | |
| } | |
| .c100.p22 .bar { | |
| -webkit-transform: rotate(79.2deg); | |
| -moz-transform: rotate(79.2deg); | |
| -ms-transform: rotate(79.2deg); | |
| -o-transform: rotate(79.2deg); | |
| transform: rotate(79.2deg); | |
| } | |
| .c100.p23 .bar { | |
| -webkit-transform: rotate(82.8deg); | |
| -moz-transform: rotate(82.8deg); | |
| -ms-transform: rotate(82.8deg); | |
| -o-transform: rotate(82.8deg); | |
| transform: rotate(82.8deg); | |
| } | |
| .c100.p24 .bar { | |
| -webkit-transform: rotate(86.4deg); | |
| -moz-transform: rotate(86.4deg); | |
| -ms-transform: rotate(86.4deg); | |
| -o-transform: rotate(86.4deg); | |
| transform: rotate(86.4deg); | |
| } | |
| .c100.p25 .bar { | |
| -webkit-transform: rotate(90deg); | |
| -moz-transform: rotate(90deg); | |
| -ms-transform: rotate(90deg); | |
| -o-transform: rotate(90deg); | |
| transform: rotate(90deg); | |
| } | |
| .c100.p26 .bar { | |
| -webkit-transform: rotate(93.6deg); | |
| -moz-transform: rotate(93.6deg); | |
| -ms-transform: rotate(93.6deg); | |
| -o-transform: rotate(93.6deg); | |
| transform: rotate(93.6deg); | |
| } | |
| .c100.p27 .bar { | |
| -webkit-transform: rotate(97.2deg); | |
| -moz-transform: rotate(97.2deg); | |
| -ms-transform: rotate(97.2deg); | |
| -o-transform: rotate(97.2deg); | |
| transform: rotate(97.2deg); | |
| } | |
| .c100.p28 .bar { | |
| -webkit-transform: rotate(100.8deg); | |
| -moz-transform: rotate(100.8deg); | |
| -ms-transform: rotate(100.8deg); | |
| -o-transform: rotate(100.8deg); | |
| transform: rotate(100.8deg); | |
| } | |
| .c100.p29 .bar { | |
| -webkit-transform: rotate(104.4deg); | |
| -moz-transform: rotate(104.4deg); | |
| -ms-transform: rotate(104.4deg); | |
| -o-transform: rotate(104.4deg); | |
| transform: rotate(104.4deg); | |
| } | |
| .c100.p30 .bar { | |
| -webkit-transform: rotate(108deg); | |
| -moz-transform: rotate(108deg); | |
| -ms-transform: rotate(108deg); | |
| -o-transform: rotate(108deg); | |
| transform: rotate(108deg); | |
| } | |
| .c100.p31 .bar { | |
| -webkit-transform: rotate(111.6deg); | |
| -moz-transform: rotate(111.6deg); | |
| -ms-transform: rotate(111.6deg); | |
| -o-transform: rotate(111.6deg); | |
| transform: rotate(111.6deg); | |
| } | |
| .c100.p32 .bar { | |
| -webkit-transform: rotate(115.2deg); | |
| -moz-transform: rotate(115.2deg); | |
| -ms-transform: rotate(115.2deg); | |
| -o-transform: rotate(115.2deg); | |
| transform: rotate(115.2deg); | |
| } | |
| .c100.p33 .bar { | |
| -webkit-transform: rotate(118.8deg); | |
| -moz-transform: rotate(118.8deg); | |
| -ms-transform: rotate(118.8deg); | |
| -o-transform: rotate(118.8deg); | |
| transform: rotate(118.8deg); | |
| } | |
| .c100.p34 .bar { | |
| -webkit-transform: rotate(122.4deg); | |
| -moz-transform: rotate(122.4deg); | |
| -ms-transform: rotate(122.4deg); | |
| -o-transform: rotate(122.4deg); | |
| transform: rotate(122.4deg); | |
| } | |
| .c100.p35 .bar { | |
| -webkit-transform: rotate(126deg); | |
| -moz-transform: rotate(126deg); | |
| -ms-transform: rotate(126deg); | |
| -o-transform: rotate(126deg); | |
| transform: rotate(126deg); | |
| } | |
| .c100.p36 .bar { | |
| -webkit-transform: rotate(129.6deg); | |
| -moz-transform: rotate(129.6deg); | |
| -ms-transform: rotate(129.6deg); | |
| -o-transform: rotate(129.6deg); | |
| transform: rotate(129.6deg); | |
| } | |
| .c100.p37 .bar { | |
| -webkit-transform: rotate(133.2deg); | |
| -moz-transform: rotate(133.2deg); | |
| -ms-transform: rotate(133.2deg); | |
| -o-transform: rotate(133.2deg); | |
| transform: rotate(133.2deg); | |
| } | |
| .c100.p38 .bar { | |
| -webkit-transform: rotate(136.8deg); | |
| -moz-transform: rotate(136.8deg); | |
| -ms-transform: rotate(136.8deg); | |
| -o-transform: rotate(136.8deg); | |
| transform: rotate(136.8deg); | |
| } | |
| .c100.p39 .bar { | |
| -webkit-transform: rotate(140.4deg); | |
| -moz-transform: rotate(140.4deg); | |
| -ms-transform: rotate(140.4deg); | |
| -o-transform: rotate(140.4deg); | |
| transform: rotate(140.4deg); | |
| } | |
| .c100.p40 .bar { | |
| -webkit-transform: rotate(144deg); | |
| -moz-transform: rotate(144deg); | |
| -ms-transform: rotate(144deg); | |
| -o-transform: rotate(144deg); | |
| transform: rotate(144deg); | |
| } | |
| .c100.p41 .bar { | |
| -webkit-transform: rotate(147.6deg); | |
| -moz-transform: rotate(147.6deg); | |
| -ms-transform: rotate(147.6deg); | |
| -o-transform: rotate(147.6deg); | |
| transform: rotate(147.6deg); | |
| } | |
| .c100.p42 .bar { | |
| -webkit-transform: rotate(151.2deg); | |
| -moz-transform: rotate(151.2deg); | |
| -ms-transform: rotate(151.2deg); | |
| -o-transform: rotate(151.2deg); | |
| transform: rotate(151.2deg); | |
| } | |
| .c100.p43 .bar { | |
| -webkit-transform: rotate(154.8deg); | |
| -moz-transform: rotate(154.8deg); | |
| -ms-transform: rotate(154.8deg); | |
| -o-transform: rotate(154.8deg); | |
| transform: rotate(154.8deg); | |
| } | |
| .c100.p44 .bar { | |
| -webkit-transform: rotate(158.4deg); | |
| -moz-transform: rotate(158.4deg); | |
| -ms-transform: rotate(158.4deg); | |
| -o-transform: rotate(158.4deg); | |
| transform: rotate(158.4deg); | |
| } | |
| .c100.p45 .bar { | |
| -webkit-transform: rotate(162deg); | |
| -moz-transform: rotate(162deg); | |
| -ms-transform: rotate(162deg); | |
| -o-transform: rotate(162deg); | |
| transform: rotate(162deg); | |
| } | |
| .c100.p46 .bar { | |
| -webkit-transform: rotate(165.6deg); | |
| -moz-transform: rotate(165.6deg); | |
| -ms-transform: rotate(165.6deg); | |
| -o-transform: rotate(165.6deg); | |
| transform: rotate(165.6deg); | |
| } | |
| .c100.p47 .bar { | |
| -webkit-transform: rotate(169.2deg); | |
| -moz-transform: rotate(169.2deg); | |
| -ms-transform: rotate(169.2deg); | |
| -o-transform: rotate(169.2deg); | |
| transform: rotate(169.2deg); | |
| } | |
| .c100.p48 .bar { | |
| -webkit-transform: rotate(172.8deg); | |
| -moz-transform: rotate(172.8deg); | |
| -ms-transform: rotate(172.8deg); | |
| -o-transform: rotate(172.8deg); | |
| transform: rotate(172.8deg); | |
| } | |
| .c100.p49 .bar { | |
| -webkit-transform: rotate(176.4deg); | |
| -moz-transform: rotate(176.4deg); | |
| -ms-transform: rotate(176.4deg); | |
| -o-transform: rotate(176.4deg); | |
| transform: rotate(176.4deg); | |
| } | |
| .c100.p50 .bar { | |
| -webkit-transform: rotate(180deg); | |
| -moz-transform: rotate(180deg); | |
| -ms-transform: rotate(180deg); | |
| -o-transform: rotate(180deg); | |
| transform: rotate(180deg); | |
| } | |
| .c100.p51 .bar { | |
| -webkit-transform: rotate(183.6deg); | |
| -moz-transform: rotate(183.6deg); | |
| -ms-transform: rotate(183.6deg); | |
| -o-transform: rotate(183.6deg); | |
| transform: rotate(183.6deg); | |
| } | |
| .c100.p52 .bar { | |
| -webkit-transform: rotate(187.2deg); | |
| -moz-transform: rotate(187.2deg); | |
| -ms-transform: rotate(187.2deg); | |
| -o-transform: rotate(187.2deg); | |
| transform: rotate(187.2deg); | |
| } | |
| .c100.p53 .bar { | |
| -webkit-transform: rotate(190.8deg); | |
| -moz-transform: rotate(190.8deg); | |
| -ms-transform: rotate(190.8deg); | |
| -o-transform: rotate(190.8deg); | |
| transform: rotate(190.8deg); | |
| } | |
| .c100.p54 .bar { | |
| -webkit-transform: rotate(194.4deg); | |
| -moz-transform: rotate(194.4deg); | |
| -ms-transform: rotate(194.4deg); | |
| -o-transform: rotate(194.4deg); | |
| transform: rotate(194.4deg); | |
| } | |
| .c100.p55 .bar { | |
| -webkit-transform: rotate(198deg); | |
| -moz-transform: rotate(198deg); | |
| -ms-transform: rotate(198deg); | |
| -o-transform: rotate(198deg); | |
| transform: rotate(198deg); | |
| } | |
| .c100.p56 .bar { | |
| -webkit-transform: rotate(201.6deg); | |
| -moz-transform: rotate(201.6deg); | |
| -ms-transform: rotate(201.6deg); | |
| -o-transform: rotate(201.6deg); | |
| transform: rotate(201.6deg); | |
| } | |
| .c100.p57 .bar { | |
| -webkit-transform: rotate(205.2deg); | |
| -moz-transform: rotate(205.2deg); | |
| -ms-transform: rotate(205.2deg); | |
| -o-transform: rotate(205.2deg); | |
| transform: rotate(205.2deg); | |
| } | |
| .c100.p58 .bar { | |
| -webkit-transform: rotate(208.8deg); | |
| -moz-transform: rotate(208.8deg); | |
| -ms-transform: rotate(208.8deg); | |
| -o-transform: rotate(208.8deg); | |
| transform: rotate(208.8deg); | |
| } | |
| .c100.p59 .bar { | |
| -webkit-transform: rotate(212.4deg); | |
| -moz-transform: rotate(212.4deg); | |
| -ms-transform: rotate(212.4deg); | |
| -o-transform: rotate(212.4deg); | |
| transform: rotate(212.4deg); | |
| } | |
| .c100.p60 .bar { | |
| -webkit-transform: rotate(216deg); | |
| -moz-transform: rotate(216deg); | |
| -ms-transform: rotate(216deg); | |
| -o-transform: rotate(216deg); | |
| transform: rotate(216deg); | |
| } | |
| .c100.p61 .bar { | |
| -webkit-transform: rotate(219.6deg); | |
| -moz-transform: rotate(219.6deg); | |
| -ms-transform: rotate(219.6deg); | |
| -o-transform: rotate(219.6deg); | |
| transform: rotate(219.6deg); | |
| } | |
| .c100.p62 .bar { | |
| -webkit-transform: rotate(223.2deg); | |
| -moz-transform: rotate(223.2deg); | |
| -ms-transform: rotate(223.2deg); | |
| -o-transform: rotate(223.2deg); | |
| transform: rotate(223.2deg); | |
| } | |
| .c100.p63 .bar { | |
| -webkit-transform: rotate(226.8deg); | |
| -moz-transform: rotate(226.8deg); | |
| -ms-transform: rotate(226.8deg); | |
| -o-transform: rotate(226.8deg); | |
| transform: rotate(226.8deg); | |
| } | |
| .c100.p64 .bar { | |
| -webkit-transform: rotate(230.4deg); | |
| -moz-transform: rotate(230.4deg); | |
| -ms-transform: rotate(230.4deg); | |
| -o-transform: rotate(230.4deg); | |
| transform: rotate(230.4deg); | |
| } | |
| .c100.p65 .bar { | |
| -webkit-transform: rotate(234deg); | |
| -moz-transform: rotate(234deg); | |
| -ms-transform: rotate(234deg); | |
| -o-transform: rotate(234deg); | |
| transform: rotate(234deg); | |
| } | |
| .c100.p66 .bar { | |
| -webkit-transform: rotate(237.6deg); | |
| -moz-transform: rotate(237.6deg); | |
| -ms-transform: rotate(237.6deg); | |
| -o-transform: rotate(237.6deg); | |
| transform: rotate(237.6deg); | |
| } | |
| .c100.p67 .bar { | |
| -webkit-transform: rotate(241.2deg); | |
| -moz-transform: rotate(241.2deg); | |
| -ms-transform: rotate(241.2deg); | |
| -o-transform: rotate(241.2deg); | |
| transform: rotate(241.2deg); | |
| } | |
| .c100.p68 .bar { | |
| -webkit-transform: rotate(244.8deg); | |
| -moz-transform: rotate(244.8deg); | |
| -ms-transform: rotate(244.8deg); | |
| -o-transform: rotate(244.8deg); | |
| transform: rotate(244.8deg); | |
| } | |
| .c100.p69 .bar { | |
| -webkit-transform: rotate(248.4deg); | |
| -moz-transform: rotate(248.4deg); | |
| -ms-transform: rotate(248.4deg); | |
| -o-transform: rotate(248.4deg); | |
| transform: rotate(248.4deg); | |
| } | |
| .c100.p70 .bar { | |
| -webkit-transform: rotate(252deg); | |
| -moz-transform: rotate(252deg); | |
| -ms-transform: rotate(252deg); | |
| -o-transform: rotate(252deg); | |
| transform: rotate(252deg); | |
| } | |
| .c100.p71 .bar { | |
| -webkit-transform: rotate(255.6deg); | |
| -moz-transform: rotate(255.6deg); | |
| -ms-transform: rotate(255.6deg); | |
| -o-transform: rotate(255.6deg); | |
| transform: rotate(255.6deg); | |
| } | |
| .c100.p72 .bar { | |
| -webkit-transform: rotate(259.2deg); | |
| -moz-transform: rotate(259.2deg); | |
| -ms-transform: rotate(259.2deg); | |
| -o-transform: rotate(259.2deg); | |
| transform: rotate(259.2deg); | |
| } | |
| .c100.p73 .bar { | |
| -webkit-transform: rotate(262.8deg); | |
| -moz-transform: rotate(262.8deg); | |
| -ms-transform: rotate(262.8deg); | |
| -o-transform: rotate(262.8deg); | |
| transform: rotate(262.8deg); | |
| } | |
| .c100.p74 .bar { | |
| -webkit-transform: rotate(266.4deg); | |
| -moz-transform: rotate(266.4deg); | |
| -ms-transform: rotate(266.4deg); | |
| -o-transform: rotate(266.4deg); | |
| transform: rotate(266.4deg); | |
| } | |
| .c100.p75 .bar { | |
| -webkit-transform: rotate(270deg); | |
| -moz-transform: rotate(270deg); | |
| -ms-transform: rotate(270deg); | |
| -o-transform: rotate(270deg); | |
| transform: rotate(270deg); | |
| } | |
| .c100.p76 .bar { | |
| -webkit-transform: rotate(273.6deg); | |
| -moz-transform: rotate(273.6deg); | |
| -ms-transform: rotate(273.6deg); | |
| -o-transform: rotate(273.6deg); | |
| transform: rotate(273.6deg); | |
| } | |
| .c100.p77 .bar { | |
| -webkit-transform: rotate(277.2deg); | |
| -moz-transform: rotate(277.2deg); | |
| -ms-transform: rotate(277.2deg); | |
| -o-transform: rotate(277.2deg); | |
| transform: rotate(277.2deg); | |
| } | |
| .c100.p78 .bar { | |
| -webkit-transform: rotate(280.8deg); | |
| -moz-transform: rotate(280.8deg); | |
| -ms-transform: rotate(280.8deg); | |
| -o-transform: rotate(280.8deg); | |
| transform: rotate(280.8deg); | |
| } | |
| .c100.p79 .bar { | |
| -webkit-transform: rotate(284.4deg); | |
| -moz-transform: rotate(284.4deg); | |
| -ms-transform: rotate(284.4deg); | |
| -o-transform: rotate(284.4deg); | |
| transform: rotate(284.4deg); | |
| } | |
| .c100.p80 .bar { | |
| -webkit-transform: rotate(288deg); | |
| -moz-transform: rotate(288deg); | |
| -ms-transform: rotate(288deg); | |
| -o-transform: rotate(288deg); | |
| transform: rotate(288deg); | |
| } | |
| .c100.p81 .bar { | |
| -webkit-transform: rotate(291.6deg); | |
| -moz-transform: rotate(291.6deg); | |
| -ms-transform: rotate(291.6deg); | |
| -o-transform: rotate(291.6deg); | |
| transform: rotate(291.6deg); | |
| } | |
| .c100.p82 .bar { | |
| -webkit-transform: rotate(295.2deg); | |
| -moz-transform: rotate(295.2deg); | |
| -ms-transform: rotate(295.2deg); | |
| -o-transform: rotate(295.2deg); | |
| transform: rotate(295.2deg); | |
| } | |
| .c100.p83 .bar { | |
| -webkit-transform: rotate(298.8deg); | |
| -moz-transform: rotate(298.8deg); | |
| -ms-transform: rotate(298.8deg); | |
| -o-transform: rotate(298.8deg); | |
| transform: rotate(298.8deg); | |
| } | |
| .c100.p84 .bar { | |
| -webkit-transform: rotate(302.4deg); | |
| -moz-transform: rotate(302.4deg); | |
| -ms-transform: rotate(302.4deg); | |
| -o-transform: rotate(302.4deg); | |
| transform: rotate(302.4deg); | |
| } | |
| .c100.p85 .bar { | |
| -webkit-transform: rotate(306deg); | |
| -moz-transform: rotate(306deg); | |
| -ms-transform: rotate(306deg); | |
| -o-transform: rotate(306deg); | |
| transform: rotate(306deg); | |
| } | |
| .c100.p86 .bar { | |
| -webkit-transform: rotate(309.6deg); | |
| -moz-transform: rotate(309.6deg); | |
| -ms-transform: rotate(309.6deg); | |
| -o-transform: rotate(309.6deg); | |
| transform: rotate(309.6deg); | |
| } | |
| .c100.p87 .bar { | |
| -webkit-transform: rotate(313.2deg); | |
| -moz-transform: rotate(313.2deg); | |
| -ms-transform: rotate(313.2deg); | |
| -o-transform: rotate(313.2deg); | |
| transform: rotate(313.2deg); | |
| } | |
| .c100.p88 .bar { | |
| -webkit-transform: rotate(316.8deg); | |
| -moz-transform: rotate(316.8deg); | |
| -ms-transform: rotate(316.8deg); | |
| -o-transform: rotate(316.8deg); | |
| transform: rotate(316.8deg); | |
| } | |
| .c100.p89 .bar { | |
| -webkit-transform: rotate(320.4deg); | |
| -moz-transform: rotate(320.4deg); | |
| -ms-transform: rotate(320.4deg); | |
| -o-transform: rotate(320.4deg); | |
| transform: rotate(320.4deg); | |
| } | |
| .c100.p90 .bar { | |
| -webkit-transform: rotate(324deg); | |
| -moz-transform: rotate(324deg); | |
| -ms-transform: rotate(324deg); | |
| -o-transform: rotate(324deg); | |
| transform: rotate(324deg); | |
| } | |
| .c100.p91 .bar { | |
| -webkit-transform: rotate(327.6deg); | |
| -moz-transform: rotate(327.6deg); | |
| -ms-transform: rotate(327.6deg); | |
| -o-transform: rotate(327.6deg); | |
| transform: rotate(327.6deg); | |
| } | |
| .c100.p92 .bar { | |
| -webkit-transform: rotate(331.2deg); | |
| -moz-transform: rotate(331.2deg); | |
| -ms-transform: rotate(331.2deg); | |
| -o-transform: rotate(331.2deg); | |
| transform: rotate(331.2deg); | |
| } | |
| .c100.p93 .bar { | |
| -webkit-transform: rotate(334.8deg); | |
| -moz-transform: rotate(334.8deg); | |
| -ms-transform: rotate(334.8deg); | |
| -o-transform: rotate(334.8deg); | |
| transform: rotate(334.8deg); | |
| } | |
| .c100.p94 .bar { | |
| -webkit-transform: rotate(338.4deg); | |
| -moz-transform: rotate(338.4deg); | |
| -ms-transform: rotate(338.4deg); | |
| -o-transform: rotate(338.4deg); | |
| transform: rotate(338.4deg); | |
| } | |
| .c100.p95 .bar { | |
| -webkit-transform: rotate(342deg); | |
| -moz-transform: rotate(342deg); | |
| -ms-transform: rotate(342deg); | |
| -o-transform: rotate(342deg); | |
| transform: rotate(342deg); | |
| } | |
| .c100.p96 .bar { | |
| -webkit-transform: rotate(345.6deg); | |
| -moz-transform: rotate(345.6deg); | |
| -ms-transform: rotate(345.6deg); | |
| -o-transform: rotate(345.6deg); | |
| transform: rotate(345.6deg); | |
| } | |
| .c100.p97 .bar { | |
| -webkit-transform: rotate(349.2deg); | |
| -moz-transform: rotate(349.2deg); | |
| -ms-transform: rotate(349.2deg); | |
| -o-transform: rotate(349.2deg); | |
| transform: rotate(349.2deg); | |
| } | |
| .c100.p98 .bar { | |
| -webkit-transform: rotate(352.8deg); | |
| -moz-transform: rotate(352.8deg); | |
| -ms-transform: rotate(352.8deg); | |
| -o-transform: rotate(352.8deg); | |
| transform: rotate(352.8deg); | |
| } | |
| .c100.p99 .bar { | |
| -webkit-transform: rotate(356.4deg); | |
| -moz-transform: rotate(356.4deg); | |
| -ms-transform: rotate(356.4deg); | |
| -o-transform: rotate(356.4deg); | |
| transform: rotate(356.4deg); | |
| } | |
| .c100.p100 .bar { | |
| -webkit-transform: rotate(360deg); | |
| -moz-transform: rotate(360deg); | |
| -ms-transform: rotate(360deg); | |
| -o-transform: rotate(360deg); | |
| transform: rotate(360deg); | |
| } | |
| .c100:hover { | |
| cursor: default; | |
| } | |
| .c100:hover>span { | |
| width: 3.33em; | |
| line-height: 3.33em; | |
| font-size: 0.3em; | |
| color: #307bbb; | |
| } | |
| .c100:hover:after { | |
| top: 0.04em; | |
| left: 0.04em; | |
| width: 0.92em; | |
| height: 0.92em; | |
| } | |
| .c100.dark { | |
| background-color: #777777; | |
| } | |
| .c100.dark .bar, | |
| .c100.dark .fill { | |
| border-color: #c6ff00 ; | |
| } | |
| .c100.dark>span { | |
| color: #777777; | |
| } | |
| .c100.dark:after { | |
| background-color: #666666; | |
| } | |
| .c100.dark:hover>span { | |
| color: #c6ff00; | |
| } | |
| .c100.green .bar, | |
| .c100.green .fill { | |
| border-color: #4db53c ; | |
| } | |
| .c100.green:hover>span { | |
| color: #4db53c; | |
| } | |
| .c100.green.dark .bar, | |
| .c100.green.dark .fill { | |
| border-color: #5fd400 ; | |
| } | |
| .c100.green.dark:hover>span { | |
| color: #5fd400; | |
| } | |
| .c100.orange .bar, | |
| .c100.orange .fill { | |
| border-color: #dd9d22 ; | |
| } | |
| .c100.orange:hover>span { | |
| color: #dd9d22; | |
| } | |
| .c100.orange.dark .bar, | |
| .c100.orange.dark .fill { | |
| border-color: #e08833 ; | |
| } | |
| .c100.orange.dark:hover>span { | |
| color: #e08833; | |
| } | |
| /*--thank you pop starts here--*/ | |
| .thank-you-pop { | |
| width: 100%; | |
| padding: 20px; | |
| text-align: center; | |
| } | |
| .thank-you-pop img { | |
| width: 76px; | |
| height: auto; | |
| margin: 0 auto; | |
| display: block; | |
| margin-bottom: 25px; | |
| } | |
| .thank-you-pop h1 { | |
| font-size: 42px; | |
| margin-bottom: 25px; | |
| color: #5C5C5C; | |
| } | |
| .thank-you-pop p { | |
| font-size: 20px; | |
| margin-bottom: 27px; | |
| color: #5C5C5C; | |
| } | |
| .thank-you-pop h3.cupon-pop { | |
| font-size: 25px; | |
| margin-bottom: 40px; | |
| color: #222; | |
| display: inline-block; | |
| text-align: center; | |
| padding: 10px 20px; | |
| border: 2px dashed #222; | |
| clear: both; | |
| font-weight: normal; | |
| } | |
| .thank-you-pop h3.cupon-pop span { | |
| color: #03A9F4; | |
| } | |
| .thank-you-pop a { | |
| display: inline-block; | |
| margin: 0 auto; | |
| padding: 9px 20px; | |
| color: #fff; | |
| text-transform: uppercase; | |
| font-size: 14px; | |
| background-color: #8BC34A; | |
| border-radius: 17px; | |
| } | |
| .thank-you-pop a i { | |
| margin-right: 5px; | |
| color: #fff; | |
| } | |
| #ignismyModal .modal-header { | |
| border: 0px; | |
| } | |
| /*--thank you pop ends here--*/ |