/* For Font
Usage: @include font(14px, #000000, 500, 1.2em);
*/
/* For Transform
Usage: @include transform('translateX','(10px)',webkit moz ms o);
*/
/* For Transition
Usage: @include transition('all','0.2s','linear',webkit moz ms o);
*/
/* For positioning
Usage: @include fixed(top 0 left 0);
*/
html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}
@font-face {
  font-family: "helveticaregular";
  src: url("../fonts/helvetica-webfont.woff2") format("woff2"),
    url("../fonts/helvetica-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* Segoe Ui @font-face removed — use Montserrat (loaded via Google Fonts) to avoid CORS/missing font files */

:root {
  --theme-color: #ff0000;
  --white: #ffffff;
  --segoeui-reg: "Montserrat", sans-serif;
  --text-color: #2f2f2f;
}

.bubbles span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: transparent;
  position: fixed;
  opacity: 0.7;
  -webkit-animation: animate 10s linear infinite;
  animation: animate 10s linear infinite;
}

.bubbles span:nth-of-type(1) {
  border: 3px solid #f89e17;
  left: 90%;
  bottom: -50px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.bubbles span:nth-of-type(2) {
  border: 3px solid #ffd978;
  left: 8%;
  bottom: 10%;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.bubbles span:nth-of-type(3) {
  border: 3px solid #ff0000;
  left: 28%;
  bottom: 21%;
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.bubbles span:nth-of-type(4) {
  border: 3px solid #73a8d4;
  left: 69%;
  bottom: 62%;
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

.bubbles span:nth-of-type(5) {
  border: 3px solid #f55ca8;
  left: 46%;
  bottom: 47%;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

@-webkit-keyframes animate {
  0% {
    bottom: 0;
    margin-left: 90px;
    margin-right: 0;
  }
  20% {
    bottom: 20%;
    margin-left: 0px;
    margin-right: 90px;
  }
  40% {
    bottom: 40%;
    margin-left: 90px;
    margin-right: 0px;
  }
  60% {
    bottom: 60%;
    margin-left: 0px;
    margin-right: 90px;
  }
  80% {
    bottom: 80%;
    margin-left: 90px;
    margin-right: 0px;
  }
  100% {
    bottom: 100%;
    margin-left: 0px;
    margin-right: 90px;
  }
}

@keyframes animate {
  0% {
    bottom: 0;
    margin-left: 90px;
    margin-right: 0;
  }
  20% {
    bottom: 20%;
    margin-left: 0px;
    margin-right: 90px;
  }
  40% {
    bottom: 40%;
    margin-left: 90px;
    margin-right: 0px;
  }
  60% {
    bottom: 60%;
    margin-left: 0px;
    margin-right: 90px;
  }
  80% {
    bottom: 80%;
    margin-left: 90px;
    margin-right: 0px;
  }
  100% {
    bottom: 100%;
    margin-left: 0px;
    margin-right: 90px;
  }
}

body {
  margin: 0;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px !important;
  overflow-x: hidden;
}

.container {
  max-width: 960px;
  padding: 0px 15px;
  margin: 0 auto;
}

.d-flex {
  display: flex;
}

.theme-btn {
  width: 180px;
  height: 33px;
  color: var(--white);
  outline: none !important;
  border: none !important;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: center;
  position: relative;
  z-index: 1;
  font-family: Montserrat;
  font-weight: bold;
}

.blog .theme-btn {
    width: 190px;
    height: 33px;
    color: var(--white);
    outline: none !important;
    border: none !important;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-align: center;
    position: relative;
    z-index: 1;
  }

.theme-btn:after,
.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  transition: all 0.2s linear;
}

.theme-btn:before {
  z-index: -1;
  background-color: var(--theme-color) !important;
}

.theme-btn:after {
  z-index: 1;
  opacity: 0;
  border: 1px solid var(--theme-color);
  transform: scale(1.1, 1.1);
}

.theme-btn:hover {
  color: var(--theme-color);
  background-color: transparent;
}

.theme-btn:hover:before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}

.theme-btn:hover:after {
  opacity: 1;
  transform: scale(1, 1);
}

.header {
  padding: 20px 0;
}

.header-wrap {
  justify-content: space-between;
}

.header-wrap_logo {
  width: 95px;
}

.header-wrap_logo a {
  display: block;
}

.header-wrap_logo img {
  width: 100%;
  position: relative;
  z-index: 2;
}

header {
  background: url("https://assets.skyfilabs.com/playto/img/banner-bg.png") !important;
  background-size: 100% auto !important;
  background-position: top right !important;
}

p {
  font-size: 14px !important;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.7;
}

.mob-banner {
  display: none;
}

.desk-banner {
  display: block;
}

.banner {
  position: relative;
}

.banner .gift-box {
  right: 0px;
  top: 30%;
  z-index: 10;
}

.banner-wrap {
  background: url("https://assets.skyfilabs.com/playto/img/banner-bg.png");
  /**height: 650px;**/
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.banner-wrap .col-md-6 h1 {
  font-family: Montserrat;
  color: #222;
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  margin-bottom: 40px;
}

.banner-wrap:after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 0px;
  width: 100%;
  height: 58px;
  background-image: url(https://assets.skyfilabs.com/playto/img/banner-waves.svg);
  background-repeat: repeat-x;
  display: none;
}

.banner-wrap_content {
  align-self: center;
  justify-content: center;
  padding-top: 35px;
}

.personalised-based {
  background: #fff2d2;
  border-radius: 31px;
  padding: 10px 20px;
  display: inline;
  float: left;
  font-family: Montserrat;
  color: #3a3a3a;
  font-weight: 500;
  font-size: 14px;
  align-items: center;
  display: flex;
}

.personalised-based img {
  margin-right: 10px;
  width: 25px;
}

.form-box-banner {
  background: #fff;
  padding: 60px 50px;
  border-radius: 20px;
}

.form-box-banner h2 {
  font-family: Montserrat;
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 500;
  color: #222;
}

.form-box-banner input {
  border: 1.5px solid #ffd978 !important;
  background: rgba(255, 242, 210, 0.5) !important;
  font-family: Montserrat;
  font-weight: 400;
  color: #3a3a3a;
  font-size: 14px;
  border-radius: 5px !important;
}

.form-box-banner button {
  background: #f00 !important;
  width: 100%;
  border-color: #f00 !important;
  border-radius: 5px;
  font-family: Montserrat;
  font-weight: 600;
  margin-top: 10px;
  font-size: 16px;
}

.banner-wrap .counter {
  background: url("https://assets.skyfilabs.com/playto/img/counter-bg.svg");
}

.banner-wrap .counter {
  background: url("https://assets.skyfilabs.com/playto/img/counter-bg.svg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 30px;
  margin-top: 80px;
}

.banner-wrap .counter .col-md-4 {
  padding-top: 10px;
  padding-bottom: 5px;
  align-items: center;
  display: flex;
}

.banner-wrap .counter .col-md-4 .counter-content {
  margin-left: 10px;
}

.banner-wrap .counter .col-md-4 .counter-content h3 {
  font-family: Montserrat;
  font-weight: 500;
  color: #3a3a3a;
  font-size: 14px;
  margin-bottom: 5px;
}

.banner-wrap .counter .col-md-4 .counter-content h5 {
  font-family: Montserrat;
  font-weight: 700;
  color: #73a8d4;
  font-size: 16px;
  margin-bottom: 0px;
}

.banner-wrap .counter .col-md-4 img {
  float: left;
}
.alumini-wrap_content .alumini-content .alumini_item h3 {
  font-size: 16px;
  color: #222;
  font-family: Montserrat;
  font-weight: 700;
  margin-bottom: 15px;
}
.alumini-wrap_content .alumini-content .alumini_item:nth-child(3) h3 {
  margin-top: 6px;
}
.alumini-wrap_content .alumini-content .alumini_item p {
  font-size: 16px;
  color: #3a3a3a;
  font-family: Montserrat;
  font-weight: 500;
}
.receive .rover-top {
  position: absolute;
  top: -70px;
  right: 0px;
  background-image: url(https://assets.skyfilabs.com/playto/img/rover.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 75px;
  height: 50px;
  -webkit-animation: MoveLeftRight 4.5s linear infinite;
  animation: MoveLeftRight 4.5s linear infinite;
}
.receive .robot-on-wheel {
  position: absolute;
  bottom: -75px;
  left: 20px;
  background-image: url(https://assets.skyfilabs.com/playto/img/robot-on-wheel.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 150px;
  -webkit-animation: MoveLeftRight 4.5s linear infinite;
  animation: MoveLeftRight 4.5s linear infinite;
}

section.receive {
  padding: 100px 0;
  background-color: #fff;
  background-image: url("https://assets.skyfilabs.com/playto/img/receive-bg.svg");
  background-repeat: no-repeat;
  background-position: center 50px;
  background-size: 50% auto;
}

section .row h2.page-title {
  text-align: center;
  width: 100%;
  color: #222;
  font-family: Montserrat;
  font-weight: 500;
  margin-bottom: 40px;
  font-size: 1.75rem;
}

.receive .col-md-4 h3 {
  color: #3a3a3a;
  font-family: Montserrat;
  font-weight: 400;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
}
.receive .col-md-4 h4 {
  color: #3a3a3a;
  font-family: Montserrat;
  font-weight: 400;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
}

.receive .container {
  position: relative;
}

.receive .bot {
  position: absolute;
  right: -30px;
  width: 70px;
  height: 70px;
  bottom: -150px;
}

section.learn {
  padding-top: 40px;
}

section.learn .container {
  background: url("https://assets.skyfilabs.com/playto/img/learn-bottom-graphic.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 237px 107px;
  padding-bottom: 50px;
  position: relative;
}

.learn .col-md-3 .learn-item {
  background: #fff;
  box-shadow: 0 0 20px rgba(115, 168, 212, 0.1);
  padding: 50px 30px !important;
  border-radius: 20px;
  text-align: center;
}

.learn .rocket-slant {
  position: absolute;
  bottom: -20px;
  margin-left: -70px;
  background-image: url(https://assets.skyfilabs.com/playto/img/small-rocket.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 60px;
  height: 60px;
  -webkit-animation: MoveLeftRightFast 0.2s linear infinite;
  animation: MoveLeftRightFast 0.2s linear infinite;
}

section.testimonials {
  background: url("https://assets.skyfilabs.com/playto/img/testimonial-bg.jpg");
  padding: 80px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.col-md-6 .testimonial-item {
  background: #fff;
  padding: 50px 30px 50px 30px;
  border-radius: 20px;
  position: relative;
  width: 85%;
  box-shadow: 0 20px 30px rgba(255, 217, 120, 0.5);
}

.testimonial-item .question-mark {
  position: absolute;
  top: -20px;
  width: 40px;
  left: 30px;
}

h5.position-title {
  font-size: 13px;
  color: #3a3a3a;
  font-family: Montserrat;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0px;
}

section.testimonials .col-md-6 {
  margin-bottom: 70px;
}

section.testimonials .row h3.page-title {
  margin-bottom: 60px;
}

section.testimonials .theme-btn {
  margin: 0px auto 0;
}

section.learn .row h3.page-title {
  margin-bottom: 60px;
}

.learn .col-md-3 .learn-item h3 {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0px;
}

.learn .col-md-3 .learn-item h4 {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0px;
}

.learn .theme-btn {
  margin: 70px auto 0;
}

.testimonial-item p {
  color: #3a3a3a;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  min-height: 220px;
}

.testimonial-item .profile-avatar {
  position: absolute;
  right: -50px;
  top: 30%;
  width: 100px;
}

.testimonials .rover {
  position: absolute;
  bottom: 80px;
  right: 0px;
  background-image: url(https://assets.skyfilabs.com/playto/img/rover.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 75px;
  height: 50px;
  -webkit-animation: MoveLeftRight 4.5s linear infinite;
  animation: MoveLeftRight 4.5s linear infinite;
}

section.last-multiple-section {
  padding: 100px 0;
}

.row.last-section-one .col-md-4 {
  color: #222;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 1.7;
  font-size: 18px;
}

.row.last-section-one .col-md-8 p {
  color: #3a3a3a;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
}

.row.last-section-one .col-md-4::after {
  position: absolute;
  height: 30px;
  width: 2px;
  background: #73a8d4;
  right: 30px;
  top: 15px;
  content: "";
}

.row.last-section-one {
  margin-bottom: 70px;
}

.row.last-section-two .col-md-4 img {
  height: 40px;
  margin-bottom: 20px;
}

.row.last-section-two h3 {
  font-size: 16px;
  color: #222;
  font-family: Montserrat;
  font-weight: 700;
  margin-bottom: 15px;
}

.row.last-section-two p {
  font-size: 16px;
  color: #3a3a3a;
  font-family: Montserrat;
  font-weight: 500;
}

.row.last-section-two .col-md-4 {
  padding: 35px 20px 20px 20px;
}

.row.last-section-two {
  margin-bottom: 60px;
}

.row.last-section-three {
  background: url("https://assets.skyfilabs.com/playto/img/last-section-graphic-bg.svg");
  background-repeat: no-repeat;
  background-position: 25% top;
  position: relative;
}

.last-section-three .bot {
  position: absolute;
  left: 0;
  width: 70px;
  height: 70px;
  top: 0;
}

.row.last-section-three .col-md-6 h2 {
  color: #222;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.row.last-section-three .col-md-6 p {
  color: #3a3a3a;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 30px;
}

.footer-copyright_content p {
  width: 100%;
  text-align: center;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
}

.footer .container {
  background: url("https://assets.skyfilabs.com/playto/img/footer-first-graphic-bg.svg");
  margin-top: 100px;
  margin-bottom: 100px;
  background-size: 100%;
  background-repeat: no-repeat;
}

.footer-wrap .col-md-3 {
  align-self: center;
}

.col-md-3.question h4 {
  color: #fff;
  font-family: Montserrat;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 22px;
}

.col-md-3.question h5 {
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
}

.col-md-3.email h5,
.col-md-3.phone h5 {
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.col-md-3.email img,
.col-md-3.phone img {
  float: left;
  margin-right: 10px;
  height: 16px;
}

.col-md-3.email h4,
.col-md-3.phone h4 {
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0px;
}

.row.last-section-two .col-md-4:hover h3 {
  color: #73a8d4;
}

.row.last-section-two .col-md-4:hover {
  box-shadow: 0 0 20px rgba(115, 168, 212, 0.1);
  border-radius: 20px;
}

.testimonials .container {
  position: relative;
}

.form-box-banner input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #3a3a3a;
  opacity: 1;
}
.form-box-banner input::-moz-placeholder {
  /* Firefox 19+ */
  color: #3a3a3a;
  opacity: 1;
}
.form-box-banner input:-ms-input-placeholder {
  /* IE 10+ */
  color: #3a3a3a;
  opacity: 1;
}
.form-box-banner input:-moz-placeholder {
  /* Firefox 18- */
  color: #3a3a3a;
  opacity: 1;
}

.form-box-banner .form-group {
  margin-bottom: 5px;
}

.banner-wrap_content h1 {
  font-size: 37px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.2em;
  text-align: center;
}

.banner-wrap_content h1 span {
  font-weight: 700;
  color: var(--theme-color);
}

.banner-wrap_content h1 span.slant-line {
  position: relative;
}

.banner-wrap_content h1 span.slant-line:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0px;
  width: 100%;
  height: 3px;
  background-color: var(--theme-color);
  transform: rotate(-1.5deg);
}

.banner-image {
  width: 80%;
  margin-top: 90px;
}

.banner-image img {
  width: 67%;
  margin: 0 auto;
}

.banner-feature {
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 15px 14px 23px 2px rgba(0, 0, 0, 0.07);
  padding: 30px 15px;
  display: flex;
  justify-content: space-around;
}

.banner-stacks {
  display: flex;
}

.banner-stacks:nth-of-type(1) figure {
  width: 42px;
}

.banner-stacks:nth-of-type(4) figure {
  width: 50px;
}

.banner-stacks figure {
  width: 31px;
  height: 37px;
  align-self: center;
  margin: 0;
}

.banner-stacks figure img {
  width: 100%;
}

.banner-stacks figcaption {
  padding-left: 10px;
}

.banner-stacks figcaption label {
  font-size: 12px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.2;
  display: block;
  margin-bottom: 0px;
}

.banner-stacks figcaption span {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.2;
  display: block;
}

section {
  padding: 60px 0;
}

.page-content .page-title {
  font-size: 20px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.2;
}

.page-content .page-title span {
  font-weight: 600;
  color: var(--theme-color);
}

.page-content .page-title_line {
  position: relative;
}

.page-content .page-title_line:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: var(--theme-color);
  transform: rotate(-1.7deg);
}

.page-content p {
  margin-top: 24px;
  margin: 0px;
}

@-webkit-keyframes MoveZoomInOut {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.7, 0.7);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes MoveZoomInOut {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.7, 0.7);
  }
  100% {
    transform: scale(1, 1);
  }
}

.bot {
  position: absolute;
  width: 100%;
  height: 90px;
  width: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://assets.skyfilabs.com/playto/img/robot-animate.svg);
  -webkit-animation: MoveZoomInOut 5s linear infinite;
  animation: MoveZoomInOut 5s linear infinite;
}

.gift-box {
  position: absolute;
  width: 100%;
  height: 95px;
  width: 80px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(./img/gift.svg);
}

#certifications {
  padding-top: 130px;
}
#certifications .container {
  padding: 0;
}
#certifications .card {
  margin-bottom: 2rem;
  box-shadow: -2px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
#certifications .card-1 {
  padding: 1.5rem 1rem;
}
#certifications .card-2 {
  padding: 1.4rem 1rem 2.3rem;
}
#certifications .card-3 {
  padding: 1.5rem 1.3rem 1.8rem 1.5rem;
  font-size: 22px;
}
#certifications .card-1 h4 {
  margin-bottom: 20px;
  font-weight: 400 !important;
  color: #2f2f2f;
  font-size: 22px;
  text-align: center;
}
#certifications .card-2 h4 {
  margin-bottom: 22px;
}
#certifications .card-3 h4 {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 22px;
}
#recognized-img {
  max-width: 55%;
}

.about {
  padding: 90px 0;
  position: relative;
  font-family: "Montserrat";
}

.about .gift-box {
  left: -34px;
  bottom: 90px;
  z-index: 10;
  transform: rotate(66deg);
}

.about-wrap_title {
  display: flex;
  justify-content: space-between;
}

.about-wrap_title .page-title {
  font-weight: 500;
}

.about-wrap_title button {
  align-self: center;
}

.about-wrap_content {
  margin-top: 55px;
}

.about-video {
  display: flex;
  justify-content: space-between;
}

.about-video_item {
  flex: 0 0 32%;
  max-width: 32%;
  width: 100%;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  padding-bottom: 20%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 5px;
}

.about-video_item iframe {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  height: 100%;
}

.testimonial {
  padding-bottom: 150px;
  position: relative;
}

.testimonial .bot {
  bottom: 70px;
  right: 150px;
}

.testimonial-wrap_title h3 {
  text-align: center;
}

.testimonial-wrap-slide {
  display: flex;
  margin-top: 70px;
}

.testimonial-wrap_box {
  display: flex;
}

.testimonial-slider .owl-stage-outer {
  padding: 15px 0 0;
}

.testimonial-slider .owl-item:nth-of-type(1) .test-item p {
  position: relative;
}

.testimonial-slider .owl-item:nth-of-type(1) .test-item p:before {
  background-image: url(https://assets.skyfilabs.com/playto/img/b-quote.svg);
}

.testimonial-slider .owl-item:nth-of-type(1) .test-item-box {
  background: #73a8d4;
  background: linear-gradient(
    0deg,
    rgba(115, 168, 212, 0.4) 14%,
    rgba(235, 243, 249, 0.7) 100%
  );
  transition: all 0.2s linear;
  box-shadow: 5px 2px 15px 4px rgba(115, 168, 212, 0.2);
}

.testimonial-slider .owl-dots {
  display: block !important;
  margin: 0 auto;
  text-align: center;
  margin: 15px 0 0;
}

.testimonial-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff0000;
  opacity: 0.3;
  margin: 0px 4px;
  transition: all 0.2s linear;
}

.testimonial-slider .owl-dots .owl-dot.active {
  width: 90px;
  border-radius: 7px;
  background-color: var(--theme-color);
  opacity: 0.7;
}

.test-item {
  width: 100%;
}

.test-item-box {
  border-radius: 40px;
  padding: 0px 30px 35px;
  margin-top: 40px;
}

.test-item_image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  top: -46px;
  overflow: hidden;
}

.test-item_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.test-item p {
  position: relative;
  margin-top: -15px;
}

.test-item p:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url(https://assets.skyfilabs.com/playto/img/y-quote.svg);
  width: 125px;
  height: 90px;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
}

.test-item p {
  display: block;
  text-align: center;
}

.test-item span,
.test-item label {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.7;
  display: block;
  text-align: center;
}

.test-item span {
  font-weight: 600;
}

.register-wrap_title {
  display: flex;
  position: relative;
  padding: 60px 75px;
  border-radius: 20px;
  background-color: #f8f9fb;
}

.register-wrap_title .register-image {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.register-wrap_title p {
  margin: 30px 0 25px;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0px;
}

.alumini {
  padding-top: 60px;
  padding-bottom: 160px;
}

.alumini-wrap_title {
  text-align: center;
}

.alumini-content {
  margin-top: 55px;
  justify-content: space-between;
}

.alumini-content h4 {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin-top: 38px;
  margin-bottom: 25px;
}

.alumini_item {
  flex: 0 0 32%;
  max-width: 32%;
}

.alumini_item:nth-of-type(2) > div {
  background: #ffd978;
  background: linear-gradient(
    0deg,
    rgba(255, 217, 120, 0.65) 14%,
    rgba(235, 241, 140, 0.4) 100%
  );
  box-shadow: 10px 15px 22px 12px rgba(225, 217, 120, 0.2);
}
.alumini_item:nth-of-type(1) > div {
  background: #73a8d4;
  background: linear-gradient(
    0deg,
    rgba(115, 168, 212, 0.4) 14%,
    rgba(235, 243, 249, 0.7) 100%
  );
}
.alumini_item:nth-of-type(3) > div {
  background: #3a3e41;
  background: linear-gradient(
    0deg,
    rgba(245, 77, 77, 0.4) 14%,
    rgba(251, 220, 220, 0.7) 100%
  );
}
.alumini_item > div {
  padding: 50px 32px 70px;
  border-radius: 30px;
}

.alumini_item p {
  margin: 0px;
}

@-webkit-keyframes MoveUpDown {
  0%,
  100% {
    top: -210px;
  }
  50% {
    top: -140px;
  }
}

@keyframes MoveUpDown {
  0%,
  100% {
    top: -210px;
  }
  50% {
    top: -140px;
  }
}

.features {
  background-color: #ebf3f9;
  width: 100%;
  padding: 60px 0 100px;
  position: relative;
}

.features .gift-box {
  left: -34px;
  bottom: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-image: url(https://assets.skyfilabs.com/playto/img/yellow-gift.svg);
}

.features .bot {
  bottom: 40px;
  left: 140px;
}

.features .rocket-launch {
  position: absolute;
  right: 90px;
  width: 75px;
  height: 190px;
  background-image: url(https://assets.skyfilabs.com/playto/img/rocket-lunch.svg);
  background-size: contain;
  top: -210px;
  -webkit-animation: MoveUpDown 3s linear infinite;
  animation: MoveUpDown 3s linear infinite;
}

.features:before,
.features:after {
  content: "";
  position: absolute;
  left: 0px;
  width: 100%;
  height: 70px;
  background-position: center;
  background-repeat: repeat-x;
}

.features:before {
  background-image: url(https://assets.skyfilabs.com/playto/img/top-cloud.svg);
  top: -60px;
}

.features:after {
  background-image: url(https://assets.skyfilabs.com/playto/img/bottom-cloud.svg);
  bottom: -60px;
}

.features-wrap_title {
  text-align: center;
}

.features-wrap_content {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
}

.features_left {
  flex: 0 0 44%;
  max-width: 0 0 44%;
  border-radius: 25px;
}

.features_left_image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 78%;
}

.features_left_register {
  display: flex;
  justify-content: space-between;
  background-color: #ffd978;
  padding: 15px 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.features_left_register p {
  font-size: 14px;
}

.features_left_register p,
.features_left_register button {
  align-self: center;
}

.features_right {
  flex: 0 0 50%;
  max-width: 0 0 50%;
}

.features_right_content > p {
  margin-top: 0px;
}

.features_right_content ul {
  padding: 0px;
  margin-top: 25px;
}

.features_right_content ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
  border-radius: 30px;
  transition: all 0.2s linear;
}

.features_right_content ul li:nth-of-type(2) figure {
  width: 75px;
  height: 75px;
}

.features_right_content ul li:hover {
  background-color: #ffffff;
}

.features_right_content ul li figure {
  width: 65px;
  height: 65px;
  align-self: center;
}

.features_right_content ul li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.features_right_content ul li figcaption {
  padding-left: 30px;
}

.features_right_content ul li figcaption h6 {
  font-size: 17px;
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.7;
  margin: 0px 0px 4px;
}

.features_right_content ul li figcaption p {
  margin: 0px;
  line-height: 1.5;
}

.page-content .page-title {
  margin-bottom: 18px;
}

.gutter-column {
  display: flex;
  justify-content: space-between;
}

.gutter-column.reverse-gutter {
  flex-direction: row-reverse;
}

.gutter-column_content {
  flex: 0 0 50%;
  max-width: 50%;
  align-self: center;
}

.gutter-column_content h3 {
  margin-top: 0px;
}

.gutter-column_content p {
  margin-bottom: 25px;
}

.gutter-column_image {
  flex: 0 0 45%;
  max-width: 45%;
}

.gutter-bg {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.toys {
  padding: 120px 0;
}

.toys-wrap .gutter-bg {
  padding-top: 67%;
  background-size: contain;
}

@-webkit-keyframes MoveLeftRightFast {
  0%,
  100% {
    left: 30px;
  }
  50% {
    left: 33px;
  }
}

@keyframes MoveLeftRightFast {
  0%,
  100% {
    left: 30px;
  }
  50% {
    left: 33px;
  }
}

.mission {
  padding: 120px 0;
  background-color: #ffecbb;
  position: relative;
}

.mission .bot {
  bottom: 50px;
  right: 140px;
}

.mission .rocket-slant {
  position: absolute;
  top: 0px;
  left: 30px;
  background-image: url(https://assets.skyfilabs.com/playto/img/small-rocket.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 60px;
  height: 60px;
  -webkit-animation: MoveLeftRightFast 0.2s linear infinite;
  animation: MoveLeftRightFast 0.2s linear infinite;
}

.mission .gutter-column_image {
  position: relative;
}

.mission-wrap .gutter-bg {
  padding-top: 75%;
  background-size: contain;
  background-position-x: right;
}

@-webkit-keyframes MoveLeftRight {
  0%,
  100% {
    right: 150px;
  }
  50% {
    right: 70px;
  }
}

@keyframes MoveLeftRight {
  0%,
  100% {
    right: 150px;
  }
  50% {
    right: 70px;
  }
}

.rover {
  position: absolute;
  bottom: 80px;
  right: 150px;
  background-image: url(https://assets.skyfilabs.com/playto/img/rover.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 135px;
  height: 110px;
  -webkit-animation: MoveLeftRight 4.5s linear infinite;
  animation: MoveLeftRight 4.5s linear infinite;
}

.coaches {
  padding: 130px 0;
  position: relative;
}

.coaches-wrap .gutter-bg {
  padding-top: 79%;
}

.footer {
  background-color: transparent;
  position: relative;
}

.footer:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0px;
  background-image: url(https://assets.skyfilabs.com/playto/img/yellow-wave.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 25px;
  display: none;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  padding: 0px 0;
}

.footer-wrap_left {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
}

.footer-wrap_left > div {
  align-self: center;
}

.footer-wrap_left p {
  margin-bottom: 25px;
}

.footer-wrap_right {
  flex: 0 0 40%;
  max-width: 45%;
}

.footer-image {
  position: absolute;
  right: 0px;
  bottom: -4px;
}

.footer .container {
  position: relative;
  background-image: url("https://assets.skyfilabs.com/playto/img/footer-first-graphic-bg.svg");
}

.footer-copyright {
  background-color: #202020;
}

.footer-copyright_content {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-copyright p {
  color: #fff;
  margin: 0;
  font-size: 12px;
}

.footer-copyright ul {
  padding: 0;
  margin: 0;
  display: flex;
}

.footer-copyright ul li {
  margin: 0px 15px;
  list-style: none;
  display: flex;
  position: relative;
  padding-left: 35px;
}

.footer-copyright ul li:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 22px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-copyright ul li:nth-of-type(1):before {
  background-image: url(https://assets.skyfilabs.com/playto/img/email.svg);
}

.footer-copyright ul li:nth-of-type(2):before {
  background-image: url(https://assets.skyfilabs.com/playto/img/phone-call.svg);
}

.footer-copyright ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  align-self: center;
}

@media (max-width: 1560px) {
  .container {
    max-width: 1360px;
  }
}

@media (max-width: 1680px) {
  .container {
    max-width: 960px;
  }
  .banner-wrap_content h1 {
    font-size: 37px;
  }
  .banner-image {
    width: 80%;
    margin-left: 80px;
  }
  .banner-feature {
    padding: 18px 15px;
  }
  .banner-stacks:nth-of-type(1) figure {
    width: 37px;
  }
  .banner-stacks:nth-of-type(4) figure {
    width: 41px;
  }
  .banner-stacks figure {
    width: 31px;
  }
  .banner-stacks figcaption {
    padding-top: 5px;
  }
  .banner-stacks figcaption label {
    font-size: 12px;
    margin-bottom: 0px;
  }
  .banner-stacks figcaption span {
    font-size: 16px;
  }
  .about {
    padding: 80px 0 50px;
  }
  .register {
    padding-bottom: 30px;
  }
  .register-wrap_title {
    padding-left: 50px;
  }
  .alumini_item > div {
    padding: 28px 32px 56px;
  }
  .features_left {
    align-self: center;
  }
  .features_left_register p {
    font-size: 14px;
  }
  .features_right_content ul li:nth-of-type(1) figure {
    width: 77px;
    height: 72px;
  }
  .features_right_content ul li:nth-of-type(2) figure {
    width: 105px;
    height: 78px;
  }
  .test-item label {
    line-height: 1.2;
  }
}

@media (max-width: 1439px) {
  p {
    font-size: 19px;
    line-height: 1.5;
  }
  #certifications {
    padding: 140px 0 40px;
  }
  .testimonial {
    padding-top: 30px;
    padding-bottom: 113px;
  }
  .testimonial .bot {
    right: 100px;
  }
  .test-item label {
    font-size: 16px;
  }
  .page-content .page-title {
    font-size: 26px;
  }
  .features_right_content ul li figcaption h6 {
    font-size: 21px;
  }
  .features_right_content ul li figcaption {
    padding-left: 2px;
  }
  .features .bot {
    bottom: 10px;
  }
  .toys-wrap .gutter-bg {
    padding-top: 59%;
  }
  .toys {
    padding-bottom: 70px;
  }
  .mission {
    padding: 74px 0 104px;
  }
  .mission .bot {
    right: 30px;
  }
  .coaches {
    padding: 86px 0;
  }
  .footer-image {
    width: 300px;
  }
  .footer-image img {
    width: 100%;
  }
  .footer-copyright ul li:before {
    top: 3px;
  }
  .alumini-content h4 {
    margin-top: 21px;
    margin-bottom: 12px;
  }
  .features_right_content ul li {
    padding: 13px 20px;
  }
  .register-wrap_title .register-image {
    width: 365px;
  }
  .register-wrap_title .register-image img {
    width: 100%;
  }
  .register {
    padding-top: 20px;
  }
}

@media (max-width: 1359px) {
  .container {
    max-width: 1170px;
  }
  .banner .gift-box {
    right: 0px;
  }
  .header-wrap_logo {
    width: 115px;
  }
  .theme-btn {
    width: 180px;
    height: 46px;
    font-size: 18px;
  }
  /**.banner-wrap {
      height: 720px;
    }**/
  .testimonial {
    padding-bottom: 79px;
  }
  .testimonial .bot {
    bottom: 36px;
  }
  .alumini {
    padding-top: 40px;
    padding-bottom: 125px;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  /**.banner-wrap {
      height: 660px;
    }**/
  .header-wrap_logo {
    width: 96px;
  }
  .theme-btn {
    width: 200px;
    height: 38px;
    font-size: 15px;
  }
  .banner-stacks figcaption span {
    font-size: 16px;
  }
  .banner-wrap_content h1 {
    font-size: 32px;
  }
  .about {
    padding: 70px 0 30px;
  }
  .testimonial-wrap-slide {
    margin-top: 46px;
  }
  p {
    font-size: 17px;
  }
  .test-item-box {
    padding: 0px 18px 0px;
  }
  .test-item span {
    font-size: 18px;
  }
  .bot {
    height: 77px;
    width: 95px;
  }
  .testimonial {
    padding-bottom: 40px;
  }
  .register {
    padding-bottom: 10px;
  }
  .page-content .page-title {
    font-size: 23px;
  }
  .alumini_item > div {
    padding: 20px 24px 40px;
  }
  .alumini_item > div figure {
    width: 70px;
    height: 70px;
    margin-left: 0px;
  }
  .alumini_item > div figure img {
    width: 100%;
  }
  .alumini-content h4 {
    font-size: 20px;
  }
  .features {
    padding: 32px 0 40px;
  }
  .toys {
    padding-bottom: 60px;
    padding-top: 100px;
  }
  .mission {
    padding: 60px 0 70px;
  }
  .mission .bot {
    bottom: 15px;
  }
  .coaches {
    padding: 55px 0 70px;
  }
  .rover {
    width: 80px;
    height: 70px;
    bottom: 52px;
  }
  .footer-image {
    width: 250px;
  }
  .footer-wrap {
    padding: 0px 0;
  }
  .features_right_content ul li figure {
    margin: 0px 25px;
  }
  .features .bot {
    left: 58px;
  }
  .features_left_register {
    padding: 9px 16px;
  }
  .features_left_register p {
    line-height: 1;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 768px;
  }
  .banner-stacks figure {
    height: 38px;
    width: 34px !important;
  }
  .banner-stacks figcaption label {
    font-size: 14px;
  }
  .banner-stacks figcaption span {
    font-size: 16px;
  }
  .banner-stacks:nth-of-type(4) figure {
    width: 46px !important;
  }
  .banner-stacks:nth-of-type(1) figure {
    width: 42px !important;
  }
  /**.banner-wrap {
      height: 545px;
    }**/
  .gift-box {
    height: 60px;
    width: 60px;
  }
  .register-wrap_title .register-image {
    width: 197px;
  }
  .register-wrap_title {
    padding-left: 35px;
    padding: 36px 40px;
  }
  .alumini-content h4 {
    font-size: 18px;
  }
  #certifications .card-2 {
    padding: 1.4rem 1rem 1rem;
  }
  #recognized-img {
    max-width: 80%;
  }
  .features-wrap_content {
    display: block;
  }
  .features_left {
    width: 500px;
    margin: 0px auto 40px;
  }
  .features .bot {
    left: auto;
    right: 20px;
  }
  .gutter-column_image {
    display: flex;
  }
  .gutter-bg {
    align-self: center;
  }
  .footer-copyright p {
    font-size: 13px;
  }
  .footer-copyright ul li a {
    font-size: 14px;
  }
  .footer-copyright ul li:before {
    top: 0px;
    width: 18px;
  }
  .features_right_content ul li figure {
    width: 70px !important;
  }
  .banner-feature {
    display: flex;
    flex-wrap: wrap;
  }
  .banner-stacks {
    flex: 0 0 50%;
  }
  .banner-stacks:nth-of-type(4) {
    margin-top: 15px;
  }
  .banner-stacks:nth-of-type(4) figure {
    width: 37px !important;
  }
  .banner-stacks:nth-of-type(3) {
    margin-top: 15px;
  }
  .banner-stacks:nth-of-type(3) figure {
    align-self: flex-start;
  }
  .banner-stacks:nth-of-type(3) figcaption {
    padding-left: 20px;
    align-self: flex-start;
  }
  .banner-stacks figcaption label {
    font-size: 16px;
  }
  .banner-stacks figcaption span {
    font-size: 18px;
  }
  .banner-feature {
    padding: 18px 38px;
  }
  .banner-wrap_content h1 {
    font-size: 28px;
  }
  /**.banner-wrap {
      height: 580px;
    }**/
  .banner-wrap_content {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .theme-btn.for-mobile-only {
    display: block !important;
    margin: 0 auto;
    font-size: 12px;
  }
  .register-wrap_title .register-image {
    display: none;
  }
  .register-wrap_title p br {
    display: none;
  }
  .page-content .page-title {
    font-size: 20px;
  }
  #recognized-img {
    max-width: 45%;
  }
  .alumini-content {
    display: block !important;
  }
  .alumini_item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .alumini_item > div {
    padding: 15px 20px 15px;
    margin-bottom: 22px;
    box-shadow: 5px 2px 11px 4px rgba(115, 168, 212, 0.2) !important;
  }
  .alumini_item:nth-of-type(1) > div {
    background: #73a8d4;
    background: linear-gradient(
      0deg,
      rgba(115, 168, 212, 0.4) 14%,
      rgba(235, 243, 249, 0.7) 100%
    );
  }
  .alumini_item:nth-of-type(3) > div {
    background: #3a3e41;
    background: linear-gradient(
      0deg,
      rgba(245, 77, 77, 0.4) 14%,
      rgba(251, 220, 220, 0.7) 100%
    );
  }
  .page-content p br {
    display: none;
  }
  .gutter-column {
    display: block;
  }
  .gutter-column_content {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .gutter-column_image {
    flex: 0 0 65%;
    max-width: 65%;
    margin: 0px auto 30px;
  }
  .mission-wrap .gutter-bg {
    background-position-x: center;
  }
  .mission .rocket-slant {
    top: -35px;
  }

  .rover {
    right: 90px;
    bottom: 70px;
  }
  .features_right_content ul li:nth-of-type(2) figcaption {
    padding-left: 15px;
  }
  /**.rover {
      right: 30px !important;
    }**/
}

@media (max-width: 640px) {
  #recognized-img {
    max-width: 55%;
  }
  .about-video {
    display: block;
  }
  .features_left {
    width: 390px;
  }
  .testimonial .bot {
    right: 34px;
  }
  .about-video_item {
    padding-bottom: 56%;
    width: 390px;
    margin: 0 auto 20px;
  }
  .gift-box {
    display: none;
  }
  .about-wrap_title {
    display: block;
  }
  .about-wrap_title p {
    margin-bottom: 20px;
  }
  .register-wrap_title,
  .about-wrap_title {
    text-align: center;
  }
  .testimonial .bot {
    bottom: -16px;
  }
  .features_right_content ul li figcaption h6 {
    font-size: 18px;
  }
  .features .bot {
    display: none;
  }
  .features {
    padding: 22px 0 20px;
  }
  .mission {
    padding: 40px 0 50px;
  }
  .toys {
    padding-bottom: 50px;
    padding-top: 75px;
  }
  .rover {
    width: 60px;
    height: 54px;
  }
  .footer-wrap_right {
    display: none;
  }
  .footer-wrap_left {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .footer-copyright_content {
    display: block;
    text-align: center;
  }
  .footer-copyright ul {
    margin-top: 10px;
    justify-content: center;
  }
  .mission .rocket-slant {
    left: 0 !important;
  }

  .banner-image {
    width: 88%;
    margin-left: 29px;
  }
  .page-content .page-title {
    margin-bottom: 28px;
  }
}
@media (max-width: 650px) {
  figcaption span.for-desktop {
    display: none;
  }
  figcaption span.for-mobile {
    display: block !important;
  }
}
@media (max-width: 479px) {
  /**.alumini-wrap .page-title span, .features-wrap .page-title span {
      display: table;
      margin: 0 auto;
    }**/
  .owl-stage {
    left: -40px;
  }
  .banner-wrap_content h1 span {
    display: table;
    margin: 0 auto;
  }
  #recognized-img {
    max-width: 65%;
  }
  .features_left {
    width: 320px;
  }
  .features_left_register {
    display: block;
    text-align: center;
    padding: 15px 15px;
  }
  .features_left_register p {
    margin-top: 0px;
  }
  .page-content .page-title br {
    display: none;
  }
  /**.banner-wrap {
      height: 580px;
    }**/
  .banner-wrap_content h1 {
    font-size: 28px;
  }
  .banner-image {
    margin-top: 42px;
  }
  .banner-feature {
    padding: 15px 22px;
    margin-top: 25px;
  }
  .banner-stacks figcaption span {
    font-size: 16px;
  }
  .banner-image {
    width: 100%;
    margin-left: 0px;
  }
  .about {
    padding: 45px 0 30px;
  }
  .about-wrap_content {
    margin-top: 42px;
  }
  .about {
    padding: 45px 0 0px;
  }
  .testimonial-wrap-slide {
    margin-top: 30px;
  }
  .test-item_image {
    top: -35px;
  }
  .testimonial .bot {
    right: 16px;
  }
  .testimonial {
    padding-bottom: 24px;
  }
  .alumini {
    padding-top: 28px;
    padding-bottom: 83px;
  }
  .coaches {
    padding: 55px 0 150px;
  }
  .features .rocket-launch {
    height: 120px;
    top: -110px !important;
    background-repeat: no-repeat;
    right: 26px;
    width: 43px;
  }
  .alumini-content {
    margin-top: 40px;
  }
  .features_right_content > p {
    text-align: center;
  }
  .features_right_content ul li {
    padding: 10px 0;
    margin-bottom: 15px;
  }
  .features_right_content ul li figure {
    margin: 0px 10px;
  }
  .features_right_content ul li:nth-of-type(1) {
    background-color: #fff;
  }
  .features_right_content ul li:nth-of-type(2) {
    background: #ffd978;
    background: linear-gradient(
      0deg,
      rgba(255, 217, 120, 0.65) 14%,
      rgba(235, 241, 140, 0.4) 100%
    );
  }
  .features_right_content ul li:nth-of-type(3) {
    background: #3a3e41;
    background: linear-gradient(
      0deg,
      rgba(245, 77, 77, 0.4) 14%,
      rgba(251, 220, 220, 0.7) 100%
    );
  }
  .features_right_content ul li:nth-of-type(2) figure {
    width: 85px !important;
  }
  .features_right_content ul li:nth-of-type(2) figcaption {
    padding-left: 4px;
  }
  .features-wrap_content {
    padding-top: 25px;
  }
  .header {
    padding: 14px;
    z-index: 10;
    width: 100%;
  }
  .header-wrap .theme-btn {
    font-weight: 600;
    font-size: 10px;
    width: 120px;
    height: 35px;
  }
  .wrapper {
    margin-top: 0px;
  }
  .banner-stacks:nth-of-type(4) figure {
    width: 54px !important;
  }
  .banner-stacks figcaption {
    align-self: center;
  }
  .banner-stacks figure {
    height: 38px;
    width: 38px !important;
  }
  .alumini_item > div {
    text-align: center;
  }
  .alumini_item > div figure {
    width: 59px;
    height: 62px;
    margin: 0 auto;
  }
  .mission .rocket-slant {
    left: -40px !important;
  }

  .bubbles {
    display: none;
  }
  .banner-feature {
    padding: 15px 12px;
  }
  .banner-stacks figcaption label {
    font-size: 14px;
  }
  .footer-copyright ul li {
    margin: 0px 6px;
  }
  .mob-banner {
    display: block;
  }
  .desk-banner {
    display: none;
  }
}

@media (max-width: 390px) {
  .mission .bot {
    right: 0;
  }
  .gutter-column_image {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

/* Popup code */
.main_popup .modal {
  padding-left: 0px !important;
  background: rgba(0, 0, 0, 0.5);
  overflow-y: auto !important;
  z-index: 9999999999999;
}

.main_popup .modal-dialog {
  max-width: 80% !important;
  margin-top: 5% !important;
}

.main_popup .modal-content {
  background: url("https://assets.skyfilabs.com/playto/img/robot-bg.svg")
      no-repeat 97% 93%,
    linear-gradient(to right, #ffd978, #ffd978, #ffd978);
  padding: 30px;
  border: none !important;
  border-radius: 30px !important;
}

.main_popup .modal-header {
  padding: 0px !important;
  border: none !important;
}

.main_popup .modal-header .close {
  opacity: 1;
  background: #fff;
  padding: 3px 10px 8px !important;
  border-radius: 50%;
  box-shadow: 0px 0px 10px #eee;
}

.main_popup div.popup_right_form h2 {
  font-weight: 400;
  font-size: 24px;
}

.main_popup .popup_form form input {
  padding: 20px;
  border: 3px solid #fff2d2;
  outline: none;
  font-size: 18px;
}

.main_popup .popup_form form button[type="submit"] {
  background: #ff0000;
  border-radius: 5px;
  padding: 10px 30px;
  border: none;
  font-size: 13px;
}

input {
  padding: 8px 15px !important;
}

@media (max-width: 481px) {
  .main_popup .popup_img {
    display: none;
  }
  .main_popup .popup_right_form {
    width: 100%;
    padding: 15px 0 25px;
  }
}

@media (min-width: 981px) {
  .main_popup .modal-body .row {
    display: flex;
    align-items: center;
  }
  .main_popup .popup_right_form {
    width: 76%;
  }
  .main_popup .modal-dialog {
    max-width: 80% !important;
    margin-top: 5% !important;
  }
}

@media (max-width: 981px) {
  .main_popup .modal-dialog {
    max-width: 98% !important;
    margin: 0 auto;
  }
  .main_popup .popup_img {
    margin-bottom: 30px;
  }
  .main_popup .popup_img img {
    width: 60%;
  }
  .main_popup .form_button {
    display: flex;
    justify-content: center;
  }
  .main_popup div.popup_right_form h2 {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .main_popup .modal-content {
    padding: 10px;
  }
}

@media (max-width: 1400px) {
  .main_popup .popup_right_form {
    width: 100%;
  }
}
/* New Css */

.banner-wrap_content .container {
  padding-left: 60px;
  padding-right: 60px;
}
.features_left_register p {
  margin-bottom: 0px;
}
.popup_right_form h2 span img {
  width: 142px;
}
@media screen and (max-width: 700px) {
  .features_left_register p {
    margin-bottom: 15px;
  }
  .banner-wrap_content .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  section.register .register-wrap_title {
    padding-left: 10px;
    padding-right: 10px;
  }
  .rocket-slant.mobile-only {
    display: block !important;
    position: absolute;
    top: 30%;
    margin-left: 0;
    background-image: url(https://assets.skyfilabs.com/playto/img/small-rocket.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 60px;
    height: 60px;
    -webkit-animation: MoveLeftRightFast 0.2s linear infinite;
    animation: MoveLeftRightFast 0.2s linear infinite;
  }
}
#chat-bot-launcher-container.chat-bot-launcher-enabled
  .chat-bot-launcher-button,
#chat-bot-launcher-container.chat-bot-avatar-launcher
  .chat-bot-launcher-button {
  background-image: url("https://avatars.collectcdn.com/618a2d3211c7462f21debf61-618a2d3211c7462f21debf63.jpeg?t=1636449786637") !important;
}
.alumini_item div {
  min-height: 345px;
}
section.about .about-wrap .about-wrap_title .col-sm-9 .rocket-slant {
  position: absolute;
  top: -20px;
  margin-left: -70px;
  background-image: url(https://assets.skyfilabs.com/playto/img/small-rocket.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 60px;
  height: 60px;
  -webkit-animation: MoveLeftRightFast 0.2s linear infinite;
  animation: MoveLeftRightFast 0.2s linear infinite;
}
@media screen and (max-width: 1000px) {
  .banner-wrap {
    background-size: 100%;
  }
  .banner-wrap .col-md-6 h1 {
    font-family: Montserrat;
    color: #222;
    font-weight: 500;
    font-size: 25px;
    line-height: 45px;
    margin-bottom: 20px;
  }
  .banner-wrap .col-md-6 h1 span:nth-child(2) {
    font-size: 35px !important;
  }
  .personalised-based {
    font-size: 10px;
  }
  .form-box-banner h2 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .form-box-banner {
    padding: 30px 30px;
  }
  .banner-wrap .counter .col-md-4 {
    max-width: 33%;
  }
  .banner-wrap .counter .col-md-4 .counter-content h3 {
    font-size: 10px;
  }
  .banner-wrap .counter .col-md-4 .counter-content h5 {
    font-size: 12px;
  }
  .banner-wrap .counter {
    padding: 20px 10px 20px 20px;
    margin-top: 20px;
  }
  section .row h3.page-title {
    width: 90%;
    margin: 0 auto 40px;
  }
  .receive .bot {
    position: absolute;
    right: 40px;
    width: 70px;
    height: 70px;
    bottom: -100px;
  }
  .receive .container {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
  }
  .receive .container .col-md-4 {
    margin-bottom: 40px;
  }
  .learn .col-md-3 {
    max-width: 50%;
  }
  section.learn .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .learn .rocket-slant {
    margin-left: -20px;
  }
  .testimonials .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .testimonials .rover {
    bottom: -60px;
  }
  .row.last-section-one .col-md-4::after {
    display: none;
  }
  .last-section-three .bot {
    position: absolute;
    left: 20px;
    width: 70px;
    height: 70px;
    top: -80px;
  }
}
@media screen and (max-width: 767px) {
  .col-md-6 .testimonial-item {
    width: 95%;
  }
  .learn .col-md-3 .learn-item {
    padding: 20px 10px !important;
  }
  .row.last-section-one .col-md-4 {
    margin-bottom: 20px;
  }
  .row.last-section-three .col-md-6:last-child {
    margin-top: 50px;
  }
  .footer .container {
    position: relative;
    padding-left: 30px !important;
    padding-right: 30px !important;
    background: transparent;
  }
  .footer .container .footer-wrap {
    background: #73a8d4;
    border-radius: 20px;
    padding: 30px 30px 10px !important;
  }
  .footer .container .footer-wrap .row {
    width: auto !important;
  }
  .footer .container .footer-wrap .row .col-md-3 {
    margin-bottom: 30px;
  }
  img.footer-robot {
    position: relative;
    top: -25px;
  }
  .last-multiple-section .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .banner .banner-wrap .rocket-slant {
    position: absolute;
    top: 65px !important;
    margin-left: 0px !important;
    background-image: url(https://assets.skyfilabs.com/playto/img/small-rocket.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 60px;
    height: 60px;
    -webkit-animation: MoveLeftRightFast 0.2s linear infinite;
    animation: MoveLeftRightFast 0.2s linear infinite;
  }

  .row.last-section-three {
    background-position: 40px 12px !important;
    padding-top: 40px;
  }
  .form-box-banner {
    margin-top: 70px;
    padding-top: 60px;
  }
}
.banner .banner-wrap .rocket-slant {
  position: absolute;
  top: 0px;
  margin-left: -10px;
  background-image: url(https://assets.skyfilabs.com/playto/img/small-rocket.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 60px;
  height: 60px;
  -webkit-animation: MoveLeftRightFast 0.2s linear infinite;
  animation: MoveLeftRightFast 0.2s linear infinite;
}

/* Playto FAQs Section Start */
#accordionFaq {
  width: 100%;
}
#faqs .accordion .card-body {
  background-color: rgba(255, 217, 120, 0.6);
  font-size: 18px;
  font-weight: 400;
}
#faqs .accordion .card .card-header {
  background-color: rgb(255, 255, 255);
  word-wrap: break-word;
}
#faqs .accordion .card .card-header:hover {
  cursor: pointer;
}
#faqs .accordion .card .card-header a p h3 {
  white-space: normal;
  text-align: left;
  font-size: 18px;
  margin-bottom: 0;
  border: none;
  background-color: rgb(255, 255, 255);
}
#faqs .accordion .card .card-header .arrow-btn {
  border: none;
  background-color: rgb(255, 255, 255);
}
#faqs .accordion .card .card-header .arrow-btn img {
  color: rgba(255, 217, 120, 0.6);
  width: 60%;
}
#faqs .accordion .card-header p h3 {
  font-size: 18px;
  padding: 3.75px 0px;
  background-color: rgb(255, 255, 255);
}
#faqs .accordion .card-header h3 p span {
  color: rgb(255, 217, 120);
}
#faqs .accordion .card-header button:focus {
  outline: none;
  box-shadow: none;
}
#faqs .accordion .card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#faqs .btc-accordion .card a {
  color: #f2f2f2;
  text-decoration: none;
}

#faqs .accordion-icon[aria-expanded="false"] .fa-circle-chevron-right {
  transform: rotate(0deg);
  transition: 0.5s;
}

#faqs .accordion-icon[aria-expanded="true"] .fa-circle-chevron-right {
  transform: rotate(90deg);
  transition: 0.5s;
}

#social {
  padding-bottom: 120px;
}
.follow-us {
  font-size: 22px;
}
.social-icons {
  padding-left: 1.5rem;
}
.play-to-kid {
  background: rgba(115, 168, 212, 0.9);
  border-radius: 8px;
  align-items: center;
  margin-top: 100px;
}
.footer-order-btn {
  padding: 0.5rem 1rem;
  font-weight: 500;
}
.robo-img-container {
  text-align: center;
  margin-bottom: 2rem;
}
.robo_img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  #faqs .accordion .card .card-header .arrow-btn {
    display: none;
  }
  #social .container {
    padding: 0;
  }
  .play-to-kid {
    padding-bottom: 3rem;
  }
  .robo-img-container {
    margin-bottom: 3rem;
  }
  .robo_img {
    transform: scale(1);
  }
  .get-play-to-kid {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .social-icons {
    padding-left: 0;
  }
  .follow-us {
    padding-bottom: 1rem;
  }
} /* Playto FAQs Section End */

/* Blog Template*/
.blog a {
  font-weight: 600;
  color: #212631;
  text-decoration: none;
}
.blog-image {
      width: 100%
}
.blog a:hover,
.blog a:focus {
  color: #212631;
  text-decoration: underline;
  outline: none;
}
.blog p {
  margin: 0 0 20px;
}
.blog ul
{
  margin: 0;
  padding: 0;
  list-style: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  line-height: 1.7;
}
.blog ol {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  line-height: 1.7;
}
.blog ul.list-style,
.blog ol.list-style {
  padding-left: 15px;
  margin-bottom: 10px;
}
.blog ul.list-style {
  list-style-type: disc;
}
.blog ol.list-style {
  list-style-type: decimal;
}
.blog blockquote.blockquote {
  position: relative;
  border-left: 0;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 20px;
}
.blog blockquote.blockquote:before {
  content: "``";
  font-family: "Nunito Sans", sans-serif;
  display: block;
  position: absolute;
  left: -5px;
  top: 5px;
  font-size: 240px;
  line-height: 200px;
  color: #eceef2;
  letter-spacing: -30px;
  z-index: -2;
}
.blog figure.figure-img {
  margin-bottom: 20px;
}
.blog figure.figure-img figcaption {
  padding-top: 5px;
  font-size: 13px;
  font-weight: 600;
}
.blog .input {
  height: 40px;
  border: 2px solid #eceef2;
  width: 100%;
  padding: 0 15px;
  transition: 0.2s border;
}
.blog .input:focus {
  border-color: #3d455c;
}
.blog textarea.input {
  height: 90px;
  padding: 15px;
}
.blog .primary-button {
  padding: 9px 45px;
  border: none;
  background-color: #ff0000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  transition: 0.2s opacity;
}
.blog .primary-button:hover,
.blog .primary-button:focus {
  color: #fff;
  opacity: 0.9;
}
.blog .section {
  padding-top: 40px;
}
.blog .section.section-grey {
  background-color: #fbfbfd;
  border-bottom: 1px solid #eceef2;
  border-top: 1px solid #eceef2;
}
.blog .section .section-title {
  margin-bottom: 40px;
}
.blog .section .section-title h2 {
  text-transform: capitalize;
  font-size: 28px;
}
.blog h2 {
  font-size: 22px;
  font-weight: 700;
}
.blog h3 {
  font-size: 20px;
}
.blog .section-row {
  margin-bottom: 40px;
}
.blog #nav {
  height: 70px;
}
.blog #nav:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(33, 38, 49, 0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s all;
}
.blog #nav.shadow-active:after {
  opacity: 1;
  visibility: visible;
}
.blog #nav-fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 90;
  background-color: #fff;
  box-shadow: 0 -1px 0 0 #eceef2 inset;
}
.blog #nav-fixed.slide-down {
  -webkit-animation: slide-down 0.3s;
  animation: slide-down 0.3s;
}
.blog #nav-fixed.slide-up {
  -webkit-animation: slide-up 0.3s;
  animation: slide-up 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slide-up {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes slide-up {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
.blog #nav .container {
  position: relative;
}
.blog .nav-logo {
  float: left;
  max-width: 100px;
  margin-right: 20px;
}
.blog .nav-logo .logo {
  line-height: 70px;
  display: inline-block;
}
.blog .nav-logo .logo > img {
  width: 100%;
  max-height: 70px;
}
.blog .nav-menu {
  flex-direction: row;
  position: relative;
  top: 23px;
}
.blog .nav-menu li a {
  position: relative;
  padding: 25px 20px;
  text-transform: capitalize;
  box-shadow: -1px 0 0 0 #eceef2 inset;
  transition: 0.2s color;
}
.blog .nav-menu li:first-child a {
  border-left: 1px solid #eceef2;
}
.blog .nav-menu li a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  transition: 0.2s width;
}
.blog .nav-menu li.cat-1 a:after {
  background-color: #4bb92f;
}
.blog .nav-menu li.cat-2 a:after {
  background-color: #ff8700;
}
.blog .nav-menu li.cat-3 a:after {
  background-color: #0078ff;
}
.blog .nav-menu li.cat-4 a:after {
  background-color: #8d00ff;
}
.blog .nav-menu li a:hover,
.blog .nav-menu li a:focus {
  background-color: transparent;
  text-decoration: none;
}
.blog .nav-menu li.cat-1 a:hover,
.blog .nav-menu li.cat-1 a:focus {
  color: #4bb92f;
}
.blog .nav-menu li.cat-2 a:hover,
.blog .nav-menu li.cat-2 a:focus {
  color: #ff8700;
}
.blog .nav-menu li.cat-3 a:hover,
.blog .nav-menu li.cat-3 a:focus {
  color: #0078ff;
}
.blog .nav-menu li.cat-4 a:hover,
.blog .nav-menu li.cat-4 a:focus {
  color: #8d00ff;
}
.blog .nav-btns {
  float: right;
}
.blog .nav-btns > button {
  padding: 25px 25px;
  border: none;
  line-height: 20px;
  background: transparent;
}
.blog .nav-btns .search-form {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
}
.blog .nav-btns .search-form.active {
  opacity: 1;
  visibility: visible;
}
.blog .nav-btns .search-form .search-input {
  height: 100%;
  width: 100%;
  border: none;
  background: #fff;
  padding: 0;
  font-weight: 600;
}
.blog .aside-btn,
.blog .search-btn,
.blog .search-close{
  cursor: pointer;
}
.blog .nav-btns .search-form .search-close {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  line-height: 20px;
  color: #212631;
  font-size: 22px;
  padding: 0;
}
.blog #nav-aside {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  max-width: 360px;
  width: 100%;
  padding: 80px 20px;
  overflow-y: scroll;
  z-index: 99;
  transform: translateX(100%);
  transition: 0.3s all;
}
.blog #nav-aside.active {
  transform: translateX(0%);
}
.blog .nav-aside-menu li a {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 23px;
}
.blog .nav-aside-social li {
  display: inline-block;
}
.blog .nav-aside-social li > a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #212631;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  transition: 0.2s opacity;
}
.blog .nav-aside-social li > a:hover,
.blog .nav-aside-social li > a:focus {
  opacity: 0.9;
}
.blog .nav-aside-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  background-color: transparent;
  color: #212631;
  border: none;
  font-size: 22px;
  border-radius: 50%;
  padding: 0;
}
.blog .page-header {
  position: relative;
  margin: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fbfbfd;
  border-bottom: 2px solid #f4f4f9;
}
.blog .page-header .background-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
}
.blog .page-header .background-img:after {
  content: none;
}
.blog #post-header.page-header {
  padding-top: 120px;
}
.blog .page-header h1 {
  margin-bottom: 0;
}
.blog #post-header.page-header h1 {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55);
  display: inline-block;
  background-image: linear-gradient(
    to top,
    rgba(33, 38, 49, 0.55) 0%,
    rgba(33, 38, 49, 0.32) 70%,
    transparent 100%
  );
  padding: 0.15em 0.32em 0.22em;
  border-radius: 4px;
  max-width: 100%;
}
.blog .page-header .post-meta {
  margin: 15px 0;
}
.blog .page-header .post-meta .post-date {
  color: #eceef2;
}
.blog .page-header .page-header-breadcrumb {
  margin: 15px 0;
}
.blog .page-header .page-header-breadcrumb li {
  display: inline-block;
}
.blog .page-header .page-header-breadcrumb li,
.blog .page-header .page-header-breadcrumb li a {
  font-size: 13px;
  text-transform: capitalize;
  color: #a7b3c6;
}
.blog .page-header .page-header-breadcrumb li a {
  transition: 0.2s color;
}
.blog p a {
    color: #007bff;
    text-decoration: none;
}
.blog p
a:hover,
a:focus,
a:active {
  color: #0056b3;
  text-decoration: none;
}
.blog .page-header .page-header-breadcrumb li a:hover,
.blog .page-header .page-header-breadcrumb li a:focus {
  color: #0b0f28;
  text-decoration: none;
}
.blog .page-header .page-header-breadcrumb li + li:before {
  content: "/";
  display: inline-block;
  margin: 0 10px;
}
.blog .post {
  margin-bottom: 40px;
}
.blog .post .post-img {
  display: block;
  transition: 0.2s opacity;
}
.blog .post .post-img:hover,
.blog .post .post-img:focus {
  opacity: 0.9;
}
.blog .post .post-img > img {
  width: 100%;
}
.blog .post .post-meta {
  margin-top: 15px;
  margin-bottom: 15px;
}
.blog .post-meta .post-category {
  font-size: 13px;
  text-transform: uppercase;
  padding: 3px 10px;
  font-weight: 600;
  border-radius: 2px;
  margin-right: 15px;
  color: #fff;
  background-color: #212631;
  transition: 0.2s opacity;
}
.blog .post-meta .post-category:hover,
.blog .post-meta .post-category:focus {
  text-decoration: none;
  opacity: 0.9;
}
.blog .post-meta .post-category.cat-1 {
  background-color: #4bb92f;
}
.blog .post-meta .post-category.cat-2 {
  background-color: #ff8700;
}
.blog .post-meta .post-category.cat-3 {
  background-color: #8d00ff;
}
.blog .post-meta .post-category.cat-4 {
  background-color: #0078ff;
}
.blog .post-meta .post-date {
  font-size: 13px;
  font-weight: 600;
}
.blog .post .post-title {
  font-size: 18px;
  margin-bottom: 0;
}
.blog .post.post-thumb {
  position: relative;
}
.blog .post.post-thumb .post-img:after {
  content: none;
}
.blog .post.post-thumb .post-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(
    to top,
    rgba(33, 38, 49, 0.78) 0%,
    rgba(33, 38, 49, 0.52) 52%,
    rgba(33, 38, 49, 0) 100%
  );
  border-radius: 0 0 4px 4px;
}
.blog .post.post-thumb .post-meta .post-date {
  color: #eceef2;
}
.blog .post.post-thumb .post-title {
  font-size: 22px;
}
.blog .post.post-thumb .post-title > a {
  color: #fff;
}
.blog .post.post-widget:after {
  content: "";
  display: block;
  clear: both;
}
.blog .post.post-widget .post-img {
  width: 90px;
  float: left;
  margin-right: 15px;
}
.blog .post.post-widget .post-img img {
  width: 100%;
}
.blog .post.post-widget .post-title {
  font-size: 18px;
}
.blog .post.post-row:after {
  content: "";
  display: block;
  clear: both;
}
.blog .post.post-row .post-img {
  width: 40%;
  float: left;
}
.blog .post.post-row .post-body {
  margin-left: calc(40% + 30px);
}
.blog .post.post-row .post-meta {
  margin-top: 0;
}
.blog .post.post-row .post-title {
  margin-bottom: 15px;
}
.blog .sticky-container {
  position: relative;
  padding-left: 10px;
}
.blog .sticky-container .sticky-shares {
  position: absolute;
  top: 0;
  left: 0;
}
.blog .sticky-shares a {
  display: block;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fbfbfd;
  color: #a7b3c6;
  border: 1px solid #eceef2;
  transition: 0.2s all;
}
.blog .sticky-shares a:hover {
  transform: scale(1.3);
}
.blog .sticky-shares a.share-facebook:hover {
  color: #3b5998;
  border-color: #3b5998;
}
.blog .sticky-shares a.share-twitter:hover {
  color: #55acee;
  border-color: #55acee;
}
.blog .sticky-shares a.share-google-plus:hover {
  color: #dd4b39;
  border-color: #dd4b39;
}
.blog .sticky-shares a.share-pinterest:hover {
  color: red;
  border-color: red;
}
.blog .sticky-shares a.share-linkedin:hover {
  color: #007bb5;
  border-color: #007bb5;
}
.blog .post-author .media .media-left {
  padding-right: 40px;
}
.blog .post-author .media .media-left .media-object {
  width: 120px;
  border-radius: 50%;
}
.blog .post-author .author-social {
  margin-top: 15px;
}
.blog .post-author .author-social li {
  display: inline-block;
  margin-right: 5px;
}
.blog .post-author .author-social li > a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #a7b3c6;
  color: #fff;
  border-radius: 2px;
  transition: 0.2s opacity;
}
.blog .post-author .author-social li > a:hover,
.blog .post-author .author-social li > a:focus {
  color: #fff;
  opacity: 0.9;
}
.blog .post-comments .media {
  padding-top: 15px;
  border-top: 1px solid #eceef2;
}
.blog .post-comments .media:nth-child(1) {
  padding-top: 0;
  border-top: none;
}
.blog .post-comments .media .media-left {
  padding-right: 15px;
}
.blog .post-comments .media .media-left .media-object {
  width: 70px;
  border-radius: 50%;
}
.blog .post-comments .media .media-body .media-heading h4 {
  text-transform: capitalize;
}
.blog .post-comments .media .media-body .media-heading .time {
  font-size: 13px;
  margin-right: 15px;
  color: #a7b3c6;
}
.blog .post-comments .media .media-body .media-heading .reply {
  font-size: 13px;
  color: #a7b3c6;
  transition: 0.2s color;
}
.blog .post-comments .media .media-body .media-heading .reply:hover,
.blog .post-comments .media .media-body .media-heading .reply:focus {
  color: #212631;
  text-decoration: none;
}
.blog .aside-widget {
  margin-bottom: 40px;
}
.blog .category-widget ul li {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #eceef2;
}
.blog .category-widget ul li + li {
  margin-top: 10px;
}
.blog .category-widget ul li > a {
  display: block;
  transition: 0.2s color;
}
.blog .category-widget ul li > a > span {
  float: right;
  color: #fff;
  background-color: #212631;
  padding: 0 5px;
  font-weight: 600;
  border-radius: 2px;
}
.blog .category-widget ul li > a.cat-1 > span {
  background-color: #4bb92f;
}
.blog .category-widget ul li > a.cat-2 > span {
  background-color: #ff8700;
}
.blog .category-widget ul li > a.cat-3 > span {
  background-color: #8d00ff;
}
.blog .category-widget ul li > a.cat-4 > span {
  background-color: #0078ff;
}
.blog .category-widget ul li > a:hover,
.blog .category-widget ul li > a:focus {
  text-decoration: none;
}
.blog .category-widget ul li > a.cat-1:hover,
.blog .category-widget ul li > a.cat-1:focus {
  color: #4bb92f;
}
.blog .category-widget ul li > a.cat-2:hover,
.blog .category-widget ul li > a.cat-2:focus {
  color: #ff8700;
}
.blog .category-widget ul li > a.cat-3:hover,
.blog .category-widget ul li > a.cat-3:focus {
  color: #0078ff;
}
.blog .category-widget ul li > a.cat-4:hover,
.blog .category-widget ul li > a.cat-4:focus {
  color: #8d00ff;
}
.blog .tags-widget ul li {
  display: inline-block;
  margin-right: 3px;
  margin-bottom: 5px;
}
.blog .tags-widget ul li a {
  display: block;
  color: #fff;
  background-color: #212631;
  padding: 3px 10px;
  font-weight: 600;
  border-radius: 2px;
  transition: 0.2s opacity;
}
.blog .tags-widget ul li a:hover,
.blog .tags-widget ul li a:focus {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
}
.blog .archive-widget ul li {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #eceef2;
}
.blog .archive-widget ul li + li {
  margin-top: 10px;
}
.blog .archive-widget ul li > a {
  display: block;
}
.blog #footer {
  padding-bottom: 40px;
  margin-top: 40px;
}
.blog #footer .container {
  padding-top: 80px;
  border-top: 1px solid #f4f4f9;
}
.blog .footer-widget {
  margin-bottom: 40px;
}
.blog .footer-widget .footer-title {
  margin-bottom: 40px;
  text-transform: capitalize;
  font-size: 18px;
}
.blog .footer-widget a {
  color: #a7b3c6;
  transition: 0.2s color;
}
.blog .footer-widget a:hover,
.blog .footer-widget a:focus {
  text-decoration: none;
  color: #212631;
}
.blog .footer-logo {
  margin-bottom: 40px;
}
.blog .footer-logo img {
  max-width: 100px;
}
.blog .footer-nav li {
  display: inline-block;
  margin-right: 15px;
}
.blog .footer-links li + li {
  margin-top: 5px;
}
.blog .footer-copyright {
  margin-top: 20px;
  color: #a7b3c6;
  font-size: 13px;
}
.blog .footer-newsletter form {
  position: relative;
}
.blog .footer-newsletter form > input.input {
  padding-right: 55px;
}
.blog .footer-newsletter form > .newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  color: #a7b3c6;
  background: transparent;
  border: none;
  border-radius: 0 2px 2px 0;
  transition: 0.2s opacity;
}
.blog .footer-newsletter form > .newsletter-btn:hover {
  opacity: 0.9;
}
.blog .footer-social {
  margin-top: 20px;
}
.blog .footer-social li {
  display: inline-block;
  margin-right: 5px;
}
.blog .footer-social li > a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #a7b3c6;
  color: #fff;
  border-radius: 2px;
  transition: 0.2s opacity;
}
.blog .footer-social li > a:hover,
.blog .footer-social li > a:focus {
  color: #fff;
  opacity: 0.9;
}
@media only screen and (max-width: 991px) {
  .blog #nav .nav-menu {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .blog .page-header h1 {
    font-size: 28px;
  }
  .blog .post.post-row .post-img {
    width: 100%;
    float: none;
  }
  .blog .post.post-row .post-body {
    margin-left: 0;
  }
  .blog .post.post-row .post-meta {
    margin-top: 15px;
  }
  .blog .post.post-row .post-body p {
    display: none;
  }
  .blog .sticky-container {
    padding-left: 10px;
  }
}