/********** Template CSS **********/
:root {
    --primary: #a0d404;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #fffdfd;
    --black: #efefef;
    --black2: #4a4a4a;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

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

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 5px;
    /* padding: 25px 0; */
    color: #000000;
    font-weight: 500;
    outline: none;
    font-size: 14px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: rgba(26, 27, 27, 0.8); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: auto;
        height: auto;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/2.gif) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #000000;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--black2) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.navbar-collapse {
    -webkit-border-radius: 0;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0;
    -moz-background-clip: padding;
    border-radius: 0;
    background-clip: padding-box;
    font-family: "Open sans", Helvetica, Arial, sans-serif;
    /* font-weight: 300; */
    /* text-transform: uppercase; */
   
  }
  .navbar-collapse .navbar-nav {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
  .navbar-collapse .navbar-nav > li {
    float: none;
    display: inline-block;
  }
  .navbar-collapse .navbar-nav > li > a {
    padding: 20px 30px;
  }

  
/*
---------------------------------------------
cta
---------------------------------------------
*/

section.simple-cta {
    /* background-image: url(../img/cta-bg.png); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    /* padding: 180px 0px 180px 0px; */
  }
  
  section.simple-cta .left-image {
    margin-right: 45px;
  }
  
  section.simple-cta h6 {
    font-size: 17px;
    color: #fff;
  }
  
  section.simple-cta h4 {
    font-size: 62px;
    font-weight: 900;
    color: #fff;
    line-height: 74px;
    margin-top: 20px;
  }
  
  section.simple-cta p {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  
  
/*
---------------------------------------------
contact us page
---------------------------------------------
*/

section.more-info .section-heading {
    margin-bottom: 40px;
    text-align: left;
  }
  
  section.more-info p {
    margin-bottom: 40px;
  }
  
  section.more-info ul li {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  section.more-info ul li:last-child {
    margin-bottom: 0px;
  }
  
  section.more-info .count-area-content {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  section.more-info .count-area-content .count-digit {
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    text-align: center;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-40px);
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 28px;
    color: #dc8cdb;
    font-weight: 900;
    margin-bottom: -40px;
    position: relative;
    z-index: 2;
  }
  
  section.more-info .count-area-content .count-title {
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: #111;
    padding: 50px 30px 30px 30px;
    position: relative;
    z-index: 1;
  }

  
/*
---------------------------------------------
our courses
---------------------------------------------
*/

section.our-courses {
    position: relative;
  }
  
  section.our-courses .section-heading p {
    padding: 0px 60px;
  }
  
  section.our-courses:before {
    position: absolute;
    content: '';
    background-image: url(../images/our-courses-left-dec.png);
    left: 45px;
    top: -140px;
    width: 291px;
    height: 231px;
    z-index: 1;
  }
  
  section.our-courses:after {
    position: absolute;
    content: '';
    background-image: url(../images/our-courses-right-dec.png);
    right: 45px;
    top: -140px;
    width: 291px;
    height: 231px;
    z-index: 1;
  }
  
  section.our-courses .naccs {
    position: relative;
  }
  
  section.our-courses .naccs .menu div {
    padding: 5px 10px;
    text-align: center;
    border-radius: 5px !important;
    margin-bottom: 20px;
    font-size: 20px;
    color: #111;
    background-color: #fff;
    cursor: pointer;
    vertical-align: middle;
    font-weight: 900;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
    border: 3px solid rgb(255, 102, 0);
  }
  
  section.our-courses .naccs .menu div.active {
    color: #f08119;
    border: 3px solid rgb(226, 110, 27);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  }
  
  section.our-courses ul.nacc {
    margin-left: 100px !important;
    position: relative;
    min-height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  
  section.our-courses ul.nacc li {
    background-color: #fff;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    position: absolute;
    list-style: none;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    padding-right: 50px;
  }
  
  section.our-courses ul.nacc li .left-image {
    position: absolute;
    margin-right: 50px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  section.our-courses ul.nacc li .left-image img {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  
  section.our-courses ul.nacc li .left-image .price h6 {
    position: absolute;
    background: rgb(219,138,222);
    background: linear-gradient(-145deg, rgba(219,138,222,1) 0%, rgba(246,191,159,1) 100%);
    color: #fff;
    top: 20px;
    left: 20px;
    font-size: 20px;
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
  }
  
  section.our-courses ul.nacc li .right-content {
    padding: 40px 0px;
    margin-left: 350px;
  }
  
  section.our-courses ul.nacc li .right-content h4 {
    font-size: 20px;
    color: #111;
    margin-bottom: 25px;
    font-weight: 800;
  }
  
  section.our-courses ul.nacc li .right-content ul {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  section.our-courses ul.nacc li .right-content span {
    font-size: 14px;
    font-weight: 600;
    margin-right: 30px;
    padding-right: 30px;
    /* border-right: 2px solid #111; */
  }
  
  section.our-courses ul.nacc li .right-content .last-span {
    margin-right: 0px;
    padding-right: 0px;
    border-right: none;
  }
  
  section.our-courses ul.nacc li .right-content p {
    margin-bottom: 20px;
  }
  
  section.our-courses ul.nacc li .right-content .text-button {
    margin-top: 20px;
  }
  
  section.our-courses ul.nacc li.active {
    position: relative;
    transition-delay: 0.3s;
    z-index: 2;
    opacity: 1;
    transform: translateX(0px);
  }
  
  section.our-courses ul.nacc li p {
    margin: 0;
  }
  

  @media (max-width: 1330px) {
    .services .owl-nav .owl-next{
      right: -30px;
    }
    .services .owl-nav .owl-prev{
      left: -25px;
    }
    .our-courses .owl-nav .owl-next{
      right: -30px;
    }
    .our-courses .owl-nav .owl-prev{
      left: -25px;
    }
  }
  
  @media (max-width: 1200px) {
    .main-banner .right-image {
      margin-left: 60px;
    }
    .main-banner .header-text h2 {
      font-size: 62px;
    }
    .header-area {
      background: rgb(219,138,222) !important;
      background: linear-gradient(-145deg, rgba(219,138,222,1) 0%, rgba(246,191,159,1) 100%) !important;
    }
    .services .owl-nav .owl-next{
      right: -70px;
    }
    .services .owl-nav .owl-prev{
      left: -65px;
    }
    .our-courses .owl-nav .owl-next{
      right: -70px;
    }
    .our-courses .owl-nav .owl-prev{
      left: -65px;
    }
  }
  
  @media (max-width: 1085px) {
    .services .owl-nav .owl-next{
      right: -30px;
    }
    .services .owl-nav .owl-prev{
      left: -25px;
    }
    .our-courses .owl-nav .owl-next{
      right: -30px;
    }
    .our-courses .owl-nav .owl-prev{
      left: -25px;
    }
  }
  
  @media (max-width: 1005px) {
    .services .owl-nav .owl-next{
      display: none;
    }
    .services .owl-nav .owl-prev{
      display: none;
    }
    .our-courses .owl-nav .owl-next{
      display: none;
    }
    .our-courses .owl-nav .owl-prev{
      display: none;
    }
  }
  
  @media (max-width: 992px) {
  
    .main-banner .header-text {
      text-align: center;
      margin-bottom: 60px;
    }
    .main-banner .right-image {
      margin-left: 0px;
    }
    section.our-courses ul.nacc {
      margin-left: 0px !important;
    }
    section.simple-cta {
      margin-top: 0px;
    }
    section.simple-cta .left-image {
      margin-right: 0px;
      margin-bottom: 45px;
    }
    section.contact-us .contact-info {
      margin-top: 15px;
    }
    section.contact-us #contact {
      margin-left: 0px;
    }
    section.contact-us #contact button {
      float: none;
    }
    section.get-info .left-image {
      margin-right: 0px;
      margin-bottom: 30px;
    }
    section.get-info .info-item {
      margin-top: 60px;
    }
    section.our-office #video {
      margin-left: 0px;
      margin-top: 30px;
    }
    section.featured-product .left-info .info-item,
    section.featured-product .right-info .info-item {
      text-align: center;
      background-color: #fff;
      position: relative;
      z-index: 2;
    }
    section.featured-product .left-info .info-item .icon {
      right: 50%;
      transform: translateX(40px);
    }
    section.featured-product .right-info .info-item .icon {
      left: 50%;
      transform: translateX(-40px);
    }
    section.featured-product .product-image {
      margin: 60px
    }
    section.our-team ul.nacc li .left-content span a,
    section.our-courses ul.nacc li .right-content span {
      margin-right: 15px;
      padding-right: 15px;
    }
  }
  
  @media (max-width: 767px) {
    .header-area .main-nav .nav li.has-sub ul.sub-menu {
      display: none;
    }
    section.our-courses ul.nacc li .left-image,
    section.our-team ul.nacc li .right-image {
      position: relative;
      margin-right: 0px;
      margin-left: 0px;
      transform: translateY(-0%);
    }
    section.our-courses ul.nacc li .left-image img,
    section.our-team ul.nacc li .right-image img {
      border-radius: 15px;
    }
    section.our-courses ul.nacc li,
    section.our-team ul.nacc li {
      padding: 0px;
    }
    section.our-courses ul.nacc li .right-content {
      margin-left: 0px;
      padding: 30px;
    }
    section.our-team ul.nacc li .left-content {
      margin-right: 0px;
      padding: 30px;
    }
    section.our-team .naccs .menu div {
      width: 14%;
      margin: 0px 5px;
    }
    section.our-team .naccs .menu div.active img {
      border: 3px solid #dc8cdb;
    }
    section.our-team .naccs .menu div h4,
    section.our-team .naccs .menu div span {
      display: none;
    }
    section.more-info .count-area-content .count-title {
      font-size: 22px;
    }
  }


  
.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #fff!important;
  opacity: 0.75;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #fff!important;
  opacity: 1;
}


.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #fff;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #fff;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: #dc8cdb;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 7px;
    padding-right: 7px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #dc8cdb!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #dc8cdb!important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: #3B566E;
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}



.section-heading {
    position: relative;
    z-index: 2;
    padding-top: 20px;
    margin-top: 0px;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-heading h6 {
    font-size: 13px;
    text-transform: uppercase;
    color: #7a7a7a;
    font-weight: 600;
  }
  
  .section-heading h4 {
    margin-top: 10px;
    line-height: 40px;
    font-size: 28px;
    font-weight: 900;
    text-transform: capitalize;
    color: #111;
  }
  
  .section-heading h4 em {
    font-style: normal;
    color: #dc8cdb;
  }
  
  .section-heading p {
    margin-top: 30px;
  }

  
/*
---------------------------------------------
about us page
---------------------------------------------
*/

section.get-info .left-image {
    margin-right: 30px;
  }
  section.get-info  h4 {
    font-size: 62px;
    font-weight: 900;
    color: #fff;
    line-height: 74px;
    margin-top: 20px;
  }
  section.get-info .section-heading {
    text-align: left;
  }
  
  section.get-info .info-item {
    border-radius: 15px;
    text-align: left;
    padding: 40px 15px 15px 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    margin-bottom: 45px;
  }
  
  section.get-info .info-item .icon {
    position: absolute;
    left: 30px;
    top: -30px;
    width: 80px;
    height: 80px;
    display: inline-block;
    border-radius: 15px;
    text-align: center;
    line-height: 80px;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.06);
  }
  
  section.get-info .info-item .icon img {
    max-width: 60%;
  }
  
  section.get-info .info-item h4 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 800;
  }

  
section.our-team {
    position: relative;
  }
  
  section.our-team .section-heading p {
    padding: 0px 60px;
  }
  
  section.our-team:before {
    position: absolute;
    content: '';
    background-image: url(../images/our-courses-left-dec.png);
    left: 45px;
    top: -140px;
    width: 291px;
    height: 231px;
    z-index: 1;
  }
  
  section.our-team:after {
    position: absolute;
    content: '';
    background-image: url(../images/our-courses-right-dec.png);
    right: 45px;
    top: -140px;
    width: 291px;
    height: 231px;
    z-index: 1;
  }
  
  section.our-team .naccs {
    position: relative;
    text-align: center;
  }
  
  section.our-team .naccs .menu {
    position: relative;
    display: inline-block;
  }
  
  section.our-team .naccs .menu div {
    margin: 0px 15px;
    text-align: center;
    display: inline-block;
    width: 15%;
    text-align: center;
    font-size: 20px;
    color: #111;
    background-color: #fff;
    cursor: pointer;
    vertical-align: middle;
    font-weight: 900;
  }
  
  section.our-team .naccs .menu div img {
    border-radius: 50%;
    max-width: 120px;
  }
  
  section.our-team .naccs .menu div h4 {
    font-size: 15px;
    font-weight: 900;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  
  section.our-team .naccs .menu div span {
    font-size: 12px;
    text-transform: uppercase;
    color: #dc8cdb;
    font-weight: 700;
    display: block;
  }
  
  section.our-team .naccs .menu div.active h4 {
    color: #dc8cdb;
  }
  
  section.our-team ul.nacc {
    margin-top: 40px !important;
    position: relative;
    min-height: 100%;
    height: 100% !important;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  section.our-team ul.nacc li {
    z-index: -1;
    opacity: 0;
    transform: translateX(50px);
    background-color: #fff;
    position: absolute;
    list-style: none;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
  }
  
  section.our-team ul.nacc li.active {
    position: relative !important;
    overflow: hidden;
  }
  
  section.our-team ul.nacc li .right-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  
  section.our-team ul.nacc li .right-image img {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  
  section.our-team ul.nacc li .left-content {
    text-align: left;
    margin-right: 380px;
  }
  
  section.our-team ul.nacc li .left-content h4 {
    font-size: 20px;
    color: #111;
    margin-bottom: 25px;
    font-weight: 800;
  }
  
  section.our-team ul.nacc li .left-content span a {
    font-size: 14px;
    font-weight: 600;
    margin-right: 30px;
    padding-right: 30px;
    color: #111;
    border-right: 2px solid #111;
    transition: all .3s;
  }
  
  section.our-team ul.nacc li .left-content span a:hover {
    color: #dc8cdb;
  }
  
  section.our-team ul.nacc li .left-content .last-span a {
    margin-right: 0px;
    padding-right: 0px;
    border-right: none;
  }
  
  section.our-team ul.nacc li .left-content p {
    margin-bottom: 30px;
  }
  
  section.our-team ul.nacc li .left-content .text-button {
    margin-top: 30px;
  }
  
  section.our-team ul.nacc li.active {
    transition-delay: 0.3s;
    z-index: 2;
    opacity: 1;
    transform: translateX(0px);
  }
  
  section.our-team ul.nacc li p {
    margin: 0;
  }
  section.our-team ul.nacc li .left-content span a,
  section.our-courses ul.nacc li .right-content span {
    margin-right: 15px;
    padding-right: 15px;
  }


@media (max-width: 767px) {
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    display: none;
  }
  section.our-courses ul.nacc li .left-image,
  section.our-team ul.nacc li .right-image {
    position: relative;
    margin-right: 0px;
    margin-left: 0px;
    transform: translateY(-0%);
  }
  section.our-courses ul.nacc li .left-image img,
  section.our-team ul.nacc li .right-image img {
    border-radius: 15px;
  }
  section.our-courses ul.nacc li,
  section.our-team ul.nacc li {
    padding: 0px;
  }
  section.our-courses ul.nacc li .right-content {
    margin-left: 0px;
    padding: 30px;
  }
  section.our-team ul.nacc li .left-content {
    margin-right: 0px;
    padding: 30px;
  }
  section.our-team .naccs .menu div {
    width: 14%;
    margin: 0px 5px;
  }
  section.our-team .naccs .menu div.active img {
    border: 3px solid #dc8cdb;
  }
  section.our-team .naccs .menu div h4,
  section.our-team .naccs .menu div span {
    display: none;
  }}  

  
/*
---------------------------------------------
services
---------------------------------------------
*/ 

.services .item {
    border-radius: 15px;
    text-align: center;
    padding: 50px 30px;
    margin: 15px;
    transition: all .3s;
  }
  
  .services .item:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.06);
  }
  
  .services .item .icon {
    max-width: 75px;
    margin: 0 auto;
    min-height: 80px;
    line-height: 80px;
    vertical-align: middle;
  }
  
  .services .item h4 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 800;
  }
  
  .services .owl-dots {
    text-align: center;
    margin-top: 30px;
  }
  
  .services .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0px 4px;
  }
  
  .services .owl-dots .active {
    background-color: #dc8cdb;
  }
  

.button-30 {
  align-items: center;
  appearance: none;
  background-color: #FCFCFD;
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395A;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono",monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s,transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow,transform;
  font-size: 18px;
}

.button-30:focus {
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.button-30:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-30:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}



/* CSS */
.button-55 {
  align-self: center;
  background-color: #fff;
  background-image: none;
  background-position: 0 90%;
  background-repeat: repeat no-repeat;
  background-size: 4px 3px;
  border-radius: 15px 225px 255px 15px 15px 255px 225px 15px;
  border-style: solid;
  border-width: 2px;
  box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
  box-sizing: border-box;
  color: #41403e;
  cursor: pointer;
  display: inline-block;
  font-family: Neucha, sans-serif;
  font-size: 1rem;
  line-height: 23px;
  outline: none;
  padding: .75rem;
  text-decoration: none;
  transition: all 235ms ease-in-out;
  border-bottom-left-radius: 15px 255px;
  border-bottom-right-radius: 225px 15px;
  border-top-left-radius: 255px 15px;
  border-top-right-radius: 15px 225px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-55:hover {
  box-shadow: rgba(0, 0, 0, .3) 2px 8px 8px -5px;
  transform: translate3d(0, 2px, 0);
}

.button-55:focus {
  box-shadow: rgba(0, 0, 0, .3) 2px 8px 4px -6px;
}


@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.wrapper{
  display: grid;
  /* margin: 50px 50px auto; */
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
@media (max-width: 700px) {
  .wrapper{
    /* margin: 100px auto; */
  }
}
.wrapper .box{
  width: 290px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
}
.wrapper .box .front-face{
  background: #fff;
  height: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
}
.box .front-face .icon{
  height: 80px;
}
.box .front-face .icon i{
  font-size: 65px;
}
.box .front-face span,
.box .back-face span{
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}
.box .front-face .icon i,
.box .front-face span{
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box .back-face{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 220px;
  width: 100%;
  padding: 30px;
  color: #fff;
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  transform: translateY(110px) rotateX(-90deg);
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
}
.box .back-face p{
  margin-top: 10px;
  text-align: justify;
}
.box:hover .back-face{
  opacity: 1;
  transform: rotateX(0deg);
}
.box:hover .front-face{
  opacity: 0;
  transform: translateY(-110px) rotateX(90deg);
}

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.container2{
  padding: 0 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card{
  height: 280px;
  max-width: 350px;
  margin: 0 20px;
  background: white;
  transition: 0.4s;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.card:hover{
  height: 470px;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
}
.card .img{
  height: 200px;
  width: 100%;
}
.card .img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.card .top-text{
  padding: 5px;
}
.card .top-text .name{
  font-size: 25px;
  font-weight: 600;
  color: #202020;
}
.card .top-text p{
  font-size: 20px;
  font-weight: 600;
  color: #e74c3c;
  line-height: 20px;
}
.card .bottom-text{
  padding: 0 20px 10px 20px;
  margin-top: 5px;
  background: white;
  opacity: 0;
  visibility: hidden;
  transition: 0.1s;
}
.card:hover .bottom-text{
  opacity: 1;
  visibility: visible;
}
.card .bottom-text .text{
  text-align: justify;
}
.card .bottom-text .btn{
  margin: 10px 0;
  text-align: left;
}
.card .bottom-text .btn a{
  text-decoration: none;
  background: #e74c3c;
  color: #f2f2f2;
  padding: 5px 8px;
  border-radius: 3px;
  display: inline-flex;
  transition: 0.2s;
}
.card .bottom-text .btn a:hover{
  transform: scale(0.9);
}
@media screen and (max-width: 978px) {
  .container{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .card{
    max-width: 700px;
    margin: 20px 0;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

::selection{
  color: #fff;
  background: #ff7979;
}
.wrapper2{
  max-width: 1080px;
  margin: 50px auto;
  padding: 0 20px;
  position: relative;
}
.wrapper2 .center-line{
  position: absolute;
  height: 100%;
  width: 4px;
  background: rgb(236, 26, 26);
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
.wrapper2 .row{
  display: flex;
}
.wrapper2 .row-1{
  justify-content: flex-start;
}
.wrapper2 .row-2{
  justify-content: flex-end;
}
.wrapper2 .row section{
  background: rgb(240, 238, 238);
  border-radius: 5px;
  width: calc(50% - 40px);
  padding: 20px;
  position: relative;
}
.wrapper2 .row section::before{
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: rgb(138, 15, 15);
  top: 28px;
  z-index: -1;
  transform: rotate(45deg);
}
.row-1 section::before{
  right: -7px;
}
.row-2 section::before{
  left: -7px;
}
.row section .icon,
.center-line .scroll-icon{
  position: absolute;
  background: #f2f2f2;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ff7979;
  font-size: 17px;
  box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}
.center-line .scroll-icon{
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}
.row-1 section .icon{
  top: 15px;
  right: -60px;
}
.row-2 section .icon{
  top: 15px;
  left: -60px;
}
.row section .details,
.row section .bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row section .details .title{
  font-size: 22px;
  font-weight: 600;
}
.row section p{
  margin: 10px 0 17px 0;
}
.row section .bottom a{
  text-decoration: none;
  background: #ff7979;
  color: #fff;
  padding: 7px 15px;
  border-radius: 5px;
  /* font-size: 17px; */
  font-weight: 400;
  transition: all 0.3s ease;
}
.row section .bottom a:hover{
  transform: scale(0.97);
}
@media(max-width: 790px){
  .wrapper2 .center-line{
    left: 40px;
  }
  .wrapper2 .row{
    margin: 30px 0 3px 60px;
  }
  .wrapper2 .row section{
    width: 100%;
  }
  .row-1 section::before{
    left: -7px;
  }
  .row-1 section .icon{
    left: -60px;
  }
}
@media(max-width: 440px){
  .wrapper2 .center-line,
  .row section::before,
  .row section .icon{
    display: none;
  }
  .wrapper2 .row{
    margin: 10px 0;
  }
}

/* demo */
.typewriter h3 {
  overflow: hidden; /* memastikan konten tidak tampil sebelum animasi dimulai */
  border-right: .15em solid orange; /* cursor pada typewriter */
  white-space: nowrap; /* tetap menjaga konten berada pada satu garis */
  margin: 0 auto; /* membuat efek scrolling pada saat animasi berjalan */
  letter-spacing: .15em; /* tambhakan bila di perlukan */
  animation: 
    typing 3.0s steps(40, end),
    blink-caret .75s step-end infinite;
}
 
/* efek pengetikan */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
 
/* efek pada cursor */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}

*{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* h1{
  font-size: 2.5rem;
  font-family: 'Montserrat';
  font-weight: normal;
  color: #444;
  text-align: center;
  margin: 2rem 0;
} */

.wrapper{
  width: 90%;
  margin: 0 auto;
  max-width: 80rem;
}

.cols{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.col{
  width: calc(25% - 2rem);
  margin: 1rem;
  cursor: pointer;
}

.container{
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	        perspective: 1000px;
}

.front,
.back{
  background-size: cover;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.25);
  border-radius: 10px;
	background-position: center;
	-webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	text-align: center;
	min-height: 280px;
	height: auto;
	border-radius: 10px;
	color: #fff;
	font-size: 1.5rem;
}

.back{
  background: #1bc754;
  background: -webkit-linear-gradient(45deg,  #d1f437 0%,#1bc754 100%);
  background: -o-linear-gradient(45deg,  #d1f437 0%,#1bc754 100%);
  background: linear-gradient(45deg,  #d1f437 0%,#1bc754 100%);
}

.front:after{
	position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    background-color: #000;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}
.container:hover .front,
.container:hover .back{
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.inner{
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
            transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
            perspective: inherit;
    z-index: 2;
}

.container .back{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.container .front{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.container:hover .back{
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.container:hover .front{
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.front .inner p{
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.front .inner p:after{
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.75rem;
}

.front .inner span{
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat';
  font-weight: 300;
}

@media screen and (max-width: 64rem){
  .col{
    width: calc(33.333333% - 2rem);
  }
}


.hello {
  opacity: 1 !important;
}
.full {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.full .content {
  background-color: rgba(0,0,0,0.75) !important;
  height: 100%;
  width: 100%;
  display: grid;
}
.full .content img {
  left: 50%;
  transform: translate3d(0, 0, 0);
  animation: zoomin 1s ease;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.byebye {
  opacity: 0;
}
.byebye:hover {
  transform: scale(0.2) !important;
}
.gallery {
  display: grid;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 8px;
}
.gallery img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 16px #333;
  transition: all 1.5s ease;
}
.gallery img:hover {
  box-shadow: 0 0 32px #333;
}
.gallery .content {
  padding: 5px;
}
.gallery .gallery-item {
  transition: grid-row-start 300ms linear;
  transition: transform 300ms ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.gallery .gallery-item:hover {
  transform: scale(1.025);
}
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  }
}
@media (max-width: 400px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}
@-moz-keyframes zoomin {
  0% {
    max-width: 50%;
    transform: rotate(-30deg);
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    transform: rotate(-80deg);
  }
  70% {
    max-width: 50%;
    transform: rotate(45deg);
  }
  100% {
    max-width: 100%;
    transform: rotate(0deg);
  }
}
@-webkit-keyframes zoomin {
  0% {
    max-width: 50%;
    /* transform: rotate(-30deg); */
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    /* transform: rotate(-80deg); */
  }
  70% {
    max-width: 50%;
    /* transform: rotate(45deg); */
  }
  100% {
    max-width: 100%;
    /* transform: rotate(0deg); */
  }
}
@-o-keyframes zoomin {
  0% {
    max-width: 50%;
    /* transform: rotate(-30deg); */
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    /* transform: rotate(-80deg); */
  }
  70% {
    max-width: 50%;
    /* transform: rotate(45deg); */
  }
  100% {
    max-width: 100%;
    /* transform: rotate(0deg); */
  }
}
@keyframes zoomin {
  0% {
    max-width: 50%;
    /* transform: rotate(-30deg); */
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    /* transform: rotate(-80deg); */
  }
  70% {
    max-width: 50%;
    /* transform: rotate(45deg); */
  }
  100% {
    max-width: 100%;
    /* transform: rotate(0deg); */
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
::selection{
  color: #fff;
  background: #007bff;
}

.wrapper2{
  max-width: 1100px;
}
.gallery2{
  display: flex;
  flex-wrap: wrap;
}
.gallery2 .image{
  padding: 7px;
  width: calc(100% / 3);
}
.gallery2 .image span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallery2 .image img{
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.gallery2 .image:hover img{
  transform: scale(1.1);
}
.preview-box{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 600px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.preview-box.show{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-box .details{
  display: flex;
  align-items: center;
  padding: 12px 15px 12px 10px;
  justify-content: space-between;
}
.preview-box .details .title{
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.details .title p{
  margin: 0 5px;
}
.details .title p.current-img{
  font-weight: 500;
}
.details .icon{
  color: #007bff;
  font-size: 20px;
  cursor: pointer;
}
.preview-box .image-box{
  display: flex;
  width: 100%;
  position: relative;
}
.image-box .slide{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  height: 50px;
  width: 60px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
}
.slide.prev{
  left: 0px;
}
.slide.next{
  right: 0px;
}
.image-box img{
  width: 100%;
  border-radius: 0 0 3px 3px;
}
.shadow{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0,0,0,0.45);
}
@media(max-width: 1000px){
  .gallery2 .image{
    width: calc(100% / 2);
  }
}
@media(max-width: 600px){
  .gallery2 .image{
    width: 100%;
    padding: 4px;
  }
}














@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800|Poppins&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat',sans-serif;
}
.cards3{
  /* max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 30px; */
 
}
.cards3 h2.header{
  font-size: 40px;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  
}
.services{
  display: flex;
  align-items: center;
}
.content{
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  margin: 20px;
  padding: 20px;
  border: 2px solid rgb(195, 195, 195);
  border-radius: 9px;
  transition: all .3s ease;
  /* border-radius: 5px; */
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}
.content .fab{
  font-size: 70px;
  margin: 16px 0;
}
.content > *{
  flex: 1 1 100%;
}
.content:hover{
  color: rgb(0, 0, 0);
}
.content:hover a{
  border-color: #607b0f;
  background: #a0d404;
}
.content-1:hover{
  /* border-color: #1DA1F2;
  background: #1DA1F2; */
}
.content-1:hover a{
  /* color: #1DA1F2; */
}
.content-2:hover{
  /* border-color: #E1306C;
  background: #E1306C; */
}
.content-2:hover a{
  /* color: #E1306C; */
}
.content-3:hover{
  /* border-color: #3caa09;
  background: #3caa09; */
}
.content-3:hover a{
  /* color: #3caa09; */
}
.content-4:hover{
  /* border-color: #3caa09; */
  /* background: #2d2e2d; */
}
.content-4:hover a{
  /* color: #3caa09; */
}
.content-5:hover{
  /* border-color: #3caa09;
  background: #3caa09; */
}
.content-5:hover a{
  /* color: #3caa09; */
}
.content-6:hover{
  /* border-color: #3caa09;
  background: #3caa09; */
}
.content-6:hover a{
  /* color: #3caa09; */
}
.content h2{
  font-size: 30px;
  margin: 16px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.content p{
  font-size: 17px;
  font-family: 'Poppins',sans-serif;
}
.content a{
  margin: 22px 0;
  background: black;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid black;
  padding: 15px 0;
  border-radius: 25px;
  transition: .3s ease;
}
.content a:hover{
  border-radius: 4px;
}
@media (max-width: 900px) {
  .services{
    display: flex;
    flex-direction: column;
  }
}





.container5{
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
margin: auto;
}

.col-sm-9 {
  flex: 0 0 auto;
  width: 75%;
}






.tg  {border-collapse:collapse;border-spacing:0;border:1px solid #c0c0c0;}
.tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}
.tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}
.tg .tg-z1a1{font-weight:bold;background-color:#d01e49;color:#ffffff}
.tg .tg-0ord{text-align:right}
.tg .tg-4afi{font-weight:bold;background-color:#d01e49;color:#ffffff;vertical-align:top}
.tg .tg-lqy6{text-align:right;vertical-align:top}
.tg .tg-yz1w{font-weight:bold;background-color:#d01e49;color:#ffffff;text-align:right}
.tg .tg-yw4l{vertical-align:top}





@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 100vh;
  background: #232427; */
}

.container7 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.container7 .card3 {
  position: relative;
  min-width: 320px;
  height: 440px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(127, 122, 122, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin: 30px;
  transition: 0.5s;
}

.container7 .card3:nth-child(1) .box .content a {
  background: #2196f3;
}

.container7 .card3:nth-child(2) .box .content a {
  background: #e91e63;
}

.container7 .card3:nth-child(3) .box .content a {
  background: #23c186;
}

.container7 .card3 .box3 {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #23c186;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}

.container7 .card3 .box3:hover {
  transform: translateY(-50px);
}

.container7 .card3 .box3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(53, 160, 107, 0.03);
}

.container7 .card3 .box3 .content3 {
  padding: 20px;
  text-align: center;
}

.container7 .card3.box3 .content3 h2 {
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
}

.container7 .card3 .box3 .content3 h3 {
  font-size: 1.8rem;
  color: #fff;
  z-index: 1;
  transition: 0.5s;
  margin-bottom: 15px;
}

.container7 .card3 .box3 .content3 p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.5s;
}

.container7 .card3 .box3 .content3 a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: rgb(159, 58, 58);
  border-radius: 5px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
.container7 .card3 .box3 .content3 a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: #fff;
  color: #000;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; */
}

.main-container {
  padding: 30px;
}

/* HEADING */

.heading {
  text-align: center;
}

.heading__title {
  font-weight: 600;
}

.heading__credits {
  margin: 10px 0px;
  color: #888888;
  font-size: 25px;
  transition: all 0.5s;
}

.heading__link {
  text-decoration: none;
}

.heading__credits .heading__link {
  color: inherit;
}

/* CARDS */

.cards7 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card7 {
  margin: 20px;
  padding: 20px;
  width: 500px;
  min-height: 200px;
  display: grid;
  grid-template-rows: 20px 50px 1fr 50px;
  border-radius: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
}

.card7:hover {
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
}

.card7__link,
.card7__exit,
.card7__icon {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

.card7__link::after {
  position: absolute;
  top: 25px;
  left: 0;
  content: "";
  width: 0%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s;
}

.card7__link:hover::after {
  width: 100%;
}

.card7__exit {
  grid-row: 1/2;
  justify-self: end;
}

.card7__icon {
  grid-row: 2/3;
  font-size: 30px;
}

.card7__title {
  grid-row: 3/4;
  font-weight: 400;
  color: #ffffff;
}

.card7__apply {
  grid-row: 4/5;
  align-self: center;
}

/* CARD BACKGROUNDS */

.card-1 {
  background: radial-gradient(#1fe4f5, #3fbafe);
}

.card-2 {
  background: radial-gradient(#fbc1cc, #fa99b2);
}

.card-3 {
  background: radial-gradient(#76b2fe, #b69efe);
}

.card-4 {
  background: radial-gradient(#60efbc, #58d5c9);
}

.card-5 {
  background: radial-gradient(#f588d8, #c0a3e5);
}

/* RESPONSIVE */

@media (max-width: 1600px) {
  .cards7 {
    justify-content: center;
  }
}





:root {
  --red: hsl(0, 78%, 62%);
  --cyan: hsl(180, 62%, 55%);
  --orange: hsl(34, 97%, 64%);
  --blue: hsl(212, 86%, 64%);
  --varyDarkBlue: hsl(234, 12%, 34%);
  --grayishBlue: hsl(229, 6%, 66%);
  --veryLightGray: hsl(0, 0%, 98%);
  --weight1: 200;
  --weight2: 400;
  --weight3: 600;
}

body {
  /* font-size: 15px;
  font-family: 'Poppins', sans-serif;
  background-color: var(--veryLightGray); */
}

.attribution { 
  font-size: 11px; text-align: center; 
}
.attribution a { 
  color: hsl(228, 45%, 44%); 
}

h1:first-of-type {
  font-weight: var(--weight1);
  color: var(--varyDarkBlue);

}

h1:last-of-type {
  color: var(--varyDarkBlue);
}

@media (max-width: 400px) {
  h1 {
      font-size: 1.5rem;
  }
}

.header2 {
  text-align: center;
  line-height: 0.8;
  margin-bottom: 50px;
  margin-top: 100px;
}

.header2 p {
  margin: 0 auto;
  line-height: 2;
  color: var(--grayishBlue);
}


.boxx p {
  color: var(--grayishBlue);
}

.boxx {
  border-radius: 5px;
  box-shadow: 0px 30px 40px -20px var(--grayishBlue);
  padding: 30px;
  margin: 20px;  
}

img {
  /* float: right; */
}

@media (max-width: 450px) {
  .boxx {
      height: 200px;
  }
}

@media (max-width: 950px) and (min-width: 450px) {
  .boxx {
      text-align: center;
      height: 180px;
  }
}

.cyan {
  border-top: 3px solid var(--cyan);
}
.red {
  border-top: 3px solid var(--red);
}
.blue {
  border-top: 3px solid var(--blue);
}
.orange {
  border-top: 3px solid var(--orange);
}

h2 {
  color: var(--varyDarkBlue);
  font-weight: var(--weight3);
}


@media (min-width: 950px) {
  .row1-container {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .row2-container {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  .box-down {
      position: relative;
      top: 150px;
  }
  .boxx {
      width: 20%;
   
  }
  .header2 p {
      width: 30%;
  }
  
}





/* /////////////////////////////////////// */
:root {
  --color-one: #34D1D1;
  --color-two: #2F2235;
  --color-three: #3F3244;
  --color-four: #F2F2F2;
  --color-five: #D1D2D3;
  --color-six: #666666;
  --color-seven: #000000;
  --color-eight: #ffffff;
}




.accordion {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  width: 70%;
  margin: auto;
}

.accordion__content {
  order: 1;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  display: none;
}

.accordion__label {
  display: block;
  cursor: pointer;
  flex-grow: 1;
  text-align: center;
  padding: 1% 5% 1% 5%;
  background-color: var(--color-four);
  margin-right: 1px;
  border-bottom: 1px solid var(--color-five);
}

.accordion__radio {
  display: none;
}

.accordion input[type="radio"] {
	display: none;
}

.accordion input[type="radio"] + label {
   color: var(--color-six);
   z-index: 1;
}

.accordion input[type="radio"]:checked + label {
  background-color: white;
  font-weight: 600;
  border-top: 1px solid var(--color-five);
  border-left: 1px solid var(--color-five);
  border-right: 1px solid var(--color-five);
  border-bottom: none;
}
.accordion input[type="radio"]:checked + label + .accordion__content {
	display: flex;
  margin-right: 0;
  border-left: 1px solid var(--color-five);
  border-right: 1px solid var(--color-five);
  border-bottom: 1px solid var(--color-five);
}

.accordion__content__image__container {
  width: 40%;
  height: 100%;
  margin-right: 10px;
}

.accordion__content__image {
  max-width: 100%;
  max-height: 88%;
  margin: 3%;
  background-color: teal;
}

.accordion__content__text {
  width: 75%;
  margin-top: 1%;
  margin-left: 40px;
}

.accordion__content__text__title {
  margin-top: 3%;
}

.accordion__content__text__horizontal-line {
  border: none;
  border-bottom: 1px solid var(--color-five);
  margin-right: 2%;
}

.accordion__content__text__body {
  margin-top: 2%;
  padding-right: 5%;
}

@media (max-width: 900px){
  .accordion {
    border: 1px solid var(--color-five);
  }
  
  .accordion-tab--status {
    display: inline;
  }
  .accordion__content,
  .accordion__label
  {
    order: initial;
  }
  
  .accordion__content {
    flex-direction: column;
  }
  
  .accordion__label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1px;
    display: flex;
    justify-content: space-between;
    font-size: 1.2em;
    padding: 5% 6% 5% 6%;
  }

  .accordion__label:last-child {
    background-color: magenta;
  }

  .accordion__content__image__container {
    width: 100%;
  }

  .accordion__content__image {
    padding: 0;
    margin: 0;
    object-fit: cover;
    height: 300px;
    width: 100%;
  }

  .accordion__content__text {
    font-size: 0.9em;
    margin: 4% 5% 4% 5%;
  }

  .accordion__content__text__title {
    margin: 2% 0 2% 0;
  }

  .accordion__content__text__horizontal-line {
    width: 100%;
  }

  .accordion input[type="radio"] + label span:after  {
    content: '+';
  }

  .accordion input[type="radio"]:checked + label span:after  {
    content: '—';
  }

  .accordion input[type="radio"]:checked + label {
    border: none; 
  }

  .accordion input[type="radio"]:checked + label + .accordion {
    border: none;  
  }

  .accordion input[type="radio"]:checked + label + .accordion__content {
    border: none;
  }
}

/* /////////////////////////////////// */
body
{
  /* background-color:#eee */
}
.wrap11
{
  margin:auto;
  width:50%;
  height: 50%;
  display:flex;
  align-items:space-around;
  max-width:2000px;
}
.tile
{
  width:380px;
  height:380px;
  margin:10px;
  /* background-color:#99aeff; */
  display:inline-block;
  background-size:cover;
  position:relative;
  cursor:pointer;
  transition: all 0.4s ease-out;
  box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.44);
  overflow:hidden;
  color:white;
  font-family:'Roboto';
  
}
.tile img
{
  height:100%;
  width:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:0;
  transition: all 0.4s ease-out;
}
.tile .text
{
/*   z-index:99; */
  position:absolute;
  padding:30px;
  height:calc(100% - 60px);
}
.tile h1
{
 
  font-weight:300;
  margin:0;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.tile h2
{
  font-weight:100;
  margin:20px 0 0 0;
  font-style:italic;
   transform: translateX(200px);
}
.tile p
{
  font-weight:300;
  margin:20px 0 0 0;
  line-height: 25px;
/*   opacity:0; */
  transform: translateX(-200px);
  transition-delay: 0.2s;
}
.animate-text
{
  opacity:0;
  transition: all 0.6s ease-in-out;
}
.tile:hover
{
/*   background-color:#99aeff; */
box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.64);
  transform:scale(1.05);
}
.tile:hover img
{
  opacity: 0.2;
}
.tile:hover .animate-text
{
  transform:translateX(0);
  opacity:1;
}
.dots
{
  position:absolute;
  bottom:20px;
  right:30px;
  margin: 0 auto;
  width:30px;
  height:30px;
  color:currentColor;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-around;
  
}

.dots span
{
    width: 5px;
    height:5px;
    background-color: currentColor;
    border-radius: 50%;
    display:block;
  opacity:0;
  transition: transform 0.4s ease-out, opacity 0.5s ease;
  transform: translateY(30px);
 
}

.tile:hover span
{
  opacity:1;
  transform:translateY(0px);
}

.dots span:nth-child(1)
{
   transition-delay: 0.05s;
}
.dots span:nth-child(2)
{
   transition-delay: 0.1s;
}
.dots span:nth-child(3)
{
   transition-delay: 0.15s;
}


@media (max-width: 1000px) {
  .wrap {
   flex-direction: column;
    width:400px;
  }
}


/* @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.container11{
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card11{
  height: 280px;
  max-width: 350px;
  margin: 0 20px;
  background: white;
  transition: 0.4s;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.card11:hover{
  height: 470px;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
}
.card11 .img{
  height: 200px;
  width: 100%;
}
.card11 .img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.card11 .top-text{
  padding: 5px;
}
.card11 .top-text .name{
  font-size: 25px;
  font-weight: 600;
  color: #202020;
}
.card11 .top-text p{
  font-size: 20px;
  font-weight: 600;
  color: #e74c3c;
  line-height: 20px;
}
.card11 .bottom-text{
  padding: 0 20px 10px 20px;
  margin-top: 5px;
  background: white;
  opacity: 0;
  visibility: hidden;
  transition: 0.1s;
}
.card11:hover .bottom-text{
  opacity: 1;
  visibility: visible;
}
.card11 .bottom-text .text{
  text-align: justify;
}
.card11 .bottom-text .btn{
  margin: 10px 0;
  text-align: left;
}
.card11 .bottom-text .btn a{
  text-decoration: none;
  background: #e74c3c;
  color: #f2f2f2;
  padding: 5px 8px;
  border-radius: 3px;
  display: inline-flex;
  transition: 0.2s;
}
.card11 .bottom-text .btn a:hover{
  transform: scale(0.9);
}
@media screen and (max-width: 978px) {
  .container11{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .card11{
    max-width: 700px;
    margin: 20px 0;
  }
} */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	/* background: #457fb4;
	font-family: "Roboto", sans-serif;
	display: flex;
	height: 100vh; */
}

.hero-container {
	margin: auto;
	display: flex;
}

.main-container2 {
	width: 270px;
	height: 540px;
	position: relative;
	margin: 0 20px;
}

.poster-container {
	width: 230px;
	position: absolute;
	top: 0;
	left: auto;
  right: auto;
	z-index: 9999;
  margin-left: 20px;
}

.poster {
	width: 100%;
	box-shadow: 0 5px 20px 3px rgba(0, 0, 0, 0.6);
}

.ticket-container {
	background: #fff;
	width: 270px;
	height: 550px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 5px;
	position: absolute;
	top: 20px;
	box-shadow: 0 5px 20px 3px rgba(0, 0, 0, 0.6);
	opacity: 0;
  /* justify-content: center;
  margin-right: 100%; */
}

.main-container2:hover .ticket-container {
	opacity: 1;
	animation: bounceIn 0.6s linear;
}

@keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.01, 1.01, 1.01);
		transform: scale3d(1.01, 1.01, 1.01);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

/* @keyframes bounce {
  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
} */

.ticket__content {
	width: 100%;
	position: absolute;
	bottom: 0;
	text-align: center;
}

.ticket__movie-title {
	text-transform: uppercase;
	margin-bottom: 5px;
}

.ticket__movie-slogan {
	color: #999;
	font-size: 0.9rem;
	margin-bottom: 20px;
}

.ticket__current-price {
	color: #69c982;
	font-size: 1.4rem;
	font-weight: bold;
}

.ticket__old-price {
	color: #999;
	text-decoration: line-through;
	margin-bottom: 10px;
}

.ticket__buy-btn {
	cursor: pointer;
	width: 100%;
	background: #2f2f2f;
	color: white;
	padding: 15px 0;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	border: 0;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}


/* ////////////////////////////// */
/*PEN STYLES*/
* {
  box-sizing: border-box;
}

body {
  
}

.blog-card {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.6%;
  background: #fff;
  line-height: 1.4;
  font-family: sans-serif;
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
}
.blog-card a {
  color: inherit;
}
.blog-card a:hover {
  color: #5ad67d;
}
.blog-card:hover .photo {
  transform: scale(1.3) rotate(3deg);
}
.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}
.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}
.blog-card .details,
.blog-card .details ul {
  margin: auto;
  padding: 0;
  list-style: none;
}
.blog-card .details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  margin: auto;
  transition: left 0.2s;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  width: 100%;
  font-size: 0.9rem;
}
.blog-card .details a {
  text-decoration: dotted underline;
}
.blog-card .details ul li {
  display: inline-block;
}
.blog-card .details .author:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "\f007";
}
.blog-card .details .date:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "\f133";
}
.blog-card .details .tags ul:before {
  font-family: FontAwesome;
  content: "\f02b";
  margin-right: 10px;
}
.blog-card .details .tags li {
  margin-right: 2px;
}
.blog-card .details .tags li:first-child {
  margin-left: -4px;
}
.blog-card .description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}
.blog-card .description h1,
.blog-card .description h2 {
  font-family: Poppins, sans-serif;
}
.blog-card .description h1 {
  line-height: 1;
  margin: 0;
  font-size: 1.7rem;
}
.blog-card .description h2 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-top: 5px;
}
.blog-card .description .read-more {
  text-align: right;
}
.blog-card .description .read-more a {
  color: #5ad67d;
  display: inline-block;
  position: relative;
}
.blog-card .description .read-more a:after {
  content: "\f061";
  font-family: FontAwesome;
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition: margin 0.3s, opacity 0.3s;
}
.blog-card .description .read-more a:hover:after {
  margin-left: 5px;
  opacity: 1;
}
.blog-card p {
  position: relative;
  margin: 1rem 0 0;
}
.blog-card p:first-of-type {
  margin-top: 1.25rem;
}
.blog-card p:first-of-type:before {
  content: "";
  position: absolute;
  height: 5px;
  background: #5ad67d;
  width: 35px;
  top: -0.75rem;
  border-radius: 3px;
}
.blog-card:hover .details {
  left: 0%;
}
@media (min-width: 640px) {
  .blog-card {
    flex-direction: row;
    max-width: 700px;
  }
  .blog-card .meta {
    flex-basis: 40%;
    height: auto;
  }
  .blog-card .description {
    flex-basis: 60%;
  }
  .blog-card .description:before {
    transform: skewX(-3deg);
    content: "";
    background: #fff;
    width: 30px;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .blog-card.alt {
    flex-direction: row-reverse;
  }
  .blog-card.alt .description:before {
    left: inherit;
    right: -10px;
    transform: skew(3deg);
  }
  .blog-card.alt .details {
    padding-left: 25px;
  }
}


/* /////////////////// */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:700|Playfair+Display");
* {
  user-select: none;
  transition: 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

body {
  
}

.paper {
  margin: 6vh auto;
  min-width: 15vw;
  max-width: 40vh;
  min-height: 5vh;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(50, 50, 90, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: 0.6s ease;
  background: white;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
}

.paper:hover {
  box-shadow: 0 18px 35px rgba(50, 50, 90, 0.1), 0 8px 15px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

img {
  
}

.poster {
  border-radius: 4px 4px 0 0;
  margin-bottom: 2vh;
}

/* h1 {
  font-size: 2.6rem;
  color: #303336;
  letter-spacing: 1px;
  margin: 2vh 4vw;
  font-family: "Playfair Display", serif;
}

h2 {
  font-size: 0.4rem;
  color: #A0A6AB;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
} */

/* hr {
  width: 20%;
  margin-top: 3vh;
  margin-bottom: 3vh;
  border: 0;
  border-bottom: 1px solid #E6E9EC;
} */

/* p {
  margin: 2vh 8vw;
  text-align: center;
  padding-bottom: 1vh;
  color: #A0A6AB;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.25rem;
} */

.btn4,
a.btn4 {
  display: inline-block;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  line-height: 20px;
  border-radius: 4px;
  padding: 1vh 2vh;
  letter-spacing: 0.02rem;
  background: #664EF7;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 0.8rem;
  box-shadow: 0 0px 0px rgba(48, 51, 54, 0.1), 0 0px 0px rgba(0, 0, 0, 0);
}

.btn4,
a.btn4:hover {
  background: #7C66FF;
  box-shadow: 0 7px 14px rgba(48, 51, 54, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.btn4,
a.btn4:active {
  box-shadow: 0 4px 6px rgba(48, 51, 54, 0.1), 0 1px 3px rgba(0, 0, 0, 0.12);
  transform: translateY(1px);
}

.space {
  height: 4vh;
}


/* ////////////// */
* {
  /* box-sizing: border-box; */
}

body {
  /* margin: 5px;
  position: relative; */
}

#gallery2 {
  display: grid;
  /* height: calc(100vh - 50px); */
  /* padding: 7px; */
  /* width: calc(100% / 3); */
  /* display: flex;
  flex-wrap: wrap; */
  height: calc(50% - 50px);
  grid-template: repeat(6, 1fr)/repeat(6, 1fr);
  grid-gap: 0.5em;

 
}
@media (max-width: 800px) {
  #gallery2 {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
  }
  #gallery2 > div {
    width: 48%;
    margin: 1%;
  }
}
@media (max-width: 800px) and (max-width: 350px) {
  #gallery2 > div {
    width: 98%;
  }
}
#gallery2 > div:nth-child(6n+1) {
  grid-column: span 2;
  grid-row: span 2;
}
#gallery2 > div:nth-child(2) {
  grid-column: span 3;
  grid-row: span 3;
}
#gallery2 > div:nth-child(4) {
  grid-column: span 1;
  grid-row: span 2;
}
#gallery2 > div > a {
  opacity: 0;
  position: absolute;
  color: rgb(0, 0, 0);
  background-color: rgb(0, 0, 0);
  font: bold 4em "Helvetica";
  text-shadow: 0 -1px 5px #fff, -1px 0px 5px #fff, 0 1px 5px #fff, 1px 0px 5px #fff;
  padding: 2rem;
  mix-blend-mode: difference;
  width: 100%;
  height: 100%;
  transition: all ease 1s;
}
#gallery2 > div > img {
  width: 100%;
  min-height: 100%;
  transition: all ease 1s;
}
#gallery2 > div:hover img {
  filter: blur(4px);
}
#gallery2 > div:hover a {
  opacity: 1;
}
#gallery2 > div {
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 20px 0 rgba(0, 0, 0, 0.19);
}
#gallery2 div,
#gallery2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

[id^=lightbox-] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  opacity: 0;
  transition: opacity 450ms ease-in-out;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
[id^=lightbox-]:target {
  opacity: 1;
  pointer-events: inherit;
}
[id^=lightbox-]:target img {
  filter: blur(0);
}
[id^=lightbox-] .content {
  max-width: 90%;
  position: relative;
  color: #fff;
}
[id^=lightbox-] .content:hover > a.close {
  opacity: 1;
  transform: scale(1, 1);
}
[id^=lightbox-] .content:hover > .title {
  opacity: 1;
  transform: translateY(-3px);
}
[id^=lightbox-] .content:hover > .title::after {
  opacity: 1;
}
[id^=lightbox-] .content > * {
  transition: all 450ms ease-in-out;
}
[id^=lightbox-] .title {
  display: block;
  margin: 0;
  padding: 1em;
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(50%);
  font-size: 1.5em;
  opacity: 0;
}
[id^=lightbox-] .title::after {
  content: " ";
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 350ms ease-in-out 250ms;
  opacity: 0;
  transform-origin: bottom;
  mix-blend-mode: soft-light;
}
[id^=lightbox-] img {
  max-height: 90vh;
  max-width: 100%;
  margin: 0;
  padding: 0;
  filter: blur(50px);
}
[id^=lightbox-] a.close {
  width: 2em;
  height: 2em;
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0, 0);
  opacity: 0;
  transform-origin: right top;
  text-decoration: none;
  color: #fff;
}
[id^=lightbox-] a.close::after {
  content: "X";
}




/* ////////////////////////////////////////////////////////////////////// */
img{
  /* height:150px;
  width:100%; */
}


.card12{
  transition:0.5s;
  cursor:pointer;
}
.card-title{  
  font-size:15px;
  transition:1s;
  cursor:pointer;
}
.card-title i{  
  font-size:15px;
  transition:1s;
  cursor:pointer;
  color:#2d9012
}
.card-title i:hover{
  transform: scale(1.25) rotate(100deg); 
  color:#18d4ca;
  
}
.card12:hover{
  transform: scale(1.05);
  box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
}
.card-text{
  height:80px;  
}

.card12::before, .card::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale3d(0, 0, 1);
  transition: transform .3s ease-out 0s;
  background: rgba(255, 255, 255, 0.1);
  content: '';
  pointer-events: none;
}
.card12::before {
  transform-origin: left top;
}
.card12::after {
  transform-origin: right bottom;
}
.card12:hover::before, .card:hover::after, .card:focus::before, .card:focus::after {
  transform: scale3d(1, 1, 1);
}


/* ///////////////////////////////////// */
@import url("https://fonts.googleapis.com/css?family=Merriweather:400,400i,700");
/* body {
  font-family: Merriweather, serif; } */

/* img {
  width: 100%;
  display: block;
 } */

p {
  line-height: 1.3; }
  @media (min-width: 1170px) {
    p {
      font-size: 1.2rem; } }

.two-thirds-image-left-one-third-text-right {
  position: relative; }
  @media (min-width: 700px) {
    .two-thirds-image-left-one-third-text-right {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-column-gap: 1rem; } }
  @media (min-width: 1170px) {
    .two-thirds-image-left-one-third-text-right {
      grid-column-gap: 2rem; } }
  @media (min-width: 700px) {
    .two-thirds-image-left-one-third-text-right .image {
      grid-column: 1 / 8;
      height: 100%; }
      .two-thirds-image-left-one-third-text-right .image img {
        height: 100vh;
        object-fit: cover;
        position: sticky;
        top: 0; } }
  @media (min-width: 1170px) {
    .two-thirds-image-left-one-third-text-right .image {
      grid-column: 1 / 9; } }
  .two-thirds-image-left-one-third-text-right .text {
    padding: 1rem; }
    @media (min-width: 700px) {
      .two-thirds-image-left-one-third-text-right .text {
        grid-column: 8 / span all; } }
    @media (min-width: 1170px) {
      .two-thirds-image-left-one-third-text-right .text {
        grid-column: 9 / span all; } }
    .two-thirds-image-left-one-third-text-right .text .title {
      font-size: 3rem;
      margin: 2rem 0; }
      @media (min-width: 700px) {
        .two-thirds-image-left-one-third-text-right .text .title {
          font-size: 4rem; } }
    .two-thirds-image-left-one-third-text-right .text .lead {
      font-style: italic;
      font-weight: 400;
      font-size: 1.2rem;
      margin: 1rem 0 3rem;
      line-height: 1.5; }
      @media (min-width: 700px) {
        .two-thirds-image-left-one-third-text-right .text .lead {
          font-size: 1.4rem; } }

.one-by-one {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: .5rem;
  margin: .5rem; }

.wide-tall-cap-left {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: .5rem;
  margin: .5rem; }
  @media (min-width: 600px) {
    .wide-tall-cap-left {
      grid-template-columns: repeat(12, 1fr); } }
  @media (min-width: 600px) {
    .wide-tall-cap-left .image-1 {
      grid-row: 1;
      grid-column: 1 / -1; } }
  @media (min-width: 600px) {
    .wide-tall-cap-left .image-2 {
      grid-row: 2;
      grid-column: 6 / span 7; } }
  .wide-tall-cap-left .caption {
    max-width: 70vw; }
    @media (min-width: 600px) {
      .wide-tall-cap-left .caption {
        font-size: .8rem;
        margin: 2rem .5rem; } }
  @media (min-width: 600px) {
    .wide-tall-cap-left .caption-1 {
      grid-row: 2;
      grid-column: 1 / span 2; } }
  @media (min-width: 600px) {
    .wide-tall-cap-left .caption-2 {
      grid-row: 2;
      grid-column: 3 / span 2; } }

.three-col-text {
  columns: 3;
  column-width: 300px;
  padding: 1rem; }
  .three-col-text p:first-child {
    margin-top: 0; }


    /* /////////////////////////////////////////////// */
    @import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");
/* This pen */
body {
  /* font-family: "Baloo 2", cursive;
  font-size: 16px;
  color: #ffffff;
  text-rendering: optimizeLegibility;
  font-weight: initial; */
}

.dark {
  background: #ffffff;
}

.light {
  background: #f3f5f7;
}

a, a:hover {
  /* text-decoration: none;
  transition: color 0.3s ease-in-out; */
}

#pageHeaderTitle {
  margin: 2rem 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.5rem;
}

/* Cards */
.postcard2 {
  flex-wrap: wrap;
  display: flex;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  border-radius: 10px;
  margin: 0 0 2rem 0;
  overflow: hidden;
  position: relative;
  color: #ffffff;
}
.postcard2.dark {
  background-color: #ffffff;
}
.postcard2.accordion__content {
  background-color: #e1e5ea;
}
.postcard2 .t-dark {
  color: #ffffff;
}
.postcard2 a {
  color: inherit;
}
.postcard2 h1, .postcard2 .h1 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.postcard2 .small {
  font-size: 80%;
}
.postcard2 .postcard__title {
  font-size: 1.75rem;
}
.postcard2 .postcard__img {
  max-height: 180px;
  width: 100%;
  object-fit: cover;
  position: relative;
}
.postcard2 .postcard__img_link {
  display: contents;
}
.postcard2 .postcard__bar {
  width: 50px;
  height: 10px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #424242;
  transition: width 0.2s ease;
}
.postcard2 .postcard__text {
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.postcard2 .postcard__preview-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  height: 100%;
}
.postcard2 .postcard__tagbox {
  display: flex;
  flex-flow: row wrap;
  font-size: 14px;
  margin: 20px 0 0 0;
  padding: 0;
  justify-content: center;
}
.postcard2 .postcard__tagbox .tag__item {
  display: inline-block;
  background: rgba(83, 83, 83, 0.4);
  border-radius: 3px;
  padding: 2.5px 10px;
  margin: 0 5px 5px 0;
  cursor: default;
  user-select: none;
  transition: background-color 0.3s;
}
.postcard2 .postcard__tagbox .tag__item:hover {
  background: rgba(83, 83, 83, 0.8);
}
.postcard2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
  opacity: 1;
  border-radius: 10px;
}
.postcard2:hover .postcard__bar {
  width: 100px;
}

@media screen and (min-width: 769px) {
  .postcard2 {
    flex-wrap: inherit;
  }
  .postcard2 .postcard__title {
    font-size: 2rem;
  }
  .postcard2 .postcard__tagbox {
    justify-content: start;
  }
  .postcard2 .postcard__img {
    max-width: 300px;
    max-height: 100%;
    transition: transform 0.3s ease;
  }
  .postcard2 .postcard__text {
    padding: 3rem;
    width: 100%;
  }
  .postcard2 .media.postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    background: #18151f;
    top: -20%;
    height: 130%;
    width: 55px;
  }
  .postcard2:hover .postcard__img {
    transform: scale(1.1);
  }
  .postcard2:nth-child(2n+1) {
    flex-direction: row;
  }
  .postcard2:nth-child(2n+0) {
    flex-direction: row-reverse;
  }
  .postcard2:nth-child(2n+1) .postcard__text::before {
    left: -12px !important;
    transform: rotate(4deg);
  }
  .postcard2:nth-child(2n+0) .postcard__text::before {
    right: -12px !important;
    transform: rotate(-4deg);
  }
}
@media screen and (min-width: 1024px) {
  .postcard__text {
    padding: 2rem 3.5rem;
  }
  .postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    top: -20%;
    height: 130%;
    width: 55px;
  }
  .postcard2.dark .postcard__text:before {
    background: #18151f;
  }
  .postcard2.light .postcard__text:before {
    background: #e1e5ea;
  }
}
/* COLORS */
.postcard2 .postcard__tagbox .green.play:hover {
  background: #ffffff;
  color: black;
}

.green .postcard__title:hover {
  color: #79dd09;
}

.green .postcard__bar {
  background-color: #fffffe;
}

.green::before {
  background-image: linear-gradient(-30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}

.green:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}

.postcard2 .postcard__tagbox .blue.play:hover {
  background: #0076bd;
}

.blue .postcard__title:hover {
  color: #0076bd;
}

.blue .postcard__bar {
  background-color: #0076bd;
}

.blue::before {
  background-image: linear-gradient(-30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.blue:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.postcard2 .postcard__tagbox .red.play:hover {
  background: #bd150b;
}

.red .postcard__title:hover {
  color: #bd150b;
}

.red .postcard__bar {
  background-color: #bd150b;
}

.red::before {
  background-image: linear-gradient(-30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.red:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.postcard2 .postcard__tagbox .yellow.play:hover {
  background: #bdbb49;
  color: black;
}

.yellow .postcard__title:hover {
  color: #bdbb49;
}

.yellow .postcard__bar {
  background-color: #bdbb49;
}

.yellow::before {
  background-image: linear-gradient(-30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}

.yellow:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}

@media screen and (min-width: 769px) {
  .green::before {
    background-image: linear-gradient(-80deg, rgba(121, 221, 9, 0.1), transparent 50%);
  }
  .green:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(121, 221, 9, 0.1), transparent 50%);
  }
  .blue::before {
    background-image: linear-gradient(-80deg, rgba(0, 118, 189, 0.1), transparent 50%);
  }
  .blue:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(0, 118, 189, 0.1), transparent 50%);
  }
  .red::before {
    background-image: linear-gradient(-80deg, rgba(189, 21, 11, 0.1), transparent 50%);
  }
  .red:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(189, 21, 11, 0.1), transparent 50%);
  }
  .yellow::before {
    background-image: linear-gradient(-80deg, rgba(189, 187, 73, 0.1), transparent 50%);
  }
  .yellow:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(189, 187, 73, 0.1), transparent 50%);
  }
}


/* ////////////////////////////////////////////////// */
/* body {
  font-family: 'Karla', sans-serif;
  color: #232323;
}
.container {
  background-color: #D7CCC8;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
} */
.card4 {
  background-color: #fff;
  max-width: auto;
  box-shadow: 2px 2px 5px #9E9E9E, -1px -1px 5px #9E9E9E;
  border-radius: 3px;
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
  /* grid-template-column: repeat(5, 1fr); */
}
.card4 .img-container {
  width: 230px;
  height: 100%;
  grid-column: 2;
  background-color: #c1b7b4;
  background-image: url('https://www.dropbox.com/s/7d5qt5wb2xpqeww/city-street.jpg?raw=1');
  background-size: cover;
  background-position: center center;
}
.card-content {
  grid-column: 3 / 5;
  padding: 10px 30px;
  border-left: 1px solid #ccc;
}
/* h2 {
  text-transform: uppercase;
  color: #555;
}
h1 {
  margin-bottom: 0;
} */
.card-content .author {
  border-top: 1px solid #cdcdcd;
  font-weight: 700;
  margin-top: 25px;
  padding: 25px 0 10px 0;
  color: #555;
}

@media only screen and (max-width:600px) {
  .card4 {
    display: block;
  }
  .card4 .img-container {
    height: 250px;
    width: 100%;
  }
  .card-content {
    border: 0;
    border-top: 1px solid #ccc;
  }
}


/* ////////////////////////// */
body {
  /* align-items: center;
  background: #E3E3E3;
  display: flex;
  height: 100vh;
  justify-content: center; */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1750px);
  }
}
.slider {
  background: rgb(255, 255, 255);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 960px;
  align-content: center;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: 3500px;
}
.slider .slide {
  height: 100px;
  width: 250px;
}


/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.card5 {
  margin: 2rem 1rem 2rem 1rem;
  border: none;
  border-radius: 0px;
  box-shadow: -2px 1px 8px 1px lightgrey; 
}

.portfolio-card__image {
  max-height: 20rem;
}

.portfolio-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}

.portfolio-card__category {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.portfolio-card__category__offices {
  color: red;
}

.portfolio-card__category__industrial {
  color: blue;
}

.portfolio-card__category__retail {
  color: green;
}

.portfolio-card__text {
  font-family: 'Abel', sans-serif;
  font-size: 1rem;
}

.portfolio-card__stage {
  color: white;
  text-transform: uppercase;
  padding: 6px;
  font-family: 'Barlow Condensed', sans-serif;
}

.portfolio-card__stage__icon {
  margin-right: 5px;
}

.portfolio-card__stage__complete {
  background-color: green;
}

.portfolio-card__stage__construction {
  background-color: red;
}

.portfolio-card__stage__planning {
  background-color: lightblue;
}

.portfolio-card__link {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: grey;
  text-decoration: underline;
  transition: 0.3s;
}

.portfolio-card__link:hover {
  color: black;
}

/* ///////////////////////////////////////// */
.half-half-image-text {
  padding: 70px 0px;
}
.half-half-image-text h1 {
  color: #800000;
}
.half-half-image-text .content {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 35px 0px;
}
.half-half-image-text .content p {
  font-size: 22px;
}
.half-half-image-text .img {
  min-height: 320px;
  height: 100%;
  border-radius: 10px;
}

/* ///////////////////////////////////////////// */

a {
  text-decoration: none;
}

/* Card Styles */

.card-sl {
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card-image img {
  max-height: 100%;
  max-width: 100%;
  border-radius: 8px 8px 0px 0;
}

.card-action {
  position: relative;
  float: right;
  margin-top: -25px;
  margin-right: 20px;
  z-index: 2;
  color: #E26D5C;
  background: #fff;
  border-radius: 100%;
  padding: 15px;
  font-size: 15px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.19);
}

.card-action:hover {
  color: #fff;
  background: #E26D5C;
  -webkit-animation: pulse 1.5s infinite;
}

.card-heading {
  font-size: 18px;
  font-weight: bold;
  background: #fff;
  padding: 10px 15px;
}

.card-text {
  padding: 10px 15px;
  background: #fff;
  font-size: 14px;
  color: #636262;
}

.card-button {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  width: 100%;
  background-color: #1F487E;
  color: #fff;
  border-radius: 0 0 8px 8px;
}

.card-button:hover {
  text-decoration: none;
  background-color: #1D3461;
  color: #fff;

}


@-webkit-keyframes pulse {
  0% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
  }

  70% {
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
      box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }

  100% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}
