/* Fancy css */

div.fancy-select {
    position: relative;
    font-size: 14px;
    margin-bottom: 0px;
    color: #fff;
}

div.fancy-select.disabled {
    opacity: 0.5;
}

div.fancy-select select:focus + div.trigger.open {
    box-shadow: none;
}
div.fancy-select div.trigger {

    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    padding: 6px 30px 6px 9px;
    min-height: 33px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    background: #fff;
    border: 1px solid #53a7c7;
    color: #404d5b;
    width: 100%;
    transition: all 240ms ease-out;
    -webkit-transition: all 240ms ease-out;
    -moz-transition: all 240ms ease-out;
    -ms-transition: all 240ms ease-out;
    -o-transition: all 240ms ease-out;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

div.fancy-select div.trigger:after {
    content: "";
    position: absolute;
    top: 15px;
    right: 10px;
    display: inline-block;
    background:  url("../images/icons/select-icon.png") no-repeat left top;
    height: 6px;
    width: 9px;
}

div.fancy-select div.trigger.open {
}
div.fancy-select div.trigger.open:after {
    background-position: bottom left;
}

div.fancy-select ul.options {
    list-style: none;
    margin: 0!important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    z-index: 50;
    max-height: 200px;
    overflow: auto;
    background-color: #edebeb;
    font-size: 12px;
    padding: 0!important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

div.fancy-select ul.options.open {
    visibility: visible;
    top: 100%;
    opacity: 1;
    margin-top: -1px!important;
    /* have to use a non-visibility transition to prevent this iOS issue (bug?): */
    /*http://stackoverflow.com/questions/10736478/css-animation-visibility-visible-works-on-chrome-and-safari-but-not-on-ios*/
    transition: opacity 300ms ease-out, top 300ms ease-out;
    -webkit-transition: opacity 300ms ease-out, top 300ms ease-out;
    -moz-transition: opacity 300ms ease-out, top 300ms ease-out;
    -ms-transition: opacity 300ms ease-out, top 300ms ease-out;
    -o-transition: opacity 300ms ease-out, top 300ms ease-out;
}

div.fancy-select ul.options.overflowing {
    top: auto;
    bottom: 100%;
    margin: 0 0 -1px!important;
    transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
    -webkit-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
    -moz-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
    -ms-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
    -o-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
}

div.fancy-select ul.options.overflowing.open {
    top: auto;
    bottom: 100%;
    margin: 0 0 -1px!important;
    transition: opacity 300ms ease-out, bottom 300ms ease-out;
    -webkit-transition: opacity 300ms ease-out, bottom 300ms ease-out;
    -moz-transition: opacity 300ms ease-out, bottom 300ms ease-out;
    -ms-transition: opacity 300ms ease-out, bottom 300ms ease-out;
    -o-transition: opacity 300ms ease-out, bottom 300ms ease-out;
}
div.fancy-select ul.options li {
    padding: 5px 30px 5px 9px;
    color: #3a414f;
    cursor: pointer;
    white-space: nowrap;
    transition: all 150ms ease-out;
    -webkit-transition: all 150ms ease-out;
    -moz-transition: all 150ms ease-out;
    -ms-transition: all 150ms ease-out;
    -o-transition: all 150ms ease-out;
    margin: 0!important;
    position: relative;
}
div.fancy-select ul.options li:before {
    display: none;
}
div.fancy-select ul.options li.hover {
    background-color: #b3b3b3;
    color: #fff;
}

/* Custom CSS */
.panel-title {
    font-size: 18px;
}
.panel-title a.collapsed {
    background: url(../images/icons/icon-plus.png) 0 3px no-repeat;
    padding-left: 25px;
}
.panel-title a {
    text-decoration: none;
    display: block;
    background: url(../images/icons/icon-minus.png) 0 3px no-repeat;
    padding-left: 25px;
}
/* MAIN CSS */
@font-face {
    font-family: 'Glyphicons Halflings';

    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.new-style ::-webkit-input-placeholder {color:#404d5b;}
.new-style ::-moz-placeholder          {color:#404d5b;}/* Firefox 19+ */
.new-style :-moz-placeholder           {color:#404d5b;}/* Firefox 18- */
.new-style :-ms-input-placeholder      {color:#404d5b;}

.new-style section {
    padding: 30px 0;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.new-style h2 {
    color: #3a414f;
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 29px;
}
.new-style h2 strong {
    color: #71b658;
    font-weight: 600;
}
.new-style h3 {
    color: #59bfe3;
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    margin: 0 0 14px;
}
.new-style section p {
    font-size: 15px;
    line-height: 135%;
}
.new-style .style-1.gray-section p {
    line-height: 180%;
}
.new-style section p strong, .new-style section p a {
    color: #404d5b;
    font-weight: 600;
}
.new-style section p a:hover {
    text-decoration: underline;
}
.new-style section ul {
    padding: 0;
    list-style: none;
}
.new-style section ul li {
    position: relative;
    padding-left: 15px;
    margin: 0;
}
.new-style section ul li:before {
    background: #71b658;
    content: '';
    left: 0;
    top: 14px;
    height: 4px;
    width: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
}
.new-style section ul li a, .new-style .style-3 ul li {
    font-size: 16px;
    font-weight: 600;
    color: #3a414f;
}

/* Header */

.new-style .header_container {
  background-color: #59bfe3;
  background-color: #398065; /* carlos */
    padding: 10px 0 5px;
}
.new-style .call-us p {
    font-size: 18px;
    font-weight: 300;
    margin-top: 21px;
    padding: 5px 2.1% 5px 0;
    line-height: 1.55em;
    text-align: right;
}
.new-style .call-us p a {
    color: #fbf133;
    font-weight: 300;
}
.new-style .call-us p a strong {
    font-weight: 600;
}
.new-style .header_container .container {
    max-width: 1052px;
}

/* End Header */
/* Content */

.new-style .page-content-container .container {
    padding: 0 5px;
    max-width: 1048px;
}
.new-style .container {
    max-width: 1028px;
    width: 100%;
}
.gray-section {
    background-color: #edebeb;
}
.light-gray-section {
    background-color: #efeff0;
}
.fix-container {
    position: relative;
    min-height: 800px;
}
.fix-container .content-bar {
    width: 53%;
}

/* Section 1 */

.new-style .style-1 {
    padding: 57px 0 60px;
}

/* End Section 1 */
/* Section 2 */

.new-style .style-2 {
    padding: 160px 0 41px;
}
.new-style .style-2 .hidden-xs h2 {
    background:  url("../images/header-bg.png") no-repeat right center;
    padding: 0 46px 0 0;

}
.new-style .style-2 h2 {
    line-height: 104%;
}
.new-style section.style-2 p {
    line-height: 1.7em;
}

/* End Section 2 */
/* Sidebar */

.new-style .form-page {
  background: #59bfe3;
  background: #13B09B;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 19px 19px 0 0 rgba(50, 50, 50, 0.1);
    -moz-box-shadow:    19px 19px 0 0 rgba(50, 50, 50, 0.1);
    box-shadow:         19px 19px 0 0 rgba(50, 50, 50, 0.1);
    position: absolute;
    left: 50%;
    margin-left: 84px;
    padding: 0;
    top: -21px;
    min-height: 800px;
    width: 419px;
}
.new-style .header-form-page {
    background: #71b658;
    background: #398065;
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
    padding: 30px 36px 30px 36px;
    position: relative;
    text-align: center;
    z-index: 10;
}
.header-form-page img, .header-form-page p {
    display: inline-block;
    margin-bottom: 7px;
}
.new-style .header-form-page p {
    color: #fff;
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    line-height: 150%;
    margin: 0 0px;
}
.new-style .header-form-page p a {
    color: #fff;
    display: block;
    font-size: 24px;
}
.new-style .bottom-info {
    background:  url("../images/icons/bottom-icon.png") no-repeat left top;
    position: absolute;
    font-size: 18px;
    font-weight: 600;
    left: 50%;
    bottom: 0;
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    margin: 0 0 -26px -26px;
    /* -webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.5);
    -moz-box-shadow:    0px 0px 5px 0px rgba(50, 50, 50, 0.5);
    box-shadow:         0px 0px 5px 0px rgba(50, 50, 50, 0.5); */
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    border-radius: 52px;
}
.form-page-box {
    background: #F8F8F8;
    padding: 33px 20px 8px 36px;
    position: relative;
    z-index: 8;

}
.form-page-box:before {
    content: '';
    border: 17px solid transparent;
    border-top: 20px solid #fff;
    position: absolute;
    left: 50%;
    bottom: -26px;
    margin-left: -20px;
    border-width: 13px 17px;
    border-color: #F8F8F8 transparent transparent;
}
.new-style .form-page-box p {
    color: #3a414f;
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
}
.new-style .form-page-box p strong { font-weight: 600; }
.form-page-footer {
    padding: 37px 37px 16px;
}
.new-style .has-success .wpcf7-form-control {
    background-color: #e0efda;
    border-color: #71b658;
}
.new-style .has-success .wpcf7-form-control-feedback {
    color: #71b658;
    font-weight: 400;
}
.new-style .wpcf7-form-control {
    color: #404d5b;
    padding: 8px 9px;
    height: auto;
}
.new-style textarea.wpcf7-form-control {
    padding: 6px 9px;
    height: 96px;
    resize: none;
}
.new-style .wpcf7-form-control {
    border: 1px solid #53a7c7;
}
.new-style .form-group, .new-style .form-page select {
    margin-bottom: 10px;
}
.new-style .form-page select {
    height: auto;
}
.new-style .form-group {
    position: relative;
}
.new-style input[type="checkbox"] {
    height: 15px;
    float: left;
    opacity: 1;
    width: 15px;
    margin: 0;
    z-index: 3000;
}
.new-style input[type="checkbox"] + label {
    display: block;
    margin-left: 23px;
    position: relative;
    cursor: pointer;
    line-height: 100%;
    font-weight: 400;
}
.new-style .form-page input[type="checkbox"] + label {
    color: #fff;
    font-size: 14px;
    padding-bottom: 10px;
    margin-bottom: 0;
}
.new-style .form-page input[type="checkbox"] + label strong {
    font-weight: 700;
    color:#fff;
}
.new-style input[type="checkbox"] + label:before {
    background: #fff;
    border: 1px solid #53a7c7;
    content: '';
    color: #404d5b;
    position: absolute;
    left: -23px;
    top: 0;
    height: 15px;
    width: 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 11px;
    line-height: 15px;
    text-align: center;
}
.new-style input[type="checkbox"]:checked + label:before {
    content: "\e013";
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.new-style .captcha-box {
    margin-bottom: 15px;
}
.new-style .captcha-box img {
    max-width: 100%;
}
.new-style .wpcf7-form-control.wpcf7-submit {
    background: #fbf133;
    color: #525252;
    font-size: 28px;
    font-weight: 600;
    width: 100%;
    padding: 12px;
}
.new-style .wpcf7-form-control.wpcf7-submit:hover {
    color: #fff;
    background-color: #71b658;
}
.bottom-info-box {
    background:  url("../images/icons/castle-icon.png") no-repeat left top;
    padding: 0 0 0 30px;
    margin: 21px 55px 0;
    color: #fff;
    font-size: 80%;
}
.bottom-info-box P, .new-style section .bottom-info-box P {
    color: #ffffff;
    font-size: 13px;
    line-height: 120%;
}

/* End Sidebar */
/* Section 3 */

.new-style .style-3 {
    background-color: #eae9ea;
    padding: 0 0 34px;
}
.new-style .style-3 h2 {
    color: #71b658;
    font-size: 36px;
    line-height: 100%;
    font-weight: 600;
    margin: 0 0 26px;
}
.new-style .style-3 .container {
    position: relative;
}
.new-style .style-3 .container:before {
    content: '';
    left: 0;
    top: 0;
    border: 25px solid transparent;
    border-top: 30px solid #fff;
}
.new-style .style-3 p {
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    line-height: 155%;
}
.new-style .style-3 p strong {
    display: block;
    font-weight: 600;
}
.new-style .style-3 p a {
    color: #59bfe3;
}
.new-style .style-3 ul {
    margin-bottom: 29px;
}
.new-style .style-3 ul li a:hover {
    text-decoration: underline;
}

/* End Section 3 */
/* Section 4 */

.new-style .style-4 {
    padding: 44px 0;
    text-align: center;
}
.new-style .style-4 h2 {
    font-size: 36px;
    line-height: 117%;
    font-weight: 600;
}
.new-style .style-4 P {
    color: #75818e;
    line-height: 162%;
}
.new-style .style-4 .icons-nav ul li p {
    font-size: 14px;
    line-height: 130%;
}
.new-style .icons-nav {
    overflow: hidden;
    padding: 17px 0 18px;
}
.new-style .icons-nav ul {
    margin: 0 -20px;
}
.new-style .icons-nav ul li {
    padding: 20px;
    /* float: left; */
    vertical-align: top;
    text-align: center;
    border-left: 1px solid #dae2e6;
    width: 24%;
    display: inline-block;
}
.new-style .icons-nav ul li:first-child {
    border: none;
}
.new-style .icons-nav ul li:before {
    display: none;
}
.new-style .icons-nav img {
    margin: 0 auto 27px;
    display: block;
    max-width: 100%;
}
.new-style .icons-nav a {
    font-size: 14px;
    width: 300px;
    height: 190px;
    display: table-cell;
    vertical-align: middle;
}
.new-style .icons-nav a:hover {
    color: #71b658;
}
.new-style .icons-nav a strong {
    font-weight: 700;
}

/* End Section 4 */
/* Section 5 */

.new-style section.style-5 {
    padding-top: 54px;
    text-align: center;
}
.new-style section.style-5 p {
    font-size: 18px;
    line-height: 165%;
    margin-bottom: 29px;
}
.new-style section.style-5 .author-box p {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 15px;
}
.new-style section.style-5 .author-box p strong {
    color: #000000;
    font-style: normal;
    display: block;
    font-size: 18px;
}
.blue-section {
    background: #59bfe3;
}
.blue-section h1, .blue-section h2, .blue-section h3, .blue-section h4, .blue-section h5, .blue-section h6, .blue-section p {
    color: #fff;
}
.style-5 .container {
    background:  url("../images/bg/testimonials-bg.png") no-repeat center center;
    background-size: contain;
}

.style-5 h2 {
    font-size: 45px;
    font-weight: 600;
}
.slider-slick {
    position: relative;
    padding: 0 74px;
}
.slider-slick .slick-prev, .slider-slick .slick-next {
    background: none;
    border: none;
    overflow: hidden;
    height: 24px;
    width: 15px;
    position: absolute;
    text-indent: -9999px;
    top: 35px;
}
.slider-slick .slick-prev {
    left: 0;
}
.slider-slick .slick-next {
    right: 0;
}
.slider-slick .slick-prev:before, .slider-slick .slick-next:before {
    background-image: url("../images/icons/slider-icons.png");
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    top: 0;
    height: 24px;
    width: 15px;
}
.slider-slick .slick-prev:hover:before, .slider-slick .slick-next:hover:before {
    opacity: 0.7;
}
.slider-slick .slick-prev:before {
    left: 0;
    background-position: left top;
}
.slider-slick .slick-next:before {
    right: 0;
    background-position: right top;
}
.slider-slick p {
    font-style: italic;
}
.new-style section ul.slick-dots {
    padding: 15px 0 2px;
}
.new-style section ul.slick-dots li:before {
    display: none;
}
.new-style section ul.slick-dots li {
    display: inline-block;
    padding: 4px;
    line-height: 1px;
    margin: 0;
}
.new-style section ul.slick-dots li button {
    height: 11px;
    width: 11px;
    background: #fff;
    border: none;
    overflow: hidden;
    text-indent: -9999px;
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    border-radius: 11px;
    opacity: 0.21;
}
.new-style section ul.slick-dots li.slick-active button, .new-style section ul.slick-dots li button:hover {
    opacity: 1;
}

/* End Section 5 */
/* End Content */
/* Footer */

.new-style .footer_container_wrapper {
    background: #dfe0e3;
    border: none;
    padding: 59px 0 26px;
    position: relative;
}
.new-style .footer_container {
    border: none;
}
.new-style  .footer_container_wrapper P {
    color: #75818e;
    font-size: 14px;
    line-height: 1.7em;
}
.new-style  .footer_container_wrapper P a {
    color: #3a414f;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding: 0 12px 0 8px;
    margin: 13px auto;
}
.new-style  .footer_container_wrapper P a:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #b3b9c5;
}
.new-style  .footer_container_wrapper P a:last-child:before {
    display: none;
}
.new-style  .footer_container_wrapper P a:hover, .new-style  .footer_container_wrapper P a:focus {
    color: #3a414f;
    text-decoration: underline;
}
.new-style .back-top {
    background: url("../images/bg/back-bg.png") no-repeat left top;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0 0 54px;
    line-height: 43px;
    margin: 15px 15px 0;
    float: right;
    color: #000;
    position: absolute;
    right: 50px;
    top: 76px;
    opacity: 0.22;
    outline: none;
    text-decoration: none;
}
.new-style .back-top:hover {
    opacity: 1;
}

/* End Footer */
/* Page-2 */

.new-style .container {
     max-width: 1026px;
}
.new-style .page-style-2 .form-page-box p {
    text-transform: uppercase;
    font-size: 24px;
}
.new-style .page-style-2 h3 {
    margin: 0 0 17px;
}
.page-style-2 .style-1 h3 {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.new-style .page-style-2 .style-1 .container  {
     max-width: 840px;
}
.new-style .page-style-2 .style-1  {
    text-align: center;
    padding: 51px 0 60px;
}
.new-style .page-style-2 .form-page {
    position: relative;
    max-width: 791px;
    margin: -128px auto 0;
    width: 100%;
    left: auto;
    top: auto;
    bottom: -165px;
    min-height: 10px;
}
.new-style .page-style-2 .header-form-page p {
    font-size: 24px;
    font-weight: 400;
}
.new-style .page-style-2 .header-form-page p a {
    display: inline-block;
    font-weight: 600;
}
.new-style .page-style-2 .form-page-box {
    text-align: center;
}
.new-style .coll {
    float: left;
    text-align: left;
    padding: 11px;
    width: 50%;
}
.new-style .page-style-2 textarea.wpcf7-form-control {
    height: 87px;
    margin-bottom: 20px;
}
.new-style .page-style-2 .bottom-info-box {
    margin: 5px auto 0;
    max-width: 233px;
}
.new-style .page-style-2 div.fancy-select div.trigger {
    margin-bottom: 20px;
}
.new-style .page-style-2 .header-form-page {
    padding: 8px 25px;
}
.page-style-2 .form-page-footer {
    padding: 23px 25px 16px;
}
.new-style .page-style-2 .form-page input[type="checkbox"] + label {
    padding-bottom: 3px;
}
.new-style .page-style-2 .style-2 {
    text-align: center;
    padding: 171px 0 32px;
    padding: 0px; /* Carlos */
}
.new-style .page-style-2 section.style-2 p {
    color: #4e545b;
    font-size: 20px;
    line-height: 162%;
}
.new-style .page-style-2 .style-2 p strong, .new-style .page-style-2 .style-2 p a, .new-style .page-style-2 .form-page-box p strong {
    font-weight: 700;
}
.new-style .green-section {
    background-color: #71b658;
}
.new-style .green-section h1, .new-style .green-section h2, .new-style .green-section h3, .new-style .green-section h4, .new-style .green-section h5, .new-style .green-section h6, .new-style .green-section P {
    color: #fff;
    text-align: center;
}
.new-style .green-section p a {
    color: #fff;
}
.new-style .green-section ul li a, .new-style .green-section p strong {
    color: #212326;
}
.new-style .green-section ul li:before {
    background: url("../images/icons/marker.png") no-repeat left top;
    width: 8px;
    height: 12px;
    top: 4px;
}
.new-style .page-style-2 .style-3 .container:before {
    display: none;
}
.new-style .page-style-2 .style-3 {
    padding: 52px 0 35px;
 }
.new-style .page-style-2 .style-3 h2 {
    margin: 0 0 46px;
}
 .new-style .page-style-2 .style-3 ul {
    margin-bottom: 30px;
}
 .new-style .page-style-2 .style-3 ul li {
    color: #191a1b;
    line-height: 120%;
    margin-bottom: 10px;
}
.in-link {
    outline: none;
}
.new-style .page-style-2 .style-4 {
    padding: 51px 0 44px;
}

.new-style .page-style-2 .icons-nav ol {
    list-style-type: none;
    counter-reset:  item;
    margin: 0;
    padding: 0;
}
.new-style .page-style-2 .icons-nav ol li:before {
    content: '0'counter(item);
    counter-increment: item;
    font-weight: 700;
    font-size: 150px;
    color: #3a414f;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: -3px;
    line-height: 100%;
}
.new-style .page-style-2 .icons-nav ol li {
    padding: 65px 333px 28px 43px;
    margin: 0;
    position: relative;
    min-height: 300px;
    border-bottom: 1px solid #efeff0;
    margin-bottom: 50px;
}
.new-style .page-style-2 .icons-nav ol li:last-child {
    border: none;
    margin-bottom: 10px;
}
.new-style .page-style-2 .icons-nav ol li:nth-child(2n+1) {
    padding: 65px 0 28px 333px;
}
.new-style .page-style-2 .icons-nav ol li:nth-child(2n+1):before {
    left: 290px;
}
.new-style .page-style-2 .icons-nav a {
    display: inline-block;
    height: auto;
    width: auto;
}
.new-style .page-style-2 .icons-nav ol li img {
    right: 0px;
    position: absolute;
    top: 53px;
}
.new-style .page-style-2 .icons-nav ol li:nth-child(2n+1) img {
    right: auto;
    left: 0px;
}
.new-style .page-style-2 .icons-nav ol h3 {
    font-size: 24px;
    font-weight: 700;
    color: #3a414f;
    text-transform: uppercase;
    min-height: 71px;
}
.new-style .page-style-2 section .icons-nav p {
    font-size: 16px;
    color: #75818e;
    line-height: 135%;
    font-weight: 600;
    margin-bottom: 9px;
}
.new-style .page-style-2 section .icons-nav p strong {
    color: #59bfe3;
}
.new-style .page-style-2 .more {
    display: inline-block;
    padding: 0 0 0 23px;
    background:  url("../images/icons/more-icon.png") no-repeat left top;
    font-size: 14px;
    font-weight: 600;
    color: #59bfe3;
    line-height: 16px;
    text-transform: uppercase;
    margin: 15px 0;
}
.new-style .page-style-2 .more:hover {
    color: #59bfe3;
    text-decoration: underline;
}
.new-style .style-6 {
    padding: 0;
}
.new-style .style-6 .container {
    position: relative;
    padding-top: 28px;
}
.new-style .style-6 .container:before {
    content: '';
    left: 50%;
    margin-left: -15px;
    top: 0;
    border: 25px solid transparent;
    border-top: 30px solid #efeff0;
    position: absolute;

}
.new-style .page-style-2  section.style-5 {
    padding-top: 14px;
    padding-bottom: 0;
}
.page-style-2  .style-5 .container {
    background: none;
}
.new-style .testimonials-box.style-5 p {
    font-size: 14px;
    line-height: 185%;
    margin-bottom: 15px;
    color: #9fc8d6;
    font-style: normal;
}
.new-style .testimonials-box.style-5 h4 {
    font-size: 24px;
    font-weight: 600;
}
.new-style .testimonials-box.style-5 .author-box p {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 15px;
}
.new-style .testimonials-box.style-5 .author-box p strong {
    color:#fff;
}
.new-style .testimonials-box .blue-section .container {
    max-width: 1130px;
}
.testimonials-box .blue-section {
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 90px 0;
    text-align: left;
}
.testimonials-box .blue-section:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 22px 25px 0 25px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -25px;
    content: "";
}
.rating {
    unicode-bidi: bidi-override;
    direction: rtl;
    margin-bottom: 15px
}
.rating > span {
      display: inline-block;
      position: relative;
      width: 22px;
      font-size: 24px;
      color:#fbf133;
}
.rating > span.active:before,
.rating > span.active ~ span:before {
   content: "\2605";
   position: absolute;
}
.style-5.testimonials-box  h2 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}
.testimonials-box  .slider {
    position: relative;
    padding: 0 30px;
}
.testimonials-box  .slider .slick-prev,
.testimonials-box  .slider .slick-next {
    background: none;
    border: none;
    overflow: hidden;
    height: 24px;
    width: 15px;
    position: absolute;
    text-indent: -9999px;
    top: 50%;
    margin-top: -12px;
}
.testimonials-box .blue-section  .slick-slide {
    padding: 0 45px;
}

.testimonials-box .slider .slick-prev {
    left: 0;
}
.testimonials-box .slider .slick-next {
    right: 0;
}
.testimonials-box .slider .slick-prev:before, .testimonials-box .slider .slick-next:before {
    background-image: url("../images/icons/slider-icons.png");
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    top: 0;
    height: 24px;
    width: 15px;
}
.testimonials-box .slider .slick-prev:hover:before, .testimonials-box .slider .slick-next:hover:before {
    opacity: 0.7;
}
.testimonials-box .slider .slick-prev:before {
    left: 0;
    background-position: left top;
}
.testimonials-box .slider .slick-next:before {
    right: 0;
    background-position: right top;
}
.landing-form br{
    display:none;
}
.landing-form input, .landing-form .fancy-select, .landing-form textarea{
    margin-bottom:10px;
}
.landing-form .g-recaptcha{
    margin-bottom:15px;
}
.new-style .page-style-2 .landing-form div.fancy-select div.trigger {
    margin-bottom:0;
}
.new-style .landing-form .coll{
    padding:0 11px;
}


/* End Page-2 */


@media only screen and (max-width:1130px){
    .new-style .back-top {
        position: relative;
        right: auto;
        top: auto;
    }
}
@media only screen and (max-width:1065px){
    .new-style .call-us p {
        padding-right: 15px;
    }
    .new-style .form-page {
        left: auto;
        right: 30px;
    }
}
@media only screen and (max-width:1055px){
    .new-style .call-us p {
        padding-right: 0px;
    }
    .new-style .form-page {
        left: auto;
        right: 15px;
        margin: 0;
    }
    .fix-container .content-bar {
        margin-right: 450px;
        width: auto;

    }
}
@media only screen and (max-width:992px){
    .new-style .form-page { width: 340px; }
    .bottom-info-box { margin: 21px 13px 0; }
    .fix-container .content-bar {
        margin-right: 365px;
    }
     .new-style .page-style-2 .form-page {
        right: auto;
    }
}
@media only screen and (max-width:767px){
    .new-style .form-page {
        position: relative;
        right: auto;
        top: auto;
        margin-bottom: 30px;
        width: 100%;
    }
    .fix-container .content-bar { margin-right: 0; }
    .new-style .logo, .new-style .call-us p {
        text-align: center;
    }
    .new-style .call-us p {
        margin: 0 auto 15px;
        float: none;
    }
    .bottom-info-box {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .new-style .icons-nav ul li {
        width: 50%;
    }
    .new-style .footer_container_wrapper P a {
        display: block;
    }
    .new-style .footer_container_wrapper P a:before {
        display: none;
    }
    .arrow-down {
        background:  url("../images/icons/arrow-down.png") no-repeat left bottom;
        margin: auto;
        height: 22px;
        width: 79px;
    }
    .new-style section.style-2 p {
        margin-bottom: 35px;
    }
    .new-style .page-style-2 .header-form-page {
        padding: 10px 25px 40px;
    }
    .new-style .page-style-2 .header-form-page p {
        text-align: center;
    }
    .new-style .coll {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    .new-style .page-style-2 .icons-nav ol li img {
        max-width: 120px;
    }
    .new-style .page-style-2 .icons-nav ol li {
        padding: 65px 150px 28px 43px;
    }
    .new-style .page-style-2 .icons-nav ol li:nth-child(2n+1) {
        padding: 65px 0 28px 150px;
    }
    .new-style .page-style-2 .icons-nav ol li:nth-child(2n+1):before {
        left: 120px;
    }
}
@media only screen and (max-width:600px){
    .new-style h3,  .new-style .style-3 h2, .new-style .style-4 h2 {
        font-size: 24px;
    }
    .new-style section p, .new-style .page-style-2 section.style-2 p {
        font-size: 16px;
    }
    .new-style h2 {
        font-size: 36px;
    }
    .form-page-footer {
        padding: 37px 20px 16px;
    }
    .new-style .style-2, .new-style .style-1 {
        padding: 30px 0;
    }
    .new-style .style-3 h2, .new-style .style-4 h2 {
        font-size: 30px;
        line-height: 120%;
    }
    .new-style section ul li a, .new-style .page-style-2 section .icons-nav p, .new-style section ul li a, .new-style .style-3 ul li {
        font-size: 14px;
    }
    .new-style section.style-2 p {
        margin-bottom: 20px;
    }
    .new-style .style-3 p, .new-style .page-style-2 .icons-nav ol h3  { font-size: 20px; }
    .style-5 h2 {
        font-size: 38px;
    }
    .slider-slick { padding: 0 25px; }
    .new-style section.style-5 p {
        font-size: 16px;
        line-height: 125%;
        margin-bottom: 20px;
    }
    .new-style .footer_container_wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    .new-style section ul.slick-dots {
        padding: 0;
        margin-bottom: 0;
    }
    .new-style .footer_container_wrapper P a {
        font-size: 15px;
        margin: 5px auto;
    }
    .new-style .page-style-2 .icons-nav ol li img {
        max-width: 80px;
    }
    .new-style .page-style-2 .icons-nav ol li {
        padding: 65px 0px 28px 0px;
        margin-bottom: 20px;
    }
    .new-style .page-style-2 .icons-nav ol li:nth-child(2n+1) {
        padding: 65px 0 28px 0px;
    }
    .new-style .page-style-2 .icons-nav ol li:nth-child(2n+1):before {
        left: 0px;
    }
    .new-style .page-style-2 .icons-nav ol li:before {
        left: 0;
    }
    .new-style .page-style-2 .icons-nav ol h3 {
        margin-right: 80px;
    }
    .new-style .page-style-2 .icons-nav ol li:nth-child(2n+1) img {
        left: auto;
        right: 0;
    }
}
@media only screen and (max-width:420px){
    .new-style .icons-nav {
        padding: 0;
    }
    .new-style .icons-nav ul li {
        border: none;
        width: 100%;
    }
    .new-style .icons-nav a {
        height: auto;
        display: block;
        width: auto;
    }
}

/* Added by Roman */
.wpcf7-form-control-wrap { display: block; }
.new-style .form-page {
    z-index: 999;
}
.form-page .wpcf7-not-valid-tip { color: red;}
.form-page .screen-reader-response { color:  white;}
.form-page .screen-reader-response ul {display: none;}

.new-style .has-success .trigger {
    background-color: #e0efda;
    border-color: #71b658;
}
div.fancy-select div.trigger::after {
    z-index: 9;
}
.new-style .has-success.error .trigger,
.new-style .has-success.error .wpcf7-form-control {
    background: #efdada;
    border-color: #e74040;
}
.wpcf7-response-output.wpcf7-validation-errors,
.form-page .wpcf7-response-output.wpcf7-spam-blocked { color: red; }

.form-page .wpcf7-response-output wpcf7-mail-sent-ok { color: green;}
.new-style .has-success .wpcf7-form-control-feedback.glyphicon-remove {
    color: #d52121;
    top: 2px;
}
.screen-reader-response { display: none;}
.page_heading_container {
    background: #dfe0e3;
}
.new-style .sidebar {
    padding-left: 0;
}
.new-style .sidebar .form-page {
    margin-left: 0;
    min-height: 800px;
    padding: 0;
    position: unset;
    width: 100%;
    margin-top: -20px;
}
.new-style .sidebar .form-page .coll {
    width: 100%;
    padding: 0;
}
.page-content > .col-md-8 {
    width: 56%;
}
.page-content > .col-md-4 {
    width: 44%;
}
.sidebar .form-page-box {
    background: #f8f8f8;
}
.sidebar .form-page-box:before {
    border-color: #f8f8f8 transparent transparent;
}
.page_heading_container {
    display: none;
}
.content-bar a {
    color: #59bfe3;
}
.post .post_title,
h1.page-title {
    border: medium none;
    font-size: 36px;
    padding: 0;
    line-height: 110%;
    color: #3a414f;
}
.page-content-container .page-content {
    padding: 0 0 80px;
    overflow: visible;
    display: inline-block;
}
@media screen and (max-width: 768px){
    .page-content > .col-md-8 {
        width: 100%;
    }
    .page-content > .col-md-4 {
        width: 100%;
    }
    .sidebar {
        padding-left: 0;
    }
    .new-style .sidebar .form-page {
        margin-top: 20px;
    }
}
.new-style .style-2 {
    padding: 0px 0 60px;
}
.style-4 a.more {
    color: #71b658;
    display: inline;
    font-size: 20px;
}
.style-4 a.more:hover {
    color: #3a414f;
}
.content-bar.ajax-links>p>a,
.content-bar.ajax-links>a {
    font-size: 16px;
    color: #75818e;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    line-height: 140%;
    padding-left: 40px;
    padding-top: 3px;
    min-height: 30px;
    background: url("../images/icons/link-arrow.png") no-repeat left center;
}
.content-bar.ajax-links h1.page-title {
    margin-bottom: 20px;
}
.content-bar.ajax-links>p>a.active,
.content-bar.ajax-links>a.active {
    font-size: 16px;
    color: #75818e;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    line-height: 140%;
    padding-left: 40px;
    background: url("../images/icons/link-arrow-active.png") no-repeat left center;
}
#ajax-content {
    padding-left: 40px;
}
#ajax-content .read-more {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: right;
}
.content-bar.ajax-links>p>br,
.content-bar.ajax-links>br {
    display: none;
}
.content-bar.ajax-links>p>a:hover,
.content-bar.ajax-links>a:hover {
    color: #59bfe3;
}
.tag { display: none; }
.page-38 .page-content > .col-md-8,
.page-40 .page-content > .col-md-8,
.page-268 .page-content > .col-md-8 {
    width: 100%
}
.page-38 .page-content > .col-md-4,
.page-40 .page-content > .col-md-4,
.page-268 .page-content > .col-md-4 {
    display: none;
}
#post-content ul li,
.content-bar .post ul li {
    list-style-image: url("../images/icons/list-style.png");
}
.wpcf7-form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.wpcf7-form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.wpcf7-form-control::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.wpcf7-form-control:-ms-input-placeholder {
  color: #333;
}
.wpcf7-form-control::-webkit-input-placeholder {
  color: #333;
}
.wpcf7-form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.wpcf7-form-control[disabled],
.wpcf7-form-control[readonly],
fieldset[disabled] .wpcf7-form-control {
  background-color: #eee;
  opacity: 1;
}
.wpcf7-form-control[disabled],
fieldset[disabled] .wpcf7-form-control {
  cursor: not-allowed;
}
textarea.wpcf7-form-control {
  height: auto;
}
span.wpcf7-form-control.wpcf7-checkbox {
    display: none;
}

.page-content.error-404{
    margin:100px 0 0 0;
    width:100%;
    text-align:center;
}
.error-block-404{
    max-width:300px;
    margin:auto;
    text-align:left;
}
.error-block-404 ul{
    padding:0;
    margin:0;
    text-align:left;
}
.error-block-404 ul li{
    display:block;
    padding:0;
    margin:0;
}
.error-block-404 ul li a{
    font-size:16px;
}
@media screen and (max-width: 360px){
    .landing-form .g-recaptcha iframe,
    .landing-form .g-recaptcha div div {
        max-width: 240px !important;
    }
}