.blur {
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba6) !important
}

.blur-header {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}


.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--whitergba5) !important;
    display: none;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    /*-webkit-backdrop-filter: saturate(150%) blur(5x);
  backdrop-filter: saturate(150%) blur(5px);*/
    z-index: 2995;
    transition: all 0.4s cubic-bezier(.7, 1, .7, 1);
}

.show-backdrop {
    visibility: visible;
    display: block;
}

.hidden-backdrop {
    visibility: hidden;
    display: none;
}



/*SOCIAL*/
.social-icons li a {
    background: var(--lblue2);
    color: var(--white);
}

/*SOCIAL*/
.social-icons-gray li a {
    background: var(--f4f4f4);
    color: var(--gray4);
}


.color-white {
    color: var(--white) !important
}

.color-dblue {
    color: var(--dblue2) !important;
}

.color-lblue {
    color: var(--lblue2) !important;
}

.color-orange {
    color: var(--orange2) !important;
}

.bg-white {
    background: var(--white);
}

.bg-dblue {
    background: var(--dblue2);
}

.bg-lblue {
    background: var(--lblue2);
}

.bg-orange {
    background: var(--orange2);
}
.bg-f4f4f4 {
    background: var(--f4f4f4);
}

.bg-blackrgba1 {
    background: var(--blackrgba1);
}

.radius50 {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.btn {
    font-family: var(--theme-font);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    padding: 12px 40px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    border: 2px solid var(--orange2);
    background-color: var(--orange2);
    box-sizing: border-box;
    transition: all 0.4s;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.btn:hover,
.btn:focus {
    background-color: var(--gray5);
    border-color: var(--gray5);
    color: var(--white);
}


.btn.btn-center {
    margin: 0 auto;
    width: auto;
    min-width: 160px
}

.btn.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn.btn-lgp {
    padding: 12px 60px;
    font-size: 16px;
}

.btn.btn-md {
    padding: 8px 20px
}

.btn.btn-sm {
    padding: 5px 25px;
}

.btn.round {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.btn.btn-mw {
    min-width: 190px
}

.btn-arrow {
    position: relative;
}

.btn-arrow span {
    display: inline-block;
    position: relative;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    will-change: transform;
}

.btn-arrow:hover span,
.btn-arrow:focus span {
    -webkit-transform: translate3d(-1rem, 0, 0);
    transform: translate3d(-1rem, 0, 0);
}

.btn-arrow i {
    position: absolute;
    width: 1.1em;
    right: 0px;
    right: 0rem;
    opacity: 0;
    top: 49%;
    font-size: 24px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    will-change: right, opacity;
}

.btn-arrow:hover i,
.btn-arrow:focus i {
    opacity: 1;
    right: -2rem;
}


.btn-orange {
    color: var(--white);
    border: 2px solid var(--orange2);
    background-color: var(--orange2);

}

.btn-orange:hover,
.btn-orange:focus {
    background-color: var(--orange3);
    border-color: var(--orange3);
    color: var(--white)
}

.btn-lblue {
    color: var(--white);
    border: 2px solid var(--lblue2);
    background-color: var(--lblue2);

}

.btn-lblue:hover,
.btn-lblue:focus {
    background-color: var(--lblue3);
    border-color: var(--lblue3);
    color: var(--white)
}

.btn-dblue {
    color: var(--white);
    border: 2px solid var(--dblue2);
    background-color: var(--dblue2);

}

.btn-dblue:hover,
.btn-dblue:focus {
    background-color: var(--dblue3);
    border-color: var(--dblue3);
    color: var(--white)
}

.btn-whatsapp {
	color: var(--white);
	border: 2px solid var(--Whats1);
	background-color: var(--Whats1);

}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
	background-color: var(--Whats2);
	border-color: var(--Whats2);
	color: var(--white)
}

.link-btn {
    display: inline-block;
    font-size: 15px;
    line-height: normal;
    padding: 11px 32px 11px 31px;
    background: transparent;
    border: 1px solid transparent;
    position: relative;
    font-weight: 600;
    overflow: hidden;
    z-index: 9;
    vertical-align: middle;
    text-transform: uppercase;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: var(--gray5);
    background: #fc0
}

.link-btn.btn-inline {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0;
    border: 1px solid transparent;
    background-color: transparent;
    overflow: visible;
    color: var(--gray5);
}

.link-btn.btn-inline:before,
.link-btn.btn-inline:after {
    position: absolute;
    content: "";
    bottom: -8px;
    left: auto;
    right: 0;
    width: 0;
    height: 3px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    background: var(--gray5);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.link-btn.btn-inline:before {
    width: 100%;
}

.link-btn.btn-inline:hover:after {
    width: 100%;
    right: auto;
    left: 0;
    background: var(--dblue2);
}

.link-btn.btn-inline:hover {
    color: var(--dblue2);
}


.btn-theme {
    background: #333;
    padding: 15px 25px;
    line-height: 40px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    color: #fff
}

.btn-theme:focus,
.btn-theme:hover {
    background: #606060;
    color: #fff
}


.linking {
    position: relative;
    color: var(--lblue2);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font) !important;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}


.linking:before {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}


.linking:hover:before {
    width: 100%;
    background: var(--lblue2);
}


.linking i {
    font-size: 24px;
    position: relative;
    top: 3px;
    margin-left: -25px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    color: var(--gray3);
}

.linking:hover {
    color: var(--dblue2);
}

.linking:hover i {
    margin-left: 0px;
    opacity: 1;
    color: var(--dblue2);
}


.image-bl,
.image-bl img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}


.sec-title h3 {
    position: relative;
    font-size: 24px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px 15px 0px 15px;
}

.sec-title h1 {
    position: relative;
    font-size: 30px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px 15px 0px 15px;
}

.sec-title h2 {
    position: relative;
    font-size: 26px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px 15px 0px 15px;
}


.sec-title .text {
    position: relative;
    padding: 15px 15px 0px 15px;
    margin-top: 15px;
}

.sec-title .text p {
    font-size: 18px;
    line-height: 1.1;
    color: var(--gray3)
}

.sec-title .text:before {
    position: absolute;
    width: 110px;
    height: 5px;
    top: -2px;
    left: 0;
    content: "";
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background: var(--dblue2);
}

.sec-title.text-center .text:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


.sec-title-two .text-two {
    position: relative;
    padding: 15px 0px 15px 0px;
    margin-top: 15px;
}

.sec-title-two .text-two:before {
    position: absolute;
    width: 110px;
    height: 5px;
    top: -2px;
    left: 0;
    content: "";
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background: var(--dblue2);
}

.sec-title-two .text-two:before {
    left: 0px;
}

.sec-title-two .text-two p {
    font-size: 16px;
    line-height: 1.1;
    color: var(--gray3)
}


.sec-title-two h3 {
    position: relative;
    font-size: 24px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px;
}

.sec-title-two h1 {
    position: relative;
    font-size: 30px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px;
}

.sec-title-two h2 {
    position: relative;
    font-size: 26px;
    color: var(--lblue2);
    line-height: 1.2;
    font-weight: bold;
    padding: 0px;
}


.section-no-border {
    border: 0;
}

.section-home {
    background: var(--white);
    border-top: 0px solid var(--lblue1);
    padding: 50px 0 20px 0;
}

.section-half-primary-half-secondary {
    background: linear-gradient(to right, var(--lblue1) 50%, var(--f4f4f4) 50%);
}







#cd-google-map {
    position: relative;
    width: 100%;
    height: 500px;
    background:var(--white);
}

#google-container {
    position: relative;
    width: 100%;
    height: 500px !important;
    background:var(--white);
}



#cd-google-map address {
    position: absolute;
    z-index: 30;
    width: auto;
    max-width: calc(100% - 60px);
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    padding:15px 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color:var(--whitergba8);
    text-align: center;
    -webkit-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    -moz-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    font-weight: bold;


    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
}

#cd-google-map address p{
    font-weight: 600;
}



#cd-google-map .linksmaps {
    position: absolute;
    z-index: 30;
    width: auto;
    max-width: calc(100% - 60px);
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 25px 3px 25px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background-color:var(--whitergba8);
    text-align: center;
    -webkit-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    -moz-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
}

#cd-google-map .linksmaps ul{
    margin: 0!important;
    padding: 0!important;
}


#cd-google-map .linksmaps ul svg {
    position: relative;
    top:2px;
    width:28px;
    height: 28px;
    vertical-align: text-top;
    stroke-width: 1.5;
    fill: var(--white) !important;

}





















.card-border {
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 0px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 0px 25px 0px var(--blackrgba1);
    box-shadow: 0px 0px 25px 0px var(--blackrgba1);
    background: var(--white);
    padding: 45px 30px;
    position: relative
}

.card-border:after {
    content: "";
    transition: .2s all ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    left: 50%;
    height: 7px;
    width: 100%;
    transform: translateX(-50%);
    background-color: var(--dblue2);
}


.card-border.card-border-top:after {
    top: 0;
}

.card-border.card-border-bottom:after {
    bottom: 0;
}

.card-border.card-border-hover:after {
    width: 0;
}

.card-border.card-border-hover:hover:after {
    width: 100%;
}

.card-border:focus,
.card-border:hover {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);
}

.card-content {
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-top: 30px;
}

.card-border:focus .card-content,
.card-border:hover .card-content {
    margin-top: 0px;
}

.card-content-read-more {
    position: relative;
    -webkit-transition: all 550ms ease;
    -moz-transition: all 550ms ease;
    -ms-transition: all 550ms ease;
    -o-transition: all 550ms ease;
    transition: all 550ms ease;
    opacity: 0;
    bottom: -100px !important;
}


.card-border:focus .card-content-read-more,
.card-border:hover .card-content-read-more {
    opacity: 1;
    bottom: -20px !important;
}

.card-content-read-more a {
    color: var(--dblue2);
    font-size: 16px;
}

.card-content-read-more a:focus,
.card-content-read-more a:hover {
    color: var(--lblue2);
    padding-left: 15px;
}


.card-border img {
    margin: 0px auto 15px;
    width: 75px;
}

.card-border h3 {
    font-size: 24px;
    line-height: 1.15;
    color: var(--dblue2);
    font-weight: bold !important;
    margin-bottom: 15px;
}

.card-border p {
    font-size: 16px;
    line-height: 1.15;
    color: var(--gray3);
    font-weight: normal;
    margin-bottom: 3px;
}


/*
	.product-style-one {
	padding: 20px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	background: var(--white);
	height: 100%;
	width:100%;
	position: relative;
	z-index: 5;
	}
	.product-style-one::before {
	content: "";
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	border-radius: 15px;
	background-image: linear-gradient(100deg, #13131d, #0398ed);
	background-repeat: repeat-x;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	width: 100%;
	height: 100%;
	z-index: -2;
	}
	.product-style-one::after {
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #242435;
	position: absolute;
	border-radius: 10px;
	z-index: -1;
	}
	.product-style-one:hover::before {
	transform: rotate(2deg) translateX(-7px) translateY(11px);
	}
	
*/


.services-itens {
    position: relative;
}

.services-itens .inner-box {
    position: relative;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 0px 35px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 0px 35px 0px var(--blackrgba1);
    box-shadow: 0px 0px 35px 0px var(--blackrgba1);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 7px;
}

.services-itens .inner-box:hover {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
    -webkit-box-shadow: 0px 0px 35px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 0px 35px 0px var(--blackrgba3);
    box-shadow: 0px 0px 35px 0px var(--blackrgba3);
}


.services-itens .inner-box::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background-image: linear-gradient(100deg, var(--lblue2), var(--lblue1));
    background-repeat: repeat-x;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.services-itens .inner-box::after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--white);
    position: absolute;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    z-index: -1;
}

.services-itens .inner-box:hover::before {
    transform: rotate(2deg) translateX(-7px) translateY(11px);
}


.services-itens .inner-box .image-box {
    position: relative;
}

.services-itens .inner-box .image-box {
    overflow: hidden;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    position: relative;

}

.services-itens .inner-box .image-box a img {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    object-fit: cover;
    width: 100%;
    height: auto;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    filter: grayscale(50%);
    -webkit-filter: grayscale(50%);
}

.services-itens .inner-box:hover a img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}

/*
	.services-itens .inner-box .card-thumbnail::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: linear-gradient(180deg, transparent, black);
	height: 50%;
	position: absolute;
	width: 100%;
	z-index: 1;
	}
*/


/*
	.services-itens .image-box{
	position: relative;
	}
	
	.services-itens .image-box .image{
	position: relative;
	margin-bottom: 0;
	-webkit-transition:all 1s ease;
	-moz-transition:all 1s ease;
	-o-transition:all 1s ease;
	transition:all 1s ease;
	}
	
	.services-itens .image-box .image img{
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition:all 1s ease;
	-moz-transition:all 1s ease;
	-o-transition:all 1s ease;
	transition:all 1s ease;
	}
	
*/

.services-itens .read-more {
    position: absolute;
    color: var(--white);
    background: var(--white);
    top: -60px;
    right: 10px;
    font-size: 24px;
    width: 75px;
    height: 75px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    font-size: 14px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -webkit-box-shadow: 0px 10px 25px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 10px 25px 0px var(--blackrgba2);
    box-shadow: 0px 10px 25px 0px var(--blackrgba2);
    transition: all 0.4s cubic-bezier(.7, 1, .7, 1);
}

.services-itens .inner-box:hover .read-more {
    top: -90px;
}

.services-itens .read-more img {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    width: 50px;
    filter: grayscale(50%);
    -webkit-filter: grayscale(50%);
}

.services-itens .inner-box:hover .read-more img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}


.services-itens .lower-content {
    position: relative;
    padding: 25px 15px 20px 15px;
}

.services-itens .lower-content h4 {
    position: relative;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--gray3);
    word-break: break-word;
}

.services-itens .lower-content small {
    font-size: 16px;
    font-weight: bold;
    color: var(--gray3);
}

.services-itens .lower-content h4 a {
    display: inline-block;
    color: var(--gray3);
    font-weight: 600;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;

}

.services-itens .lower-content h4 a:focus,
.services-itens .lower-content h4 a:hover {
    color: var(--lblue2);
}


.services-itens .lower-content p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.1;
    color: var(--gray4);
}


.services-itens .read-more-btn {
    background: var(--lblue2);
    font-size: 14px;
    min-height: 40px;
    padding: 0 23px;
    margin-top: 20px;
}


.linkmais {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0 30px 0 50px;
    font-size: inherit;
    font-family: inherit;
    height: auto;
    top: 10px;
}

.linkmais .learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    margin: 0;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1.625rem;
    border-color: inherit;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    background: var(--lblue2);
}

.linkmais .learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.linkmais .learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.375rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
    border-color: inherit;
}

.linkmais .learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid var(--white);
    border-right: 0.125rem solid var(--white);
    transform: rotate(45deg);
}

.linkmais .learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    top: -1px;
    text-align: center;
    color: var(--gray4);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.linkmais :hover .circle {
    width: 100%;
}

.linkmais :hover .circle .icon.arrow {
    background: var(--white);
    transform: translate(1rem, 0);
}

.linkmais :hover .button-text {
    color: var(--white);
}


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

.technology-left ul li {
    padding-bottom: 7px;
    font-size: 16px;
    font-weight: normal;
    width: 50%;
    float: left;
}

.technology-left ul li:last-child {
    padding-bottom: 0;
}

.technology-left ul i {
    position: relative;
    color: var(--dblue2);
    font-size: 20px;
    padding-right: 3px;
    top: 2px;
}


@media only screen and (max-width: 767px) {
    .technology-left ul li {
        width: 100%;
    }
}


.request-form {
    position: relative;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
    padding: 40px 40px 20px;
    border-radius: 10px;
}

.request-form .title {
    position: relative;
    margin-bottom:20px;
}

.request-form .title h4 {
    font-size: 28px;
    line-height: 1.4em;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
}

.request-form .row {
    margin: 0 -10px;
}


.request-form .form-group {
    position: relative;
    padding: 0 10px;
    margin-bottom: 20px;
}

.request-form .input-group {
    position: relative;
}

.request-form .input-group .icon {
    position: absolute;
    top: 2px;
    left: 2px;
    background: var(--blackrgba0);
    color: var(--lblue2);
    font-size: 18px;
    min-width: 46px;
    min-height: 46px;
    line-height: 46px;
    text-align: center;
    -webkit-border-top-left-radius: 7px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 7px;
    -moz-border-radius-topleft: 7px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 7px;
    border-top-left-radius: 7px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 7px;
}


.request-form .input-group .icon2 {
    position: absolute;
    top: 2px;
    left: 2px;
    background: var(--blackrgba0);
    color: var(--lblue2);
    font-size: 18px;
    min-width: 46px;
    line-height: 46px;
    text-align: center;
    -webkit-border-top-left-radius: 7px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 7px;
    -moz-border-radius-topleft: 7px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 7px;
    border-top-left-radius: 7px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 7px;
}


.request-form .input-group .icon i {
    position: relative;
    top: 0px
}


.request-form .input-group input,
.request-form .input-group select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    outline: none;
    height: 50px;
    font-size: 16px;
    color: var(--gray3);
    line-height: 25px;
    border: 2px solid var(--cccccc);
    background-color: var(--white);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.request-form .form-group input[type="text"],
.request-form .form-group textarea{
    width: 100%;
    padding: 14px 15px 14px 45px;
    outline: none;
    font-size: 16px;
    color: var(--gray3);
    line-height: 25px;
    border: 2px solid var(--cccccc);
    background-color: var(--white);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.request-form .input-group select {
    padding: 12px 0 15px;
    text-indent: 45px;
    line-height: 30px !important;
    height:50px;
    border: 2px solid var(--cccccc) !important;
}

.request-form .form-group input[type="email"]:focus,
.request-form .form-group input[type="email"]:hover,
.request-form .form-group input[type="url"]:focus,
.request-form .form-group input[type="url"]:hover,
.request-form .form-group textarea:focus,
.request-form .form-group textarea:hover,
.request-form .form-group select:focus,
.request-form .form-group select:hover,
.request-form .form-group input[type="text"]:focus,
.request-form .form-group input[type="text"]:hover {
    color: var(--gray3);
    background-color: var(--white);
    border-color: var(--blackrgba3);
    outline: 0;
    -webkit-box-shadow: 0px 0px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 0px 25px 0px var(--blackrgba1);
    box-shadow: 0px 0px 25px 0px var(--blackrgba1);
}






.news-block .inner{
    position: relative;
    display: block;
}

.news-block .image-box{
    position: relative;
    display: block;
    background: var(--dblue3);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    overflow: hidden;
}

.news-block:focus .image-box,
.news-block:hover .image-box {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);
}


.news-block .image-box img{
    display: block;
    width: 100%;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.news-block .inner:hover .image-box img{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.news-block .image-box a{
    position: relative;
    display: block;
}

.news-block .image-box a:before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -25px;
    margin-left: -1px;
    height: 50px;
    border-right: 3px solid var(--white);
    z-index: 1;
    transform: scaleY(0);
    transition:all 0.3s ease;
    -moz-transition:all 0.3s ease;
    -webkit-transition:all 0.3s ease;
    -ms-transition:all 0.3s ease;
    -o-transition:all 0.3s ease;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.news-block .image-box a:after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1px;
    margin-left: -25px;
    width: 50px;
    border-bottom: 3px solid var(--white);
    z-index: 1;
    transform: scaleX(0);
    transition:all 0.3s ease;
    -moz-transition:all 0.3s ease;
    -webkit-transition:all 0.3s ease;
    -ms-transition:all 0.3s ease;
    -o-transition:all 0.3s ease;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.news-block .inner:hover .image-box a:before,
.news-block .inner:hover .image-box a:after{
    transform: scale(1);
    transition:all 0.3s ease 300ms;
    -moz-transition:all 0.3s ease 300ms;
    -webkit-transition:all 0.3s ease 300ms;
    -ms-transition:all 0.3s ease 300ms;
    -o-transition:all 0.3s ease 300ms;
}

.news-block .lower-box{
    position: relative;
    background:var(--white);
    padding:20px 15px 20px 15px;
    margin: -30px 0px 0px 0px;
    z-index: 1;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-box-shadow: 0px 5px 20px 0px  var(--blackrgba1);
    -moz-box-shadow: 0px 5px 20px 0px  var(--blackrgba1);
    box-shadow: 0px 5px 20px 0px  var(--blackrgba1);
}

.news-block .image-box .category{
    position: absolute;
    bottom:30px;
    right:15px;


    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 24px;
    padding: 5px 15px;
    color: var(--white);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background: var(--dbluergba7);
    z-index:20
}






.news-block h3{
    font-weight: 600;
    margin-bottom: 0px;
    color:var(--dblue2);
    font-size:20px;
    line-height:1.2
}

.news-block .text p{
    position: relative;
    padding-top: 12px;
    line-height:1.1
}



.news-block h3 a:hover{
    color:var(--lblue2)
}






.aboutus-item {
    padding: 30px 40px 30px 40px;
    border-style: solid;
    border-width: 0 0 0 0;
    background-color: transparent;
    background-image: linear-gradient(110deg, var(--lblue2) 0%, var(--dblue2) 100%);
    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

}


.aboutus-item:active,
.aboutus-item:focus,
.aboutus-item:hover {
    -webkit-box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);

}

.aboutus-item .content-box h3 {
    color: var(--white);
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.aboutus-item .content-box p {
    color: var(--white);
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
}


.aboutus-item .icon-main {
    background: transparent;
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.aboutus-item .icon-main img {
    width: 90px;
}

.aboutus-item .overlay {
    z-index: 2;
    background: transparent;
}

.overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}


.aboutus-item.bg-s1 {
    background-image: linear-gradient(110deg, var(--lblue3) 0%, var(--lblue1) 100%);
    background-size: 100% 100%;
}

.aboutus-item.bg-s2 {
    background-image: linear-gradient(110deg, var(--lblue1) 0%, var(--lblue3) 100%);
    background-size: 100% 100%;
}

.aboutus-item.bg-s3 {
    background-image: linear-gradient(110deg, var(--lblue3) 0%, var(--lblue1) 100%);
    background-size: 100% 100%;
}

.aboutus-item.bg-s4 {
    background-image: linear-gradient(110deg, var(--dblue3) 0%, var(--lblue1) 100%);
    background-size: 100% 100%;
}


.aboutus-item:active.bg-s1,
.aboutus-item:focus.bg-s1,
.aboutus-item:hover.bg-s1,
.aboutus-item:active.bg-s2,
.aboutus-item:focus.bg-s2,
.aboutus-item:hover.bg-s2,
.aboutus-item:active.bg-s3,
.aboutus-item:focus.bg-s3,
.aboutus-item:hover.bg-s3,
.aboutus-item:focus.bg-s4,
.aboutus-item:hover.bg-s4 {
    background-size: 200% 200%;
    background-position: 50% 0% !important;
}


.iconsmvv path {
    fill: #fce57e !important;
}

#carouselAbout {
    position: relative;
    background: var(--white);
    width: 100%;
    overflow: hidden;
    padding: 0px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 25px 45px 10px var(--lbluergba2);
    -moz-box-shadow: 0px 25px 45px 10px var(--lbluergba2);
    box-shadow: 0px 25px 45px 10px var(--lbluergba2);
}


#carouselAbout .carousel-control-next-icon,
#carouselAbout .carousel-control-prev-icon {
    width: 50px;
    height: 50px;
    padding: 15px !important;
}


.cta-item {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    overflow: hidden;
    position: relative;
    background: var(--white);
}


.bg-cover-radius {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-border-radius: 7px !important;
    -moz-border-radius: 7px !important;
    border-radius: 7px !important;
    overflow: hidden;
}

.bg-cover-radius:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    background: var(--lbluergba7);
    -webkit-border-radius: 7px !important;
    -moz-border-radius: 7px !important;
    border-radius: 7px !important;
    overflow: hidden;
}


.radius7 {
    -webkit-border-radius: 7px !important;
    -moz-border-radius: 7px !important;
    border-radius: 7px !important;
    overflow: hidden !important;
}


.cta-item .ot-heading {
    margin-bottom: 0;
    padding-left: 25px;
    padding-right: 25px;
}

.cta-item .ot-heading span {
    display: block;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2
}

.cta-item h3 {
    color: var(--white);
    font-size:20px;
    line-height: 1.2;
    font-weight: normal;
    text-transform: uppercase;
    /*letter-spacing:-1px;*/
    margin-bottom: 30px;
}

.cta-item .ot-button {
    display: block;
    margin-top: 20px;
}


#featureds .featured-block .inner-box {
    position: relative;
    -webkit-box-shadow: 0px 0px 25px 0px var(--lbluergba1);
    -moz-box-shadow: 0px 0px 25px 0px var(--lbluergba1);
    box-shadow: 0px 0px 25px 0px var(--lbluergba1);
    background: var(--white);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 25px;
    /*overflow: hidden;*/
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

#featureds .featured-block .inner-box:focus,
#featureds .featured-block .inner-box:hover {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--lbluergba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--lbluergba3);
    box-shadow: 0px 10px 30px -5px var(--lbluergba3);
}


#featureds .featured-block .inner-box:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    height: 5px;
    width: 60px;
    background-color: var(--lblue1);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

#featureds .featured-block .inner-box:hover::before {
    width: 100%;
    background-color: var(--lblue2);
}

#featureds .featured-block .inner-box .content-feature {
    position: relative;
    padding: 10px 10px 10px 10px;
}

#featureds .featured-block .inner-box .icon-box {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

#featureds .featured-block .inner-box .icon-box img {
    width: 100px;
}

#featureds .featured-block .inner-box .content-feature h3 {
    position: relative;
    line-height: 1.1;
    font-weight: bold;
    font-size: 24px;
}

#featureds .featured-block .inner-box .content-feature p {
    position: relative;
    line-height: 1.1;
    font-weight: normal;
    font-size: 16px;
}


#featureds .featured-block .inner-box .content-feature h3 a {
    position: relative;
    line-height: 1.1;
    font-weight: bold;
    font-size: 24px;
    color: var(--gray4)
}

#featureds .featured-block .inner-box .content-feature h3 a:hover {
    color: var(--lblue2)
}






#carouselAbout {
    position: relative;
    background: var(--white);
    height:480px;
    width: 100%;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    overflow: hidden;
    paddind: 15px;

}


#carouselAbout .swiper {
    width: 100%;
    height: 100%;
}

#carouselAbout.swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

#carouselAbout .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#carouselAbout .swiper-button-prev,
#carouselAbout .swiper-button-next {
    background: transparent;
    width: 60px;
    height: 60px;
    line-height: 60px;
    padding: 15px;
    margin-top: -30px;
    text-align: center;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    transition: all .3s ease;
    color: var(--whitergba5);
}

#carouselAbout :hover .swiper-button-prev,
#carouselAbout :hover .swiper-button-next {
    color: var(--white);
}











#testimonial {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-left:15px;
    padding-right:15px;
}

#testimonial .swiper {
    width: 100%;
    height: 100%;


}

#testimonial .swiper-slide {
    text-align: center;
    font-size: 18px;

}

#testimonial .testimonial-item {
    text-align: left;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;

}



#testimonial .testimonial {
    margin-bottom: 20px;
}
#testimonial .tcontent {
    position: relative;
    background: var(--f4f4f4);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    border: 0;
    color: var(--gray3);
    margin: 0;
    position: relative;
    z-index: 1;
    padding: 15px;
    border-top: 5px solid var(--lblue2);
    -webkit-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    min-height: 220px;
    z-index: 1;
}
#testimonial .stars{
    display: block;
    width: 100%;
    padding-top:15px;
    margin-bottom: 10px;
    color: var(--syellow2);
}
#testimonial .text{
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-style: italic;
    color: var(--gray3);
    position: relative;
    z-index: 2;
}

#testimonial .text p{
    margin:0px !important;
}


#testimonial .author{
    display: block;
    width: 100%;
    font-weight: bold;
    color: var(--lblue2);
    position: relative;
    z-index: 1;
}


#testimonial .quote{
    position: absolute;
    right: 15px;
    bottom: 0px;
    z-index: 0;
}

#testimonial .quote img{
    width: 60px;
    opacity: 0.3;
}


#testimonial .main-nav-slider {

}



#testimonial .testm-button-next,
#testimonial .testm-button-prev{
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}


#testimonial .testm-button-next,
#testimonial .testm-button-prev {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    border: none;
    background-color: var(--blackrgba5);
    width: 50px;
    height: 50px;
    border: none;
    z-index: 10;
    cursor: pointer;
    background-image: none;
    margin-top: -25px;
    left: auto;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0.8;
}

#testimonial .testm-button-next{
    right:15px;
}
#testimonial .testm-button-prev{
    left: 15px;
}


#testimonial .testm-button-next img,
#testimonial .testm-button-prev img {
    height: 15px;
    width: auto;
    display: block;
}

#testimonial .testm-button-next:hover,
#testimonial .testm-button-prev:hover {
    box-shadow: none;
    opacity: 1;
    background-color: var(--lblue2);
    -webkit-box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    -moz-box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}








.events-item {
    width:100%;
    height:360px;
    padding-bottom: 20%;
    overflow: hidden;
    position: relative;
    transition: all .8s;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.events-item::before {
    content:"";
    position:absolute; top:0;right:0;bottom:0;left:0;
    background:inherit;
    transition:inherit;
}
.events-item:hover::before {
    transform: scale(1.2);
}


.events-item:after {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+50&0.25+0,0+50 */
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1) 0s;
    width: 100%;
    opacity: 1;
    z-index: 1
}



.events-item-shadow {
    -webkit-box-shadow: 0px 5px 15px 0px var(--blackrgba0);
    -moz-box-shadow: 0px 5px 15px 0px var(--blackrgba0);
    box-shadow: 0px 5px 15px 0px var(--blackrgba0);
    transition: all .7s cubic-bezier(.2, 1, .22, 1);
    -webkit-transition: all .7s cubic-bezier(.2, 1, .22, 1);
}

.events-item-shadow:hover {
    -webkit-box-shadow: 0px 5px 15px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 5px 15px 0px var(--blackrgba3);
    box-shadow: 0px 5px 15px 0px var(--blackrgba3);

}

.events-item-content {
    position: absolute;
    height:100%;
    width:100%;
    color:var(--white);
    z-index: 2;

}



.events-item-logo{
    position: absolute;
    top:20px;
    right:20px;
    background:var(--white);
    padding:5px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    -webkit-box-shadow: 0px 5px 15px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 5px 15px 0px var(--blackrgba3);
    box-shadow: 0px 5px 15px 0px var(--blackrgba3);
}

.events-item-logo img{
    width:50px;
    height:50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.events-item-info{
    position: absolute;
    bottom:15px;
    left:0px;
    right:0px;
    color: var(--white);
    z-index: 2;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
}







.events-item-info h4,
.events-item-info p {
    color:var(--white);
    padding:0px;
    display: block;
    width: 100%;
    margin-bottom: 25px;
    text-shadow: 2px 2px 3px var(--blackrgba3);
}
.events-item-info h4 {
    font-size: 24px;
    line-height: 1.1;
    font-weight:normal;
    margin:0px 0px 10px 0px;
    text-transform: uppercase;
}
.events-item-info p {
    font-size: 16px;
    line-height: 1.2;
    font-weight:normal;
    margin:0px 0px 10px 0px;
}



.events-item-info .icon{
    position: relative;
    width: 120px;
    height: 120px;
    left: 50%;
    margin-left: -60px;
    background-color:var(--blackrgba3);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    padding:25px;
}

.events-item-info .icon img{
    width: 100px;
    filter: invert(100%);

}


.events-item-date{
    padding:0px;
    bottom:0px !important;
    width:100%;
    min-height: 10em;
    display: table-cell;
    vertical-align: middle;

}

.events-item-date-inner{
    display: flex;
    align-items: center;
    justify-content: center;

}

.events-item-date .events-item-date-calendar {
    float:left;
    width:45px;
    height:100%;
}

.events-item-date .events-item-date-calendar img{
    width:40px;
    padding:0px 5px 0px 0px;
}

.events-item-date .events-item-date-day {
    padding-top:10px;
}

.events-item-date .events-item-date-day p {
    text-transform:uppercase;
    font-weight:bold;
    color: var(--white);
}




/*Contacts*/
.sidebar .contacts ul {
    width: 100%;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
}


.sidebar .contacts li {
    color: var(--gray3);
    padding: 7px 0px 7px;
    border-bottom: 1px solid var(--f1f1f1);
    font-size: 15px;
    margin-bottom: 1px;
    width: auto;
    display: block;
    text-align: left;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    font-weight: bold;
}

.sidebar .contacts li:last-child {
    border-bottom: none !important;
}


.sidebar .contacts li:before,
.sidebar .contacts li:after {
    content: " ";
    display: table;
}

.sidebar .contacts li:after {
    clear: both;
}

.sidebar .contacts li i {
    float: left;
    font-size: 20px;
    text-align: left;
    margin: 0px 3px 0 0;
    display: inline-block;
    width: 30px;
    line-height: 24px;
    color: var(--gray3);
}

.sidebar .contacts li p {
    margin-bottom: 0;
    color: var(--gray3);
    font-size: 14px;
}

.content-footer.contacts li {
    color: var(--gray3);
    font-size: 16px;
}

.sidebar .contacts li a {
    color: var(--gray3);
    font-size: 16px;
    line-height: 16px
}

.sidebar .contacts li a:hover {
    color: var(--lblue2);
    padding-left: 10px;
    border-color: var(--blackrgba1);
}


.sidebar .heading h1,
.sidebar .heading h2,
.sidebar .heading h3 {
    color: var(--gray3);
    display: inline-block;
    font-weight: normal;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 24px;
}

.sidebar .heading h1::after,
.sidebar .heading h2::after,
.sidebar .heading h3::after {
    background: var(--lblue2) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 95px;
}

.sidebar .heading h1::before,
.sidebar .heading h2::before,
.sidebar .heading h3::before {
    background: var(--lblue1) none repeat scroll 0 0;
    bottom: 5px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 155px;
}




.pagemapa iframe{
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    border: 5px solid var(--white);
    background: var(--white);
    padding: 10px;
    -webkit-box-shadow: 0px 10px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 10px 25px 0px var(--blackrgba1);
    box-shadow: 0px 10px 25px 0px var(--blackrgba1);
}


.info-contact h3 {
    line-height: 1.1rem;
    font-size: 1rem;
    font-weight: bold;
    color: var(--gray3);
    display: block;
    margin-bottom: 15px;
}

.info-contact {
    position: relative;
    top:-90px;
}


.info-contact .icon-title {
    line-height:125px;
    font-size:72px;
    font-weight: bold;
    position: relative;
    background:var(--white);
    width: 125px;
    height: 125px;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    margin: auto;
    color:var(--dblue2);
    display:block;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    margin-bottom:15px;
    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba2);
    box-shadow: 0px 5px 25px 0px var(--blackrgba2);
}


.info-contact:hover .icon-title{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    color:var(--lblue2);

}



.info-contact h5 {
    line-height: 1.2rem;
    font-size: 1.2rem;
    font-weight: bold;
    color:#6b7175;
    display:block;
    margin-bottom:15px;
}


.info-contact h3 {
    font-size: 32px;
    font-weight: bold;
    color:var(--dblue2);
    display:block;
    margin-bottom:15px;
}




.info-contact p {
    font-size: 1rem;
    font-weight: bold;
    color:var(--gray2);
    display:block;
    padding-bottom:10px;
    padding-top: 10px;
}
.info-contact a {
    line-height: 1.1rem;
    font-size: 1rem;
    font-weight: bold;
    color:var(--lblue2);
    display:block;
    margin-bottom: 5px;
    padding-bottom:10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.info-contact a:hover {
    color:var(--dblue3);
}

.info-contact .icon-phone-footer i {
    position: relative;
    font-size: 28px !important;
    top:3px;
}

.info-title .font-16,
.overlay-content .font-16 {
    font-size: 20px !important;
    line-height: 22px;
}





.box-img-hover {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.box-img-hover:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    box-shadow: 0px 15px 35px 0px var(--blackrgba2);
}


.img-hover img {
    border: 0px solid var(--lblue2) !important;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    filter: grayscale(20%);
    -webkit-filter: grayscale(20%);
    cursor: pointer;
}

.img-hover img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white) !important;
    opacity: 0;
    -moz-transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.img-hover:hover img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.5) rotate(0deg);
    -moz-transform: scale(1.5) rotate(0deg);
    -o-transform: scale(1.5) rotate(0deg);
    -ms-transform: scale(1.5) rotate(0deg);
    transform: scale(1.5) rotate(0deg);
}

.img-hover span {
    display: block;
    overflow: hidden;
    position: relative;
}

.img-hover span:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    border: 0px solid transparent;
    background: var(--lbluergba5);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    -ms-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.img-hover span i {
    left: calc(50% - 28px);
    top: calc(80% - 29px);
    font-size: 56px;
    position: absolute;
    z-index: 2 !important;
    color: var(--white);
    opacity: 0;
    height: 58px;
    width: 56px;
    line-height: 56px;
    padding: 0px;
    margin: 0px;
    -webkit-transition: all 1.0s ease 0.3s;
    -moz-transition: all 1.0s ease 0.3s;
    -o-transition: all 1.0s ease 0.3s;
    -ms-transition: all 1.0s ease 0.3s;
    transition: all 1.0s ease 0.3s;
}

.img-hover:hover span i {
    top: calc(50% - 29px);
    opacity: 1;
}

.img-hover:hover span:after {
    opacity: 1.0;
    filter: alpha(opacity=100);
}

.img-hover img,
.img-hover img,
.img-hover span:after {
    transition: all 1.0s ease-in-out;
}

.border-bottom1 {
    border-bottom: 3px solid var(--blackrgba1);
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 0px;
}

.pagination > li {
    display: inline;

}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 0px 20px;
    margin: 1px;
    line-height: 50px;
    color: var(--white);
    height: 50px;
    text-decoration: none;
    background-color: var(--lblue2);
    border: 0px solid var(--white);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none !important;
    font-size: 16px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.pagination > li > span {
    font-size: 24px !important;
    padding-top: 12px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: var(--white);
    background-color: var(--lblue3);
    border-color: var(--white);
}

.pagination > li img{
    position: relative;
    top:-1px;
    width:24px;
}
.pagination svg path {
    fill: #fce57e !important;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: var(--white);
    cursor: default;
    background-color: var(--lblue1);
    border-color: var(--white);
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: var(--white);
    cursor: not-allowed;
    background-color: var(--gray3);
    border-color: var(--white);
}

.pager li > a,
.pager li > span {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
}

.pager li > a,
.pager li > span {
    color: var(--white);
    border-color: transparent !important;
    background: var(--gray3);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.pager li > a:hover,
.pager li > span:hover {
    color: var(--white);
    background: var(--lblue2);
    border-color: transparent !important;
}




.overlay-link {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    z-index:4;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}





.bg-theme-color-animation {
    background: linear-gradient(221deg, var(--lblue1), var(--lblue3), var(--lblue1));
    background-size: 600% 600%;
    -webkit-animation: bg-gradient-animator 16s ease infinite;
    -moz-animation: bg-gradient-animator 16s ease infinite;
    -o-animation: bg-gradient-animator 16s ease infinite;
    animation: bg-gradient-animator 16s ease infinite;
}


@-webkit-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-moz-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-o-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}


.info-error {
    position: relative;
    top: -70px
}

.error-page .error-page-title {
    color: var(--lblue2);
    font-size: 50px;
    padding: 0px;
    line-height: 1.1;
    padding-bottom: 0px;
    font-family: var(--special-font);
    font-weight: bold;
}


.error-page .error-page-subtitle {
    color: var(--gray3);
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.error-page p {
    color: var(--gray3);
    font-size: 16px;
}


.pageTitle {
    padding: 160px 0 80px;
    position: relative;
    background-size: cover;
    top: 0px;
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media only screen and (max-width: 1200px) {
    .pageTitle {
        padding: 90px 0 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pageTitle {
        padding: 90px 0 80px;
    }
}


.pageTitle:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background: url(../images/shape-dark-05.svg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 0;
    opacity:0.8

}



.pageTitle:before {
    left: 0;
    z-index: -1;
    top: 0;
    height: 100%;
    content: " ";
    position: absolute;
    width: 100%;
    /*background-color:rgba(155, 211, 174,.7);*/

    background: linear-gradient(221deg, var(--lbluergba5), var(--lbluergba7), var(--lbluergba5));
    background-size: 300% 300%;
    -webkit-animation: bg-gradient-animator 16s ease infinite;
    -moz-animation: bg-gradient-animator 16s ease infinite;
    -o-animation: bg-gradient-animator 16s ease infinite;
    animation: bg-gradient-animator 16s ease infinite;
}


@-webkit-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-moz-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-o-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}


.section-title{
    text-transform: uppercase !important;
}

.titlepageSite h1,
.titlepageSite h2,
.titlepageSite h3 {
    font-size: 24px;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-transform: uppercase !important;
}

.titlepageSite h1{
    font-size:36px;
    line-height:1.1
}


.titlepageSite h2{
    font-size:30px;
    line-height:1.1
}


.titlepageSite h3{
    font-size:24px;
    line-height:1.1
}





.image-bl,
.image-bl img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}



.place-block-one .inner-box{
    position: relative;
    display: block;
}

.place-block-one .inner-box .image-box{
    position: relative;
    display: block;
    overflow: hidden;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;

    -webkit-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.place-block-one .inner-box:focus .image-box,
.place-block-one .inner-box:hover .image-box {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);
}



.place-block-one .inner-box .image-box:before{
    position: absolute;
    content: '';
    background:var(--blackrgba1);
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
}

.place-block-one .inner-box:hover .image-box:before{
    opacity: 1;
}

.place-block-one .inner-box .image-box img{
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    width: 100%;
}

.place-block-one .inner-box:hover .image-box img{
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.place-block-one .inner-box .lower-content{
    position: relative;
    margin: 0px 20px;
}

.place-block-one .inner-box .lower-content .inner{
    position: relative;
    background:var(--dblue2);
    padding:20px 25px 20px 25px;
    margin-top: -60px;
    z-index: 1;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-box-shadow: 0px 5px 20px 0px  var(--blackrgba1);
    -moz-box-shadow: 0px 5px 20px 0px  var(--blackrgba1);
    box-shadow: 0px 5px 20px 0px  var(--blackrgba1);
}


.place-block-one .inner-box:hover .inner,
.place-block-one .inner-box:focus .inner{
    background:var(--lblue2);
    -webkit-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    box-shadow: 0px 10px 50px 0px var(--blackrgba3);
}



.place-block-one .inner-box .lower-content .inner h3{
    position: relative;
    display: block;
    font-size: 18px;
    line-height:1.2;
    font-weight: bold;
    margin-bottom: 0px;
    cursor:pointer;
}

.place-block-one .inner-box .lower-content .inner h3 a{
    display: inline-block;
    color:var(--white);
}

.place-block-one .inner-box .lower-content .inner h3 a:hover{

}

.place-block-one .inner-box .lower-content .inner span{
    position: relative;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    color: var(--dblue2);
    background:var(--f4f4f4);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 25px;
    border: 1px solid var(--f4f4f4);
    text-align: center;
    padding: 0.5px 15px;
}



.content_post ul {
    display: inline-block;
    width: auto;
    padding:10px 0px;
}
.content_post ul > li {
    margin:0px 5px;
    color:#333;
    padding:3px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    opacity: 1.0;
    transition: opacity .2s ease-in-out;
    list-style-type: disc;
    list-style-position: inside;
}

.content_post ul > li:hover {
    opacity: 1.0;
}
.content_post ul:hover > li:not(:hover) {
    opacity: 0.6;
}




.site-heading h1,
.site-heading h2,
.site-heading h3 {
	color: var(--lblue2);
	display: inline-block;
	font-weight: bold;
	padding-bottom: 10px;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.site-heading h1::after,
.site-heading h2::after,
.site-heading h3::after {
	background: var(--lblue2) none repeat scroll 0 0;
	bottom: -10px;
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	width: 50px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


.site-heading h1::before,
.site-heading h2::before,
.site-heading h3::before {
	background: var(--lblue2) none repeat scroll 0 0;
	bottom: 0;
	content: "";
	height: 5px;
	left: 50%;
	margin-left: -35px;
	position: absolute;
	width: 50px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}


.site-heading h1::after,
.site-heading h2::after,
.site-heading h3::after {
	background: var(--dblue2) none repeat scroll 0 0;
	bottom: 0;
	content: "";
	height: 5px;
	left: 50%;
	margin-left: 20px;
	position: absolute;
	width: 20px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}


.site-heading.text-left h1::before,
.site-heading.text-left h2::before,
.site-heading.text-left h3::before {
	left: 0;
	margin-left: 0;
}

.site-heading.text-left h1::after,
.site-heading.text-left h2::after,
.site-heading.text-left h3::after {
	left: 55px;
	margin-left: 0;
}






.box-img-hover-two {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 15px;
    -webkit-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.box-img-hover-two:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    box-shadow: 0px 15px 35px 0px var(--blackrgba2);
}


.box-img-hover-two img {
    border: 0px solid var(--lblue2) !important;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    filter: grayscale(50%);
    -webkit-filter: grayscale(50%);
    cursor: pointer;
}


.box-img-hover-two:hover img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -webkit-transform: scale(1.0) rotate(0deg);
    -moz-transform: scale(1.0) rotate(0deg);
    -o-transform: scale(1.0) rotate(0deg);
    -ms-transform: scale(1.0) rotate(0deg);
    transform: scale(1.0) rotate(0deg);
}




#clients .main-nav-slider {

}



#clients .clients-button-next,
#clients .clients-button-prev{
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}


#clients .clients-button-next,
#clients .clients-button-prev {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    border: none;
    background-color: var(--blackrgba5);
    width: 50px;
    height: 50px;
    border: none;
    z-index: 10;
    cursor: pointer;
    background-image: none;
    margin-top: -25px;
    left: auto;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0.8;
}

#clients .clients-button-next{
    right:15px;
}
#clients .clients-button-prev{
    left: 15px;
}


#clients .clients-button-next img,
#clients .clients-button-prev img {
    height: 15px;
    width: auto;
    display: block;
}

#clients .clients-button-next:hover,
#clients .clients-button-prev:hover {
    box-shadow: none;
    opacity: 1;
    background-color: var(--lblue2);
    -webkit-box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    -moz-box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}






.about-images {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    overflow:hidden;
    -webkit-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}


.about-images:focus,
.about-images:hover {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);
}

.about-images img {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    overflow:hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    filter: grayscale(25%);
    -webkit-filter: grayscale(25%);
}



.about-images img:hover{
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}





.video-frame > video{
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 0;
    bottom: 0;
    display: block;
    width: 100%;
}

iframe,
.video-frame{
    width: 100%;
    padding:0px;
    overflow: hidden;
    margin: 0;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
}

.timeline{
    padding: 20px 15px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba1);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba1);
    box-shadow: 0px 10px 30px -5px var(--blackrgba1);
}

.timeline h2 {
    width: 100%;
    display: block;
    margin: 0px;
    font-size:20px;
    font-weight: bold;
    color: var(--lblue2);
    border-bottom: 2px solid var(--dblue2);
}

.itens {
    padding: 5px 5px 5px 15px;
    margin-bottom: 3px;
}

.itens .title {
    margin: 0px;
    font-size: 18px;
    font-weight: bold;
    color: var(--lblue2);
}
.itens .desc p{
    margin: 0px;
    font-size: 16px;
}





/*==========================
	Accordian Box
===========================*/

.accordion-box {
    position: relative;
    margin-bottom: 30px;
}

.accordion-box .block {
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-top:0px solid var(--blackrgba1);
    margin-bottom: 3px;
}

.accordion-box .block .acc-btn {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    line-height: 25px;
    color: var(--white);
    cursor: pointer;
    padding: 20px 55px;
    padding-right: 15px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: var(--special-font) !important;
}

.accordion-box .block .acc-btn.active {
    color: var(--dblue2);
}

.accordion-box .block .acc-btn .icon {
    position: absolute;
    left: 25px;
    top: 15px;
    line-height: 25px;
    font-size: 14px;
    color: var(--white);
}

.accordion-box .block .acc-btn.active .icon {
    transform: scaleY(-1);
    top: 20px;
    color: var(--dblue2);
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding: 15px;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .content .text {
    position: relative;
    font-size: 15px;
    line-height: 23px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

/* Accordion Style Three */

.accordion-box.style-three .block .acc-btn {
    padding: 20px 25px;
    padding-right: 35px;
    font-family: var(--special-font) !important;
    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba1);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba1);
    box-shadow: 0px 10px 30px -5px var(--blackrgba1);
    background: var(--lblue2);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.accordion-box.style-three .block .acc-btn .icon {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    left: auto;
    right: 25px;
    top: 20px;
}

.accordion-box.style-three .block .acc-btn .icon:before {
    font-size: 32px;
}


.accordion-box.style-three .block .acc-btn.active .icon {
    transform: scaleY(-1);
    top: 15px;
    color: var(--dblue2);
}


.img-contact {
	float:left;
	width:12.5%;
}
.img-contact .box-img-hover{
	    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.img-contact:hover .box-img-hover {
    -webkit-transform: translateY(-0px);
    -moz-transform: translateY(-0px);
    -ms-transform: translateY(-0px);
    -o-transform: translateY(-0px);
    transform: translateY(-0px);
    -webkit-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    box-shadow: 0px 15px 35px 0px var(--blackrgba2);
}


@media only screen and (max-width: 1201px) {
   .img-contact {
        width:25%;
    }

}
