/*! themes/_flashy.scss | Bulkit | CSS Ninja */
/* ==========================================================================
Flashy theme variables and styles (Flashy theme is used in "Agency Kit")
========================================================================== */
/***
TABLE OF CONTENTS
=============================================================================
0. Theme color variables
1. Theme gradient
2. Box shadows
3. Pageloader
=============================================================================
***/
/* ==========================================================================
0. Theme color variables
========================================================================== */
/* ==========================================================================
1. Theme gradient
========================================================================== */
/* ==========================================================================
2. Box shadows
========================================================================== */
/* ==========================================================================
3. Pageloader
========================================================================== */

/*! themes/_colors.scss | Bulkit | CSS Ninja */
/* ==========================================================================
Bulkit general color variables 
========================================================================== */
/***
TABLE OF CONTENTS
=============================================================================
0. Bulkit colors
1. State colors
2. Social colors
3. Predefined gradients
4. Predefined box shadows
=============================================================================
***/
/* ==========================================================================
0. Bulkit colors
========================================================================== */
/* ==========================================================================
1. State colors
========================================================================== */
/* ==========================================================================
2. Social colors
========================================================================== */
/* ==========================================================================
3. Predefined gradients
========================================================================== */
/* Chrome 10-25, Safari 5.1-6 */
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
/* ==========================================================================
4. Predefined box shadows
========================================================================== */
/*! _cards.scss | Bulkit | CSS Ninja */
/* ==========================================================================
Card styles
========================================================================== */
/***
TABLE OF CONTENTS
=============================================================================
0. Feature card
1. Flex card
2. rounded cards
3. Event cards
4. Bulma cards
5. Ressource cards
6. Card variations
7. Media cards
=============================================================================
***/
/* ==========================================================================
0. Feature card
========================================================================== */
.feature-card {
  width: 300px;
  height: 320px;
  background-color: #fff;
  border-radius: 3px;
  margin: 0 auto;
  transition: all 0.6s;
}
.feature-card.card-md {
  height: 350px;
}
.feature-card.card-lg {
  height: 400px;
}
.feature-card.card-shadow {
  box-shadow: 0px 5px 43px rgba(0, 0, 0, 0.18) !important;
}
.feature-card.hover-inset:hover {
  box-shadow: inset rgba(143, 160, 241, 0.2) 0 0 0 1px, rgba(213, 220, 247, 0.59) 0 10px 20px;
  cursor: pointer;
}
.feature-card.light-bordered {
  border: 1px solid #e5e5e5 !important;
}
.feature-card .card-title h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #444F60;
}
.feature-card .card-icon img {
  height: 140px;
  margin-top: 20px;
}
.feature-card .card-img img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.feature-card .card-action {
  margin-top: 40px;
}
.feature-card .card-feature-description {
  padding: 5px 30px !important;
}
.feature-card .card-feature-description span {
  color: #878787;
  margin-top: 20px;
}
.feature-card .card-img-description {
  padding-bottom: 10px;
}
.feature-card .card-img-description span {
  color: #878787;
  margin-top: 20px;
}
.feature-card .bookmark i {
  font-size: 1.4rem;
  color: #A9ABAC;
  position: relative;
  top: 3px;
  margin-right: 10px;
}
.feature-card .bookmark i:hover {
  color: #7F00FF;
}

/* ==========================================================================
1. Flex card
========================================================================== */
.flex-card {
  position: relative;
  background-color: #dbd9d92b;
  border: 1px solid #fcfcfc;
  border-radius: 0.1875rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  transition: all 0.5s;
}
.flex-card .flex-card-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  border-bottom: 1px solid #ededed;
  padding: 10px 15px;
}
.flex-card .flex-card-header .header-avatar {
  max-height: 45px;
}
.flex-card .flex-card-header .header-avatar img {
  height: 45px;
  border-radius: 100px;
}
.flex-card .flex-card-header .header-info {
  margin: 0 10px;
}
.flex-card .flex-card-header .header-info .header-title {
  font-size: 1.2rem;
}
.flex-card .flex-card-header .header-info .header-subtitle {
  font-size: 0.9rem;
  color: #A9ABAC;
}
.flex-card .flex-card-header .header-control {
  margin-right: 10px;
}
.flex-card .flex-card-header .header-control i {
  font-size: 0.8rem;
  color: #A9ABAC;
}
.flex-card .flex-card-header .header-control:hover i {
  color: #F2B5E0;
}
.flex-card .flex-card-header.primary {
  background: #F2B5E0;
}
.flex-card .flex-card-header.primary .header-info div, .flex-card .flex-card-header.primary .header-control i {
  color: #fff !important;
}
.flex-card .flex-card-header.secondary {
  background: #7F00FF;
}
.flex-card .flex-card-header.secondary .header-info div, .flex-card .flex-card-header.secondary .header-control i {
  color: #fff !important;
}
.flex-card .flex-card-header.accent {
  background: #536dfe;
}
.flex-card .flex-card-header.accent .header-info div, .flex-card .flex-card-header.accent .header-control i {
  color: #fff !important;
}
.flex-card .card-body {
  padding: 30px 30px;
}
.flex-card .card-body.is-small {
  padding: 20px 20px;
}
.flex-card .card-body.is-large {
  padding: 40px 40px;
}
.flex-card h3.card-title {
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 22px;
  line-height: 30px;
  text-decoration: none;
}
.flex-card .card-description {
  line-height: 24px;
  cursor: default;
  color: #777;
  font-size: 16px;
}
.flex-card.primary-card {
  background: #F2B5E0;
}
.flex-card.primary-card .content, .flex-card.primary-card .content h2 {
  color: #fff !important;
}
.flex-card.secondary-card {
  background: #7F00FF;
}
.flex-card.secondary-card .content, .flex-card.secondary-card .content h2 {
  color: #fff !important;
}
.flex-card.accent-card {
  background: #536dfe;
}
.flex-card.accent-card .content, .flex-card.accent-card .content h2 {
  color: #fff !important;
}
.flex-card.card-overflow {
  overflow: visible !important;
}
.flex-card.light-bordered {
  border: 1px solid #e5e5e5 !important;
}
.flex-card.simple-shadow {
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}
.flex-card.light-raised {
  box-shadow: 0 3px 10px 4px rgba(0, 0, 0, 0.04);
}
.flex-card.raised {
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2);
}
.flex-card.hover-raised:hover {
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.flex-card.hover-inset:hover {
  box-shadow: inset rgba(143, 160, 241, 0.2) 0 0 0 1px, rgba(213, 220, 247, 0.59) 0 10px 20px;
  cursor: pointer;
}
.flex-card .tabs {
  padding: 15px 0.7rem;
}
.flex-card .navtab-content {
  min-height: 190px;
}
.flex-card .navtab-content p {
  padding: 0 0.8rem 20px;
}
.flex-card.icon-card {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  transition: inherit;
  margin-bottom: 0;
}
.flex-card.icon-card img {
  max-height: 80px;
}
.flex-card.icon-card .icon-card-text {
  font-size: 1.1rem;
  color: #A9ABAC;
}
.flex-card.icon-card-hover {
  height: 170px;
  padding: 20px 20px 10px 130px;
  border-radius: 8px;
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.04);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  text-align: left;
  background-color: #fff;
}
.flex-card.icon-card-hover:hover {
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
  transform: translate(0, -10px);
}
.flex-card.icon-card-hover.first-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url(../images/illustrations/icons/landing-v1/chrono.svg);
  background-position: 0 0, -80px 20px;
  background-size: auto, 200px;
  background-repeat: repeat, no-repeat;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
.flex-card.icon-card-hover.first-card:hover {
  background-image: linear-gradient(180deg, transparent, transparent), url(../images/illustrations/icons/landing-v1/chrono.svg);
  background-position: 0 0, -80px -25px;
  background-size: auto, 200px;
  background-repeat: repeat, no-repeat;
}
.flex-card.icon-card-hover.second-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url(../images/illustrations/icons/landing-v1/tablet-dots.svg);
  background-position: 0 0, -80px 20px;
  background-size: auto, 200px;
  background-repeat: repeat, no-repeat;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
.flex-card.icon-card-hover.second-card:hover {
  background-image: linear-gradient(180deg, transparent, transparent), url(../images/illustrations/icons/landing-v1/tablet-dots.svg);
  background-position: 0 0, -80px -25px;
  background-size: auto, 200px;
  background-repeat: repeat, no-repeat;
}
.flex-card.icon-card-hover.third-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url(../images/illustrations/icons/landing-v1/cog.svg);
  background-position: 0 0, -80px 20px;
  background-size: auto, 200px;
  background-repeat: repeat, no-repeat;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
.flex-card.icon-card-hover.third-card:hover {
  background-image: linear-gradient(180deg, transparent, transparent), url(../images/illustrations/icons/landing-v1/cog.svg);
  background-position: 0 0, -80px -25px;
  background-size: auto, 200px;
  background-repeat: repeat, no-repeat;
}
.flex-card.icon-card-hover.fourth-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url(../images/illustrations/icons/landing-v1/plane.svg);
  background-position: 0 0, -80px 20px;
  background-size: auto, 200px;
  background-repeat: repeat, no-repeat;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
.flex-card.icon-card-hover.fourth-card:hover {
  background-image: linear-gradient(180deg, transparent, transparent), url(../images/illustrations/icons/landing-v1/plane.svg);
  background-position: 0 0, -80px -25px;
  background-size: auto, 200px;
  background-repeat: repeat, no-repeat;
}
.flex-card.testimonial-card .testimonial-title {
  color: #F2B5E0;
  font-weight: 500;
  padding: 5px 0;
}
.flex-card.testimonial-card .testimonial-text {
  color: #999;
  font-size: 0.9rem;
  font-style: italic;
  padding: 5px 0;
}
.flex-card.testimonial-card .user-id {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 5px 0;
}
.flex-card.testimonial-card .user-id img {
  height: 50px;
  border-radius: 100px;
}
.flex-card.testimonial-card .user-id .info {
  padding: 0 10px;
}
.flex-card.testimonial-card .user-id .info .name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444F60;
}
.flex-card.testimonial-card .user-id .info .position {
  font-size: 0.9rem;
  color: #cecece;
}
.flex-card .navigation-tabs.outlined-pills .tabs.tabs-header.primary {
  background-color: #F2B5E0;
}
.flex-card .navigation-tabs.outlined-pills .tabs.tabs-header.secondary {
  background-color: #7F00FF;
}
.flex-card .navigation-tabs.outlined-pills .tabs.tabs-header.accent {
  background-color: #536dfe;
}
.flex-card .navigation-tabs.outlined-pills .tabs.tabs-header ul li a {
  color: #f2f2f2;
}
.flex-card .navigation-tabs.outlined-pills .tabs.tabs-header ul li.is-active a {
  color: #fff;
  border: 1px solid #fff;
  border-bottom-color: #fff !important;
}
.flex-card .icon-group {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.flex-card .icon-group img {
  height: 60px;
}
.flex-card .icon-group span {
  font-size: 20px;
  margin-left: 20px;
  color: #999;
  transition: all 0.5s;
}
.flex-card .icon-group span:hover {
  transform: translate(10px, 0);
}
.flex-card.auth-card {
  padding: 0px 40px 20px 40px;
}
.flex-card.auth-card .auth-card-header {
  height: 5rem;
  width: 100%;
  position: relative;
  top: -2.5rem;
  left: auto !important;
  right: auto !important;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.flex-card.auth-card .auth-card-header img {
  max-height: 30px;
}
.flex-card.auth-card .auth-card-header.header-primary {
  background-color: #F2B5E0;
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(0, 209, 178, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 209, 178, 0.2) !important;
}
.flex-card.auth-card .auth-card-header.header-secondary {
  background-color: #7F00FF;
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(127, 0, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(127, 0, 255, 0.2) !important;
}
.flex-card.auth-card .auth-card-header.header-accent {
  background-color: #536dfe;
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(83, 109, 254, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(83, 109, 254, 0.2) !important;
}
.flex-card .card-content {
  position: relative;
  padding: 1rem !important;
}
.flex-card .card-content .bottom-avatar img {
  height: 50px;
  border-radius: 100px;
  position: absolute;
  right: 0;
  bottom: 0;
}

/* ==========================================================================
2. Rounded cards
========================================================================== */
.floating-circle {
  width: 100px;
  height: 100px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 22px;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}
.floating-circle img {
  width: 60px;
  position: relative;
  left: 20px;
}

/* ==========================================================================
3. Event cards
========================================================================== */
.event-card {
  overflow: hidden;
  width: 100%;
  height: 320px;
  display: inline-block;
  position: relative;
  background-color: #fff;
  transition: box-shadow 300ms ease-in;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid #ededed;
}
.event-card:hover {
  box-shadow: 1px 1px 8px 2px rgba(0, 0, 0, 0.1);
}
.event-card .card-date {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #536dfe;
  z-index: 1;
}
.event-card .card-date .date {
  padding: 0 10px;
}
.event-card .card-date .date .day {
  font-size: 2.7rem;
  color: #fff;
  font-weight: bold;
}
.event-card .card-date .date .month {
  font-weight: 500;
  color: #fff;
}

.img-container {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.card-text {
  bottom: -40%;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  transition: all 450ms cubic-bezier(0.6, 0.06, 0.34, 0.61);
}
@media (max-width: 768px) {
  .card-text {
    bottom: -71%;
  }
}
@media (min-width: 768px) {
  .card-text {
    bottom: -55%;
  }
}
@media (min-width: 1024px) {
  .card-text {
    bottom: -64%;
  }
}
@media (min-width: 1420px) {
  .card-text {
    bottom: -70%;
  }
}
.card-text.is-clicked, .event-card:hover .card-text {
  bottom: 0%;
}
.card-text .button.is-link i {
  font-size: 10px !important;
  transition: all 0.5s !important;
  margin-left: 20px;
  top: 2px;
}
.card-text .text.text-container {
  padding: 20px 30px;
}
.card-text .text.text-container .text-header .text-subtitle {
  color: #536dfe;
  font-family: "Prompt", sans-serif;
}
.card-text .text.text-title {
  font-family: "Kanit", sans-serif;
  font-size: 1.15em;
  margin-bottom: 0.25em;
  font-weight: bold;
  text-transform: uppercase;
}
.card-text .text.text-details:before {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}
.card-text .text.text-description {
  line-height: 1.4em;
}
.card-text .text.text-link {
  text-decoration: none;
  margin-top: 1em;
  display: inline-block;
  color: #536dfe;
}
.card-text .text.text-link:hover {
  color: #b8c3ff;
}

/* ==========================================================================
4. Bulma cards
========================================================================== */
.card.card-shadow {
  box-shadow: 0px 5px 43px rgba(0, 0, 0, 0.18) !important;
}
.card .image {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.card img {
  display: block;
}

/* ==========================================================================
5. Ressource cards
========================================================================== */
.card.ressource-card {
  position: relative;
}
.card.ressource-card .ressource-avatar img {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 60px;
  width: 60px;
  border-radius: 1000px;
}
.card.ressource-card .card-image {
  position: relative;
}
.card.ressource-card .card-image figure {
  overflow: hidden;
}
.card.ressource-card .card-image figure.zoomOut img {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.card.ressource-card .card-image figure.zoomIn img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.card.ressource-card .card-image .card-image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(68, 79, 96, 0.6);
  z-index: 1;
}
.card.ressource-card .card-image .card-image-overlay.primary {
  background: #F2B5E0;
  opacity: 0.6;
}
.card.ressource-card .card-image .card-image-overlay.secondary {
  background: #7F00FF;
  opacity: 0.6;
}
.card.ressource-card .card-image .card-image-overlay.accent {
  background: #536dfe;
  opacity: 0.6;
}
.card.ressource-card .card-content .media-content a {
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  color: #444F60;
}
.card.ressource-card .card-content .media-content a:hover {
  color: #F2B5E0;
}
.card.ressource-card .card-content .media-content p {
  font-family: "Prompt";
  font-weight: 700;
  color: #999;
}
.card.ressource-card .avatar-rounded img {
  border-radius: 50px !important;
}
.card.ressource-card:hover .card-image figure.zoomOut img {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0.8;
}
.card.ressource-card:hover .card-image figure.zoomIn img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0.8;
}

/* ==========================================================================
6. Card variations
========================================================================== */
.card.card-floating-wide, .card.card-floating-boxed {
  margin: 4%;
  border-radius: 6px;
}
.card.card-floating-wide .title, .card.card-floating-boxed .title {
  margin: 0 !important;
  padding: 10px 0;
}
.card.card-floating-wide .subtitle, .card.card-floating-boxed .subtitle {
  font-size: 0.9rem;
  color: #A9ABAC;
  margin: 0 !important;
}
.card.card-floating-wide .card-image figure img {
  display: block;
  transform: scale(1.08);
  border-radius: 6px;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.card.card-floating-boxed .title {
  margin-top: -10%;
}
.card.card-floating-boxed .card-image figure img {
  display: block;
  transform: scale(0.94);
  border-radius: 6px;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-top: -10%;
}
.card.card-floating-boxed .card-content {
  margin-top: -50px;
}

/* ==========================================================================
7. Media cards
========================================================================== */
.media-card {
  min-height: 260px;
}
.media-card .media-card-image {
  height: 100% !important;
  min-height: 260px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.media-card .mcard-content {
  padding: 20px;
}
.media-card .mcard-content .mcard-title {
  line-height: 1.2 !important;
  font-size: 20px !important;
  font-weight: 600;
  color: #444F60;
}
.media-card .mcard-content .mcard-title a {
  color: #444F60;
}
.media-card .mcard-content .mcard-description {
  line-height: 1.4 !important;
  max-height: 4.2em !important;
  margin-top: 7px;
  color: #999;
}
.media-card .mcard-controls {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 20px;
  position: absolute;
  bottom: 0 !important;
  width: 100%;
}
.media-card .mcard-controls .mcard-avatar img {
  height: 40px;
  width: 40px;
  border-radius: 250px;
}
.media-card .mcard-controls .mcard-info {
  margin-left: 15px;
}
.media-card .mcard-controls .mcard-info span {
  font-size: 14px;
  line-height: 1.4;
}
.media-card .mcard-controls .mcard-info div span {
  font-size: 12px;
  line-height: 1.2;
  color: #A9ABAC;
}
.media-card .mcard-controls .mcard-info div i {
  font-size: 4px;
  position: relative;
  color: #999;
  top: -2px;
  margin: 0 5px;
}
.media-card .mcard-controls .mcard-actions i {
  position: relative;
  top: 5px;
  color: #A9ABAC;
  cursor: pointer;
}
.media-card .mcard-controls .mcard-actions i:hover {
  color: #536dfe;
}
.media-card .content-column {
  position: relative;
}



/* ==========================================================================
13. Portfolio page
========================================================================== */
.portfolio-item .item-title {
  font-family: "Kanit", sans-serif;
  font-size: 2.3rem;
}
.portfolio-item .project-description p {
  padding-bottom: 10px;
}
.portfolio-item .made-for {
  font-family: "Kanit", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portfolio-item .made-for img {
  max-height: 80px;
}
.portfolio-item label {
  font-family: "Prompt", sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 90%;
  color: #999;
}
.portfolio-item .project-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portfolio-item .project-category span {
  font-family: "Kanit", sans-serif;
}
.portfolio-item .project-category i {
  font-size: 1.8rem;
  color: #F2B5E0;
}
.portfolio-item .inline-list {
  padding: 10px 0;
}
.portfolio-item .project-date {
  padding: 10px 0;
  font-family: "Kanit", sans-serif;
}
.portfolio-item .fa-social {
  font-size: 1.4rem;
  color: #A9ABAC;
  cursor: pointer;
  transition: color 0.3s;
}
.portfolio-item .fa-social:hover {
  color: #F2B5E0;
}
.portfolio-item .navigation {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portfolio-item .navigation a {
  width: 146px;
  margin: 0 5px;
}
.portfolio-item .navigation a i {
  font-size: 18px;
}
.portfolio-item .navigation a i.is-right {
  position: relative;
  right: -14px;
}

/* ==========================================================================
14. Blog main page
========================================================================== */
.blog-hero {
  padding: 8rem 1.5rem;
}

.flex-card.is-post {
  border-radius: 6px;
}
.flex-card.is-post.is-pulled-top {
  margin-top: -80px;
}
.flex-card.is-post .header {
  min-height: 170px;
  width: 100%;
  background: #F2B5E0;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.flex-card.is-post .header h2.post-title {
  font-family: "Kanit", sans-serif;
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 20px;
  z-index: 1;
}
.flex-card.is-post .header h4.post-subtitle {
  position: relative;
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 10px 20px;
  z-index: 1;
}
.flex-card.is-post .header .author-avatar {
  position: absolute;
  right: 60px;
  bottom: -60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 1;
  display: block;
}
.flex-card.is-post .header .author-avatar img {
  border-radius: 55%;
  position: relative;
  left: 0px;
  transform: scale(0.99);
}
.flex-card.is-post .header .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #d59863;
  opacity: 0.5;
  z-index: 0;
}
.flex-card.is-post .post-body {
  padding: 20px;
}
.flex-card.is-post .post-body div span {
  font-size: 90%;
  color: #999;
}
.flex-card.is-post .post-body div a.author-name {
  font-family: "Prompt", sans-serif;
  color: #444F60;
}
.flex-card.is-post .post-body div a.author-name:hover {
  color: #F2B5E0;
}
.flex-card.is-post .post-body p {
  padding: 10px 0;
  color: #444F60;
}
.flex-card.is-post .post-body hr {
  background-color: #ededed;
}
.flex-card.is-post .post-body a {
  color: #F2B5E0;
}
.flex-card.is-post .post-body a.button {
  color: #999;
  font-weight: 500;
  font-family: "Kanit", sans-serif;
}
.flex-card.is-post .post-body a.button:hover {
  color: #444F60 !important;
}
.flex-card.is-post .post-body a:hover {
  opacity: 0.7;
}
.flex-card.is-post .post-body small {
  color: #999;
  font-size: 0.9rem;
}
.flex-card.is-post .post-body .footer-details {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.flex-card.is-post .post-body .footer-details .likes-count, .flex-card.is-post .post-body .footer-details .comments-count {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.flex-card.is-post .post-body .footer-details .likes-count i, .flex-card.is-post .post-body .footer-details .comments-count i {
  font-size: 1.5rem;
  font-weight: 900;
  color: #A9ABAC;
}
.flex-card.is-post .post-body .footer-details .likes-count .stat, .flex-card.is-post .post-body .footer-details .comments-count .stat {
  font-size: 90%;
  color: #A9ABAC;
  font-weight: 500;
  padding: 0 4px;
}
.flex-card.is-post .post-body .footer-details .likes-count {
  margin-right: 10px;
}
.flex-card.is-post .post-body .footer-details .comments-count {
  margin: 0 10px;
}

.fab-btn {
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 16px;
  border: none;
  border-radius: 50%;
  color: #fff;
  transition: all 0.2s ease;
  cursor: pointer;
  z-index: 1;
}
.fab-btn:active, .fab-btn:focus {
  outline: none !important;
}
.fab-btn.mini {
  width: 48px;
  height: 48px;
  padding: 12px;
  transform: rotate(-600deg);
  background: #F2B5E0;
}
.fab-btn.like {
  background: #A9ABAC !important;
  transform: rotate(0deg);
  position: absolute;
  right: 28%;
  bottom: -22px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2);
}
.fab-btn.like i.unliked {
  display: block;
  color: #fff;
  position: relative;
  z-index: 1;
}
.fab-btn.like i.liked {
  display: none;
  color: #fff;
  position: relative;
  z-index: 1;
}
.fab-btn.like.is-active .like-overlay {
  transform: scale(1);
}
.fab-btn.like.is-active i.unliked {
  display: none;
}
.fab-btn.like.is-active i.liked {
  display: block;
}
.fab-btn.like.is-single {
  bottom: -34px;
}
.fab-btn .like-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.fab-btn .like-wrapper .like-overlay {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: -36px;
  left: -24px;
  background: #FF7273;
  transform: scale(0);
  transition: transform 0.4s;
  z-index: 0;
}

@media (max-width: 768px) {
  .blog-section {
    padding: 5px !important;
  }

  .flex-card.is-post.is-pulled-top {
    margin-top: -80px;
  }
  .flex-card.is-post .header .author-avatar {
    right: 20px !important;
    bottom: -30px !important;
    width: 60px !important;
    height: 60px !important;
    border: 3px solid #fff !important;
  }
  .flex-card.is-post .header .author-avatar img {
    left: 0.5px;
    transform: scale(1);
  }
}
/* ==========================================================================
15. Blog post
========================================================================== */
.control.is-blog-search {
  position: relative;
  margin-bottom: 20px;
}
.control.is-blog-search input {
  height: 60px;
  width: 100%;
  border: none;
  padding-left: 45px;
  border: 1px solid #ededed;
  transition: all 0.5s;
}
.control.is-blog-search input:focus {
  box-shadow: inset rgba(143, 160, 241, 0.2) 0 0 0 1px, rgba(213, 220, 247, 0.59) 0 10px 20px;
  border: 1px solid #F2B5E0;
  border-radius: 5px;
}
.control.is-blog-search input:focus + i {
  color: #F2B5E0;
}
.control.is-blog-search input:focus, .control.is-blog-search input:active {
  outline: none;
}
.control.is-blog-search i {
  position: absolute;
  left: 15px;
  top: 22px;
  color: #cecece;
  font-size: 20px;
  transition: color 0.5s;
}

.flex-card.is-full-post {
  border-radius: 6px;
  padding: 60px;
}
.flex-card.is-full-post.has-sidebar {
  padding: 40px;
}
.flex-card.is-full-post.is-pulled-top {
  margin-top: -180px;
}
.flex-card.is-full-post .post-meta {
  display: flex;
  justify-content: flex-start;
  padding: 10px 30px;
  margin: 0;
  border-bottom: 1px solid #ededed;
}
.flex-card.is-full-post .post-meta img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.flex-card.is-full-post .post-meta .title-block {
  position: relative;
  padding: 0 20px;
}
.flex-card.is-full-post .post-meta .title-block h2, .flex-card.is-full-post .post-meta .title-block h4 {
  margin-bottom: 0;
}
.flex-card.is-full-post .post-meta .title-block h2 {
  font-weight: 700;
}
.flex-card.is-full-post .post-meta .title-block h4 {
  color: #999;
  padding: 10px 0;
}
.flex-card.is-full-post .post-meta .title-block .like {
  right: 20px;
}
.flex-card.is-full-post .post-meta .title-block .like.is-full {
  bottom: -32px;
}
.flex-card.is-full-post .post-body {
  padding: 10px 30px;
}
.flex-card.is-full-post .post-body .author-name {
  padding: 10px 0 5px 0;
  font-size: 90%;
  color: #A9ABAC;
}
.flex-card.is-full-post .post-body .author-name b a {
  color: #444F60;
}
.flex-card.is-full-post .post-body .author-name b a:hover {
  color: #F2B5E0;
}
.flex-card.is-full-post .post-body p {
  font-size: 16px;
}
.flex-card.is-full-post .post-body .timestamp {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 90%;
  color: #A9ABAC;
  padding: 5px 0 10px 0;
}
.flex-card.is-full-post .post-body .timestamp i {
  font-size: 16px;
  color: #F2B5E0;
  margin-right: 5px;
}
.flex-card.is-full-post .post-body h5 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #444F60;
  padding: 10px 0;
  margin-bottom: 0;
}
.flex-card.is-full-post .post-body .post-image {
  margin: 10px 0;
  border-radius: 10px;
}
.flex-card.is-full-post .post-body hr {
  background-color: #ededed;
}
.flex-card.is-full-post .post-body .share-post {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-card.is-full-post .post-body .share-post .share-text {
  font-weight: bold;
  color: #444F60;
}
.flex-card.is-full-post .post-body .share-post .sharing-options i {
  font-size: 1.4rem;
  margin: 0 5px;
  cursor: pointer;
  color: #A9ABAC;
}
.flex-card.is-full-post .post-body .share-post .sharing-options i:hover:first-child {
  color: #F2B5E0;
}
.flex-card.is-full-post .post-body .share-post .sharing-options i:hover:nth-child(2) {
  color: #3B5998;
}
.flex-card.is-full-post .post-body .share-post .sharing-options i:hover:nth-child(3) {
  color: #1dcaff;
}
.flex-card.is-full-post .post-body .share-post .sharing-options i:hover:nth-child(4) {
  color: #007bb6;
}
.flex-card.is-full-post .post-body .share-post .sharing-options i:hover:nth-child(5) {
  color: #d34836;
}
.flex-card.is-full-post .post-body .share-post .sharing-options i:hover:nth-child(6) {
  color: #ff4500;
}
.flex-card.is-full-post .post-body .share-post .sharing-options i:hover:nth-child(7) {
  color: #35465c;
}

.comment-count {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  border-radius: 6px;
}
.comment-count i {
  font-size: 2rem;
  font-weight: 500;
  color: #A9ABAC;
}
.comment-count .text {
  font-size: 1.1rem;
  font-weight: 400;
  color: #A9ABAC;
  margin-left: 20px;
}
.comment-count .text span.count-number {
  font-size: 1.1rem;
}
.comment-count button {
  margin-left: auto;
  color: #999 !important;
}

.compose-card {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: unset;
}
.compose-card .control-wrapper {
  width: 100%;
  padding-left: 20px;
}
.compose-card .control-wrapper .textarea-button {
  background: #ededed;
}

.comments-list {
  border-radius: 6px;
  padding: 40px;
}
.comments-list .media {
  margin: 0 !important;
  padding: 10px 0 !important;
  border: none !important;
}
.comments-list .media .media-left img {
  border-radius: 50%;
}
.comments-list .media small {
  color: #A9ABAC;
}
.comments-list .media small .reply a {
  font-size: 95%;
  padding: 0 20px;
}
.comments-list .media small a {
  color: #A9ABAC;
  font-size: 16px;
}
.comments-list .media small a i {
  vertical-align: middle;
  font-size: 16px;
  margin: 0 5px;
}
.comments-list .media small a i:hover {
  color: #FF7273 !important;
}
.comments-list .media small a:hover {
  color: #F2B5E0;
}
.comments-list .media small a:hover i {
  color: #FF7273;
}
.comments-list .media .count {
  color: #A9ABAC;
  font-weight: 500;
}
.comments-list .media .timestamp {
  display: block;
  font-size: 90%;
  color: #A9ABAC;
}
.comments-list .media strong {
  font-family: "Kanit";
  font-weight: 600 !important;
}

.content p:not(:last-child) {
  margin-bottom: 0 !important;
}

.flex-card .card-header {
  font-family: "Kanit", sans-serif;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #444F60;
}
.flex-card .card-panel .recent-posts .recent-post {
  padding: 10px 20px;
  border-bottom: 1px solid #ededed;
}
.flex-card .card-panel .recent-posts .recent-post .post-title a {
  color: #444F60;
  font-weight: 600;
}
.flex-card .card-panel .recent-posts .recent-post .post-title a:hover {
  color: #F2B5E0;
}
.flex-card .card-panel .recent-posts .recent-post .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-card .card-panel .recent-posts .recent-post .post-meta img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.flex-card .card-panel .recent-posts .recent-post span {
  display: block;
  font-size: 90%;
  color: #A9ABAC;
}
.flex-card .card-panel .latest-comments .latest-comment {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #ededed;
}
.flex-card .card-panel .latest-comments .latest-comment img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
}
.flex-card .card-panel .latest-comments .latest-comment .comment-info .name a {
  color: #444F60;
  font-weight: 600;
}
.flex-card .card-panel .latest-comments .latest-comment .comment-info .name a:hover {
  color: #F2B5E0;
}
.flex-card .card-panel .latest-comments .latest-comment .comment-info .post-ref a {
  font-size: 90%;
  color: #A9ABAC;
}
.flex-card .card-panel .latest-comments .latest-comment .comment-info .post-ref a:hover {
  color: #F2B5E0;
}
.flex-card .card-panel .archives .archived-month, .flex-card .card-panel .archives .post-category, .flex-card .card-panel .post-categories .archived-month, .flex-card .card-panel .post-categories .post-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #ededed;
}
.flex-card .card-panel .archives .archived-month span a, .flex-card .card-panel .archives .post-category span a, .flex-card .card-panel .post-categories .archived-month span a, .flex-card .card-panel .post-categories .post-category span a {
  color: #444F60;
  font-weight: 600;
}
.flex-card .card-panel .archives .archived-month span a:hover, .flex-card .card-panel .archives .post-category span a:hover, .flex-card .card-panel .post-categories .archived-month span a:hover, .flex-card .card-panel .post-categories .post-category span a:hover {
  color: #F2B5E0;
}
.flex-card .card-panel .tag {
  margin: 5px;
}

.title.flex-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title.flex-title span.material-icons {
  font-size: 2.4rem;
  padding: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.title.flex-title span.material-icons:hover {
  border: 2px solid #F2B5E0;
  background: #F2B5E0;
  color: #fff;
}

@media (max-width: 768px) {
  .flex-card.is-full-post.is-pulled-top {
    margin-top: -80px;
  }
  .flex-card.is-full-post .post-body {
    padding: 20px !important;
  }

  .title.flex-title {
    justify-content: center;
  }
}
/* ==========================================================================
16. Media queries
========================================================================== */
@media (max-width: 767px) {
  .title.main-title {
    font-size: 3rem !important;
  }

  .flex-card.is-post h2 {
    font-size: 1.3rem !important;
  }
  .flex-card.is-full-post {
    padding: 10px !important;
  }
  .flex-card.is-full-post .post-body {
    padding: 20px 10px !important;
  }

  .post-meta {
    margin: 0 !important;
    padding: 10px !important;
  }
  .post-meta .title-block {
    padding: 0 !important;
  }
  .post-meta .title-block h2 {
    font-size: 1.5em !important;
  }

  .post-body {
    padding: 20px 10px !important;
  }

  .compose-card .control-wrapper {
    padding: 0;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .portfolio-item img {
    width: 100%;
  }

  .agency-icon-box, .service-box {
    text-align: center;
  }
  .agency-icon-box .title-divider, .service-box .title-divider {
    margin: 0 auto;
  }

  .flex-card.is-post, .flex-card.is-full-post {
    padding: 40px;
  }
  .flex-card.is-post .post-meta, .flex-card.is-full-post .post-meta {
    padding: 10px 0;
  }
}

/*# sourceMappingURL=blog.css.map */
