/* --------------Global---------------- */
* {
    box-sizing: border-box;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body {
    margin: 0;
    overflow-x: hidden;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1220px;
    position: relative;
}
section {
    padding: 100px 0;
    position: relative;
}
@media screen and (max-width: 595px) {
    section {
        padding: 60px 0;
    }
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.btn-white {
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    padding: 10px 40px;
    font-size: 18px;
    transition: 0.3s all ease-in;
    letter-spacing: 0.04em;
}
.btn-white:hover {
    background-color: #F47219
}
.btn-orange {
    border: 2px solid #F47219;
    border-radius: 30px;
    color: #fff;
    background-color: #F47219;
    text-decoration: none;
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 800;
    transition: 0.3s all ease-in;
    letter-spacing: 0.04em;
}
.btn-orange:hover {
    background-color: transparent
}
@media screen and (max-width: 595px) {
    .btn-orange , .btn-white {
        padding: 10px 20px;
    }

}
.col-2 {
    flex: 0 0 50%;
    max-width: 50%;
}
@media screen and (max-width: 595px) {
    .col-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}
.col-3 {
    flex: 0 0 30%;
    max-width: 30%;
}
@media screen and (max-width: 595px) {
    .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}
.col-7 {
    flex: 0 0 70%;
    max-width: 70%;
}
@media screen and (max-width: 595px) {
    .col-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}
section {
    position: relative;
}
h2 {
    font-family: "Roboto", serif; 
    font-size: 40px; 
    margin: 0;
}
a {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
}
p {
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 1.3;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: #414141;
}
.heading {
    font-family: "Oswald", sans-serif;
    position: relative;
    padding-left: 140px;
    font-size: 30px;
}

.heading:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 135px;
    height: 4px;
    background-color: #F47219;
    transform: translateY(-50%);
}
@media screen and (max-width:991px) {
    .heading {
        padding-left: 90px;
    }
    .heading:before {
        width: 87px;
    }
}
@media screen and (max-width: 595px) {
    .heading {
        font-size: 20px;
    }
    h2 {
        font-size: 30px;
    }
}
.bg-black {
    background: #000;
}
.bg-orange {
    background: #F47219;
}
.text-center {
    text-align: center;
}
.justify-center {
    justify-content: center;
}
/* --------------Header---------------- */
.header {
    background-color: #000;
    padding: 20px 10px;
}
.header .row {
    align-items: center;
}
.header .logo {
    max-width: 210px;
}
.header ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
}
.header .content ul li {
   padding: 0 10px;
}
.header .content ul li a  {
    font-size: 20px;
    text-decoration: none;
    color: #F47219;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
}
.header .content ul li a:before {
    content: "";
    position: absolute;
    background: #F47219;
    bottom: -6px;
    width: 0;
    height: 2px;
    transition: 0.3s all ease;
}
.header .content ul li a:hover:before {
    width: 100%;
}
.header .btn-orange {
    margin-left: 20px;
}

@media screen and (max-width: 991px) {
    .header .logo {
        max-width: 170px;
    }
    .header .hamburger {
        display: block;
        position: absolute;
        right: 12px;
    }
    .header .content ul li {
        padding: 10px 10px;
    }
    .header .hamburger span {
        position: relative;
        display: block;
        height: 10px;
        width: 100%;
    }

    .header .hamburger span:before {
        content: "";
        position: absolute;
        top: -32px;
        right: -2px;
        background-color: #fff;
        height: 2px;
        width: 30px;
        transition: all 0.3s ease-in-out;
    }
    .header .hamburger.open span:nth-child(1):before {
        transform: rotate(38deg);
        right: 0;
        right: -1px;
        top: -24px;
    }
    .header .hamburger.open span:nth-child(2):before {
        display: none;
    }
    .header .hamburger.open span:nth-child(3):before {
        transform: rotate(-39deg);
        top: -44px;
        right: -1px;
    }
      .header .menu{
        display: none;
        z-index: 1000000;
        font-weight: bold;
        font-size: 0.8em;
        width: calc(100% + 40px);
        left: -20px;
        background: #f1f1f1;
        position: absolute;
        text-align: center;
        font-size: 12px;
        top: 81px;
        top: 59px;
        height: 100vh;
        padding-top: 30px;
      }
      .header .menu ul {
        flex-direction: column;
        padding: 0;
      }
      .header .menu li {
        padding: 15px 0 15px 0;
      }




}
/* --------------Banner---------------- */
.banner {
    position: relative;
    min-height: 810px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.banner.second-level {
    min-height: 310px;
}
.banner.about-banner {
    /* min-height: 637px; */
    background: linear-gradient(132deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 32%, rgba(244,114,25,1) 100%);

}
.banner.about-banner  .bg-img {
    position: absolute;
    width: 50%;
    height: 100%;
    left: auto;
    top: 0;
    right: 0;
}
.banner .bg-img:before {
    content: "";
    position: absolute;
    background: #000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
}
.banner.second-level h3 {
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 30px;
}
.banner.second-level h1 {
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.banner .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.banner h1 {
    font-size: 120px;
    color: #F47219;
    font-family: "Roboto", serif;
    margin: 10px 0;
}
.banner h3 {
    color: #fff;
}
.banner .heading:before {
    background: #fff;
}
.banner .btn-wrap {
    display: flex;
    flex-wrap: wrap;
}
.banner .btn-wrap a {
    margin-right: 10px;
}
@media screen and (max-width: 991px) {
    .banner h1 {
        font-size: 90px;
    }
}
@media screen and (max-width: 595px) {
    .banner {
        min-height: 490px;
    }
    .banner h1 {
        font-size: 40px;
    }
    .banner .btn-wrap a {
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    .banner.second-level h1 {
        font-size: 40px;
    }
    .banner.second-level h3 {
        font-size: 24px;
    }
    .banner.second-level h1 {
        font-size: 40px;
    }
    .banner.second-level h3 {
        font-size: 24px;
    }
    .banner.about-banner .bg-img {
        position: relative;
    width: 100%;
    transform: none;
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
    margin-top: 30px;
    }
}

/* --------------Col Two Image---------------- */
.col-two-img .heading {
    padding-left: 44px;
    font-size: 20px;
}
.col-two-img .heading:before{
    width: 40px;
}
.col-two-img .content h2 {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #F47219;
}
.col-two-img .image {
    max-width: 426px;
    text-align: center;
    margin: 0 auto;
    height: 615px;
    position: relative;
}
.col-two-img .image:before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    background: #F47219;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.col-two-img .image img {
    object-position: bottom;
}
.col-two-img .btn-wrap {
    margin-top: 30px;
    display: inline-block;
}
.col-two-img .btn-wrap a:hover {
    color: #F47219;
}
@media screen and (max-width: 991px) {
    .col-two-img .image {
        height: 510px;
    }
}
/* --------------Col Three Cards---------------- */
.col-three-cards {
    background: #000;
}
.col-three-cards .col-three{
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.col-three-cards .image {
    height: 420px;
}

.col-three-cards  h3 {
    color: #414141;
    font-size: 20px;
    font-family: 'Roboto';
    font-weight: 500;
    letter-spacing: 0.03em;
    margin: 0;
    text-align: center;
    z-index: 1;
    position: relative;
}
.col-three-cards .col-three {
    position: relative;
    padding: 0 10px;
}
.col-three-cards .card {
    transition: 0.3s all ease-in;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.col-three-cards .card .content {
    padding: 20px;
    margin: -3px;
    background-color: #F47219;
}
.col-three-cards .card .hover-content {
    background-color: #F47219;
    position: absolute;
    top: 26%;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease-out;

}
.col-three-cards .card:hover .hover-content  {
    opacity: 1;

}
.col-three-cards .card:hover .content h3 {
    opacity: 0;
}
.col-three-cards .card p {
    color: #fff;
}
@media screen and  (max-width: 991px) {
    .col-three-cards .col-three {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }
}
@media screen and  (max-width: 595px) {
    .col-three-cards .col-three {
        flex: 0 0 100%;
        max-width: 100%;
      
    }
}


/* --------------Col Three Icons---------------- */
.col-three-icons {
    background: #efefef;
}
.col-three-icons .intro h2 {
    font-family: "Oswald", sans-serif;
    text-align: center;
    margin-bottom: 30px;
}
.col-three-icons .col-four {
    flex: 0 0 25%;
    max-width: 25%;

}
.col-three-icons .col-four > a {
    text-decoration: none;
}
.col-three-icons svg {
    fill: #fff;
}
.col-three-icons .card {
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.col-three-icons .card .icon {
    max-width: 130px;
    margin: 0 auto;
    background: #F47219;
    border-radius: 50%;
    padding: 30px;
    height: 120px;
}
.col-three-icons .card p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    color: #F47219;
}
.col-three-icons .card:hover {
    transform: scale(1.1);
    box-shadow: 9px 10px 26px 1px rgba(0, 0, 0, 0.5);
    background: #fff;
}
.col-three-icons .card:hover .icon {
    background: #fff;
    transition: 0.3s all ease;
}
.col-three-icons .card:hover svg  {
    fill: #F47219;
}
@media screen and (max-width: 991px) {
    .col-three-icons .col-four {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media screen and (max-width: 991px) {
    .col-three-icons .col-four {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* --------------Col Four Image---------------- */
.col-four-img {
    background-image: url("../images/bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.col-four-img:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}
.col-four-img .intro {
    text-align: left;
    color: #fff;
}
.col-four-img .intro h2 {
    font-family: "Oswald", sans-serif;
    margin-bottom: 30px;
}
.col-four-img h5 {
    font-size: 20px;
}
.col-four-img h2 {
    text-align: left;
}
.col-four-img .heading {
    padding-left: 50px;
    font-size: 20px;
}
.col-four-img .heading::before {
    width: 40px;

}
.col-four-img .col-two {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 10px;
}
.col-four-img .card {
    background: #efefef;
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}
.col-four-img .content {
    padding: 20px;
}
.col-four-img .content h3 {
    font-size: 20px;
    font-family: 'Roboto';
    font-weight: 800;
    color: #F47219;
    letter-spacing: 0.06em;
    margin-top: 10px;
}
.col-four-img .content p {
    font-size: 16px;
    line-height: 1.4;
}
.col-four-img .card .img-wrap {
    transition: all 0.3s ease;
    height: 320px;
}
.col-four-img .card:hover .img-wrap {
    transform: scale(1.2);
}
.col-four-img .btn-wrap {
    margin-top: 50px;
    text-align: center;
}
@media screen and (max-width: 991px) {
    .col-four-img {
        height: auto;
    }

}
@media screen and (max-width: 595px) {
    .col-four-img .col-two {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

}



/* --------------Testimonial Slider---------------- */
.testimonial-slider h2 {
    margin-bottom: 30px;
    font-family: 'Roboto';
    text-align: center;
    letter-spacing: 0.02em;
}
.testimonial-slider .slider-wrap {
    /* max-width: 850px; */
    margin: 0 auto;
}
.testimonial-slider .slide {
    padding: 30px;
    border-radius: 40px;
    margin: 0 10px;
    filter: brightness(0.5);
}
.testimonial-slider .slide.slick-current {
    filter: brightness(1);
}
.testimonial-slider blockqoute {
    position: relative;
    font-size: 27px;
    font-family: "Oswald", sans-serif;
    margin-top: 60px;
    display: block;
}

.testimonial-slider blockqoute:before {
    content: "";
    position: absolute;
    width: 139px;
    height: 118px;
    top: -84px;
    left: 0;
    background-color: #ffffff;
    background: url(../images/open.png) no-repeat;
    background-size: cover;
    opacity: 0.4;
    z-index: -1;
}
.testimonial-slider .card .heading {
    margin: 30px 0 10px;
    text-align: right;
}


.testimonial-slider .slick-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 99;
    height: 50px;
    width: 50px;
    padding: 9px;
    border-radius: 3px;
    border-width: 0;
    background-color: rgba(255, 255, 255, .5);
    font-size: 0;
    background: url(../images/next.png) no-repeat;
    background-size: cover;
    cursor: pointer;
}

.testimonial-slider .slick-arrow.slick-prev {
    left:0;
    transform: rotate(180deg);
    top: 30%;

}
 .testimonial-slider .slick-arrow.slick-next {
     right: 0;
}
.testimonial-slider .slick-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}
.testimonial-slider .slick-dots {
    display: flex;
    list-style: none;
    text-align: center;
    justify-content: center;
  
 }
 .testimonial-slider .slick-dots li {
    padding: 10px;
    
 }
 .testimonial-slider .slick-dots li button {
    background: #efefef;
    border: 0;
    padding: 10px;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
 

 }
 .testimonial-slider .slick-dots li.slick-active button{ 
    background: #F47219;
 }
 @media screen and (max-width: 595px) {
    .testimonial-slider blockqoute {
        font-size: 20px;
    }
    .testimonial-slider blockqoute:before {
        width: 110px;
        height: 89px;
        top: -65px;
    }
    .testimonial-slider .card .heading {
        padding-left: 0;
        text-align: left;
        padding-top: 10px;
    }
    .testimonial-slider .heading:before {
        top: 0;
    }
    .testimonial-slider .slick-arrow.slick-prev {
        display: none !important;
    }
    .testimonial-slider .slick-arrow.slick-next {
        display: none !important;
    }
    .testimonial-slider .slick-list {
        padding: 0;
    }
    .testimonial-slider .slick-dots li button {
        padding: 6px;
    }
    .testimonial-slider .slick-dots li {
        padding: 5px;
    }
    .testimonial-slider .slick-dots {
        padding-left: 0;
    }
 }

 /* --------------Promo Bar---------------- */
 .promo-bar {
    padding: 30px 0;
 }
 .promo-bar .row {
    justify-content: space-between;
 }
 .promo-bar .col-three {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
 }
 .promo-bar svg {
    height: 100%;
    width: 100%;
    margin-right: 20px;
    fill: #fff;
    background: #000;
    border-radius: 50%;
    padding: 10px;
    height: 50px;
    width: 50px;
    margin-right: 10px;
 }
 .promo-bar h3 {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
 }
 .promo-bar h3 a {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
    font-family: inherit;
    transition: 0.3s all ease-in;
 }
 .promo-bar h3 a:hover {
    color: #efefef;
 }
@media screen and (max-width: 991px) {
    .promo-bar .col-three {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media screen and (max-width: 595px) {
    .promo-bar .col-three {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

  /* --------------Contact Section---------------- */
.contact-section span {
    color: #F47219;
    font-size: 18px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}
.contact-section input , textarea {
    font-size: 13px;
    /* color: #c4c4c4; */
    width: 100%;
    height: 46px;
    border: 1px solid #363636;
    padding: 10px;
    background: transparent;
    margin-bottom: 10px;
}
.contact-section input::placeholder , textarea::placeholder {
    font-family: 'Roboto';
}
.contact-section button{
    width: 100%;
    cursor: pointer;
}
.contact-section button:hover {
    color: #F47219;
}
.contact-section .icon {
    background: #efefef;
    padding: 20px;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.contact-section .icon svg {
    fill: #F47219;
}
.contact-section .cw-text p {
    font-size: 20px;
    font-family: 'Roboto';

}
.contact-section .cw-text {
    display: flex;
    align-items: center;
}
.contact-section .icon svg {
    width: 100%;
    height: 100%;
}
.contact-section iframe {
    width: 100%;
    margin-top: 20px;
}
.contact-section h2 {
    margin: 20px 0;
}

  /* --------------Footer---------------- */
  .footer {
    padding: 30px 0 10px;
  }
  .footer .row {
    justify-content: space-between;
  }
  .footer .logo {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .footer .logo img {
    object-fit: contain;
    object-position: 100% 15%;
  }
  .footer .content {
    text-align: center;
  }
  .footer .icon-wrap .col-three {
    display: flex;
    align-items: center;
  }
  .footer .icon-wrap .icon {
    fill: #fff;
    background: #F47219;
    border-radius: 50%;
    padding: 10px;
    height: 50px;
    width: 50px;
    margin-right: 10px;
  }
  .footer ul {
    list-style: none;
  }
  .footer ul li {
    position: relative;
  }
  .footer ul li a {
    padding: 0 10px;
    font-size: 18px;
    color: #efefef;
    text-decoration: none;
  }
  .footer ul li a:before {
    content: "";
    position: absolute;
    background: #F47219;
    bottom: -6px;
    width: 0;
    height: 2px;
    transition: 0.3s allease;
  }
  .footer .content ul li a:hover:before {
    width: 100%;
}
.footer p {
    font-size: 14px;
    color: #fff;
    flex: 0 0 100%;
    max-width: 100%;

}
.footer .col-three a {
    color: #fff;
    text-decoration: none;
}
.footer .col-three h3 {
    color: #fff;
    font-family: "Oswald", sans-serif;
}
.footer .nav-links {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.footer .icon-wrap {
    flex: 0 0 30%;
    max-width: 30%;
}
.footer .nav-links ul {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 991px) {
    .footer .icon-wrap {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer .nav-links {
        flex: 0 0 70%;
        max-width: 70%;
    }
    .footer .logo {
        flex: 0 0 30%;
        max-width: 30%;
    }
    .footer .nav-links ul {
        justify-content: flex-end;
    }
}
@media screen and (max-width: 595px) {
    .footer .nav-links ul {
        justify-content: center;
        padding: 0;
        flex-wrap: wrap;
    }
    .footer .logo {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer .nav-links {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Overlay */

.form-overlay {
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: 0.3s all ease-in;
}
.form-overlay .wrapper {
    border-radius: 30px;
    background: #fff;
    padding: 20px 30px;
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}
.form-overlay .wrapper h3 {
    margin: 0 0 30px;
}
.form-overlay .modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.form-overlay #closeOverlay {
    position: absolute;
    right: 63px;
    top: 30px;
    background: none;
    border: 0;
    font-size: 27px;
    color: #F47219;
    font-family: 'Roboto';
    cursor: pointer;
    z-index: 2;
}
.form-overlay .question-wrap > label  {
    margin-bottom: 30px;
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'Roboto';
}
.form-overlay .question-wrap input {
    padding: 7px;
    width: 100%;
    margin-bottom: 20px;
}
.form-overlay .question-wrap input[type="radio"] {

}
.form-overlay .question-wrap .option-wrap input {
    width: auto;
}
.form-overlay .question-wrap .option-wrap  label {
    font-size: 16px;
    font-family: "Roboto";
    width: 45%;
    display: inline-block;
}
.form-overlay .btn-orange {
    margin-top: 20px;
    display: block;
    width: auto;
    text-align: center;
}
.form-overlay .btn-orange:hover {
    color: #F47219;
}
.form-overlay span.wpcf7-list-item {
    flex: 0 0 50%;
    max-width: 50%;
}
.form-overlay span.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
}
.form-overlay input.wpcf7-form-control.wpcf7-text {
    width: 100%;
    padding: 7px;
    margin-bottom: 10px;
    font-size: 16px;
}
@media screen and (max-width: 991px) {
    .form-overlay {
        width: auto;
    }
    .form-overlay #closeOverlay {
        right: 33px;
    }
}

/* --------------Program Cards---------------- */
.program-card .row {
    justify-content: center;
}
.program-card .col-three  {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 20px;
    margin-bottom: 20px;

}
.program-card .card {
    background: #efefef;
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    transition: 0.3s all ease;
    cursor: pointer;
    height: 100%;
}
.program-card .card:hover {
    box-shadow: 9px 10px 26px 1px rgba(0, 0, 0, 0.5);
}
.program-card .image {
    max-width: 100%;
    height: 250px;
    overflow: hidden;
}
.program-card .image img {
    border-radius: 30px;
}
.program-card .content h4 {
    font-size: 20px;
    font-family: 'Roboto';
    font-weight: 400;
}
.program-card .btn-wrap {
    text-align: center;
    margin-top: 30px;
}
.program-card .btn-wrap .btn-orange:hover {
    color: #F47219;
}
@media screen and (max-width: 991px) {
    .program-card .col-three  {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 595px) {
    .program-card .col-three  {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
}

/* --------------Col Three Icon---------------- */
.col-three-icon .col-three {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    position: relative;

}
.col-three-icon .content {
    text-align: center;
    color: #fff;
    padding: 0 20px;
 
}
.col-three-icon .col-three:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    background-color: #fff;
    opacity: 0.7;
}
.col-three-icon .col-three:last-child::after {
    display: none;
}
.col-three-icon .content h4 {
    color: #efefef;
    font-size: 20px;
    font-family: "Oswald", sans-serif;
}
.col-three-icon .content p {
    color: #fff;
    font-size: 16px;
}
.col-three-icon .content .icon-wrap {
    max-width: 85px;
    border-radius: 50%;
    border: 1px solid #F47219;
    padding: 20px 25px;
    margin: 0 auto;
}
.col-three-icon .content .icon-wrap svg {
    fill: #F47219;
}
.col-three-icon.certification .content .icon-wrap {
    border: 0;
}
.col-three-icon.certification .col-three {
    flex: 0 0 25%;
    max-width: 25%;
}
@media screen and (max-width: 991px) {
    .col-three-icon.certification .col-three {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-three-icon .col-three  {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 595px) {
    .col-three-icon .col-three   {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-three-icon .col-three:after {
        display: none;
    }
    .col-three-icon.certification .col-three {
        flex: 0 0 100%;
        max-width: 100%;
    }
}




/*-----------------video overlay------------------ */
.watch-video {
    position: relative;
}
.watch-video:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: url(../images/play.png) no-repeat;
    height: 90px;
    width: 90px;
    transform: translate(-50%, -50%);
    background-size: cover;
    z-index: 1;
}
.watch-video:after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #F47219;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
.video-overlay-product {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.video-overlay-product .content-outer {
    position: relative;
    background: #ffffff;
    min-height: 490px;
    width: 100%;
    max-width: 810px;
    padding: 10px 20px;
    display: flex;
}
.video-overlay-product .content-outer iframe {
    height: auto;
    width: 100%;
    display: block;
}
.video-overlay-product .content-outer .close-overlay {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: -40px;
    top: -40px;
    cursor: pointer;
    background: white;
    padding: 11px;
    transition: all 0.3s ease-in;
}
.video-overlay-product .content-outer .close-overlay:hover {
    transform: rotate(180deg);
}

.video-overlay-product .content-outer .close-overlay img {
    width: 100%;
}
.video-overlay-product.active {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 992px) {
    .video-overlay-product .content-outer {
        min-height: 380px;
        max-width: 650px;
    }
}
@media (max-width: 768px) {
    .video-overlay-product .content-outer {
        max-width: 84%;
        min-height: 290px;
    }
}
@media (max-width: 595px) {
    .video-overlay-product .content-outer {
        height: auto;
        min-height: auto;
    }
    .video-overlay-product .content-outer .close-overlay {
        max-width: 30px;
        max-height: 30px;
        right: -20px;
        top: -40px;
    }
}

.video-bar.homepage .container > a {
    text-decoration: none;
    color: #000;
} 
.video-bar .card {
    background: #fff;
    box-shadow: 10px 10px 26px -9px rgba(0, 0, 0, 0.75);
    padding: 30px 20px 60px;
    align-items: center;
}
.video-bar .video {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
}
.video-bar .content {
    flex: 0 0 60%;
    max-width: 60%;
    position: relative;
}
.video-bar.homepage .content  {
    flex: 0 0 100%;
    max-width: 100%;
}
.video-bar .content:before {
    content: "";
    position: absolute;
    top: -105px;
    left: -40px;
    background: url(../images/lighting.png) no-repeat;
    height: 220px;
    width: 220px;
    background-size: cover;
    z-index: 0;
    opacity: 0.4;
}
.video-bar.homepage .content:before {
    display: none;
}
.video-bar.homepage .content .btn-orange:hover  {
    color: #F47219;
}
.video-bar .content h3  {
    font-size: 50px;
    font-family: "Oswald", sans-serif;
    margin: 20px 0 20px;
    position: relative;
    z-index: 1;
    line-height: 1;
}
.video-bar .content span {
    font-size: 20px;
    font-family: 'Roboto';
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.07em;
    word-spacing: 0.3em;
    position: relative;
    z-index: 1;
    
}
.video-bar .content p {
    margin-bottom: 30px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}
.video-bar.homepage .content span {
    font-family: "Oswald", sans-serif;
}
.video-bar .video > a {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
} 

@media screen and (max-width: 595px) {
    .video-bar .video {
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
    }
    .video-bar .content {
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
    }
}



/* formm */
.screen-reader-response > ul {
    display: none;
}
.wpcf7-not-valid-tip {
    color: red;
    font-size: 10px !important;
    margin: 0;
    position: absolute;
    bottom: 0px;
    left: 0;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    border: 2px solid #F47219;
    border-radius: 30px;
    color: #fff;
    background-color: #F47219;
    text-decoration: none;
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 800;
    transition: 0.3s allease-in;
    letter-spacing: 0.04em;
    margin-top: 30px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background-color: transparent;
    color: #F47219;
}

.tournament {
    padding: 0;
}
.tournament .row {
    align-items: center;
}
.tournament .col-two {
    flex: 0 0 50%;
    max-width: 50%;
}
.tournament .content {
    padding: 40px 40px;
}
.tournament .content h2 {
    margin-bottom: 10px;
}
.tournament .content form input {
    padding: 8px;
    width: 100%;
    background: #efefef;
    border: 0;
    margin: 5px 0;
}
.tournament .content form input[type="checkbox"] {
    width: auto;
    margin-right: 10px
}
.tournament .content form .row-wrap {
    display: flex;
    width: calc(100% + 20px);
    margin-left: -10px;
}
.tournament .content form .row-wrap .wpcf7-form-control-wrap {
    padding: 0 10px;
}
.tournament .content form  br {
    display: none;
}
.tournament .content form .checkboxes .wpcf7-form-control-wrap .wpcf7-list-item  {
    display: block;
}
.tournament .content form span.wpcf7-list-item {
    display: block;
}
.tournament .content form h3 {
    color: #414141;
    font-family: 'Roboto';
    font-weight: 500;
}
@media screen and (max-width: 991px) {
    .tournament .col-two {
        flex: 0 0 100%;
        max-width: 100%;
    }

}
.error-page {
    text-align: center;
}
.error-page h1 {
    font-size: 150px;
    background: -webkit-linear-gradient(#000, #F47219);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.2em;
    margin: 0;
}
.error-page h3 {
    font-family: 'Roboto';
}
.mt-10 {
    margin-top: 10px;
}
.ff-default .ff-el-input--label label {
    font-family: 'Oswald';
}