/*+++++++++++ Fonts+++++++++*/
@import url("fonts.css");
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root{
  --primary:#000000;
  --secondary:#cb2b29;
  --text-color:#000000;
  --red-color:#b22037;
  --white:#fff;
  --primary-font:"Open Sans", sans-serif;
  --secondary-font: "Oswald", serif;
}
body {
    font-family: var(--primary-font);
    color: var(--text-color);
    font-size:16px;padding-top: 100px;
}

a {
  text-decoration: none;
  color: var(--secondary);
}

a:hover {
  color:var(--primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
}
h2{font-size: 44px;text-transform: uppercase;font-weight:800;font-family: var(--secondary-font);color: #fff;}
h2 span{color: var(--secondary);}
img{max-width: 100%;}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

    .back-to-top:hover {
        background: #a6a6a6;
        color: #fff;
    }

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #10152d;
  border-top-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: var(--primary);
    transition: all 0.5s;
    z-index: 997;
    position: fixed;overflow: hidden;
}

    #header.header-scrolled {
        position: fixed;
    }

.header-inner-pages {
  background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
  background: rgba(6, 98, 178, 0.9) !important;
}
.logo {
  padding: 15px 0;    position: relative;
}

.phone-box{
 padding: 15px 0;    position: relative;display: flex ;align-items: center;
}
.phone-box a{font-size: 22px;font-weight: bold;display: flex; align-items: center;  gap: 15px;transition: 0.3s;
  font-family: var(--secondary-font);font-size: 34px;font-weight: 500;    line-height: 1.2;color: var(--white);
}
.phone-box a:hover{color: var(--secondary);}  
.phone-box img{filter: brightness(0) invert(1);}  
.phone-box a:hover img{ filter: brightness(1) invert(0);}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.menu-container{display:flex;justify-content:space-between;align-items: center;
  flex-wrap: wrap;}
.navbar {padding: 0;position: relative;}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 30px;
}

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-size: 20px;
        font-weight: bold;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
    }

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #10152d;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: #10152d;
    }

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 8px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        color: #242424;
    }

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #0880e8;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #ffffff;
    }
.equalizer{display:flex;}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed !important;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #585858;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #000000;
    }

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

    .navbar-mobile .dropdown ul a:hover,
    .navbar-mobile .dropdown ul .active:hover,
    .navbar-mobile .dropdown ul li:hover > a {
        color: #000000;
    }

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



.banner-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.banner-section .banner-pic {
  position: absolute;
  top: 0;
  left: 0;
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section h1 {
  font-size: 60px;
  margin-bottom: 2rem;
}
.banner-section h1 span {
  color: red;
}
.banner-section p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 3rem;
}


.request-form {
  font-family: var(--secondary-font);
  background: #000000a1;
  color: var(--secondary);
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  border: 2px solid var(--secondary);
  position: relative;
  top: 2rem;
}
.request-form h3 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.request-form form ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;list-style: none;
}
.request-form form .row{margin:15px 0}
.form-control{border-radius: 5px;font-family: var(--secondary-font);}
 input {
  border: none;
  outline: none;
  background: #f4f7fc;
  min-height: 52px;
  padding: 0 1rem;
  border-radius: 5px;font-size: 18px;
  font-family: var(--primary-font);
  border-radius: 5px;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.carousel-caption {    position: initial;color: #fff;text-align: left; display: flex;gap: 15px;flex-direction: column;align-items: start;}
.carousel-caption h1{font-size: 51px;font-weight: 500;margin:0;text-transform: uppercase;}
.carousel-caption h2{font-size: 44px;font-weight: 500;margin:0;text-transform: uppercase;}
.carousel-caption p{font-size: 24px;line-height: 1.4;}
.section-bg {
  background-color: #f1f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 48px;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 0;
        color: #10152d;
        letter-spacing: 5px;
    }

.section-title p {
  margin-bottom: 0;
  font-style: italic;
}
/*--------------------------------------------------------------
# customers
--------------------------------------------------------------*/
.our-customers{
  background: var(--primary);
  padding: 80px 0;
}
.our-customers h2{text-align: center;margin-bottom: 40px;}
.customers-logo{
  background: #161616;padding: 1rem 1.5rem;border-radius: 15px;
}
.swiper-slide{margin: auto;}

/* services */
.services{
  background: #161616;
  padding: 80px 0;
}
.services h2{text-align: center;margin-bottom: 3rem;}
.services ul{padding: 0;list-style: none;    margin: 0;display: grid;gap: 20px;grid-template-columns: 1fr 1fr; }
.services ul li{position: relative; overflow:hidden;}
.services ul li .overlay-text{bottom: 0;    background: #000000cf;padding: 20px;color: #fff;width: 100%; height:100%; transition-duration: 0.3s;}
.services ul li .overlay-text p{/*max-height:0;visibility: hidden;*/margin: 0;}
.services ul li:hover .overlay-text{background: #cb2b29e0;}
.services ul li:hover .overlay-text p{max-height:400px;visibility: visible;}


/* about-us */

.about-us{
  background: #111111;
  color: #fff;
}
.about-us article h3{margin: 0;}
.about-us article{padding:0 4rem;display: flex;flex-direction: column;gap:1.5rem;}
.about-us article p{font-size: 20px;line-height: 1.3;}


/* why-people */

.why-people{background: #000; color: #fff;padding: 70px 0;text-align: center;}
.why-people .container{display: flex;flex-direction: column;gap: 2rem;}
.why-people h2{text-align: center;}
.why-people p{font-size: 16px;}

/* contact-section */
.contact-section{
  background: #161616;color: #fff;padding: 40px 0;
}
/*--------------------------------------------------------------
# how-it-works
--------------------------------------------------------------*/

.how-it-works{
  padding: 70px 0;
}
.how-it-works ul{display: flex;flex-direction: column;gap: 20px;}
.how-it-works ul li{list-style: none;font-size: 32px;font-weight: bold;display: flex; align-items: start; gap: 20px;}
.how-it-works ul li i{color: var(--secondary);position: relative;top: 9px;}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
    padding: 70px 0;
    background: url("../img/about.webp") top center no-repeat #fdfdfd;
    position: relative;
}
.about:before{
  background: var(--secondary);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
}
.about .container {
  position: relative;
  z-index: 2;
}
.about h2{color: var(--white);text-align: center;margin-bottom: 40px;}

.about p{line-height:1.4; color: #fff;font-size: 24px;}


.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #0880e8;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #0880e8;
}

.about .content .btn-learn-more:hover {
  background: #0880e8;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 992px) {
  .about {
    padding: 60px 0;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.mw-1050{max-width:1050px;margin:0 auto}
.pricing {
    padding: 70px 0;background: #ededed;
}
.pricing h2{text-align: center;margin-bottom: 40px;} 
.pricing .box {
        padding: 90px 20px 20px;
        background: #ffffff;
        text-align: center;
        border-radius: 25px;
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        max-width: 298px;
        margin: 0 auto;    margin-top: 40px;
    }
.price-box {
    width: 128px;
    height: 128px;
    margin: 0 auto;
    border-radius: 50%;
    background-image: linear-gradient(to right, #388fc6, #c3cde8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;font-weight: bold;
    color: #fff;
    position: absolute;
    top: -64px;
    left: 0;
    right: 0;
}
.pricing .box p {
    font-size: 12px;
    letter-spacing: 1px;
    color: #a7a7a7;
    margin-bottom:5px;
}
.pricing h3 {
    font-weight: 400;
    padding:0;
    font-size: 36px;
    color: #10152d;
    font-weight: bold;
    margin-bottom:20px;
}


.pricing ul {
    color: #10152d;
    font-weight: bold;
    line-height: 20px;
    font-size: 14px;
    text-align: left;
    margin: 0 auto 30px;
    list-style: none;
    padding: 0;
}

.pricing ul li {
 background: url(../img/check.png) left center no-repeat;
    padding: 5px 0;
    background-size: 18px;
    padding-left:30px;    width: 100%;
}
.pricing .btn-wrap {
    width:100%;    margin-top: auto;
}

.pricing .btn-buy {
    text-align: center;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    background-image: linear-gradient(to right, #388fc6, #c3cde8);
    border-radius: 50px;   
    transition: 0.3s;
}

.pricing .btn-buy:hover {
  background-image: linear-gradient(to right, #c3cde8, #388fc6);
}

.pricing .teacher .btn-buy, .pricing .teacher .btn-buy:hover {
    background-image: linear-gradient(to right, #e99540, #ffd460);
}
.pricing .teacher .btn-buy:hover {
    background-image: linear-gradient(to right, #ffd460, #e99540);
}
.pricing .studio .btn-buy, .pricing .studio .btn-buy:hover {
    background-image: linear-gradient(to right, #ff5641, #ff8375);
}
.pricing .studio .btn-buy:hover {
    background-image: linear-gradient(to right, #ff8375, #ff5641);
}
.pricing .teacher .price-box,.pricing .studio .price-box{background-image: linear-gradient(to right, #388fc6, #c3cde8);}
.aicon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}
.aicon {
    width: 60px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a7a7a7;
    margin-left: -1px;
}
.stretch-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
}
.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #0880e8;
    color: #fff;
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.section-testimonials {
    background: url(../img/testimonial.webp) center no-repeat #2b2b2b;
    padding: 90px 0;
    background-attachment: fixed;position: relative;
}
.section-testimonials:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(148,195,224,0.7);
}
.testimonials-box {
    padding: 40px 5%;
    max-width: 832px;
    margin: 0 auto;
    background:var(--secondary);
}
.section-testimonials .section-title h2{color:#fff;}

.testimonial-text {
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
    padding: 1rem .5rem;
    position: relative;
    color: #fff;
}

.section-testimonials .swiper-button-next, .section-testimonials .swiper-button-prev {
    width: 71px;
}

    .section-testimonials .swiper-button-next:after {
        content: '';
        background: url(../img/arrow.png);
        width: 71px;
        height: 53px;
    }

    .section-testimonials .swiper-button-prev:after {
        content: '';
        background: url(../img/arrow.png);
        width: 71px;
        height: 53px;
        transform: rotate(180deg);
    }

.rating li {
    font-size: 26px;
    margin: 0 4px;
}

.rating .checked {
    color: #ffffff
}

.author {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.section-testimonials .carousel-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d5d6d8
}

.section-testimonials .carousel-pagination .swiper-pagination-bullet-active {
    background: #b89632
}

/*Blog start*/
.blog-section {
    background: url(../img/blogbg.jpg) center bottom no-repeat #e3e3e3;
    background-attachment:fixed;
}
.blog-body {
    padding: 0 0 30px 0;
    text-align: left;
}

    .blog-body h3 {
        font-size: 24px;
        color: #10152d
    }
.blog-container {
    max-width: 1034px;
    margin: auto;
}
    .blog-container .blog-item {
        max-width: 298px;
        margin: auto;
    }
.blog-body p {
    font-size: 14px;
    line-height: 24px;
    margin:15px 0;
}

    .blog-body a {
        color: var(--secondary);
        font-family: 'PT Sans';
        font-size: 16px;
        font-weight: bold;
    }

.blog-picture {
    max-width: 100%
}
/*Blog end*/

/*contact-bg*/

input[type="text"], input[type="email"], input[type="tel"], textarea.form-control {
  min-height: 52px;
  background: #242424;
  border-radius: 0;
  border: none;
  outline: none;color: #fff;width: 100%;
}
.form-control{font-family: var(--primary-font);width: 100%;}
.form-control::placeholder{color: #696969 !important;}
.form-control:focus{
  background: #242424;
  color: #fff; 
}
input[type="submit"] {
  background-color: var(--secondary);
  padding: 10px 40px;
  box-shadow: 0 8px 22px #00000025;
  color: #fff;
  border-radius: 0;
  border: none;
  outline: none;
  transition-duration: 0.3s;
  margin: auto;text-transform: uppercase;
}
input[type="submit"]:hover {
  background-color: var(--primary);
}
.contact-section form .row{
  margin: 15px 0;
}
.contact-section .container{max-width: 1100px;}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer{
  text-align: center;background: var(--secondary);color: #fff;padding: 1rem 0;
}
footer p{margin: 0;}

.default-btn,input[type="submit"]{
  background: var(--secondary);color: var(--white);padding: 10px 40px;font-size: 22px;font-weight: 500;border-radius: 5px;
  font-family: var(--secondary-font);text-transform: uppercase;transition: 0.3s;border: 2px solid var(--secondary);text-transform: uppercase;
}
.default-btn:hover,input[type="submit"]:hover{background: var(--primary);color: var(--white);border: 2px solid var(--white);}

/****Gravity Form CSS Starts Here******/
#input_1_1, #input_1_3, #input_1_4, #input_1_5, #input_1_6, #input_1_7, #input_1_8, #input_1_9, #input_1_10, #input_2_1, #input_2_3, #input_2_4, #input_2_5, #input_5_1, #input_5_3, #input_5_4, #input_7_6, #input_7_1, #input_7_3, #input_7_4{
	min-height: 52px;
    background: #242424;
    border-radius: 0;
    border: none;
    outline: none;
    color: #696969;
    width: 100%;
}
select#input_1_12, #input_5_5, #input_7_12{
	min-height: 52px;
    background: #242424;
    border-radius: 0;
    border: none;
    outline: none;
    color: #696969;
    width: 100%;
	padding-top:7px;
}
textarea#input_7_6
#gform_fields_1, #gform_fields_2, #gform_fields_5, #gform_fields_6 {
    row-gap: 15px;
}
#gform_fields_7 {
    row-gap: 15px;
}
#gform_1 textarea {
    height: 160px; /* Adjust the height */
}
#gform_2 textarea {
    height: 60px; /* Adjust the height */
}
#gform_5 textarea {
    height: 60px; /* Adjust the height */
}
#gform_submit_button_1, #gform_submit_button_7{
  	background: var(--secondary);
	color: var(--white);
	padding: 10px 40px;
	font-size: 22px;
	font-weight: 500;
	border-radius: 5px;
  	font-family: var(--secondary-font);
	text-transform: uppercase;
	transition: 0.3s;
	border: 2px solid var(--secondary);
	text-transform: uppercase;
	margin:auto;
}
#gform_submit_button_1:hover,input[type="submit"]:hover{
	background: var(--primary);
	color: var(--white);
	border: 2px solid var(--white);
}
#gform_submit_button_7:hover,input[type="submit"]:hover{
	background: var(--primary);
	color: var(--white);
	border: 2px solid var(--white);
}
#gform_submit_button_2, #gform_submit_button_5{
  	background: var(--secondary);
	color: var(--white);
	padding: 10px 40px;
	font-size: 22px;
	font-weight: 500;
	border-radius: 5px;
  	font-family: var(--secondary-font);
	text-transform: uppercase;
	transition: 0.3s;
	border: 2px solid var(--secondary);
	text-transform: uppercase;
	
}
#gform_submit_button_2:hover,input[type="submit"]:hover{
	background: var(--primary);
	color: var(--white);
	border: 2px solid var(--white);
}

#gform_1_validation_container, #gform_2_validation_container{display:none;}
p.gform_description {
    margin-bottom: 0;
}
h2.gform_title {
    color: #cb2b29;
    font-size: 34px;
    text-align: center;
    font-family: "Oswald", serif;
    font-weight: 500;
}
#gform_confirmation_message_1{
    font-size: 25px;
    text-align: center;
}
#gform_confirmation_message_2 {
    font-size: 25px;
    text-align: center;
	color:#cb2b29;
}
/****Gravity Form CSS Ends Here******/