123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833 |
- /*--------------------------------------------------------------
- # Sections General
- --------------------------------------------------------------*/
- section {
- padding: 60px 0;
- overflow: hidden;
- }
- .section-bg {
- background-color: lighten($primary, 36);
- }
- .section-title {
- text-align: center;
- padding-bottom: 30px;
- h2 {
- font-size: 32px;
- font-weight: bold;
- position: relative;
- margin-bottom: 30px;
- color: $secondary;
- z-index: 2;
- }
- h2::after {
- content: "";
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%,-50%);
- width: 122px;
- height: 66px;
- background: url(../img/section-title-bg.png) no-repeat;
- z-index: -1;
- }
- p {
- margin-bottom: 0;
- }
- }
- /*--------------------------------------------------------------
- # Breadcrumbs
- --------------------------------------------------------------*/
- .breadcrumbs {
- padding: 15px 0;
- background-color: lighten($primary, 37);
- min-height: 40px;
- h2 {
- font-size: 24px;
- font-weight: 300;
- }
- ol {
- display: flex;
- flex-wrap: wrap;
- list-style: none;
- padding: 0;
- margin: 0;
- font-size: 14px;
- li + li {
- padding-left: 10px;
- }
- li + li::before {
- display: inline-block;
- padding-right: 10px;
- color: #6c757d;
- content: "/";
- }
- }
- @media (max-width: 768px) {
- .d-flex {
- display: block !important;
- }
-
- ol {
- display: block;
- li {
- display: inline-block;
- }
-
- }
- }
- }
- /*--------------------------------------------------------------
- # About
- --------------------------------------------------------------*/
- .about {
- background: url("../img/about-bg.jpg") center center no-repeat;
- background-size: cover;
- padding: 60px 0;
- position: relative;
- &::before {
- content: '';
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background: rgba(255, 255, 255, 0.75);
- z-index: 9;
- }
- .container {
- position: relative;
- z-index: 10;
- }
- .content {
- padding: 30px 30px 30px 0;
- h3 {
- font-weight: 700;
- font-size: 34px;
- color: $secondary;
- margin-bottom: 30px;
- }
- p {
- margin-bottom: 30px;
- }
- .about-btn {
- display: inline-block;
- background: $primary;
- padding: 6px 44px 8px 30px;
- color: $white;
- border-radius: 50px;
- transition: 0.3s;
- position: relative;
- i {
- font-size: 18px;
- position: absolute;
- right: 18px;
- top: 9px;
- }
- &:hover {
- background: lighten($primary, 5);
- }
- }
-
- }
- .icon-boxes {
- .icon-box {
- margin-top: 30px;
- i {
- font-size: 40px;
- color: $primary;
- margin-bottom: 10px;
- }
- h4 {
- font-size: 20px;
- font-weight: 700;
- margin: 0 0 10px 0;
- }
-
-
- p {
- font-size: 15px;
- color: lighten($default, 25);
- }
-
- }
-
- }
- @media (max-width: 1200px) {
- .content {
- padding-right: 0;
- }
- }
- @media (max-width: 768px) {
- text-align: center;
- }
- }
- /*--------------------------------------------------------------
- # Services
- --------------------------------------------------------------*/
- .services {
- .icon-box {
- padding: 30px;
- position: relative;
- overflow: hidden;
- background: $white;
- box-shadow: 0 0 29px 0 rgba(68,88,144,.12);
- transition: all 0.3s ease-in-out;
- border-radius: 8px;
- z-index: 1;
- }
- .icon-box::before {
- content: '';
- position: absolute;
- background: lighten($primary, 40);
- right: 0;
- left: 0;
- bottom: 0;
- top: 100%;
- transition: all 0.3s;
- z-index: -1;
- }
- .icon-box:hover::before {
- background: $primary;
- top: 0;
- border-radius: 0px;
- }
- .icon {
- margin-bottom: 15px;
- i {
- font-size: 48px;
- line-height: 1;
- color: $primary;
- transition: all 0.3s ease-in-out;
- }
- }
- .title {
- font-weight: 700;
- margin-bottom: 15px;
- font-size: 18px;
- a {
- color: #111;
- }
- }
- .description {
- font-size: 15px;
- line-height: 28px;
- margin-bottom: 0;
- }
- .icon-box:hover {
- .title a, .description {
- color: $white;
- }
- .icon {
- i {
- color: $white;
- }
- }
- }
- }
- /*--------------------------------------------------------------
- # Counts
- --------------------------------------------------------------*/
- .counts {
- padding-bottom: 30px;
- .count-box {
- padding: 30px;
- width: 100%;
- i {
- display: block;
- font-size: 44px;
- color: $primary;
- float: left;
- line-height: 0;
- }
- span {
- font-size: 48px;
- line-height: 40px;
- display: block;
- font-weight: 700;
- color: $secondary;
- margin-left: 60px;
- }
- p {
- padding: 15px 0 0 0;
- margin: 0 0 0 60px;
- font-family: $font-primary;
- font-size: 14px;
- color: lighten($secondary, 15);
- }
- a {
- font-weight: 600;
- display: block;
- margin-top: 20px;
- color: lighten($secondary, 15);
- font-size: 15px;
- font-family: $font-secondary;
- transition: ease-in-out 0.3s;
- &:hover {
- color: lighten($secondary, 30);
- }
- }
- }
- }
- /*--------------------------------------------------------------
- # Cta
- --------------------------------------------------------------*/
- .cta {
- background: linear-gradient(rgba($primary, 0.8), rgba($primary , .8)), url("../img/cta-bg.jpg") fixed center center;
- background-size: cover;
- padding: 60px 0;
- h3 {
- color: #fff;
- font-size: 28px;
- font-weight: 700;
- }
- p {
- color: #fff;
- }
- .cta-btn {
- font-family: $font-primary;
- text-transform: uppercase;
- font-weight: 500;
- font-size: 16px;
- letter-spacing: 1px;
- display: inline-block;
- padding: 8px 28px;
- border-radius: 25px;
- transition: 0.5s;
- margin-top: 10px;
- border: 2px solid rgba($white, .5);
- color: #fff;
- &:hover {
- border-color: $white;
- }
- }
- }
- /*--------------------------------------------------------------
- # Portfolio
- --------------------------------------------------------------*/
- .portfolio {
- .portfolio-item {
- margin-bottom: 30px;
- }
- #portfolio-flters {
- padding:0;
- margin:0 auto 35px auto;
- list-style:none;
- text-align:center;
- background: lighten($primary, 34);
- border-radius: 50px;
- padding: 2px 15px;
- li {
- cursor: pointer;
- display: inline-block;
- padding: 10px 15px 8px 15px;
- font-size: 14px;
- font-weight: 600;
- line-height: 1;
- text-transform: uppercase;
- color: $secondary;
- margin-bottom: 5px;
- transition: all 0.3s ease-in-out;
- &:hover, &.filter-active {
- color: $primary;
- }
- &:last-child {
- margin-right: 0;
- }
- }
- }
- .portfolio-wrap {
- transition: 0.3s;
- position: relative;
- overflow: hidden;
- z-index: 1;
-
- $portfolio_wrap_spacing: 0;
- &::before {
- content: "";
- background: rgba($white, 0.5);
- position: absolute;
- left: $portfolio_wrap_spacing;
- right: $portfolio_wrap_spacing;
- top: $portfolio_wrap_spacing;
- bottom: $portfolio_wrap_spacing;
- transition: all ease-in-out 0.3s;
- z-index: 2;
- opacity: 0;
- }
- .portfolio-links {
- opacity: 1;
- left: 0;
- right: 0;
- bottom: -60px;
- z-index: 3;
- position: absolute;
- transition: all ease-in-out 0.3s;
- display: flex;
- justify-content: center;
- a {
- color: $white;
- font-size: 28px;
- text-align: center;
- background: rgba($primary, .75);
- transition: 0.3s;
- width: 50%;
- &:hover {
- background: rgba($primary, .95);
- }
- }
- a + a {
- border-left: 1px solid lighten($primary, 10);
- }
- }
- &:hover {
- &::before {
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- opacity: 1;
- }
- .portfolio-links {
- opacity: 1;
- bottom: 0;
- }
-
- }
- }
- }
- /*--------------------------------------------------------------
- # Portfolio Details
- --------------------------------------------------------------*/
- .portfolio-details {
- padding-top: 40px;
- .portfolio-details-slider {
- img {
- width: 100%;
- }
- .swiper-pagination {
- margin-top: 20px;
- position: relative;
- .swiper-pagination-bullet {
- width: 12px;
- height: 12px;
- background-color: #fff;
- opacity: 1;
- border: 1px solid $primary;
- }
- .swiper-pagination-bullet-active {
- background-color: $primary;
- }
- }
- }
- .portfolio-info {
- padding: 30px;
- box-shadow: 0px 0 30px rgba($secondary, 0.08);
- h3 {
- font-size: 22px;
- font-weight: 700;
- margin-bottom: 20px;
- padding-bottom: 20px;
- border-bottom: 1px solid #eee;
- }
- ul {
- list-style: none;
- padding: 0;
- font-size: 15px;
- li +li {
- margin-top: 10px;
- }
- }
-
- }
- .portfolio-description {
- padding-top: 30px;
-
- h2 {
- font-size: 26px;
- font-weight: 700;
- margin-bottom: 20px;
- }
- p {
- padding: 0;
- }
- }
- }
- /*--------------------------------------------------------------
- # Testimonials
- --------------------------------------------------------------*/
- .testimonials {
- .testimonial-item {
- box-sizing: content-box;
- text-align: center;
- min-height: 320px;
- .testimonial-img {
- width: 90px;
- border-radius: 50%;
- margin: 0 auto;
- }
- h3 {
- font-size: 18px;
- font-weight: bold;
- margin: 10px 0 5px 0;
- color: #111;
- }
- h4 {
- font-size: 14px;
- color: #999;
- margin:0;
- }
- .quote-icon-left, .quote-icon-right {
- color: lighten($primary, 28);
- font-size: 26px;
- }
- .quote-icon-left {
- display: inline-block;
- left: -5px;
- position: relative;
- }
- .quote-icon-right {
- display: inline-block;
- right: -5px;
- position: relative;
- top:10px;
- }
- p {
- font-style: italic;
- margin: 0 15px 15px 15px;
- padding: 20px;
- background: $white;
- position: relative;
- margin-bottom: 35px;
- border-radius: 6px;
- box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.10);
- }
- p::after {
- content: "";
- width: 0;
- height: 0;
- border-top: 20px solid $white;
- border-right: 20px solid transparent;
- border-left: 20px solid transparent;
- position: absolute;
- bottom: -20px;
- left: calc(50% - 20px);
- }
- }
- .swiper-pagination {
- margin-top: 20px;
- position: relative;
-
- .swiper-pagination-bullet {
- width: 12px;
- height: 12px;
- background-color: #fff;
- opacity: 1;
- border: 1px solid $primary;
- }
-
- .swiper-pagination-bullet-active {
- background-color: $primary;
- }
- }
- }
- /*--------------------------------------------------------------
- # Team
- --------------------------------------------------------------*/
- .team {
- .member {
- text-align: center;
- margin-bottom: 80px;
- position: relative;
- .pic {
- overflow: hidden;
- }
-
- .member-info {
- position: absolute;
- top: 85%;
- left: 20px;
- right: 20px;
- background: $white;
- padding: 20px 0;
- color: $secondary;
- box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.10);
- max-height: 95px;
- overflow: hidden;
- transition: max-height 0.5s ease-in-out;
- }
-
- &:hover {
- .member-info {
- max-height: 300px;
- }
- }
- h4 {
- font-weight: 700;
- margin-bottom: 10px;
- font-size: 16px;
- color: $secondary;
- position: relative;
- padding-bottom: 10px;
- }
- h4::after {
- content: '';
- position: absolute;
- display: block;
- width: 50px;
- height: 1px;
- background: lighten($secondary, 50);
- bottom: 0;
- left: calc(50% - 25px);
- }
- span {
- font-style: italic;
- display: block;
- font-size: 13px;
- }
- .social {
- margin-top: 15px;
- a {
- transition: color 0.3s;
- color:lighten($secondary, 20);
- &:hover {
- color: $primary;
- }
- }
- i {
- font-size: 16px;
- margin: 0 2px;
- }
- }
- }
- @media (max-width: 992px) {
- .member {
- margin-bottom: 110px;
- }
- }
- }
- /*--------------------------------------------------------------
- # Contact
- --------------------------------------------------------------*/
- .contact {
- padding-bottom: 80px;
- .info-box {
- color: $default;
- background: $white;
- text-align: center;
- box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
- padding: 20px 0 30px 0;
- i {
- font-size: 32px;
- color: $primary;
- border-radius: 50%;
- padding: 8px;
- border: 2px dotted lighten($primary, 35);
- }
- h3 {
- font-size: 20px;
- color: lighten($default, 20);
- font-weight: 700;
- margin: 10px 0;
- }
- p {
- padding: 0;
- line-height: 24px;
- font-size: 14px;
- margin-bottom: 0;
- }
- }
- .php-email-form {
- box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
- padding: 30px;
- background: $white;
-
- .error-message {
- display: none;
- color: #fff;
- background: #ed3c0d;
- text-align: left;
- padding: 15px;
- font-weight: 600;
- & br + br {
- margin-top: 25px;
- }
- }
-
- .sent-message {
- display: none;
- color: #fff;
- background: #18d26e;
- text-align: center;
- padding: 15px;
- font-weight: 600;
- }
-
- .loading {
- display: none;
- background: #fff;
- text-align: center;
- padding: 15px;
-
- &: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;
- animation: animate-loading 1s linear infinite;
- }
-
- }
- input, textarea {
- border-radius: 0;
- box-shadow: none;
- font-size: 14px;
- &::focus {
- background-color: $primary;
- }
- }
- input {
- padding: 10px 15px;
- }
- textarea {
- padding: 12px 15px;
- }
- button[type="submit"] {
- background: $primary;
- border: 0;
- padding: 10px 24px;
- color: #fff;
- transition: 0.4s;
- &:hover {
- background: lighten($primary, 10%);
- }
- }
-
- }
-
- @keyframes animate-loading {
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(360deg); }
- }
- }
|