123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494 |
- @import url('https://fonts.googleapis.com/css?family=Poppins:300,400');
- body {
- background: #ffffff;
- font-family: 'Poppins', sans-serif;
- font-style: normal;
- font-weight: normal;
- overflow-x: hidden;
- }
- html, body {
- width: 100%;
- height: 100%;
- }
- /*---------------------------------------
- Typorgraphy
- -----------------------------------------*/
- h1,h2,h3,h4,h5,h6 {
- font-style: normal;
- font-weight: bold;
- letter-spacing: 0px;
- }
- h1 {
- color: #ffffff;
- font-size: 45px;
- line-height: normal;
- }
- h2 {
- color: #2b2b2b;
- font-size: 35px;
- line-height: 52px;
- margin-top: 0px;
- }
- h3 {
- color: #282828;
- font-size: 16px;
- line-height: 32px;
- letter-spacing: 6px;
- text-transform: uppercase;
- }
- h4 {
- color: #353535;
- font-size: 20px;
- }
- p {
- color: #878787;
- font-size: 16px;
- font-weight: normal;
- line-height: 25px;
- letter-spacing: 0.2px;
- }
- .bg-grey {
- background: #2b2b2b !important;
- }
- .white-color {
- color: #f0f0f0;
- }
- /*---------------------------------------
- Buttons
- -----------------------------------------*/
- .section-btn {
- background: #000000;
- border: none;
- border-radius: 50px;
- color: #f0f0f0;
- font-size: 12px;
- font-weight: bold;
- letter-spacing: 1.5px;
- padding: 18px 32px;
- margin-top: 42px;
- text-transform: uppercase;
- -webkit-transition: all ease-in-out 0.4s;
- transition: all ease-in-out 0.4s;
- }
- .section-btn:focus,
- .section-btn:hover {
- background: #ffffff;
- color: #000000;
- }
- .bi-bi-camera {
- margin: 20 0 20 0;
- }
- /*---------------------------------------
- General
- -----------------------------------------*/
- html{
- -webkit-font-smoothing: antialiased;
- }
- a {
- color: #757557;
- -webkit-transition: 0.5s;
- transition: 0.5s;
- text-decoration: none !important;
- }
- a:hover, a:active, a:focus {
- color: #000000;
- outline: none;
- }
- * {
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- *:before,
- *:after {
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- .parallax-section {
- background-attachment: fixed !important;
- background-size: cover !important;
- }
- .section-title {
- margin: 0;
- padding-bottom: 32px;
- }
- #service, #about, #work,
- #contact, footer {
- position: relative;
- padding-top: 80px;
- padding-bottom: 80px;
- }
- #service, #work {
- background: #f9f9f9;
- text-align: center;
- }
- /*---------------------------------------
- Pre loader section
- -----------------------------------------*/
- .preloader {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 99999;
- display: flex;
- flex-flow: row nowrap;
- justify-content: center;
- align-items: center;
- background: none repeat scroll 0 0 #ffffff;
- }
- .spinner {
- border: 1px solid transparent;
- border-radius: 5px;
- position: relative;
- }
- .spinner:before {
- content: '';
- box-sizing: border-box;
- position: absolute;
- top: 50%;
- left: 50%;
- width: 65px;
- height: 65px;
- margin-top: -10px;
- margin-left: -10px;
- border-radius: 50%;
- border: 2px solid #454545;
- border-top-color: #ffffff;
- animation: spinner .9s linear infinite;
- }
- @-webkit-@keyframes spinner {
- to {transform: rotate(360deg);}
- }
- @keyframes spinner {
- to {transform: rotate(360deg);}
- }
- /*---------------------------------------
- Home section
- -----------------------------------------*/
- #home {
- background: url('../images/images.jpg') 50% 0 repeat-y fixed;
- background-size: cover;
- background-position: center center;
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- -ms-flex-align: center;
- align-items: center;
- height: 100vh;
- position: relative;
- text-align: right;
- }
- /*---------------------------------------
- Service section
- -----------------------------------------*/
- .service-thumb {
- background: #ffffff;
- border-radius: 5px;
- padding: 50px 10px;
- cursor: crosshair;
- position: relative;
- top: 0;
- -webkit-transition: all ease-in-out 0.4s;
- transition: all ease-in-out 0.4s;
- margin-block-end: 30px;
- }
- .service-thumb:hover {
- background: #2b2b2b;
- top: -5px;
- }
- .service-thumb:hover .fa,
- .service-thumb:hover h4 {
- color: #ffffff;
- }
- .service-thumb h4 {
- padding-bottom: 5px;
- }
- .service-thumb .fa {
- color: #7682cc;
- font-size: 62px;
- text-align: center;
- margin-top: 32px;
- margin-bottom: 22px;
- }
- .bg-grey .fa {
- color: #ffffff;
- }
- /*---------------------------------------
- About section
- -----------------------------------------*/
- #about {
- padding-top: 100px;
- }
- .about-image-thumb img {
- border-radius: 5px;
- margin-bottom: 22px;
- }
- .about-image-thumb .social-icon li a {
- background: #f0f0f0;
- }
- .about-thumb {
- padding: 32px 12px;
- }
- .about-thumb p {
- padding: 2px 0;
- }
- /*---------------------------------------
- Work section
- -----------------------------------------*/
- .work-thumb {
- margin: 10px 10 12px 10;
- padding: 0;
- overflow: hidden;
- position: relative;
- text-align: left;
- }
- .work-thumb img {
- border-radius: 5px;
- }
- .work-thumb h2 {
- font-size: 25px;
- }
- .work-thumb-overlay {
- position: absolute;
- background: #7682cc;
- border-radius: 5px;
- cursor: crosshair;
- opacity: 0;
- width: 100%;
- height: 100%;
- padding: 82px 42px;
- -webkit-transition: all ease-in-out 0.4s;
- transition: all ease-in-out 0.4s;
- }
- .work-thumb:hover .work-thumb-overlay {
- opacity: 1;
- }
- /*---------------------------------------
- Contact section
- -----------------------------------------*/
- .contact-info .fa {
- padding-right: 5px;
- }
- #contact .form-control {
- border: none;
- border-bottom: 2px solid #f0f0f0;
- border-radius: 0px;
- box-shadow: none;
- font-size: 18px;
- margin-top: 10px;
- margin-bottom: 10px;
- -webkit-transition: all ease-in-out 0.4s;
- transition: all ease-in-out 0.4s;
- }
- #contact .form-control:focus {
- border-bottom-color: #999999;
- }
- #contact input {
- height: 55px;
- }
- #contact button#submit {
- background: #2b2b2b;
- border: none;
- border-radius: 50px;
- color: #ffffff;
- height: 50px;
- margin-top: 24px;
- }
- #contact button#submit:hover {
- background: #7682cc;
- color: #ffffff;
- }
- /*---------------------------------------
- Footer section
- -----------------------------------------*/
- footer {
- background: #7682cc;
- text-align: center;
- padding: 120px 0;
- }
- footer p {
- padding-bottom: 16px;
- }
- /*---------------------------------------
- Social icon
- -----------------------------------------*/
- .social-icon {
- position: relative;
- padding: 0;
- margin: 0;
- text-align: center;
- }
- .social-icon li {
- display: inline-block;
- list-style: none;
- }
- .social-icon li a {
- background: #ffffff;
- border-radius: 100%;
- color: #454545;
- cursor: pointer;
- font-size: 20px;
- text-decoration: none;
- transition: all 0.4s ease-in-out;
- width: 45px;
- height: 45px;
- line-height: 45px;
- text-align: center;
- vertical-align: middle;
- position: relative;
- top: 0;
- margin: 0px 6px 10px 6px;
- }
- .social-icon li a:hover {
- background: #000000;
- color: #ffffff;
- transform: scale(1.1);
- top: -5px;
- }
- /*---------------------------------------
- Mobile Responsive styles
- -----------------------------------------*/
- @media (max-width: 980px) {
- #home {
- height: 55vh;
- }
- .service-thumb {
- margin-top: 12px;
- margin-bottom: 22px;
- }
- .contact-info {
- margin-top: 22px;
- }
- }
- @media (max-width: 768px) {
- #home {
- height: 85vh;
- }
- }
- @media (max-width: 580px) {
- h1 {
- font-size: 29px;
- }
- h2 {
- font-size: 23px;
- }
- #home {
- height: 95vh;
- }
- .contact-info {
- margin-top: 42px;
- }
- }
- @media (max-width: 320px) {
- #home {
- height: 125vh;
- }
- }
|