/* USEFULL */

body {
    font-family: 'Playfair Display', serif;
}

body *{
    box-sizing:border-box;
}
.hide {
    display:none;
}
.clearfix {
    content:"";
    clear:both;
    display:table;
}

.green {
    background-color:#1abc9c;

}

.purple {
    background-color: #666099;
    color:white;
    padding-top:50px;
}

.green-icon {
    color:#1abc9c;
}

.container {
    position:relative;
    width:100%;
    margin:0 auto;
    max-width:1100px;
    padding:5px;
    padding-bottom:10px;

}



.col-md-4 {
    width:33.3333%;
    display:inline-block;
    box-sizing: border-box;
    padding:0;
    margin:0;
    float:left;
}

.col-md-12 {
    text-align:center;
    width:100%;
    margin:0 auto;
}


.text-center {
    text-align:center;
}
/* USEFULL END */


/* HEADER AND MENU */
nav {
    font-family: 'Roboto Condensed', sans-serif;
    background-color:white;
    position:relative;
    position: fixed;
    top: 0;
    width: 100%;
    transition: top 0.5s; /* Transition effect when sliding down (and up) */
    -moz-box-shadow:    0 3px 50px 10px white;
    -webkit-box-shadow: 0 3px 50px 10px white;
    box-shadow:         0 3px 25px 5px black;
}

.menu-container {
    z-index:2;
    position:relative;

}


.menu-list {
    float:right;
}
.menu-list li {
    display:inline-block;
    margin-left:10px;
    margin-bottom:12.5px;
}
.menu-list li a{
    display:block;
    color:white;
    line-height:100%;
    height:100%;
    text-decoration:none;
    font-size:20px;
    padding:25px 12.5px;
}

.menu-list li a:hover {
    color:white;
    text-decoration:none;
}

.menu-list li:hover {
    background-color: rgba(0, 0, 0, 0.2);
}



/*
/
/
/
*/
.logo {
    height:51px;
    width:auto;
}

.topnav {
  overflow: hidden;
  max-width:1100px;
  margin:0 auto;
}

.topnav a {
  float: left;
  display: block;
  color: #212323;
  text-align: center;
  padding: 22px 16px;
  text-decoration: none;
  font-size: 20px;    
}
.topnav .logoLink {
    padding:10px 16px 6px 0;
}
.active-link {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 20px;    
    border: none;
    outline: none;
    color: white;
    padding: 22px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.menu-list .dropdown .activeBtn
{
  background-color: white;
  color: #ff5951;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #212323;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #c4c6c6;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  color: #ff5951;
}

.dropdown-content a:hover {
  color: #ff5951;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 768px) {
  .topnav .menu-list a, .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
    font-size: 20px;    

  }
  .menu-list {
      float:none;
  }
}

@media screen and (max-width: 768px) {
  .topnav.responsive {
    position: relative;
      
  }
  
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/**/

/* HEADER AND MENU END */



/* INTRO SECTION */

.intro-section {
    /* The image used */
    background-image: url("../img/background-image_nature_1.jpg");

    /* Set a specific height */
    height: 850px;
    min-height:550px;

    /* Create the parallax scrolling effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top:2px solid #c2a035;
    border-bottom:2px solid #c2a035;
}


.intro-text-container {
    padding-top:350px;
    max-width:1100px;
    text-align:center;
    margin:0 auto;
    margin-bottom:10px;
    padding:350px 10px 30px 10px;
}

.intro-text-container-box {
    background-color:rgba(255, 255, 255, 0.85);
    width:80%;
    padding-top:50px;
    padding-bottom:50px;
    margin:0 auto;
    border:2px solid #c2a035;
}

.button-container {
    margin-top:50px;
    margin-bottom:50px;
}
.action-button {
    text-decoration:none;
    color:white;
    box-size:border-box;

}

.action-button a:hover{
    text-decoration:none;
    
}

.action-button {
    margin-top:15px;
    margin-bottom:15px;
    border:none;
    display:inline-block;
    border-radius:70px;
   background: #c2a035;     
    padding:15px 50px;
    color:white;
    
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: initial;
 
    box-shadow: 0px 0px 0 13px rgba(194, 160, 53 ,0.4);
    -webkit-box-shadow: 0px 0px 0 13px rgba(194, 160, 53 ,0.4);
    -moz-box-shadow: 0px 0px 0 13px rgba(194, 160, 53 ,0.4);
    -o-box-shadow: 0px 0px 0 13px rgba(194, 160, 53 ,0.4);
}

.action-button:hover {
   height: 100%; content: ""; 
   -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: initial;
    background-color:#02bdc3;
    

    box-shadow: 0px 0px 0 13px rgba(2,189,195,0.4);
    -webkit-box-shadow: 0px 0px 0 13px rgba(2,189,195,0.4);
    -moz-box-shadow: 0px 0px 0 13px rgba(2,189,195,0.4);
    -o-box-shadow: 0px 0px 0 13px rgba(2,189,195,0.4);
}

.action-button:hover  { opacity: 1; cursor: pointer;}




/* INTRO SECTION END*/


/* MOTIVATION QUOTE */

.motivation-quote {
    min-height:300px;
}

.motivation-quote-text{
    text-align:center;
    padding-top:50px;
    margin-top:0;
    color:white;
}

.form-control {
    width:100%;
    padding:15px 25px 13px 25px;
    box-sizing: border-box;
}
.google_form {
    font-size:0;
}

.google-form-container {
    width:80%;
    max-width:1100px;
    margin:0 auto;
}

.form-group {
    padding:10px;
    text-align:center;
}

/* MOTIVATION QUOTE END */

/* GREETING MESSAGE SECTION */

.greeting-message {
    width:100%;
    max-width:1100px;
    margin:0 auto;
    padding-top:50px;
}

.greeting-message-image {
    display:inline-block;
    box-sizing: border-box;
    padding:0;
    margin:0;
    float:right;
    width:33.3333%;
         overflow:hidden;

}

.greeting-message-image img {
    width:100%;
    overflow:hidden;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.greeting-message-image img:hover{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    cursor:pointer;
    overflow:hidden;
    
}

.greeting-message-text {
    width:66.6666%;
    display:inline-block;
    box-sizing: border-box;
    padding:0 37.5px 50px 0;
    margin:0;
    float:left;
}
.greeting-message-text p {
    font-size:16px;
    margin:0 0 12.5px;
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 23px;
    letter-spacing: 0;
    color: #424242;
}


.header{
    text-align:center;
    color: #1abc9c;
    font-family: "Playfair Display",Georgia,serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
    text-transform: none;
}

/* GREETING MESSAGE SECTION*/



/* PROGRAM SECTION */
.program {

    padding:50px 5px;
}
.what-you-get-list {
    list-style:none;
}

.what-you-get-list-container {
    width:50%;
    box-sizing: border-box;
    padding:0;
    margin:0;
    vertical-align:top;
    display:inline-block;

}
.white-block {
    background-color:white;
    padding:25px;
    margin-right:10px;
}

.post-white-block {
    background-color:white;
    padding:25px;
    width:100%;
}


.what-you-get-list-header {
    text-align:left;
    color: #1abc9c;
    font-family: "Playfair Display",Georgia,serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
    text-transform: none;
}
.what-you-get-list-title {
        font-size: 22px;

}

.drop-description {
    margin-top:50px;
    margin-left:-25px;
    border:5px solid #666099;
}

li {
    font-size:16px;
    margin:0 0 12.5px;
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 23px;
    letter-spacing: 0;
    color: #212323;
}
/* PROGRAM SECTION END*/













/* POST TEXT*/


.post-text {
    font-size: 16px;
    margin: 0 0 12.5px;
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 23px;
    letter-spacing: 0;
    color: #424242;
    padding:5px;
}

.post-text {
}

.post-text .action-button {
    display:block;
    text-align:center;
    margin:0 auto;
}

.bigger-text {
    font-size:20px;
}



.post-video-container {
    width:100%;
    box-sizing: border-box;
    padding:0;
    margin:0;
    vertical-align:top;
    display:inline-block;
    text-align:center;
}

.post-video-header {
    color: #1abc9c;
    font-family: "Playfair Display",Georgia,serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
    text-transform: none;
}

.post-video-iframe {
    height:100%;
    height:650px;
    max-height:650px;
    min-height:310px;
    margin:20px;
    border:2px solid #c2a035;
}

.video-description-header {
    color: white;
    text-transform: none;    
    font-size:16px;
    margin:0 0 12.5px;
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 23px;
    letter-spacing: 0;
}

/* POST TEXT*/


/*    TABLE SECTION    */

.timing {
    width:100%;
    padding-top:0;
    padding-bottom:50px;
}

.calendar-container {
    vertical-align:top;
    width:65%;
    display:inline-block;
}

.calendar-description {
    vertical-align:top;
    margin-top:5px;
    width:35%;
    display:inline-block;
    height:100%;
}

.calendar-description .white-block {
    margin-left:5px;
}

.calendar-description p {
    font-size:16px;
    margin:0 0 12.5px;
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 23px;
    letter-spacing: 0;
    color: #424242;
}


* {box-sizing: border-box;}
ul {list-style-type: none;}
body {font-family: Verdana, sans-serif;}

.month {
    padding: 10px 25px;
    width: 100%;
    background: #1abc9c;
    text-align: center;
    margin-top:5px;
}

.month ul {
    margin: 0;
    padding: 0;
}

.month ul li {
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.month .prev {
    float: left;
    padding-top: 10px;
}

.month .next {
    float: right;
    padding-top: 10px;
}

.weekdays {
    margin: 0;
    padding: 10px 0;
    background-color: #ddd;
}

.weekdays li {
    display: inline-block;
    width: 13.6%;
    color: #666;
    text-align: center;
    font-size:16px;
    font-weight:bold;
}

.days {
    padding: 10px 0;
    background: #eee;
    margin: 0;

}

.days li {
    list-style-type: none;
    display: inline-block;
    width: 13.6%;
    text-align: center;
    margin-bottom: 5px;
    font-size:16px;
    color: #777;
    margin-bottom:10px;
    overflow:hidden;

}

.days li .active {
    padding: 5px;
    background: #1abc9c;
    color: white !important;
}


.lessonAuthor {
    display:block;
    font-style:italic;
    text-decoration:none;
    color:#1abc9c;
}



/*    TABLE SECTION    */

/**/

.post-audio-container {
    width:100%;
    box-sizing: border-box;
    padding:2px 5px 5px;
    margin:5px 0 10px;
    vertical-align:top;
    display:inline-block;
    text-align:center;
}


.audio-section-header {
    text-align:center;
    color: #1abc9c;
    font-family: "Playfair Display",Georgia,serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
    text-transform: capitalize;
}
.audio-header {
    color: #1abc9c;
    font-family: "Playfair Display",Georgia,serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    text-transform: none;
    text-align:left;
    margin-top:5px;
    margin-bottom:5px;
    text-indent:11px;
}


.flot-left {
    float:left;
}

.float-right {
    float:right;
}


/**/



/* FOOTER */
footer {
    background-color: #1a1a1a;
    color:#f5f7f8;
    font-size: 15px;
    width:100%;
}

.footer-bottom {
    background-color: #1a1a1a;
    width:100%;
}
footer *{
    font-size: 15px;
}

.black-color-font {
        color: black!important;
}

footer a {
    text-decoration:none;
    color:#f5f7f8;
}
.pull-left {
    float:left;
}
.pull-left p {
    color:#f5f7f8;
}

.pull-right {
    float:right;
}

.pull-right ul {
    list-style:none;
}
.pull-right ul li{
    display:inline-block;
    text-transform:uppercase;
    padding-right:12.5px;
}

.contacts {
    width:100%;
    padding-top:5px;
    padding-bottom:5px;
}

.contacts .row {
    max-width:1100px;
}
.white-font {
    margin-top:10px;
    color:white;
    text-align:center;
}

.row {
    margin:0 auto;
}

.footer-contacts-list {
    text-align:left;
    list-style:none;
    display:inline-block;
    margin:0 auto;
}


.big-icon {
    font-size:20px;
}


.email-icon:before {
    font-family: Font Awesome\ 5 Free;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: "\f0e0";
}

.mobile-icon:before  {  
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: "\f3cd";
}

.whatsapp-icon:before  {
    font-family: Font Awesome\ 5 Brands;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: "\f232";    
}

/* FOOTER END*/



/* PAGING*/
.paging {
    color:black;
    margin-top:20px;
    text-align:center;
}


.element {
    padding-top:70px;
    margin-bottom:20px;

}

.disabled {
    color:grey;
}

.current {
        font-weight:bolder;

}

.current, .pageNumber, .prev, .next {
    color:#666099;
    padding:5px;
    text-decoration:none;

}

.current:hover, .pageNumber:hover, .prev:hover, .next:hover {
    color:#622099;

}


/* PAGING END*/



@media only screen and (max-width: 768px) {
    .container {
        width:100%;
        padding:5px;
    }
    
    .post-text p {
        padding-left:5px;
    }
    
    .intro-text-container-box {
        width:100%;
        padding:5px;  
    }
    
    .action-button {
        padding:15px 20px!important;
        box-size:border-box!important;
    
    }
    
    .post-video-iframe {
    height:350px;
}



}
.text-left-side {
    text-align:left;
}

.post-image-one-center {
    width:100%;
    max-width:600px;
    display:inline-block;
    text-align:center;
}






























/* VITA */

section {
    padding-top:50px;
    overflow:hidden;
}

.text-indent-zero {
    text-indent:0;

}
section p {
    color:#212323;
}

p {
    font-size:16px;
    margin:0 0 12.5px;
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 23px;
    letter-spacing: 0;
    color:#212323;
}

.bold-p {
    font-weight:bolder;
}

.full-width {
    width:100%;
}

ul {
    padding-left:15px;
}


.row3 {
    width:33.3333%;
    box-sizing:border-box;
    display:inline-block;
    vertical-align:top;

}
.row6 {
    width:50%;
    box-sizing:border-box;
    display:inline-block;
    vertical-align:top;

}

.row1-3 {
    width:66.6666%;
    box-sizing:border-box;
    display:inline-block;
    vertical-align:top;    
}

.general-h2 {
    padding-top:10px;
    padding-bottom:5px;
    font-size:28px;
    margin-top:5px;
    margin-bottom:5px;
}

.font-zero {
    font-size:0;
}


.grey-footer {
    background-color:#d0d0d0;
}






.header-holder {
    position:relative;    
    margin-bottom:50px;
    margin-top:50px;
}

.header-holder:after {
    max-width:1100px;
    min-height:70px;
    position:absolute;
    content:"";
    display:inline-block;
    background-color:#f0f0f0;
    width:100%;
    height:120%;
    z-index:-1;
    top: -5px;
    left: 0;
    border-bottom:2px solid #c2a035;
    overflow:hidden;
}


.header-holder:before {
    max-width:1100px;
    min-height:70px;
    position:absolute;
    content:"";
    display:inline-block;
    background-color:#d0d0d0;
    width:100%;
    height:100%;
    z-index:-1;
    top:-25px;
    left:-35px;
    overflow:hidden;
}

/* SECTION ONE */
.far {
    color:#c2a035;
    font-size:1.1em;
}
.fas {
    color:#c2a035;
    font-size:1.1em;
}


.text-indent-big {   
    float: left;
    display: block;
    text-align: center;
    overflow: hidden;
    font-size: 1.8em;
    padding: 0;
    margin: 0.15em 0.35em 0 0;
    width: 1.65em;
    height: 1.65em;
    line-height: 1.5em;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    color:white;
}

.gold-background {
    background-color: #c2a035;
}

.bigger-text-p {
    font-size:1.1em;
}
/* SECTION ONE END */

/* SECTION TWO */

.separator-container {
    background-repeat: no-repeat;
    background-position: center center;
    padding-top:50px;
    padding-bottom:50px;
    background-image: url("../img/separator-big.png");
    height:9px;
    width:370px;
    margin:0 auto;
    
}

.centered-header {
    text-align:center;
    color:#212323;
}
/* SECTION TWO END*/


/* SECTION SERVICE */
.service-box {
    position:relative;
    text-align:center;
    padding-right:50px;
    font-size:18px;
}
.right-arrow-service:after {
    content: '';
    background: url(../img/right-arrow-service.png) center center no-repeat;
    display: inline-block;
    height: 22px;
    width: 12px;
    position: absolute;
    top: 37%;
    right: 20px;
}


.service-header {
    font-size:50px;
    color:#02bdc3;
    margin-top:5px;
    margin-bottom:5px;
}

.service-title {
    
}

.service-describtion {
    
}

/* SECTION SERVICE */





/* SECTION PRICE */
.price-box {
    padding:15px;
    min-width:350px;

}

.price-box-name-box {
    background-color:#808080;
    text-align:center;
    padding:20px 10px;
    color:white;
    margin:0;
    min-height:120px;
    box-sizing:border-box;
    position:relative;

}
.price-box-name {
    font-size:20px;
    color:white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-51%, -50%);   
    min-width:320px;
}

.price-box-date {
    font-size:18px;
    background-color:#f0f0f0;
    text-align:center;
    padding:20px 10px;
    color:black;   
    margin:0;
    
}


.price-box-price {
    font-size:18px;
    background-color:#f0f0f0;
    text-align:center;
    padding:0 10px 20px;
    color:black;   
    margin:0;
}

.price-box-button {
    display:block;
    background-color:#f0f0f0;
    font-size:24px;
    text-align:center;
    padding:0 10px 20px 10px;
    color:black;   
    margin:0;    
    text-decoration:none;
}
.price-box-button .action-button {
    font-size:15px;
    padding:15px 25px;
}
.price-list {
    padding-left:0;
}

.pink {
    color:#ff5951;
}

/* SECTION PRICE END */




/* SECTION TRAINER*/
.trainer-photo-container {
    margin: 0;
    outline: 1px solid #CCC;
    background: #A00;
    color: #FFF;
    height:auto;
    overflow:auto;    
    width:33.33333%;
}
.trainer-photo-inner-container {
    float:left;
    height:auto;    
}
.trainer-photo {
    border-radius:5%;

    margin:0 auto;
}



.trainer-photo {
    display:block;
    height:100%;
    border-radius:5%;
    max-height:450px;
    margin:0 auto;
}



.trainer-photo-big {
    display:block;
    width:100%;
    height:auto;
    border-radius:5%;
    margin:0 auto;
}

.trainer-name {
    font-size:26px;
    text-align:center;
}

.trainer-title {
    margin-top:0;
    font-size:20px;
}

.trainer-title-2 {
    margin-top:0;
    font-size:18px;
}

.trainer-description-block {
    padding-left:15px;
    padding-right:15px;
}

blockquote {
    background-color:rgba(194,160,53, 0.4);
    padding:30px;
    color:white;
    margin-left:0;
}

.quote p {
    color:black;
}

.quote .fas {
    color:white;
    padding-right:10px;
}


.ul-trainer {
list-style: none; 
padding: 0;  
margin: 0;    
}


.li-trainer {
    padding-left: -0.5em; 
    text-indent: -0.2em;
    margin-bottom:2px;
}

.li-trainer::before {
    content: "• ";
    color: white;
    font-size:1.2em;
}

.Ekaretina-trainer {
    margin-bottom:15px;
}
/* SECTION TRAINER END*/



e {
    width:100%;
    max-width:1100px;
    padding:10px;
}



.google-map-holder {
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.google-map-holder iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    max-width:1100px;
    width:100%;
    position:absolute;
}


.adress-text {
    text-align:center;
    font-size:18px
}







.form {
    position:relative;
    /* The image used */
    background-image: url("../img/call_us.jpg");

    /* Set a specific height */
    min-height:350px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;    
    z-index:1;
}

.overflow-form-color {
    position:absolute;
    content:"";
    display:inline-block;
    background-color:#c2a035;
    width:100%;
    height:120%;
    top: 0;
    left: 0;
    border-bottom:2px solid #c2a035;
    overflow:hidden;    
    opacity:0.4;
    z-index:-1;
}






.form-control {
    text-decoration:none;
    color:white;
    box-size:border-box;

}

.form-control a:hover{
    text-decoration:none;
    
}

.form-control {
    outline:none;
    width:90%;
    margin-top:15px;
    margin-bottom:15px;
    border:none;
    display:inline-block;
    border-radius:70px;
    background: white;     
    padding:15px 50px;
    color:black;
    
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: initial;
 
    box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
    -moz-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
    -o-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
}

.form-control:hover {
    content: ""; 
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: initial;
    background-color:white;
    

    box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.6);
    -moz-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.6);
}

.form-control:hover  { opacity: 1;}









.form-text-container {
    max-width:1100px;
    text-align:center;
    margin:0 auto;
    padding:10px 10px 30px 10px;
}

.form-text-container-box {
    background-color:rgba(255, 255, 255, 0.85);
    width:80%;
    padding:20px 10px 10px;
    margin:0 auto;
    border:2px solid #c2a035;
}










.important-note {
    padding-top:0;
    display:block;
    font-style:italic;
    text-decoration:none;
    font-weight:600;
}


.date-of-training {
    text-align:right;
    margin:10px;
}

.icon-date-of-training {
    font-size:250%;
}

.text-date-of-training {
    font-size:150%;
}













































.action-button-white {
    text-decoration:none;
    color:black;
    box-size:border-box;

}

.action-button-white a:hover{
    text-decoration:none;
    
}

.action-button-white {
    margin-top:15px;
    margin-bottom:15px;
    border:none;
    display:inline-block;
    border-radius:70px;
    background: white;     
    padding:15px 50px;
    color:black;
    
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: initial;
 
    box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
    -moz-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
    -o-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
}

.action-button-white:hover {
    content: ""; 
   -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: initial;
    background-color:white;
    

    box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.6);
    -moz-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.6);
}

.action-button-white:hover  { opacity: 1; cursor: pointer;}






.special_offer_button {
    background-color:#ff5951;
   box-shadow: 0px 0px 0 13px rgba(255,89,81,0.4);
   -webkit-box-shadow: 0px 0px 0 13px rgba(255,89,81,0.4);
   -moz-box-shadow: 0px 0px 0 13px rgba(255,89,81,0.4);
   -o-box-shadow: 0px 0px 0 13px rgba(255,89,81,0.4)    
}




.checkBox_container p {
    display:inline-block;
    padding-right:10px;
    margin-bottom:0;
}

.checkBox_container {
    margin-left:20px;
    outline:none;
    margin-top:15px;
    margin-bottom:15px;
    border:none;
    display:inline-block;
    border-radius:70px;
    background: white;     
    padding:15px 50px;
    color:black;
    
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: initial;
 
    box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
    -moz-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
    -o-box-shadow: 0px 0px 0 13px rgba(255, 255, 255, 0.4);
    
}



/* CALL TO ACTION SECTION */

.call-to-action-background {
    background-image: url("../img/parallax4.jpg");

}
.call-to-action-background-1 {
    background-image: url("../img/parallax4.jpg");

}


.call-to-action-background-3 {
    background-image: url("../img/parallax5.jpg");

}

.call-to-action-background-4 {
    background-image: url("../img/parallax6.jpg");

}


/* CALL TO ACTION SECTION END*/






/* Add media queries for smaller screens */
@media screen and (max-width:1000px) {
    .calendar-container {
    vertical-align:top;
    width:100%;
    display:block;
}

.calendar-description {
    vertical-align:top;
    margin-top:5px;
    width:100%;
    display:block;
    height:100%;

}

.calendar-description .white-block {
    margin-left:0;
    margin-right:0;
}



.lessonAuthor {
    display:block;
    font-style:italic;
}
    
}



@media screen and (max-width:1110px) {
.topnav .logoLink {
    padding:10px 16px 6px 10px;
}

}

@media screen and (max-width:1060px) {
    .section-price .row3 {
        width:50%;
        margin:0 auto;
    }
    .section-price .row6 {
        width:50%;
        margin:0 auto;
    }
}

@media screen and (max-width:950px) {
    .col-md-4 {
        width:100%;
        margin:0 auto;
    }

}


@media screen and (max-width:880px) {
    .trainer .container .row3, .row6, .row1-3{
        width:100%;
        
    }
    blockquote {
        margin-right:0;
        
    }
}


@media screen and (max-width:720px) {
    .weekdays li, .days li {width: 14.2857%;}
    .row3, .row6 {
        width:100%;
    }
    .section-price .row3,.section-price .row6 {
        width:100%;
        margin:0 auto;
    }
}

@media screen and (max-width:600px) {
    .row3,.row6 {
        width:100%;
    }
    
    .right-arrow-service:after {
        content:none;
    }
    .service-box {
        padding:0;
    }
}


@media screen and (max-width: 420px) {
    .weekdays li, .days li {width: 14.2857%;}
    .days li .active {padding: 10px; line-height:36px;}
    .form-text-container-box {
        width:auto;
    }
}

@media screen and (max-width: 420px) {
    .weekdays li, .days li {width: 14.2857%;}
    .days li .active {padding: 10px; line-height:36px;}
}

@media screen and (max-width: 290px) {
    .weekdays li, .days li {width: 14.2857%;}
}


/* GOOGLE FORMS */
.OK_message {
	display:none;
	padding:25px;
	border-radius:10px;
	text-align:center;
	background-color:white;
	box-shadow: 0px 0px 0 13px rgba(255, 255, 255 ,0.4);
    -webkit-box-shadow: 0px 0px 0 13px rgba(255, 255, 255 ,0.4);
    -moz-box-shadow: 0px 0px 0 13px rgba(255, 255, 255 ,0.4);
    -o-box-shadow: 0px 0px 0 13px rgba(255, 255, 255 ,0.4);

}
/* GOOGLE FORMS END*/



.hidden_temp {
    display:none;
}


/* TIME ICON*/


time.icon
{
  font-size: 1.2em; /* change icon size */
  display: block;
  position: relative;
  width: 8em;
  height: 7em;
  background-color: #fff;
  margin: 2em auto;
  border-radius: 0.6em;
  box-shadow: 0 1px 0 #bdbdbd, 0 2px 0 #fff, 0 3px 0 #bdbdbd, 0 4px 0 #fff, 0 5px 0 #bdbdbd, 0 0 0 1px #bdbdbd;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: rotate(0deg) skewY(0deg);
  -webkit-transform-origin: 50% 10%;
  transform-origin: 50% 10%;
  z-index:-1;
}

time.icon *
{
  display: block;
  width: 100%;
  font-size: 1em;
  font-weight: bold;
  font-style: normal;
  text-align: center;
}

time.icon strong
{
  position: absolute;
  top: 0;
  padding: 0.4em 0;
  color: #fff;
  background-color: #c2a035;
  border-bottom: 1px dashed #826817;
  box-shadow: 0 2px 0 #9b7d20;
}

time.icon em
{
  position: absolute;
  bottom: 0.3em;
  color: #c2a035;
}

time.icon span
{
  width: 100%;
  font-size: 2.8em;
  letter-spacing: -0.05em;
  padding-top: 0.8em;
  color: #c2a035;
}

time.icon:hover, time.icon:focus
{
  -webkit-animation: swing 0.6s ease-out;
  animation: swing 0.6s ease-out;
}

@-webkit-keyframes swing {
  0%   { -webkit-transform: rotate(0deg)  skewY(0deg); }
  20%  { -webkit-transform: rotate(12deg) skewY(4deg); }
  60%  { -webkit-transform: rotate(-9deg) skewY(-3deg); }
  80%  { -webkit-transform: rotate(6deg)  skewY(-2deg); }
  100% { -webkit-transform: rotate(0deg)  skewY(0deg); }
}

@keyframes swing {
  0%   { transform: rotate(0deg)  skewY(0deg); }
  20%  { transform: rotate(12deg) skewY(4deg); }
  60%  { transform: rotate(-9deg) skewY(-3deg); }
  80%  { transform: rotate(6deg)  skewY(-2deg); }
  100% { transform: rotate(0deg)  skewY(0deg); }
}


/* TIME ICON END*/
