@charset "UTF-8";

body {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    height: 100%;
    font-size: 17px;
    color: #000;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

*:focus {
    outline: none !important;
}

a:focus,
a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
    border: 0;
    outline: 0;
}

button:focus{
    outline: 0;
}

input:focus,
textarea:focus {
    box-shadow: 0 0 0 0 !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-weight: 700;
    margin-bottom: 24px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    transition: color 0.2s ease;
}
h1, .h1 {
    font-size: 50px;
    line-height: 1.2em;
    letter-spacing: -2px;
}
h2, .h2 {
    font-size: 40px;
    line-height: 1.2em;
    letter-spacing: -2px;
}
h3, .h3 {
    font-size: 30px;
    line-height: 1.2em;
    letter-spacing: -2px;
}
h4, .h4 {
    font-size: 26px;
    line-height: 1.2em;
    letter-spacing: -.2px;
}
h5, .h5 {
    font-size: 22px;
    line-height: 1.2em;
    letter-spacing: -.2px;
}
h6, .h6 {
    font-size: 19px;
    line-height: 30px;
}
/*p{
    margin: 10px 0;
}
*/

p strong{
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}


a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

small,
.small {
    font-size: 90%;
}

ul{
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}       

ul li{
    position: relative;
    color: #4C4C4C;
    font-weight: 500;
    text-align: left;
    padding-left: 28px;
    margin-bottom: 12px;
}

ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px; 
    width: 18px;
    height: 18px;
    background-image: url('../../img/coda_green.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

ul.list-pink li:before{
    background-image: url('../../img/coda_pink.png');
}

ul.list-green li:before{
    background-image: url('../../img/coda_green.png');
}

.ul-list-segno-pink li:before{
    background-image: url('../../img/segno_pink.png');
    top: 6px; 
}

.ul-list-segno-green li:before{
    background-image: url('../../img/segno_green.png');
    top: 6px; 
}

ol{
    list-style: none;
    counter-reset: a;
    padding-left: 0;
    margin: 1.5rem 0;
}      

ol li{
    position: relative;
    counter-increment: a;
    color: #4C4C4C;
    font-weight: 500;
    text-align: left;
    padding-left: 33px;
    margin-bottom: 12px;
}

ol li:before {
    display: inline-block;
    content: counter(a) "";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 13px;
    font-weight: 600;
    width: 23px;
    height: 23px;
    line-height: 23px;
    color: #fff;
    background-color: #2CBFCF;
    text-align: center;
    border-radius: 50%;
}


ol.list-pink  li:before{
    background-color: #EE2B7A;
}

ol.list-green li:before{
    background-color: #2CBFCF;
}

.container, 
.container-fluid, 
.container-xxl, 
.container-xl, 
.container-lg, 
.container-md, 
.container-sm{
    padding-right: 1rem;
    padding-left: 1rem;

}

.row{
    margin-right: -1rem;
    margin-left: -1rem;
}

.row > * {
    padding-right: 1rem;
    padding-left: 1rem;
}

.overflow-hidden{
    overflow: hidden !important;
}

.mobile-content{
    display: none;
}

@media (max-width: 768px){

    .mobile-content{
        display: block;
    }
    .desktop-content{
        display: none;
    }
}

/* ===================================
    Selection
====================================== */
::-moz-selection {
    background: #EE2B7A;
    color: #fff;
}

::selection {
    background: #EE2B7A;
    color: #fff;
}

/* ===================================
    Scrollbar
====================================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 1em;
    background-color: rgba(238, 43, 122, 1);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(238, 43, 122, 1);
}

::-webkit-scrollbar-track {
    border-radius: 1em;
    background-color: rgba(50, 50, 50, 0.1);
}

::-webkit-scrollbar-track:hover {
    background-color: rgba(50, 50, 50, 0.2);
}

/* ===================================
    Text colors
====================================== */

.text-color-black {
  color: #000 !important;
}

.text-color-white {
  color: #fff !important;
}

.text-color-black-dark {
  color: #303030 !important;
}

.text-color-black-light {
  color: #565656 !important;
}

.text-color-gray-dark {
  color: #E6E6E6 !important;
}

.text-color-gray-light {
  color: #F5F5F5 !important;
}

.text-color-pink {
  color: #EE2B7A !important;
}
.text-color-green {
  color: #2CBFCF !important;
}
.text-color-yellow {
  color: #FFC809 !important;
}

/* ===================================
    Highlights text
====================================== */

.highlights-text{
    padding: 0 3px 2px;
}

.highlights-text-pink{
    color: #fff;
    background-color: #EE2B7A;
}
.highlights-text-green{
    color: #fff;
    background-color: #2CBFCF;
}
/* ===================================
    Background color
====================================== */

.bg-color-pink {
  background-color: #EE2B7A !important;
}
.bg-color-green {
  background-color: #2CBFCF !important;
}
.bg-color-yellow {
  background-color: #FFC809 !important;
}
.bg-color-gray {
  background-color: #F8F8F8 !important;
}
.bg-color-gray-dark {
  background-color: #F3F3F4 !important;
}
.bg-color-gray-light {
  background-color: #FAFAFA  !important;
}
.bg-color-white {
  background-color: #fff !important;
}
.bg-color-black {
  background-color: #000 !important;
}
.bg-white-box-shadow{
    background-color: #fff !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05) !important;
}
.bg-color-transparent{
  background-color: transparent !important;
}


/* ===================================
    Typography
====================================== */
.fs-12 {
  font-size: 12px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-17 {
  font-size: 17px !important;
}
.fs-18 {
  font-size: 18px !important;
}
.fs-19 {
  font-size: 19px !important;
}
.fs-20 {
  font-size: 20px !important;
}
.fs-22 {
  font-size: 22px !important;
}
.fs-24 {
  font-size: 24px !important;
}
.fs-26 {
  font-size: 26px !important;
}
.fs-28 {
  font-size: 28px !important;
}
.fs-30 {
  font-size: 30px !important;
}
.fs-32 {
  font-size: 32px !important;
}
.fs-34 {
  font-size: 34px !important;
}
.fs-36 {
  font-size: 36px !important;
}
.fs-38 {
  font-size: 38px !important;
}
.fs-40 {
  font-size: 40px !important;
}
.fs-42 {
  font-size: 42px !important;
}
.fs-44 {
  font-size: 44px !important;
}
.fs-46 {
  font-size: 46px !important;
}
.fs-48 {
  font-size: 48px !important;
}
.fs-50 {
  font-size: 50px !important;
}
.fs-60 {
  font-size: 60px !important;
}
.fs-70 {
  font-size: 70px !important;
}
.fs-80 {
  font-size: 80px !important;
}
.fs-90 {
  font-size: 90px !important;
}
.fs-100 {
  font-size: 100px !important;
}
.fs-110 {
  font-size: 110px !important;
}
.fs-120 {
  font-size: 120px !important;
}
.fs-130 {
  font-size: 130px !important;
}
.fs-140 {
  font-size: 140px !important;
}
.fs-150 {
  font-size: 150px !important;
}

/* ===================================
    Text justify
====================================== */
.text-align-center{
    text-align: center !important;
}
.text-align-start{
    text-align: left !important;
}
.text-align-end{
    text-align: right !important;
}
.text-align-justify{
    text-align: justify !important;
}

/* ===================================
    Font weight
====================================== */

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}

/* ===================================
    Padding top
====================================== */
.padding-top-15{
    padding-top: 15px !important;
}
.padding-top-20{
    padding-top: 20px !important;
}
.padding-top-30{
    padding-top: 30px !important;
}
.padding-top-40{
    padding-top: 40px !important;
}
.padding-top-50{
    padding-top: 50px !important;
}
.padding-top-60{
    padding-top: 60px !important;
}
.padding-top-70{
    padding-top: 70px !important;
}
.padding-top-80{
    padding-top: 80px !important;
}
.padding-top-90{
    padding-top: 90px !important;
}
.padding-top-100{
    padding-top: 100px !important;
}
.padding-top-110{
    padding-top: 110px !important;
}
.padding-top-120{
    padding-top: 120px !important;
}
.padding-top-130{
    padding-top: 130px !important;
}
.padding-top-140{
    padding-top: 140px !important;
}
.padding-top-150{
    padding-top: 150px !important;
}
.padding-top-0{
    padding-top: 0 !important;
}

/* ===================================
    Padding bottom
====================================== */
.padding-bottom-15{
    padding-bottom: 15px !important;
}
.padding-bottom-20{
    padding-bottom: 20px !important;
}
.padding-bottom-30{
    padding-bottom: 30px !important;
}
.padding-bottom-40{
    padding-bottom: 40px !important;
}
.padding-bottom-50{
    padding-bottom: 50px !important;
}
.padding-bottom-60{
    padding-bottom: 60px !important;
}
.padding-bottom-70{
    padding-bottom: 70px !important;
}
.padding-bottom-80{
    padding-bottom: 80px !important;
}
.padding-bottom-90{
    padding-bottom: 90px !important;
}
.padding-bottom-100{
    padding-bottom: 100px !important;
}
.padding-bottom-110{
    padding-bottom: 110px !important;
}
.padding-bottom-120{
    padding-bottom: 120px !important;
}
.padding-bottom-130{
    padding-bottom: 130px !important;
}
.padding-bottom-140{
    padding-bottom: 140px !important;
}
.padding-bottom-150{
    padding-bottom: 150px !important;
}
.padding-bottom-0{
    padding-bottom: 0 !important;
}

/* ===================================
    Padding left
====================================== */
.padding-left-15{
    padding-left: 15px !important;
}
.padding-left-20{
    padding-left: 20px !important;
}
.padding-left-30{
    padding-left: 30px !important;
}
.padding-left-40{
    padding-left: 40px !important;
}
.padding-left-50{
    padding-left: 50px !important;
}
.padding-left-60{
    padding-left: 60px !important;
}
.padding-left-70{
    padding-left: 70px !important;
}
.padding-left-80{
    padding-left: 80px !important;
}
.padding-left-90{
    padding-left: 90px !important;
}
.padding-left-100{
    padding-left: 100px !important;
}
.padding-left-110{
    padding-left: 110px !important;
}
.padding-left-120{
    padding-left: 120px !important;
}
.padding-left-130{
    padding-left: 130px !important;
}
.padding-left-140{
    padding-left: 140px !important;
}
.padding-left-150{
    padding-left: 150px !important;
}
.padding-left-0{
    padding-left: 0 !important;
}

/* ===================================
    Padding right
====================================== */
.padding-right-15{
    padding-right: 15px !important;
}
.padding-right-20{
    padding-right: 20px !important;
}
.padding-right-30{
    padding-right: 30px !important;
}
.padding-right-40{
    padding-right: 40px !important;
}
.padding-right-50{
    padding-right: 50px !important;
}
.padding-right-60{
    padding-right: 60px !important;
}
.padding-right-70{
    padding-right: 70px !important;
}
.padding-right-80{
    padding-right: 80px !important;
}
.padding-right-90{
    padding-right: 90px !important;
}
.padding-right-100{
    padding-right: 100px !important;
}
.padding-right-110{
    padding-right: 110px !important;
}
.padding-right-120{
    padding-right: 120px !important;
}
.padding-right-130{
    padding-right: 130px !important;
}
.padding-right-140{
    padding-right: 140px !important;
}
.padding-right-150{
    padding-right: 150px !important;
}
.padding-right-0{
    padding-right: 0 !important;
}

/* ===================================
    Gap
====================================== */
.gap-15{
    gap: 15px !important;
}
.gap-20{
    gap: 20px !important;
}
.gap-30{
    gap: 30px !important;
}
.gap-40{
    gap: 40px !important;
}
.gap-50{
    gap: 50px !important;
}
.gap-60{
    gap: 60px !important;
}
.gap-0{
    gap: 0 !important;
}

/* ===================================
    Opacity
====================================== */
.opacity-0 {
    opacity: 0 !important;
}

.opacity-1 {
    opacity: 0.1 !important;
}

.opacity-2 {
    opacity: 0.2 !important;
}

.opacity-3 {
    opacity: 0.3 !important;
}

.opacity-4 {
    opacity: 0.4 !important;
}
.opacity-5 {
    opacity: 0.5 !important;
}
.opacity-6 {
    opacity: 0.6 !important;
}
.opacity-7{
    opacity: 0.7 !important;
}
.opacity-8 {
    opacity: 0.8 !important;
}
.opacity-9 {
    opacity: 0.9 !important;
}
.opacity{
    opacity: 1 !important;
}

/* ===================================
    Separator
====================================== */

.separator-line {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border-bottom: 3px solid transparent;
    margin: 15px 0 30px;
    width: 79px;
}

.separator-line-long{
    width: 208px;
    margin-top: 41px;
    margin-bottom: 29px;
}
.separator-line-full{
    width: 100%;
}

.separator-line-pink{
    border-color: #EE2B7A;
}
.separator-line-green{
    border-color: #2CBFCF;
}
.separator-line-yellow{
    border-color: #FFC809;
}

.separator-line-white{
    border-color: #fff;
}

.separator-pattern{
    position: relative;
    margin: 10px 0 28px;
    width: 100%;
    line-height: 1em;
}
.separator-pattern img{
    width: 70px;
    height: auto;
}
/* ===================================
    Title
====================================== */

.section-main-title{
    position: relative;
    font-size: 52px;
    line-height: 48px;
    font-weight: 700;
    letter-spacing: -5px;
    text-align: left;
    color: #000000;
    margin: 0;
}

.main-title{
    position: relative;
    font-size: 40px;
    color: #000;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -2px;
    margin-top: 0;
}

.title{
    position: relative;
    font-size: 30px;
    color: #000;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -2px;
}

.main-title.headline-color-pink,
.main-title.headline-color-green,
.title.headline-color-pink,
.title.headline-color-green{
    position: relative;
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.main-title.headline-color-pink:after,
.title.headline-color-pink:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 14px;
    background-image: url("../../img/separator_pattern_pink.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.main-title.headline-color-green:after,
.title.headline-color-green:after{
  content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 14px;
    background-image: url("../../img/separator_pattern_green.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.main-subtitle{
    font-size: 19px;
    color: #303030;
    font-style: italic;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 16px;
}
.content-position-center-right .main-title:after,
.content-position-top-right .main-title:after,
.content-position-bottom-right .main-title:after,
.content-position-center-right .title:after,
.content-position-top-right .title:after,
.content-position-bottom-right .title:after{
    right: 0;
    left: auto;
}

.content-position-top-center .main-title:after,
.content-position-center-center .main-title:after,
.content-position-bottom-center .main-title:after,
.content-position-top-center .title:after,
.content-position-center-center .title:after,
.content-position-bottom-center .title:after{
    left: 50%;
    transform: translateX(-50%);
}


@media (max-width: 576px){

    .main-title{
        font-size: 32px !important;
    }

    .title{
        font-size: 26px !important;
    }
}

/* ===================================
    Main Text
====================================== */
.main-text{
    color: #4C4C4C;
    font-weight: 500;
}

.main-text p:last-child{
    margin-bottom: 0;
}
/* ===================================
    Heading
====================================== */
.heading-margin-bottom-20{
  margin-bottom: 20px !important;
}
.heading-margin-bottom-24{
  margin-bottom: 24px !important;
}
.heading-margin-bottom-28{
  margin-bottom: 28px !important;
}
.heading-margin-bottom-30{
  margin-bottom: 30px !important;
}
.heading-margin-bottom-40{
  margin-bottom: 40px !important;
}
.heading-margin-bottom-50{
  margin-bottom: 50px !important;
}
.heading-margin-bottom-60{
  margin-bottom: 60px !important;
}
.heading-margin-bottom-70{
  margin-bottom: 70px !important;
}
.heading-margin-bottom-80{
  margin-bottom: 80px !important;
}
.heading-margin-bottom-0{
  margin-bottom: 0 !important;
}


/* ===================================
  Icons
====================================== */
.icon-content:before {
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.icon-type-pdf-pink:before{
    background-image: url(../../img/icon_pdf_pink.png);
}
.icon-type-pdf-green:before{
    background-image: url(../../img/icon_pdf_green.png);
}
.icon-type-pdf-white:before{
    background-image: url(../../img/icon_pdf_white.png);
}
.icon-type-map-pink:before{
    background-image: url(../../img/icon_map_pink.png);
}
.icon-type-map-green:before{
    background-image: url(../../img/icon_map_green.png);
}
.icon-type-map-white:before{
    background-image: url(../../img/icon_map_white.png);
}

.icon-type-megaphone-pink:before{
    background-image: url(../../img/icon_megaphone_pink.png);
}
.icon-type-megaphone-green:before{
    background-image: url(../../img/icon_megaphone_green.png);
}
.icon-type-megaphone-white:before{
    background-image: url(../../img/icon_megaphone_white.png);
}
.icon-type-lightbulb-pink:before{
    background-image: url(../../img/icon_light_bulb_pink.png);
}
.icon-type-lightbulb-green:before{
    background-image: url(../../img/icon_light_bulb_green.png);
}
.icon-type-lightbulb-white:before{
    background-image: url(../../img/icon_light_bulb_white.png);
}
.icon-type-drum-pink:before{
    background-image: url(../../img/icon_drum_pink.png);
}
.icon-type-drum-green:before{
    background-image: url(../../img/icon_drum_green.png);
}
.icon-type-drum-white:before{
    background-image: url(../../img/icon_drum_white.png);
}
.icon-type-qrcode-pink:before{
    background-image: url(../../img/icon_qr_code_pink.png);
}
.icon-type-qrcode-green:before{
    background-image: url(../../img/icon_qr_code_green.png);
}
.icon-type-qrcode-white:before{
    background-image: url(../../img/icon_qr_code_white.png);
}
.icon-award-pink:before{
    background-image: url(../../img/icon_award_pink.png);
}
.icon-award-green:before{
    background-image: url(../../img/icon_award_green.png);
}
.icon-award-white:before{
    background-image: url(../../img/icon_award_white.png);
}

.icon-trophy-white:before{
    background-image: url(../../img/icon_trophy_white.png);
}

.icon-size-20{
  width: 20px;
  height: 20px;
}
.icon-size-30{
  width: 30px;
  height: 30px;
}

.icon-size-40{
  width: 40px;
  height: 40px;
}

.icon-size-50{
  width: 50px;
  height: 50px;
}
.icon-size-60{
  width: 60px;
  height: 60px;
}
.icon-size-70{
  width: 70px;
  height: 70px;
}
.icon-size-80{
  width: 80px;
  height: 80px;
}
.icon-size-90{
  width: 90px;
  height: 90px;
}

.icon-bg-circle-pink{
    padding: 15px;
    background-color: #EE2B7A;
    border-radius: 50%;
}
.icon-bg-circle-green{
    padding: 15px;
    background-color: #2CBFCF;
    border-radius: 50%;
}
.icon-bg-circle-gray{
    padding: 15px;
    background-color: #F3F3F4;
    border-radius: 50%;
}
.icon-bg-square-pink{
    padding: 15px;
    background-color: #EE2B7A;
}
.icon-bg-square-green{
    padding: 15px;
    background-color: #2CBFCF;
}
.icon-bg-square-gray{
    padding: 15px;
    background-color: #F3F3F4;
}

/* ===================================
    Buttons
====================================== */
.button-wrapper {
  display: flex;
  margin-top: 20px;
}

.button-wrapper .btn{
  margin-top: 10px;
}

.button-wrapper .btn:nth-child(2){
    margin-left: 10px;
}

.button-wrapper.flex-column .btn{
    margin-left: 0;
}

.btn{
    font-size: 12px;
    padding: 13px 38px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none;
    border-radius: 0;
}

.btn-lg{
    padding: 15px 38px;
}

.btn:disabled, 
.btn.disabled{
    opacity: .8;
}

.btn-pink{
    background-color: #EE2B7A !important;
    color: #fff !important;
}

.btn-pink:hover,
.btn-pink:focus,
.btn-pink:active,
.btn-pink.active {
    color: #fff !important;
    background: #FFC809 !important;
}

.btn-green{
    background-color: #2CBFCF !important;
    color: #fff !important;
}

.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green.active {
    color: #fff !important;
    background: #FFC809 !important;
}

.btn-black{
    background-color: #393939 !important;
    color: #fff !important;
}

.btn-black:hover,
.btn-black:focus,
.btn-black:active,
.btn-black.active {
    color: #fff !important;
    background: #FFC809 !important;
}

.btn-white{
    background-color: #fff !important;
    color: #000 !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active {
    color: #fff !important;
    background: #FFC809 !important;
}

.btn-icon{
    display: inline-flex;
    color: #000000;
    background-color: #fff;
    padding: 0 !important;
    border: none;
    overflow: hidden;
}

.btn-icon .btn-text{
    position: relative;
    width: calc(100% - 45px);
    left: 0;
    padding: 13px 28px;
    -webkit-transition: left .15s ease-out;
    -moz-transition: left .15s ease-out;
    transition: left .15s ease-out;
}

.btn-icon .btn-icon-holder{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    width: 45px;
    font-size: 14px;
    -webkit-transition: left .15s ease-out;
    -moz-transition: left .15s ease-out;
    transition: left .15s ease-out;
    z-index: 2;
}

.btn-icon.btn-lg .btn-text{
    width: calc(100% - 48px);
    padding: 15px 34px;
}

.btn-icon.btn-lg .btn-icon-holder{
    width: 48px;
}

.btn-icon:hover .btn-text{
    left: 22px;
}

.btn-icon:hover .btn-icon-holder{
    left: 45px;
}

.btn-icon.btn-lg:hover .btn-icon-holder{
    left: 48px;
}

.btn-icon-white-pink,
.btn-icon-white-pink:hover, 
.btn-icon-white-pink:focus, 
.btn-icon-white-pink:active, 
.btn-icon-white-pink.active,
.btn-icon-white-green,
.btn-icon-white-green:hover, 
.btn-icon-white-green:focus, 
.btn-icon-white-green:active, 
.btn-icon-white-green.active   { 
    color: #000000 !important;
    background-color: #fff !important;
}

.btn-icon-gray-pink,
.btn-icon-gray-pink:hover, 
.btn-icon-gray-pink:focus, 
.btn-icon-gray-pink:active, 
.btn-icon-gray-pink.active,
.btn-icon-gray-green,
.btn-icon-gray-green:hover, 
.btn-icon-gray-green:focus, 
.btn-icon-gray-green:active, 
.btn-icon-gray-green.active  { 
    color: #000000 !important;
    background-color: #F3F3F4 !important;
}

.btn-icon-white-pink .btn-icon-holder,
.btn-icon-gray-pink .btn-icon-holder{
    background-color: #EE2B7A;
    color: #fff;
}

.btn-icon-white-green .btn-icon-holder,
.btn-icon-gray-green .btn-icon-holder{
    background-color: #2CBFCF;
    color: #fff;
}

.btn-arrow,
.btn-download{
    color: #000;
    font-size: 15px;
    padding: 0;
    letter-spacing: -.5px;
}

.btn-arrow,
.btn-arrow:hover, 
.btn-arrow:focus, 
.btn-arrow:active, 
.btn-arrow.active,
.btn-download,
.btn-download:hover, 
.btn-download:focus, 
.btn-download:active, 
.btn-download.active{
    color: #000 !important;
    border-color: transparent !important;
    background-color: transparent !important;
}

.btn-arrow-sm,
.btn-download-sm{
    font-size: 14px;
}

.btn-arrow-md,
.btn-download-md{
    font-size: 15px;
}


.btn-arrow-lg,
.btn-download-lg{
    font-size: 17px;
}

.btn-download::after,
.btn-arrow::after{
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    font-weight: 900;
    color: #2CBFCF;
    margin-left: 6px;display: inline-block;
    transition: transform .15s ease-out;
}

.btn-download::after{
    content: "\f019";
}

.btn-arrow::after{
    content: "\f178";
}

.btn-arrow-green:after, 
.btn-download-green:after {
    color: #2CBFCF;
}

.btn-arrow-pink::after, 
.btn-download-pink::after {
    color: #EE2B7A;
}

.btn-arrow:hover::after{
    transform: translateX(5px);
}

.btn-download:hover::after{
    transform: translateY(5px);
}

.btn i.loading-spinner{
    font-size: 22px;
    margin-right: 10px;
}


.btn-spinner{
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.8;
}


.btn.text-align-end{
    margin-left: auto;
}

.btn.text-align-center,
.content-position-top-center .btn,
.content-position-center-center .btn,
.content-position-bottom-center .btn{
    margin-left: auto;
    margin-right: auto;
}

.content-position-top-right .btn,
.content-position-center-right .btn,
.content-position-bottom-right .btn{
    margin-left: auto;
}

.icon-position-left .btn,
.icon-position-left.content-position-top-right .btn,
.icon-position-left.content-position-center-right .btn,
.icon-position-left.content-position-bottom-right .btn{
    margin-left:  0;
}


/*@media (max-width: 992px) {

    .btn-pink,
    .btn-green,
    .btn-icon{
        min-width: 280px;
    }
}*/

@media (max-width: 576px) {

    .btn-widget{
        justify-content: start;
    }
}

/* ===================================
    Table
====================================== */
.table {
    font-size: 16px;
    color: #303030;
    font-weight: 500;
    border-collapse: separate !important;
    border-spacing: 0 5px;
}
.table > :not(caption) > * > *{
    border-bottom: none;
}

.table thead th,
.table thead td  {
    background: #EE2B7A;
    color: #fff;
    font-weight: 600;
    padding: 8px 16px;
    border: none;
}


.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #FAFAFA;
 }

.table-striped > tbody > tr:nth-of-type(even) > * {
    background-color: #F3F3F4;
}


.table tbody td,
.table tfoot td {
    background: #fff;
    padding: 8px 16px;
    vertical-align: middle;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.table-border  tbody td{
    border-right:  3px solid #fff;
    background-color: #F8F8F8 !important;
}

.table-border  tbody td:last-child{
    border: none;
}
/* ===================================
    Nav tabs
====================================== */

.nav-pills{
    margin: 0;
}
.nav-pills li.nav-item{
    margin: 0 12px 12px 0;
    padding: 0;
}

.nav-pills li.nav-item:last-child{
    margin-right: 0;
}

.nav-pills li.nav-item:before{
    display: none;
}

.nav-pills .nav-link{
    font-size: 12px;
    padding: 13px 38px;
    font-weight: 700;
    color: #303030;
    background-color: #F3F3F4;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none;
    border-radius: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}

.nav-tabs-block.nav-tabs-color-pink .nav-pills .nav-link.active{
    color: #fff;
    background-color: #EE2B7A;
}

.nav-tabs-block.nav-tabs-color-green .nav-pills .nav-link.active{
    color: #fff;
    background-color: #2CBFCF;
}

.nav-tabs-block .tab-content{
    color: #4C4C4C;
    font-weight: 500;
    padding-top: 24px;
}


@media (max-width: 576px){

    .nav-pills li.nav-item{
        width: 100%;
        margin-right: 0;
    }

    .nav-pills .nav-link{
        width: 100%;
    }
}

/* ===================================
    Accordion
====================================== */
.accordion{
    border: none;
    background: none;
    box-shadow: none;
    border-radius: 0 !important;
}

.accordion-item{
    border: none;
    background: none;
    border-bottom: 1px solid #E4E1E1;
    border-radius: 0 !important;
}

.accordion-button{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    padding: 20px 0;
    color: #000;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.accordion-button span{
    padding-right: 16px;
}

.accordion-button:not(.collapsed){
    color: #000;
    background-color: transparent;
}

.accordion-button:after{
    content: "";
    width: 36px;
    height: 21px;
    background-image: url(../../img/corona_up_green.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: none;
    transition: all 0.3s ease-in-out;
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed):after{
    background-image: url(../../img/corona_up_green.png);
    transform: rotate(180deg);
}

.accordion-body{
    color: #4C4C4C;
    font-weight: 500;
    padding: 4px 0 16px;
}
.accordion-body .table-responsive ~ ul,
.accordion-body .table-responsive ~ ol{
    margin-top: 0.5rem;
}

/* ===================================
    Forms
====================================== */
label,
.label{
    display: inline-block;
    margin-bottom: 0.5rem;
}

.form-group{
    margin-bottom: 22px;
}

.form-label{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #303030;
}
textarea { 
    resize: none; 
}

input:focus, 
textarea:focus,
.form-control:focus{
    border-color: transparent !important;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}
input[data-autocompleted] {
    background-color: transparent !important;
}

input,
textarea,
.form-control,
.form-control:focus {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-weight: 500;
    color: #4C4C4C;
    background-color: #F3F3F4;
    border: 0;
    border-radius: 0;
    height: auto;
    outline: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
    font-size:15px !important;
    color: #828282 !important;
}

.input-search-wrapper{
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
}

.input-search-wrapper input{
    margin: 0;
}

.input-search-wrapper .search-button{
    padding: 0 18px;
    font-size: 20px;
}

label.radio-custom, 
label.checkbox-custom {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.radio-custom input[type=radio], 
.checkbox-custom input[type=checkbox] {
    position: absolute;
    z-index: -1;
    width: 15px;
    height: 15px;
    opacity: 0;
    padding: 0;
}

.radio-custom > i.fa-circle, 
.checkbox-custom > i.fa-square {
    margin-right: 4px;
    color: #2CBFCF;
    vertical-align: middle;
}

.checkbox-custom > i.fa-square {
    font-size: 20px;
}

.radio-custom > input:checked ~ i.fa-circle:before, 
.checkbox-custom > input:checked ~ i.fa-square:before {
    color: #2CBFCF;
}

.checkbox-custom > input:checked ~ i.fa-square:before {
    content: '\f046';
}
.bootstrap-select>.dropdown-toggle{
    min-height: 45.5px;
    margin-bottom: 0;
    padding: 10px 12px;
    font-family: inherit;
    font-weight: 500;
    color: #4C4C4C;
    background-color: #F3F3F4;
    border: 0;
    border-radius: 0;
    height: auto;
    outline: 0;
    font-size: inherit;
    line-height: inherit;
    text-transform: unset;
    letter-spacing: unset;
}

.bootstrap-select .dropdown-toggle:focus, 
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
    outline: none !important;
    outline-offset: 0 !important;
}
.bootstrap-select .btn-check:checked + .btn, :not(.btn-check) + .btn:active, 
.bootstrap-select .btn:first-child:active, 
.bootstrap-select .btn.active, .btn.show {
    color: #4C4C4C;
    background-color: #F3F3F4;
    border: 0;
}
.bootstrap-select>.dropdown-toggle.bs-placeholder, 
.bootstrap-select>.dropdown-toggle.bs-placeholder:active, 
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus, 
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: #828282;
}
.bootstrap-select .dropdown-menu{
    color: #4C4C4C;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: inherit;
    line-height: inherit;
    text-transform: unset;
    letter-spacing: unset;

}
.bootstrap-select .dropdown-menu ul li{
    padding-left: 0;
    margin-bottom: 0;
}

.bootstrap-select .dropdown-menu ul li:before{
    display: none;
}
.dropdown-item.active, .dropdown-item{
    font-weight: 500;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #EE2B7A;
}
.dropdown-item:hover, .dropdown-item:focus {
    color: #4C4C4C;
    background-color: #F3F3F4;
}

.error-message{
    color: #EE2B7A;
}

.success-form-message,
.error-form-message{
    font-size: 19px;
    line-height: 30px;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 30px;
}

.success-form-message{
     color: #2CBFCF;
}
.error-form-message{
     color: #EE2B7A;
}


/* ===================================
    Flatpickr
====================================== */
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover, 
.flatpickr-day.selected.prevMonthDay, 
.flatpickr-day.startRange.prevMonthDay, 
.flatpickr-day.endRange.prevMonthDay, 
.flatpickr-day.selected.nextMonthDay, 
.flatpickr-day.startRange.nextMonthDay, 
.flatpickr-day.endRange.nextMonthDay {
    background: #EE2B7A;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color: #EE2B7A;
}

.flatpickr-day{
    color: #4C4C4C;
}
.flatpickr-day.today {
    border-color: #959ea9;
}

/* ===================================
    Parsley validation
====================================== */

.parsley-errors-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 3px;
    font-size: 13px;
    color: #EE2B7A;
    font-weight: 500;
    opacity: 0;
    transition: all .3s ease-in;
}

.parsley-errors-list li{
    color: #EE2B7A;
    font-weight: 600;
    padding: 0;
    margin-bottom: 0;
}

.parsley-errors-list li:before{
    display: none;
}
.parsley-errors-list.filled {
    opacity: 1;
}

.parsley-error-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 6px;
    font-size: 12px;
}


/* ===================================
    Section background
====================================== */
.section-bg-image{
    background-position: center ;
    background-repeat: no-repeat;
}

/* ===================================
    Section padding top
====================================== */

.section-padding-top-20 {
    padding-top: 20px !important;
}
.section-padding-top-30 {
    padding-top: 30px !important;
}
.section-padding-top-40 {
    padding-top: 40px !important;
}
.section-padding-top-50 {
    padding-top: 50px !important;
}
.section-padding-top-60 {
    padding-top: 60px !important;
}
.section-padding-top-70 {
    padding-top: 70px !important;
}
.section-padding-top-80 {
    padding-top: 80px !important;
}
.section-padding-top-90 {
    padding-top: 90px !important;
}
.section-padding-top-100 {
    padding-top: 100px !important;
}
.section-padding-top-110 {
    padding-top: 110px !important;
}
.section-padding-top-120 {
    padding-top: 120px !important;
}
.section-padding-top-150 {
    padding-top: 150px !important;
}
.section-padding-top-0 {
    padding-top: 0 !important;
}

/* ===================================
   Section padding bottom
====================================== */
.section-padding-bottom-20 {
    padding-bottom: 20px !important;
}
.section-padding-bottom-30 {
    padding-bottom: 30px !important;
}
.section-padding-bottom-40 {
    padding-bottom: 40px !important;
}
.section-padding-bottom-50 {
    padding-bottom: 50px !important;
}
.section-padding-bottom-60 {
    padding-bottom: 60px !important;
}
.section-padding-bottom-70 {
    padding-bottom: 70px !important;
}
.section-padding-bottom-75 {
    padding-bottom: 75px !important;
}
.section-padding-bottom-80 {
    padding-bottom: 80px !important;
}
.section-padding-bottom-90 {
    padding-bottom: 90px !important;
}
.section-padding-bottom-100 {
    padding-bottom: 100px !important;
}
.section-padding-bottom-110 {
    padding-bottom: 110px !important;
}
.section-padding-bottom-120 {
    padding-bottom: 120px !important;
}
.section-padding-bottom-150 {
    padding-bottom: 150px !important;
}
.section-padding-bottom-0 {
    padding-bottom: 0 !important;

}
@media (max-width: 1200px) {

    .section-padding-top-150 {
        padding-top: 100px !important;
    }
    .section-padding-top-120 {
        padding-top: 100px !important;
    }
    .section-padding-top-110 {
        padding-top: 100px !important;
    }
    .section-padding-bottom-150 {
        padding-bottom: 100px !important;
    }
    .section-padding-bottom-120 {
        padding-bottom: 100px !important;
    }
    .section-padding-bottom-110 {
        padding-bottom: 100px !important;
    }

}

@media (max-width: 992px){

    .section-padding-top-150 {
        padding-top: 90px !important;
    }
    .section-padding-top-120 {
        padding-top: 90px !important;
    }
    .section-padding-top-110 {
        padding-top: 80px !important;
    }
    .section-padding-top-100 {
        padding-top: 80px !important;
    }
    .section-padding-top-80 {
        padding-top: 80px !important;
    }
    .section-padding-bottom-150 {
        padding-bottom: 90px !important;
    }
    .section-padding-bottom-120 {
        padding-bottom: 90px !important;
    }
    .section-padding-bottom-110 {
        padding-bottom: 80px !important;
    }
    .section-padding-bottom-100 {
        padding-bottom: 80px !important;
    }
    .section-padding-bottom-80 {
        padding-bottom: 80px !important;
    }
}

@media (max-width: 576px) {

    .section-padding-top-150 {
        padding-top: 80px !important;
    }
    .section-padding-top-120 {
        padding-top: 80px !important;
    }
    .section-padding-top-110 {
        padding-top: 60px !important;
    }
    .section-padding-top-100 {
        padding-top: 60px !important;
    }
    .section-padding-top-90 {
        padding-top: 60px !important;
    }
    .section-padding-top-80 {
        padding-top: 60px !important;
    }
    .section-padding-bottom-150 {
        padding-bottom: 80px !important;
    }
    .section-padding-bottom-120 {
        padding-bottom: 80px !important;
    }
    .section-padding-bottom-110 {
        padding-bottom: 60px !important;
    }
    .section-padding-bottom-100 {
        padding-bottom: 60px !important;
    }
    .section-padding-bottom-90 {
        padding-bottom: 60px !important;
    }
    .section-padding-bottom-80 {
        padding-bottom: 60px !important;
    }
    
}

/* ===================================
    Header
====================================== */
.header {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    left: 0;
    padding: 0 40px;
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 10;
}

.header.reveal{
    background-color: #fff;
} 

.header-logo {
    display: inline-block;
    position: relative;
    height: 60px;
    max-width: 100%;
    vertical-align: middle;
    opacity: 1;
    transition: all .9s ease-in-out;
}

.header-logo img{
    width: auto;
    height: 100%;
}

.header-label{
    color: #000;
    font-size: 13px;
    left: 75px;
    height: 40px;
    letter-spacing: 1px;
    line-height: 40px;
    position: fixed;
    top: 550px;
    text-align: right;
    width: 500px;
    transform: rotate(270deg);
    transform-origin: left bottom;
    font-weight: 600;
}


.header-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.header-hamburger {
    position: relative;
    width: 70px;
    height: 24px;
    cursor: pointer;
}

.hamburger-line {
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #000;
    transition: all .3s ease-in-out;
    transform-origin: center;
}


.hamburger-line-1 {
    top: 7px;
    left: 0;
}

.hamburger-line-2 {
    top: 16px;
    left: 20px;
}

.header-hamburger:hover .hamburger-line-1 {
    left: 20px; 
}

.header-hamburger:hover .hamburger-line-2 {
    left: 0;  
}


@media (max-width: 992px){

    .header {
        height: 70px;
        padding: 0 15px;
        top: 0;
    }

    .header-logo{
        height: 50px;
    }

  
}

@media (max-width: 576px){

    .header-hamburger,
    .header-hamburger-close{
        width: 56px;
    }

    .hamburger-line{
        width: 40px;
    }
    .hamburger-line-2 {
        left: 16px;
    }

    .header-hamburger:hover .hamburger-line-1 {
        left: 0; 
    }

    .header-hamburger:hover .hamburger-line-2 {
        left: 16px;
    }

    .header-hamburger-close .hamburger-line-1 {
        transform: translate(8px, 4.5px) rotate(45deg);
    }

    .header-hamburger-close .hamburger-line-2 {
        transform: translate(-8px, -4.5px) rotate(-45deg);
    }
}
/* ===================================
    Navigation
====================================== */
body.menu-opened{
    overflow: hidden;
}

.navigation-left{
    background-image: url('../../img/bg_menu_left.png');
    position: fixed;
    width: 30%;
    height: 100%;
    overflow: hidden;
     bottom: -100%;
    left: 0;
    background-position: center; 
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .8s ease-in-out;
    z-index: 15;
}

.navigation-left{
    position: fixed;
    width: 30%;
    height: 100%;
    overflow: hidden;
     bottom: -100%;
    left: 0;
    transition: all .8s ease-in-out;
    z-index: 15;
}

.navigation-left.open {
    bottom: 0;
}

.navigation-right{
    position: fixed;
    width: 70%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    top: -100%;
    right: 0;
    background: #000;
    transition: all .8s ease-in-out;
    z-index: 15;
}

.navigation-right.open {
    top: 0;
}

.header-hamburger-close {
    position: absolute;
    width: 68px;
    height: 28px;
    right: 40px;
    top: 28px;
    cursor: pointer;
    z-index: 15;
}

.header-hamburger-close .hamburger-line{
    background-color: #EE2B7A;
}


.header-hamburger-close .hamburger-line-1 {
    transform: translate(10px, 5px) rotate(45deg);
}

.header-hamburger-close .hamburger-line-2 {
    transform: translate(-10px, -5px) rotate(-45deg);
}

nav.navigation-menu {
    position: relative;
    width: 100%;
    height: 100%;        
    display: flex;
    justify-content: center;
    align-items: center;       
    overflow: hidden;          
}

.navigation-menu-center {
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
    width: 100%;
    padding: 30px 0;
    scrollbar-gutter: stable;
}

.navigation-menu ul {
    list-style: none;
    width: fit-content;
    margin: 0 auto;
    padding: 0;
}

.navigation-menu li{
    padding: 0;
    margin: 0;
    text-align: center;
}

.navigation-menu li:before{
    display: none;
}

.navigation-menu li.menu-item a.menu-link{
    display: block;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 13px;
    color: #fff;
    cursor: pointer;
}

.navigation-menu li.menu-item a.menu-link.active{
    color: #EC3C84;
}

.navigation-menu li.menu-item a.menu-link:hover{
    color: #2CBFCF;
}

.navigation-menu li.menu-item-dropdown > a.opened{
    color: #2CBFCF;
}

.navigation-menu ul.menu-list .sub-menu{
    display: none;
}

.navigation-menu ul.menu-list .sub-menu .menu-link{
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
}

.language-switcher{
    position: absolute;
    right: 55px;
    height: 40px;
    line-height: 40px;
    text-align: right;
    width: 500px;
    transform: rotate(270deg);
    transform-origin: right bottom;
    top: 30px;
}

.language-switcher a{
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-right: 30px;
}

.language-switcher a.active{
    color: #EE2B7A;
}


@media (max-width: 576px) {

    .navigation-left{
        background-image: url('../../img/bg_menu_left_mobile.png');
        width: 100%;
        height: 20%;
        bottom: -20%;
        left: 0;
    }

    .navigation-left.open {
        bottom: 0;
    }

    .navigation-right{
        width: 100%;
        height: 80%;
        top: -80%;
        right: 0;
    }

    .navigation-right.open {
        top: 0;
    }

    .header-hamburger-close{
        width: 56px;
        right: 14px;
    }

   .navigation-menu-center{
        max-height: 70vh;
   }

    .header-hamburger-close .hamburger-line-1 {
        transform: translate(8px, 4.5px) rotate(45deg);
    }

    .header-hamburger-close .hamburger-line-2 {
        transform: translate(-8px, -4.5px) rotate(-45deg);
    }

    .navigation-menu li.menu-item a.menu-link{
        font-size: 20px;
    }

    .navigation-menu ul.menu-list .sub-menu .menu-link{
        font-size: 18px;
        line-height: 1;
    }

    .language-switcher{
        right: 24px;
    }

    .language-switcher a{
        font-size: 14px;
        margin-right: 18px;
    }

}

/* ===================================
    Banner
====================================== */

.banner {
    position: relative;
    padding: 0;
}

.banner-main {
    height: 100vh;
}

.banner .background-overlay {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
}

.banner-main .banner-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
}

.banner-pages {
  width: 100%;
  padding: 120px 0 60px;
}

.banner-pages .banner-content{
    position: relative;
}

.banner-pages .banner-title{
    position: relative;
    font-size: 62px;
    color: #000;
    font-weight: 800;
    line-height: 1;
    text-align: left;
    margin: 0;
    letter-spacing: -.06em;
}

.banner-pages .banner-title::after {
    content: attr(data-text);
    position: absolute;
    left: 4px;
    top: 4px;
    color: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.banner-pages .separator-pattern{
    margin: 15px 0 0;
    width: 85px;
}

.banner-pages .separator-line{
    width: 208px;
    margin-top: 41px;
    margin-bottom: 29px;
}

@media (max-width: 768px){

    .banner-pages .banner-title{
        font-size: 56px;
    }

}

@media (max-width: 576px) {
    
    .banner-pages .banner-title::after{
        display: none;
    }


    .banner_main_cir.banner-main .banner-image{
        background-image: url('../../img/banner_main_cir_mobile.png') !important;
    }


    .banner_main_lat.banner-main .banner-image{
        background-image: url('../../img/banner_main_lat_mobile.png') !important;
    }

    .banner-pages .banner-title{
        font-size: 40px;
    }
}
/* ===================================
   Section infobox
====================================== */
.section-infobox .container-fluid .infobox-container{
    padding: 0;
}
.section-infobox .infobox-container{
    display: flex;
    flex-wrap: wrap;
}

.section-infobox .infobox{
    display: flex;
    padding-right: 1rem;
    padding-left: 1rem;
    align-items: flex-start;
}

.section-infobox .infobox.content-position-top-left{
   align-items: flex-start;
   justify-content: end;
   text-align: left;
}

.section-infobox .infobox.content-position-top-center{
   align-items: flex-start;
   justify-content: center;
   text-align: center;
}

.section-infobox .infobox.content-position-top-right{
   align-items: flex-start;
   justify-content: end;
   text-align: right;
}

.section-infobox .infobox.content-position-center-left{
   align-items: center;
   justify-content: start;
   text-align: left;
}

.section-infobox .infobox.content-position-center-center{
   align-items: center;
    justify-content: center;
    text-align: center;
}

.section-infobox .infobox.content-position-center-right{
   align-items: center;
    justify-content: end;
    text-align: right;
}

.section-infobox .infobox.content-position-bottom-left{
   align-items: flex-end;
    justify-content: start;
    text-align: left;
}

.section-infobox .infobox.content-position-bottom-center{
   align-items: flex-end;
    justify-content: center;
    text-align: center;
}

.section-infobox .infobox.content-position-bottom-right{
   align-items: flex-end;
    justify-content: end;
    text-align: right;
}

/*.section-infobox .infobox.content-position-center-right .title:after,
.section-infobox .infobox.content-position-top-right .title:after,
.section-infobox .infobox.content-position-bottom-right .title:after{
    right: 0;
    left: auto;
}

.section-infobox .infobox.content-position-top-center .title:after,
.section-infobox .infobox.content-position-center-center .title:after,
.section-infobox .infobox.content-position-bottom-center .title:after{
    left: 50%;
    transform: translateX(-50%);
}*/
.section-infobox.section-item__bordered .infobox{
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.section-infobox.section__columns_two .infobox{
    width: 50%;
}

.section-infobox.section__columns_three .infobox{
    width: 33.33333%;
}

.section-infobox.section__columns_four .infobox{
    width: 25%;
}

.section-infobox.section__columns_two.section-item__bordered .infobox:nth-child(2n) {
   border-right: 1px solid #ddd;
}

.section-infobox.section__columns_two.section-item__bordered .infobox:nth-last-child(-n+2) {
    border-bottom: 1px solid #ddd;
}

.section-infobox.section__columns_three.section-item__bordered .infobox:nth-child(3n) {
   border-right: 1px solid #ddd;
}

.section-infobox.section__columns_three.section-item__bordered .infobox:nth-last-child(-n+3) {
    border-bottom: 1px solid #ddd;
}

.section-infobox.section__columns_four.section-item__bordered .infobox:nth-child(4n) {
   border-right: 1px solid #ddd;
}

.section-infobox.section__columns_four.section-item__bordered .infobox:nth-last-child(-n+4) {
    border-bottom: 1px solid #ddd;
}

.section-infobox .infobox-content{
    padding: 65px 35px;
    width: 100%;
}

.section-infobox .infobox .main-title{
    margin-bottom: 0;
}

.section-infobox .infobox .title{
    margin-top: 0;
}

@media (max-width: 1200px) {

    .section-infobox .infobox-content{
        padding: 50px 16px;
    }
}

@media (max-width: 992px) {

    .section-infobox .infobox-container{
        flex-direction: column;
    }

    .section-infobox.section__columns_two .infobox,
    .section-infobox.section__columns_three .infobox,
    .section-infobox.section__columns_four .infobox{
        width: 100%;
    }

    .section-infobox.section-item__bordered .infobox {
        border-right: none !important;
        border-left: none !important;
        border-bottom: none !important;
        border-top: 1px solid #ddd;
    }
    .section-infobox.section-item__bordered .infobox:last-child {
        border-bottom: 1px solid #ddd !important;
    }
}

@media (max-width: 576px) {

    .section-infobox .infobox-content{
        padding: 50px 0;
    }
}

/* ===================================
    Call to action 01
====================================== */

.section-cta-01{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #F3F3F4;
}

.section-cta-01 .cta-content{
    align-items: center;
}

.section-cta-01 .cta-content .cta-title{
    font-size: 26px;
    color: #000;
    font-weight: 600;
    font-style: italic;
    line-height: 1.2em;
    letter-spacing: -2px;
    margin: 0;
}

.section-cta-01 .cta-content .cta-description{
    color: #4C4C4C;
    font-weight: 500;
    margin-top: 20px;
}

.section-cta-01 .cta-content .cta-description p:last-child{
    margin-bottom: 0;
}

.section-cta-01 .cta-button-wrapper{
    display: flex;
    justify-content: flex-end;
}

.section-cta-01 .cta-button-wrapper .btn{
    margin-right: 10px;
}

.section-cta-01 .cta-button-wrapper .btn:last-child{
    margin-right: 0;
}

@media (max-width: 992px){

    .section-cta-01{
        padding: 60px 0 !important;
    }

    .section-cta-01 .cta-text-wrapper{
        text-align: center;
        margin-bottom: 30px;
    }

    .section-cta-01 .cta-button-wrapper{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section-cta-01 .cta-button-wrapper .btn {
        margin-right: 0;
        margin-bottom: 16px;
    }
    .section-cta-01 .cta-button-wrapper .btn:last-child{
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {

    .section-cta-01 .cta-text-wrapper .cta-title{
        font-size: 24px !important;
    }
}


/* ===================================
    Call to action 02
====================================== */

.section-cta-02{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #F3F3F4;
}

.section-cta-02 .cta-content{
    max-width: 950px;
    margin: 0 auto;
}

.section-cta-02 .cta-text-wrapper{
    margin-bottom: 26px;
    text-align: center;
}

.section-cta-02 .cta-content .cta-title{
    font-size: 40px;
    color: #000;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -2px;
    margin: 0;
    margin-bottom: 30px;
}

.section-cta-02 .cta-content .cta-description{
    font-size: 19px;
    color: #303030;
    font-style: italic;
    line-height: 30px;
    font-weight: 600;
}

.section-cta-02 .cta-content .cta-description p:last-child{
    margin-bottom: 0;
}

.section-cta-02 .cta-button-wrapper{
    display: flex;
}

.section-cta-02 .cta-button-wrapper .btn:not(.btn:only-child){
    min-width: 250px;
}

.section-cta-02 .cta-button-wrapper.alignment-left{
    justify-content: start;
}

.section-cta-02 .cta-button-wrapper.alignment-center{
    justify-content: center;
}

.section-cta-02 .cta-button-wrapper.alignment-right{
    justify-content: end;
}

.section-cta-02 .cta-button-wrapper.alignment-between{
    justify-content: space-between;
}

.section-cta-02 .cta-button-wrapper .btn{
    margin-right: 32px;
}

.section-cta-02 .cta-button-wrapper .btn:last-child{
    margin-right: 0;
}

.section-cta-02 .cta-button-wrapper.alignment-between .btn{
    margin-right: 0;
}

@media (max-width: 992px){

    .section-cta-02{
        padding: 80px 0 !important;
    }

    .section-cta-02 .cta-button-wrapper{
        flex-direction: column;
    }

    .section-cta-02 .cta-button-wrapper.alignment-left{
        align-items: start;
    }

    .section-cta-02 .cta-button-wrapper.alignment-center,
    .section-cta-02 .cta-button-wrapper.alignment-between{
        align-items: center;
    }

    .section-cta-02 .cta-button-wrapper.alignment-right{
        align-items: end;
    }
    .section-cta-02 .cta-button-wrapper .btn:not(.btn:only-child){
        min-width: 300px;
    }

    .section-cta-02 .cta-button-wrapper .btn{
        margin-right: 0;
        margin-bottom: 16px;
    }

    .section-cta-02 .cta-button-wrapper .btn:last-child{
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {

    .section-cta-02{
        padding: 60px 0 !important;
    }

    .section-cta-02 .cta-text-wrapper .cta-title{
        font-size: 34px !important;
    }
}

/* ===================================
    Call to action 03
====================================== */

.section-cta-03{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #F3F3F4;
}

.section-cta-03 .cta-text-wrapper{
    max-width: 560px;
    text-align: left;
}

.section-cta-03 .cta-button-wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
}

.section-cta-03 .cta-title{
    font-size: 36px;
    color: #000;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -2px;
    margin: 0;
}

.section-cta-03 .cta-description{
    font-size: 19px;
    color: #303030;
    font-style: italic;
    line-height: 30px;
    font-weight: 500;
    margin-top: 20px;
}

.section-cta-03 .cta-description p:last-child{
    margin-bottom: 0;
}

.section-cta-03 .cta-button-wrapper .btn{
    width: 100%;
    margin-bottom: 16px;
}

.section-cta-03 .cta-button-wrapper .btn:last-child{
    margin-bottom: 0;
}

@media (max-width: 992px){

    .section-cta-03{
        padding: 80px 0 !important;
    }

    .section-cta-03 .cta-text-wrapper{
        width: 100%;
        max-width: 100%;
        margin-bottom: 35px;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .section-cta-03{
        padding: 60px 0 !important;
    }

    .section-cta-03 .cta-text-wrapper .cta-title{
        font-size: 28px !important;
    }
}


/* ===================================
    Call to action 04
====================================== */

.section-cta-04 .cta-container{
    gap: 30px 0;
}

.section-cta-04.content-position-left .cta-container{
  justify-content: start;
}
.section-cta-04.content-position-center .cta-container{
  justify-content: center;
}

.section-cta-04.content-position-right .cta-container{
  justify-content: end;
}

.section-cta-04 .cta-item{
    display: flex;
    padding-right: 1rem;
    padding-left: 1rem;
    width: 100%;
}

.section-cta-04.section__columns_two .cta-item{
    width: 50%;
}

.section-cta-04.section__columns_three .cta-item{
    width: 33.33333%;
}

.section-cta-04.section__columns_four .cta-item{
    width: 25%;
}

.section-cta-04 .cta-content{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #F3F3F4;
}


.section-cta-04.section-item__bordered .cta-content{
    border: 1px solid #ddd;
}

.section-cta-04 .cta-icon-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}

.section-cta-04 .cta-title{
  font-size: 20px;
    color: #000;
    font-style: italic;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0;
}

.section-cta-04 .cta-content .cta-icon-wrapper:before{
    transition: all 0.3s ease-in-out;
}

.section-cta-04 .cta-content:hover .cta-icon-wrapper:before{
    transform: scale(1.2, 1.2);
}

@media (max-width: 995px) {


    .section-cta-04.section__columns_three .cta-item,
    .section-cta-04.section__columns_four .cta-item{
        width: 50%;
    }

    .section-cta-04 .cta-content{
        justify-content: start;
    }

    .section-cta-04 .cta-icon-wrapper.icon-size-40 {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {

    .section-cta-04.section__columns_two .cta-item,
    .section-cta-04.section__columns_three .cta-item,
    .section-cta-04.section__columns_four .cta-item{
        width: 100%;
    }

    .section-cta-04 .cta-container{
        gap: 20px 0;
    }
    
   
}
/* ===================================
    Iconbox
====================================== */

.section-iconbox .iconbox-container{
    gap: 50px 0;
}

.section-iconbox.section_item__with_background .iconbox-container,
.section-iconbox.section-item__bordered .iconbox-container{
    gap: 30px 0;
}

.section-iconbox.content-position-left .iconbox-container{
  justify-content: start;
}

.section-iconbox.content-position-center .iconbox-container{
  justify-content: center;
}

.section-iconbox.content-position-right .iconbox-container{
  justify-content: end;
}

.section-iconbox .iconbox{
    display: flex;
    padding-right: 1rem;
    padding-left: 1rem;
    width: 100%;
}

.section-iconbox.section__columns_two .iconbox{
    width: 50%;
}

.section-iconbox.section__columns_three .iconbox{
    width: 33.33333%;
}

.section-iconbox.section__columns_four .iconbox{
    width: 25%;
}

.section-iconbox .iconbox-content{
    display: flex;
}

.section-iconbox.section_item__with_background .iconbox-content,
.section-iconbox.section-item__bordered .iconbox-content{
    width: 100%;
    padding: 28px;
}

.section-iconbox.section-item__bordered .iconbox-content{
    border: 1px solid #ddd;
}

.section-iconbox .iconbox.icon-position-top .iconbox-content{
    flex-direction: column;
}

.section-iconbox .iconbox.icon-position-left .iconbox-content{
    flex-direction: row;
}

.section-iconbox .iconbox.icon-position-top.content-position-top-left .iconbox-content{
    align-items: flex-start;
    justify-content: start;
    text-align: left;
}

.section-iconbox .iconbox.icon-position-top.content-position-top-center .iconbox-content{
    align-items: center;
    justify-content: start;
    text-align: center;
    margin: 0 auto;
}

.section-iconbox .iconbox.icon-position-top.content-position-top-right .iconbox-content{
    align-items: flex-end;
    justify-content: start;
    text-align: right;
    margin-left: auto;
}

.section-iconbox .iconbox.icon-position-top.content-position-center-left .iconbox-content{
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.section-iconbox .iconbox.icon-position-top.content-position-center-center .iconbox-content{
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.section-iconbox .iconbox.icon-position-top.content-position-center-right .iconbox-content{
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    margin-left: auto;
}

.section-iconbox .iconbox.icon-position-top.content-position-bottom-left .iconbox-content{
    align-items: flex-start;
    justify-content: end;
    text-align: left;
}

.section-iconbox .iconbox.icon-position-top.content-position-bottom-center .iconbox-content{
    align-items: center;
    justify-content: end;
    text-align: center;
    margin: 0 auto;
}

.section-iconbox .iconbox.icon-position-top.content-position-bottom-right .iconbox-content{
    align-items: flex-end;
    justify-content: end;
    text-align: right;
    margin-left: auto;
}

.section-iconbox .iconbox.icon-position-left.content-position-top-left .iconbox-content{
    align-items: flex-start;
    justify-content: start;
    text-align: left;
}

.section-iconbox .iconbox.icon-position-left.content-position-top-center .iconbox-content{
    align-items: flex-start;
    text-align: left;
    margin: 0 auto;
}

.section-iconbox .iconbox.icon-position-left.content-position-top-right .iconbox-content{
    align-items: flex-start;
    text-align: left;
    margin-left: auto;
}

.section-iconbox .iconbox.icon-position-left.content-position-center-left .iconbox-content{
    align-items: center;
    text-align: left;
}

.section-iconbox .iconbox.icon-position-left.content-position-center-center .iconbox-content{
    align-items: center;
    text-align: left;
    margin: 0 auto;
}

.section-iconbox .iconbox.icon-position-left.content-position-center-right .iconbox-content{
    align-items: center;
    text-align: left;
    margin-left: auto;
}

.section-iconbox .iconbox.icon-position-left.content-position-bottom-left .iconbox-content{
    align-items: flex-end;
    text-align: left;
}

.section-iconbox .iconbox.icon-position-left.content-position-bottom-center .iconbox-content{
    align-items: flex-end;
    text-align: left;
    margin: 0 auto;
}

.section-iconbox .iconbox.icon-position-left.content-position-bottom-right .iconbox-content{
    align-items: flex-end;
    text-align: left;
    margin-left: auto;
}

.section-iconbox .iconbox-icon-wrapper{
    position: relative;
    display: flex;
}

.section-iconbox .iconbox.icon-position-top .iconbox-icon-wrapper{
    margin-bottom: 24px;
}

.section-iconbox .iconbox.icon-position-left .iconbox-icon-wrapper{
    flex-shrink: 0;
    margin-right: 20px;
}

.section-iconbox .iconbox-text-wrapper{
    max-width: 320px;
}

.section-iconbox.section_item__with_background .iconbox-text-wrapper,
.section-iconbox.section-item__bordered .iconbox-text-wrapper{
    max-width: 100%;
}

.section-iconbox .iconbox-title{
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.section-iconbox .iconbox-title:not(.headline-color-pink):not(.headline-color-green){
    line-height: 1.4;
}

.section-iconbox .iconbox-description{
    color: #4C4C4C;
    font-weight: 500;
}

.section-iconbox .iconbox-description p:last-child{
    margin-bottom: 0;
}

.section-iconbox .button-wrapper {
    margin-top: 15px;
}

@media (max-width: 995px) {

    .section-iconbox .iconbox-container{
        gap: 35px 0;
    }

    .section-iconbox.section_item__with_background .iconbox-container,
    .section-iconbox.section-item__bordered .iconbox-container{
        gap: 30px 0;
    }

    .section-iconbox.section__columns_three .iconbox,
    .section-iconbox.section__columns_four .iconbox{
        width: 50%;
    }
}

@media (max-width: 576px) {

    .section-iconbox.section__columns_two .iconbox,
    .section-iconbox.section__columns_three .iconbox,
    .section-iconbox.section__columns_four .iconbox{
        width: 100%;
    }
}

/* ===================================
    Cards
====================================== */

.section-cards .cards-container{
    gap: 50px 0;
}

.section-cards.section_item__with_background .cards-container,
.section-cards.section-item__bordered .cards-container{
    gap: 30px 0;
}

.section-cards.content-position-left .cards-container{
  justify-content: start;
}

.section-cards.content-position-center .cards-container{
  justify-content: center;
}

.section-cards.content-position-right .cards-container{
  justify-content: end;
}

.section-cards .cards{
    display: flex;
    padding-right: 1rem;
    padding-left: 1rem;
    width: 100%;
}

.section-cards.section__columns_two .cards{
    width: 50%;
}

.section-cards.section__columns_three .cards{
    width: 33.33333%;
}

.section-cards.section__columns_four .cards{
    width: 25%;
}

.section-cards .cards-content{
    display: flex;
}

.section-cards.section_item__with_background .cards-content,
.section-cards.section-item__bordered .cards-content{
    width: 100%;
    padding: 28px;
}

.section-cards.section__columns_two.section_item__with_background .cards-content,
.section-cards.section__columns_two.section-item__bordered .cards-content{
    padding: 38px;
}

.section-cards.section-item__bordered .cards-content{
    border: 1px solid #ddd;
}


.section-cards .cards.content-position-top-left .cards-content{
    align-items: flex-start;
    justify-content: start;
    text-align: left;
}

.section-cards .cards.content-position-top-center .cards-content{
    align-items: start;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.section-cards .cards.content-position-top-right .cards-content{
    align-items: start;
    justify-content: end;
    text-align: right;
    margin-left: auto;
}

.section-cards .cards.content-position-center-left .cards-content{
    align-items: center;
    justify-content: start;
    text-align: left;
}

.section-cards .cards.content-position-center-center .cards-content{
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.section-cards .cards.content-position-center-right .cards-content{
    align-items: center;
    justify-content: end;
    text-align: right;
    margin-left: auto;
}

.section-cards .cards.content-position-bottom-left .cards-content{
    align-items: end;
    justify-content: start;
    text-align: left;
}

.section-cards .cards.content-position-bottom-center .cards-content{
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.section-cards .cards.content-position-bottom-right .cards-content{
    align-items: flex-end;
    justify-content: end;
    text-align: right;
    margin-left: auto;
}


.section-cards .cards-text-wrapper{
    max-width: 280px;
    min-width: 200px;
}

.section-cards.section_item__with_background .cards-text-wrapper,
.section-cards.section-item__bordered .cards-text-wrapper{
    max-width: 100%;
}

.section-cards .cards-title{
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.section-cards .cards-title:not(.headline-color-pink):not(.headline-color-green){
    line-height: 1.4;
}

.section-cards .cards-description{
    color: #4C4C4C;
    font-weight: 500;
}

.section-cards .cards-description p:last-child{
    margin-bottom: 0;
}


.section-cards .button-wrapper {
    margin-top: 15px;
}

@media (max-width: 1024px){
    .section-cards.section__columns_two.section_item__with_background .cards-content,
    .section-cards.section__columns_two.section-item__bordered .cards-content{
        padding: 28px;
    }

}

@media (max-width: 995px) {

    .section-cards .cards-container{
        gap: 35px 0;
    }

    .section-cards.section_item__with_background .cards-container,
    .section-cards.section-item__bordered .cards-container{
        gap: 30px 0;
    }

    .section-cards.section__columns_three .cards,
    .section-cards.section__columns_four .cards{
        width: 50%;
    }
}

@media (max-width: 576px) {

    .section-cards.section__columns_two .cards,
    .section-cards.section__columns_three .cards,
    .section-cards.section__columns_four .cards{
        width: 100%;
    }
    .section-cards.section__columns_two.section_item__with_background .cards-content,
    .section-cards.section__columns_two.section-item__bordered .cards-content{
        padding: 28px;
    }

}
/* ===================================
    Iconlist
====================================== */

.iconlist .iconlist-item{
    display: flex;
    margin-bottom: 14px;
}

.iconlist .iconlist-item:last-child{
    margin-bottom: 0;
}

.iconlist .iconlist-item .iconlist-icon-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    padding: 14px;
    transition: all 0.2s ease;
}

.iconlist .iconlist-item-sm .iconlist-icon-wrapper{
    padding: 12px;
}

.iconlist .iconlist-item .iconlist-icon-wrapper:before{
    content: '';
    width: 23px;
    height: 23px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.iconlist .iconlist-item-sm .iconlist-icon-wrapper:before{
    width: 22px;
    height: 22px;
}
.iconlist .iconlist-item .iconlist-icon-wrapper img {
    width: 23px;
    height: auto;
}
.iconlist .iconlist-item-sm .iconlist-icon-wrapper img {
    width: 22px;
}

.iconlist.iconlist-color-green .iconlist-item .iconlist-icon-wrapper{
     background-color: #2CBFCF;
}

.iconlist.iconlist-color-pink .iconlist-item .iconlist-icon-wrapper{
     background-color: #EE2B7A;
}

.iconlist .iconlist-item-link:hover .iconlist-icon-wrapper{
    background-color: #FFC809;
}

.iconlist .iconlist-item .iconlist-text-wrapper{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    background-color: #F3F3F4;
}

.iconlist .iconlist-item-sm .iconlist-text-wrapper{
    padding: 12px 16px;
}
.iconlist .iconlist-item .iconlist-title{
    font-size: 17px;
    color: #000;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.5px;
    margin: 0;
}

.iconlist .iconlist-item .iconlist-description{
    color: #4C4C4C;
    font-weight: 500;
}

.iconlist .iconlist-item .iconlist-description p:last-child{
    margin-bottom: 0;
}


/* ===================================
    Featured text
====================================== */
.featured-text{
    background-image: url(../../img/bg_gray.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin: 30px 0;
    padding: 24px 22px 24px 48px;
    background-color: #F3F3F4;
}

.featured-text h1,
.featured-text h2,
.featured-text h3,
.featured-text h4,
.featured-text h5,
.featured-text h6,
.featured-text p{
    font-size: 18px;
    color: #303030;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3em;
    font-style: italic;
}


.featured-text p:last-child,
.featured-text h1:last-child,
.featured-text h2:last-child,
.featured-text h3:last-child,
.featured-text h4:last-child,
.featured-text h5:last-child,
.featured-text h6:last-child,
.featured-text p:last-child{
    margin-bottom: 0;
}

.featured-text::before {
    content: "!";
    font-weight: 900;
    color: #EE2B7A;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 38px;
    line-height: 1;
}

@media (max-width: 576px) {

    .featured-text::before{
        top: 24px;
        transform: none;
    }
}


/* ===================================
    Blockquote
====================================== */
blockquote{
    position: relative;
    display: block;
    vertical-align: middle;
    margin: 16px 0 32px;
    padding: 30px 30px 42px;
    font-size: 25px;
    font-style: normal;
    line-height: 1.8em;
    text-align: center;
    quotes: none;
    font-weight: 600;
    border: none;
    color: #303030;
    background: #F8F8F8;
}

blockquote h1,
blockquote h2,
blockquote h3,
blockquote h4,
blockquote h5,
blockquote h6{
    font-size: 20px;
    color: #303030;
    font-weight: 600;
    text-align: center;
    margin-top: 0;
    margin-bottom: 14px;
    line-height: 1.5em;
    font-style: italic;
}

blockquote p{
    font-size: 17px;
    color: #4C4C4C;
    font-weight: 500;
    text-align: center !important;
    line-height: 1.5;
    font-style: italic;
}

blockquote p:last-child,
blockquote h1:last-child,
blockquote h2:last-child,
blockquote h3:last-child,
blockquote h4:last-child,
blockquote h5:last-child,
blockquote h6:last-child{
    margin-bottom: 0;
}

blockquote::before {
    content: "\ec52";
    font-family: "remixicon";
    color: #2CBFCF;
    display: block;
    font-size: 2.5em;
    line-height: 1;
}


/* ===================================
   Media
====================================== */
figure.media,
figure.image,
figure.audio  {
    display: table;
    margin: 1rem auto;
    min-width: 50px;
}
.image,
.audio{
    display: table;
    text-align: center;
    margin: 1rem auto;
    min-width: 50px;
}
img.image{
    width: 100%;
    height: auto;
}
.image.align-left,
.audio.align-left{
    float: left;
    margin: 4px 20px 12px 0;
}

.image.align-right,
.audio.align-right{
    float: right;
    margin: 4px 0 12px 20px;
}

.image.align-center,
.audio.align-center {
    margin-left: auto;
    margin-right: auto;
}

figure.image.align-center,
figure.audio.align-center {
    display: table;
}

figure,
.embed-video-container{
    margin-bottom: 1rem;
}

figure figcaption,
.media-caption{
    font-size: 15px;
    color: #303030;
    margin-top: .25rem;
    font-style: italic;
    font-weight: 500;
}

figure ~  .media-caption{
    padding-top: 0;
}

.embed-video{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.embed-video iframe {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.embed-video.image{
    margin: 0;
}

.audio-player {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 190px;
    width: 430px;
    background-color: #1E2125;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   text-align: left;
}

.audio-player .cover img {
    height: 190px;
    width: 190px;
}

.audio-player .info{
    width: 100%;
    padding: 20px;
}
.audio-player .info .title {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 3px;
    letter-spacing: 1px;
    color: #ddd;
    font-weight: 600;
}

.audio-player .info .subtitle {
    font-size: 12px;
    color: #636367;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.audio-player .info .song-title {
    font-size: 14px;
    color: #ddd;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 300;
}

.audio-player .timeline {
    position: relative;
    width: 100%;
    height: 4px;
    background: #151518;
    border-radius: 2px;
    cursor: pointer;
}

.audio-player .timeline .progress {
    background: #2CBFCF;
    width: 0%;
    height: 100%;
    transition: 0.25s;
    border-radius: 2px;
}

.audio-player .timer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
   -webkit-box-pack: end;
   -ms-flex-pack: end;
   justify-content: flex-end;
    color: #B7B8B9;
   line-height: 1.3;
   font-size: 12px;
   margin-bottom: 3px;
    margin-top: 3px;
    text-align: right;
}

.audio-player .timer > * {
    padding: 2px;
}
.audio-player .controls {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.audio-player .controls > * {
  display: flex;
  justify-content: center;
  align-items: center;
}
.audio-player .controls .toggle-play.play,
.audio-player .controls .toggle-play.pause  {
    position: relative;
    width: 26px;
    height: 26px;
    border: 1px solid #B7B8B9;
    border-radius: 100%;
    margin: auto;
    cursor: pointer;
}
.audio-player .controls .toggle-play.play:after{
    content: '';
    display: inline-block;
    position: relative;
    top: 1px;
    left: 8px;
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent #B7B8B9;
}
.audio-player .controls .toggle-play:hover {
    border-color: #2CBFCF
}

.audio-player .controls .toggle-play.play:hover:after{
     border-color: transparent transparent transparent #2CBFCF;
}

.audio-player .controls .toggle-play.pause:before {
  position: absolute;
  top: 6px;
  left: 7px;
  background: #B7B8B9;
  content: "";
  height: 12px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
  position: absolute;
  top: 6px;
  right: 7px;
  background: #B7B8B9;
  content: "";
  height: 12px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:hover:after,
.audio-player .controls .toggle-play.pause:hover:before{
    background: #2CBFCF;
}

.audio-player .controls .volume-container {
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.audio-player .controls .volume-container .volume-button {
  height: 26px;
  display: flex;
  align-items: center;
}
.audio-player .controls .volume-container .volume-button .volume {
  transform: scale(0.7);
}
.audio-player .controls .volume-container .volume-slider {
  position: absolute;
  left: -3px;
  z-index: -1;
  width: 0;
  height: 15px;
  background: white;
  box-shadow: 0 0 20px #000a;
  transition: 0.25s;
}
.audio-player .controls .volume-container .volume-slider .volume-percentage {
  background: #2CBFCF;
  height: 100%;
  width: 75%;
}
.audio-player .controls .volume-container:hover .volume-slider {
  left: -123px;
  width: 120px;
}
[class*=icono-] {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-style: normal;
    color: #B7B8B9;
    text-align: left;
    text-indent: -9999px;
    direction: ltr;
}
[class*=icono-]:after, [class*=icono-]:before {
    content: '';
    pointer-events: none;
}
.icono-volume-medium {
    width: 0;
    height: 0;
    border: 7px solid;
    border-left: none;
    border-top-color: transparent;
    border-bottom-color: transparent;
    padding: 6px 3px;
    box-shadow: inset 4px 0;
     margin-right: 4px;
}

.icono-volume-medium:before{
     position: absolute;
     width: 15px;
    height: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 2px solid;
    border-style: double;
    border-width: 6px;
    border-radius: 50%;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    left: 2px;
}

.icono-volume-mute {
    width: 0;
    height: 0;
    border: 7px solid;
    border-left: none;
    border-top-color: transparent;
    border-bottom-color: transparent;
    padding: 6px 3px;
    box-shadow: inset 4px 0;
    margin-right:4px;
}

.icono-volume-mute:before,
.icono-volume-mute:after{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
     -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
     box-shadow: inset 0 0 0 32px;
}
.icono-volume-mute:before {
    width: 10px;
    height: 2px;
    left: 17px;
}
.icono-volume-mute:after {
    height: 10px;
    width: 2px;
    left: 21px;
}

@media (max-width: 1024px) {
    
        img.image{
        width: 100% !important;
        height: auto !important;
    }
}
/* ===================================
    Gallery
====================================== */
.section-gallery{
    padding-top: 30px;
}

.gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item{
    position: relative;
    overflow: hidden;
    transition: .4s ease;
}

.gallery-item:before {
    content: " ";
    width: 0;
    height: 0;
    padding-top: 100%;
    display: inline-block;
    vertical-align: top;
}

.gallery-item-thumb{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.35s ease-in-out;
}


.gallery-item-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    opacity: 0;
    z-index: 2;
    background-color: rgba(243, 243, 244, .91);
    transition: opacity .4s;
}

.gallery-item-overlay-inner{
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
}

.gallery-item-content{
    width: 70%;
    margin: auto;
}

.gallery-item-content .gallery-item-title{
    font-size: 30px;
    color: #000;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -2px;
    margin-bottom: 0;
    transform: translate3d(40%, 0, 0);
    opacity: 0;
    transition: transform 0s .2s, opacity .2s;
}

.gallery-item-content .gallery-item-subtitle{
    color: #303030;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    transform: translate3d(40%, 0, 0);
    opacity: 0;
    transition: transform 0s .2s, opacity .2s;
}

.gallery-item-content .separator-pattern{
    transform: translate3d(40%, 0, 0);
    opacity: 0;
    transition: transform 0s .2s, opacity .2s;
    margin-bottom: 18px;
}

.gallery-item:hover .gallery-item-thumb{
    filter: none;
}

.gallery-item:hover .gallery-item-overlay{
    opacity: 1;
}

.gallery-item:hover  .gallery-item-title{
    transform: translate3d(0, 0, 0);
    opacity: 1;
    transition: transform .35s cubic-bezier(.15, .7, .54, .99) .1s, opacity .6s;
}

.gallery-item:hover  .gallery-item-subtitle{
    transform: translate3d(0, 0, 0);
    opacity: 1;
    transition: transform .35s cubic-bezier(.15, .7, .54, .99), opacity .4s;
}

.gallery-item:hover  .separator-pattern{
    transform: translate3d(0, 0, 0);
    opacity: 1;
    transition: transform .35s cubic-bezier(.15, .7, .54, .99) 50ms, opacity .5s;
}

.gallery-loader {
    min-height: 60vh;
    text-align: center;
    padding-top: 200px;
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery-loader.is-loaded {
    min-height: 40px;
    padding-top: 30px;
}

.gallery-loader span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #EE2B7A;
    border-radius: 50%;
    animation: dotPulse 1.2s infinite ease-in-out;
}

.gallery-loader span:nth-child(2) { animation-delay: .2s; }
.gallery-loader span:nth-child(3) { animation-delay: .4s; }

@keyframes dotPulse {

    0%, 80%, 100% { transform: scale(0.5); opacity: .3; }
    40% { transform: scale(1); opacity: 1; }
}

.scroll-trigger {
  height: 1px;
}

@media (max-width: 576px) {

    .gallery{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ===================================
    Magnific Popup
====================================== */
.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out; 
    transform: scale(0.8); 
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready  .mfp-with-anim {
    opacity: 1;
    transform: scale(1); 
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8); 
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/* ===================================
    Calendar 
====================================== */
.fc .fc-toolbar-title {
    font-size: 1.25em;
    text-transform: capitalize;
}

.fc.fc-theme-standard th{
    background-color: #F3F3F4;
}
.fc .fc-highlight {
    background-color: rgba(255, 255, 255,.2);
}
.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 1em;
}
.fc .fc-button{
    font-size: 12px;
    padding: 12px 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none;
    border-radius: 0;
    box-shadow: none !important;
}

.fc .fc-button-primary{
    background-color: #EE2B7A;
    color: #fff;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled):hover{
    background-color: #FFC809;
    color: #fff;
}

.fc .fc-button-primary:disabled{
    background-color: #EE2B7A;
    color: #fff;
}

.fc .fc-button:disabled {
    opacity: 0.8;
}

.fc .fc-button.fc-today-button{
    background-color: #2CBFCF;
    color: #fff;
}

.fc .fc-prevYear-button,
.fc .fc-nextYear-button,
.fc .fc-button.fc-prev-button,
.fc .fc-button.fc-next-button{
    background-color: #EE2B7A;
    color: #fff;
    padding: 11.6px;
}


.fc .fc-daygrid-day.fc-day-today{
    background-color: inherit;
}
.fc .fc-daygrid-day-number{
    font-size: 12.5px;
    font-weight: 500;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number{
    border-radius: 50%;
    background-color: #2CBFCF;
    height: 24px;
    width: 24px;
    padding: 3px 4px;
    color: #fff;
    text-align: center;
}

.fc-daygrid-event{
    font-size: 13px;
    line-height: 1.2
}

.fc-direction-ltr .fc-daygrid-event .fc-event-time {
    font-size: 12px;
    font-weight: 500;
}
.fc .fc-daygrid-day-bottom {
    font-size: 13px;
    margin: 0px 2px;
}

.fc .fc-popover-title {
    font-weight: 500;
}
.fc-daygrid-dot-event.fc-event-mirror, 
.fc-daygrid-dot-event:hover {
    background: #F3F3F4;
}
.fc-daygrid-dot-event .fc-event-title,
.fc-h-event .fc-event-title {
    font-weight: 500;
}

.fc-more-popover{
    width: 380px;
    max-width: calc(100vw - 20px);
}

.fc .fc-more-popover .fc-popover-body {
    min-width: 220px;
    padding: 15px 10px;
}

.fc-popover-custom {
   position: absolute;
   z-index: 9999;
   width: 420px;
   max-width: calc(100vw - 20px);
   background: #fff;
   box-shadow: 0 10px 30px rgba(0,0,0,0.15);
   padding: 14px 18px 28px 20px;
   opacity: 0;
   transform: scale(0.95);
   pointer-events: none;
   transition: opacity 0.18s ease, transform 0.18s ease;
}
.fc-popover-custom.show {
  opacity: 1;
  pointer-events: auto;
}

.fc-popover-arrow {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 5px rgba(0,0,0,0.04);
}

.fc-popover-custom .fc-popover-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.fc-popover-custom .fc-popover-close {
    cursor: pointer;
    color: #000;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: .5;
    opacity: 0.65;
}

.fc-popover-custom .fc-popover-close:hover {
    opacity: 0.3;
}

.fc-popover-custom .fc-popover-item{
    display: flex;
    justify-content: start;
    align-items: start;
    margin-bottom: 15px;
}

.fc-popover-custom .fc-popover-item:last-child{
    margin-bottom: 0;
}
.fc-popover-custom .fc-popover-item .fc-popover-icon{
    font-size: 16px;
    margin-right: 8px;
}

.fc-popover-custom .fc-popover-item .fc-popover-icon .fc-daygrid-event-dot{
    border: 6px solid #ddd;
    border-radius: 6px;
    margin: 4px 2px 0 2px;
}

.fc-popover-custom .event-title{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
}

.fc-popover-custom .event-date{
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.fc-popover-custom .event-location,
.fc-popover-custom .event-description{
    font-size: 15px;
}

.fc-popover-custom  p{
    color: #4C4C4C;
    font-weight: 500;
}

.fc-popover-custom  p:last-child{
    margin-bottom: 0;
}

@media (max-width: 576px) {

    .fc .fc-toolbar-title {
        font-size: 1em;
    }

    .fc .fc-button{
        text-transform: capitalize;
        padding: 10px;
    }
    .fc-direction-ltr .fc-toolbar > * > :not(:first-child) {
        margin-left: 0.4em;
    }

    .fc .fc-prevYear-button, 
    .fc .fc-nextYear-button, 
    .fc .fc-button.fc-prev-button,
    .fc .fc-button.fc-next-button {
        padding: 10px;
    }

}

/* ===================================
    Articles
====================================== */

.article-category a{
    font-size: 16px;
    color: #303030;
    font-weight: 500;
    line-height: 1;
}

.article-category a:before {
    content: "#";
    display: inline-block;
    color: #2CBFCF;
    margin-right: 2px;
    vertical-align: middle;
    font-size: 17px;
}

.article-category a:not(:first-child):before{
    margin-left: 6px;
}

.article-category a:hover,
.article-content a:hover {
    color: #FFC809;
}

.article-date{
    font-size: 15px;
    color: #303030;
    font-style: italic;
    font-weight: 500;
}

.article-content p{
    color: #4C4C4C;
    font-weight: 500;
}

.banner .search-terms{
    font-size: 50px;
}

/* ===================================
    Article listed
====================================== */
.section-article-listed{
    padding-top: 30px;
}
.article-listed .article-widget{
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    margin-bottom: 30px;
}

.article-listed .article-widget:last-child{
    margin-bottom: 0 !important;
}

.article-listed .article-featured{
    position: relative;
    flex-basis: 25%;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}

.article-listed .article-featured:before {
    content: " ";
    width: 0;
    height: 0;
    padding-top: 56.25%;
    display: inline-block;
    vertical-align: top;
    margin-left: -0.3em;
}

.article-listed .article-content{
    flex-basis: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 16px 4px 28px;
}

.article-listed .article-featured-thumb{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.35s ease-in-out;
}

.article-listed .article-featured:hover .article-featured-thumb{
    transform: scale(1.07, 1.07);
    
}

.article-listed .article-featured .hover-link {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.article-listed .article-category a{
    font-size: 16px;
}

.article-listed .article-date{
    font-size: 15px;
}

.article-listed .article-title{
    font-size: 30px;
    margin: 10px 0 8px;
    transition: color 0.2s ease;
}

.article-listed .article-content a:hover .article-title {
    color: #FFC809;
}

.article-listed .button-wrapper {
    margin-top: 4px;
}

@media (max-width: 576px) {

    .section-article-listed {
        padding-top: 10px;
    }

    .article-listed .article-widget{
        flex-direction: column;
    }

    .article-listed .article-featured,
    .article-listed .article-content{
        flex-basis: 100%;
    }

    .article-listed .article-content{
        padding: 20px 10px 10px 10px;
    }

    .article-listed .article-title{
        font-size: 30px;
    }
}

/* ===================================
    Article single
====================================== */

.section-article-single{
    padding-top: 160px;
}

.article-single .article-category{
    margin-bottom: 20px;
}

.article-single .article-category a{
    font-size: 17px;
}

.article-single .article-category a:before{
    font-size: 18px;
}

.article-single .article-date{
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 30px;
}

.article-single .article-title{
    font-size: 44px;
    margin: 0;
}

.article-single .article-featured-media img{
    width: 100%;
    height: auto;
}

.article-single .article-tags{
    display: flex;
    margin-top: 10px;
}

.article-single .article-tags a{
    font-weight: 500;
    margin: 0 10px 2px 0;
}

.article-single .article-tags a:hover{
     color: #FFC809;
}

.article-single .article-tags a:before{
    content: "\f02b";
    font-family: "Font Awesome 6 Free";
    color: #2CBFCF;
    padding-right: 6px;
    font-weight: 900;
}

.article-single .article-content{
    margin: 40px 0;
}

.article-single .article-content h1,
.article-single .article-content h2,
.article-single .article-content h3,
.article-single .article-content h4,
.article-single .article-content h5,
.article-single .article-content h6{
    margin-top: 34px;
}

.article-content strong {
    font-weight: 600;
}

.article-single .article-content pre{
    font-family: monospace;
}

.article-single .article-content a {
    color: inherit;
}

.article-single .article-content a:hover {
    color: #FFC809;
}

.article-single .article-content hr{
     margin: 1.5rem 0;
    color: #303030;
    border-width: 2px 0 0 0;
}
.article-single .article-content .featured-text p{
    color: #303030;
    font-weight: 600;
}

.article-single .iconlist.iconlist-green .iconlist-item .iconlist-icon-wrapper {
    background-color: #2CBFCF;
}

.article-single .iconlist .iconlist-item-link:hover .iconlist-icon-wrapper {
    background-color: #FFC809;
}

.article-single .iconlist .iconlist-item .iconlist-icon-wrapper:before{
    display: none;
}

.article-single .iconlist .iconlist-item .iconlist-icon-wrapper img {
    width: 23px;
    height: auto;
}

.article-single .iconlist .iconlist-item-sm .iconlist-icon-wrapper img {
    width: 22px;
}

.article-single .iconlist .iconlist-item:last-child{
     margin-bottom: 14px;
}

.article-single .article-content blockquote h1,
.article-single .article-content blockquote h2,
.article-single .article-content blockquote h3,
.article-single .article-content blockquote h4,
.article-single .article-content blockquote h5,
.article-single .article-content blockquote h6{
    margin-top: 0;
}

.article-single .article-navigation{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.article-single .article-navigation .article-nav{
    position: relative;
    display: flex;
    align-items: center;
}

.article-single .article-navigation .nav-prev{
    padding-right: 1rem;
    text-align: left;
}

.article-single .article-navigation .nav-next{
    padding-left: 1rem;
    text-align: right;
}

.article-single .article-navigation .nav-arrow{
    background-color: #EE2B7A;
    color: #fff;
    padding: 10px;
}

.article-single .article-navigation .nav-arrow-left{
    margin-right: 12px;
}

.article-single .article-navigation .nav-arrow-right{
    margin-left: 12px;
}

.article-single .article-navigation .nav-label{
    font-size: 17px;
    font-weight: 600;
}

@media (max-width: 992px) {

    .section-article-single {
        padding-top: 140px;
    }
}

@media (max-width: 576px){

    .section-article-single {
        padding-top: 120px;
    }

    .article-single .article-title {
        font-size: 32px;
    }

    .article-single .article-content p {
        text-align: left;
    }
    
    .article-single .article-content blockquote{
        padding: 80px 30px 50px;
        font-size: 22px;
    }
}

/* ===================================
    Article sidebar
====================================== */
.article-sidebar .widget:not(:last-child) {
    margin: 0 0 40px;
}

.article-sidebar .widget-title{
    font-size: 26px;
}

.article-sidebar .widget ul{
    margin: 0;
}

.article-sidebar .widget li {
    color: #303030;
    margin-bottom: 8px;
    font-weight: 500;
    padding: 0;
}

.article-sidebar .widget.recent-articles li{
    margin-bottom: 16px;
}

.article-sidebar .widget li:last-child{
    margin-bottom: 0;
}

.article-sidebar .widget li:before{
    display: none;
}

.article-sidebar .widget li a:hover{
    color: #FFC809;
}
.article-sidebar .widget.recent-articles .article-title{
    font-size: 17px;
    color: #303030;
    font-weight: 600;
    margin-bottom: 4px;
}

.article-sidebar .widget.recent-articles a:hover .article-title{
    color: #FFC809;
}

.article-sidebar .article-date{
    color: #878787;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

.article-sidebar .article-tags a.tag-link{
    display: inline-block;
    color: #303030;
    font-size: 13px;
    font-weight: 600;
    line-height: 40px;
    background-color: #F3F3F4;
    margin-right: 0;
    margin-bottom: 5px;
    padding: 0 14px;
    transition: all 0.2s ease;
}

.article-sidebar .article-tags a.tag-link:hover{
    color: #fff;
    background-color: #FFC809;
}

/* ===================================
    Comments
====================================== */

.comments{
    margin-top: 80px;
}
.comment-respond h6{
    line-height: 1.5;
}
.comment-list{
    position: relative;
    padding: 0;
    list-style: none;
}

.comment-list .comment-item:after {
    clear: both;
}
.comment-list .comment-item{
    position: relative;
    margin-bottom: 30px;
    min-height: 50px;
    padding: 0;
}
.comment-list .comment-item:before, 
.comment-list .comment-item:after {
    content: "";
    display: table;
}

.comment-list .comment-item .comment-body {
    position: relative;
    float: right;
    width: 100%;
    padding-left: 85px;
    text-align: left;
}
.comment-list .comment-item .comment-body p{
    color: #8A8A8A;
}
.comment-list .comment-item .comment-body p:last-child{
    margin-bottom: 0;
}

.comment-list .comment-body .subtitle{
    color: #5f5f5f;
}
.comment-list .comment-body .small-subtitle{
    font-size: 12px;
    font-style: italic;
    color: #5f5f5f;
    letter-spacing: 1.5px;
    color: #DF9F9F;
}
.comment-list .comment-item .comment-avatar {
    position: absolute;
    left: 0;
    width: 65px;
    height: 65px;
    margin-left: 0;
    border: 3px solid #fff;
    text-align: center;
    color: #fff;
    background-color: #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 35%);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .35);
    box-shadow: 0 0 10px rgb(0 0 0 / 35%);
    z-index: 100;
}

.comment-list .comment-item .comment-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    -webkit-transition: all .8s ease-out;
    -moz-transition: all .8s ease-out;
    -ms-transition: all .8s ease-out;
    -o-transition: all .8s ease-out;
    transition: all .8s ease-out;
}

.comment-list .comment-author{
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 600;
}
.comment-list .comment-meta{
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
}
.comment-list .comment-content{
    line-height: 1.5;
     margin: 8px 0 8px 0;
}

.comment-list .comment-footer .btn-reply{
    color: #D1B096;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
}


@media only screen and (max-width: 640px){

   .comments{
        margin-top: 60px;
    }
}
/* ===================================
    Comments respond
====================================== */
.comment-respond{
    margin-top: 80px;
}
.comment-respond .comment-form{
    margin-top: 30px;
}
.comment-respond .comment-form input[type="email"] {
    border-color: #111;
}
.comment-respond label.radio-custom input, 
.comment-respond label.checkbox-custom input{
    width: auto;
}

.comment-respond label.radio-custom , 
.comment-respond label.checkbox-custom {
    color: #969696;
    margin: 0;
}
.comment-respond .comment-message{
    font-size: 13px;
    color: #FF2C54;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0;
}

.comment-respond .comment-login,
.comment-respond .comment-register{
    opacity: 0;
    display: none;
}

.comment-respond .btn-comment-logout,
.comment-respond .btn-comment-login-form,
.comment-respond .btn-comment-register-form{
    margin: 0 5px;
}

.comment-respond .nav-tabs{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 30px;
    list-style: none;
    border: 1px solid #d2dbe3;
}
.comment-respond .nav-item{
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.comment-respond .nav-item a{
    display: block;
    padding: 0.5rem 1rem;
    background-color: #99C7CE;
    color: #fff;
}
.comment-respond .nav-item.active a{
    background-color: #fff;
    color: #717171;
}
.comment-respond .nav-item a:hover{
    text-decoration: none;
}
.comment-respond .tab-content{
    padding: 10px;
    border: 1px solid #d2dbe3;
    border-top: none;
    background: #fff;
}
.comment-respond .tab-content.active{
    display: block;
}
            
.comment-respond .tab-content.hide{
    display: none;
}


@media only screen and (max-width: 640px){

   .comment-respond{
        margin-top: 60px;
    }
}


/* ===================================
    Pagination
====================================== */
.pagination{
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 0;
    border-radius: 0;
   
}
.pagination button,
.pagination .pagin-label {
    border: 0;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 0;
    color: #303030;
    margin: 0 8px;
    padding: 0 3px;
    background-color: transparent;
}

.pagination button:first-child,
.pagination .pagin-label:first-child {
    margin-left: 0;
}
.pagination button i {
    font-size: 16px;
    color: #2CBFCF;
}
.pagination .pagin-label{
    margin: 2px;
    margin-left: 0;
    pointer-events: none;
}


.pagination button.jplist-disabled {
    pointer-events: none;
    opacity: 0.5;
    display: none;
}

.pagination button[data-selected]{
    color: #fff;
    background-color: #2CBFCF;
    width: 40px;
    height: 40px;
    line-height: 40px;
}


.pagination button:not(button[data-selected]):hover,
.pagination button:not(button[data-selected]):focus {
    color: #2CBFCF;
}

.pagination button:not(button[data-selected]):active {
    color: #303030;
}

/* ===================================
    Section aplication form 
====================================== */
.section-aplication-form{
    padding-bottom: 90px;
}

.section-aplication-form .aplication-title{
    position: relative;
    font-size: 36px;
    text-align: center;
    color: #000;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -2px;
    margin-top: 0;
    margin-bottom: 30px;
}

.section-aplication-form .aplication-subtitle{
    font-size: 18px;
    color: #4C4C4C;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 50px;
    font-weight: 500;
}

.section-aplication-form input,
.section-aplication-form input:focus,
.section-aplication-form .form-control:focus{
    padding: 10px 12px;
}

.section-aplication-form .button-wrapper{
    margin-top: 30px;
}

.section-aplication-form .aplication-info-send{
    font-size: 18px;
    margin-top: 15px;
}
@media only screen and (max-width: 576px){

   .section-aplication-form .aplication-title{
       font-size: 32px;
    }
}
/* ===================================
    Contact 
====================================== */

.section-contact-info .contact-card-container_two_columns{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    align-items: stretch;
}

.section-contact-info .contact-card-container_three_columns{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    align-items: stretch;
}

.section-contact-info .contact-card-left{
    display: flex;
    background-color: #F3F3F4
}

.section-contact-info .contact-card-left .contact-card{
    flex: 1;
}

.section-contact-info .contact-card-right{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}
.section-contact-info .contact-card{
    background: #F3F3F4;
    padding: 28px;
}

.section-contact-info .contact-card .contact-card-title {
    font-size: 21px;
    color: #000;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-contact-info .contact-card_with_subtitle  .contact-card-title{
    margin-bottom: 14px;
}

.section-contact-info .contact-card-subtitle {
    font-size: 17px;
    color: #303030;
    font-style: italic;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.section-contact-info .contact-card .contact-card-info{
    color: #303030;
    font-weight: 500;
}

.section-contact-info .contact-card .contact-card-info p:last-child{
    margin-bottom: 0;
}

.section-contact-info .contact-card .contact-card-info p a:hover{
    color: #FFC809;
}

.section-contact-info .contact-card .contact-card-info hr{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    border-width: 3px 0 0 0;
    opacity: 1;
    color: #fff;
    margin: 15px 0 30px;
}

 .section-contact-form .google-map {
    position: relative;
    background-image: url(../../img/google_map.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 480px;
}


@media (max-width: 992px){

    .section-contact-info .contact-card-container_two_columns,
    .section-contact-info .contact-card-container_three_columns{
        grid-template-columns: 1fr;
    }

    .section-contact-info .contact-card-right {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

     .section-contact-form  .google-map{
         height: 250px;
         margin-top: 30px;
    }
}

@media only screen and (max-width: 576px){

   .section-contact-info .contact-card {
        padding: 28px 24px;
    }
}
/* ===================================
    Footer
====================================== */
.section-footer{
    background-color: #fff;
    text-align: center;
}

.section-footer .footer-top{
    padding: 120px 0 20px;
}

.section-footer .footer-main-title{
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -2px;
    text-align: center;
    color: #000000;
    margin: 0 0 60px;
}

.section-footer .footer-title{
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.section-footer .footer-contact{
    margin-bottom: 20px;
}

.section-footer .footer-contact p,
.section-footer .footer-contact a{
    color: #4C4C4C;
    font-weight: 600;
    transition: color 0.2s ease;
}

.section-footer .footer-contact a:hover p{
    color: #FFC809;
}

.section-footer .footer-bottom{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    color: #4C4C4C;
}

.section-footer .social-icons{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 40px;
}

.section-footer .social-icons a{
    color: #000;
    margin-right: 10px;
}

.section-footer .social-icons a:last-child{
    margin-right: 0;
}

.section-footer .social-icons a:hover{
    color: #FFC809;
}

.section-footer .social-icons  img{
    width: 40px;
    height: auto;
}

.section-footer .footer-copyright{
    font-size: 14px;
    font-weight: 500;
}

.section-footer .footer-image{
    width: 100%;
    color: #000;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0;
}
.section-footer .footer-image img{
    width: 180px;
    height: auto;
}

@media (max-width: 992px){

    .section-footer .footer-top{
        padding: 80px 0 10px;
    }
}

@media (max-width: 576px){

    .section-footer .footer-main-title{
        font-size: 32px;
        margin: 0 0 50px;
    }

    .section-footer .footer-title {
        font-size: 24px;
    }
}
/* ===================================
   Error pages
====================================== */
.error-page{
    position: relative;
     min-height: calc(100vh -  178px);
}
.error-page .wrapper{
    padding: 230px 0 110px 0;
}
.error-page h1.code{
    font-size: 200px;
    text-transform: uppercase;
    font-weight: 900;
    color: #EE2B7A;
    line-height: 200px;
    text-align: center;
}

.error-page .error-page-title{
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.error-page .error-page-message{
    font-size: 15px;
    color: #404040;
    text-transform: uppercase;
    text-align: center;
    margin: 30px 0;
    font-weight: 500;

}

.error-page .error-page-link{
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #EE2B7A;
}

.error-page .error-page-link a{
    text-decoration: underline;
}
@media only screen and (max-width: 1024px){
    .error-page{
        min-height: calc(100vh - 20px);
    }
}

@media only screen and (max-width: 767.89px){

    .error-page .wrapper{
       padding: 200px 0 110px 0;
    }
    .error-page h1.code{
        font-size: 120px;
        line-height: 120px;
    }
    .error-page .error-page-title{
        font-size: 30px;
    }
}
