@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --theme-color: #2781b1;
	--theme-text-color: #343c62;
	--theme-bg-color: #f8f8f8;
	--black: #000;
    --white: #fff;
	--danger: darkred;
	--red: red;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
html,
.forminator-select-dropdown .select2-results__options {
    scroll-behavior: smooth;
	scrollbar-color: var(--theme-color) var(--white);
    scrollbar-width: 2px;
}
body {
	margin: 0;
    color: var(--theme-text-color);
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
}
header ul,
footer ul {
    margin: 0;
    padding: 0;
}
header li,
footer li {
    list-style: none;
}
a,
span {
    display: inline-block;
    color: inherit;
}
a {
	text-decoration: none;
    transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1)
}
p a {
    color: var(--theme-color);
}
a:hover,
a:focus {
    /* transform: scale(1.2); */
}
figure {
    margin: 0;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
h1,h2,h3,h4,h6 {
    font-family: inherit;
    font-weight: 700;
    margin: 32px 0 24px;
    line-height: 1.2;
}
h1 {
    font-size: 48px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 16px;
}
.cus-row {
    display: flex;
    justify-content: space-between;
}
.cus-btn-area {
    margin: 40px 0;
}
.cus-btn,
.cus-nav-btn a {
    color: var(--white);
    border: 2px solid var(--theme-color);
    background: var(--theme-color);
    font-size: 16px;
    padding: 5px 30px;
    font-weight: 500;
    text-transform: uppercase;
}
.cus-btn:hover,
.cus-nav-btn a:hover {
    background: transparent;
    color: var(--theme-text-color);
}
.cus-nav-btn {
    margin-left: 5px;
}
.cus-nav-btn.current_page_item a {
    color: var(--white);
}
.cus-btn-area .cus-btn:empty {
    display: none;
}
header .cus-col {
    position: relative;
}
header .cus-col:first-child {
    margin-right: auto;
}
header .cus-col:nth-child(2), header .cus-col:nth-child(3) {
    padding-right: 25px;
    margin-right: 25px;
    display: flex;
    align-items: center;
}
header .cus-col:nth-child(2):after, header .cus-col:nth-child(3):after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 35px;
    width: 2px;
    background: var(--theme-color);
    margin: auto;
}
.cus-head-icon {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 40px;
}
.cus-head-icon i {
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 0;
    margin: auto;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    color: var(--white);
}
.cus-head-icon p {
	margin: 0;
}
.cus-head-icon span {
	display: block;
}
.nav-menu-icon {
    width: 30px;
    height: 25px;
    position: relative;
    margin: 0 0 0 auto;
    display: block;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}
.nav-menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--theme-color);
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-menu-icon:hover span {
    background: var(--theme-color);
}
.nav-menu-icon span:nth-child(1) {
    top: 0px;
}
.nav-menu-icon span:nth-child(2),
.nav-menu-icon span:nth-child(3) {
    top: 10px;
}
.nav-menu-icon span:nth-child(4) {
    top: 20px;
}
.nav-menu-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-menu-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-menu-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav-menu-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
#breadcrumbs {
    font-size: 18px;
    color: var(--black);
}
#breadcrumbs a {
    color: var(--theme-text-color);
    font-weight: 700;
}
header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
}
header .inner {
    padding: 15px 0;
}
header .cus-row,
.home-ban-sec .cus-row {
    align-items: center;
}
header .logo a {
    max-width: 100px;
    display: block;
}
header nav ul {
    display: flex;
    align-items: center;
	justify-content: center;
}
header nav ul li a {
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 30px;
}
.current-menu-item > a,
header nav ul li a:hover,
header nav ul li a:focus {
    color: var(--theme-text-color);
}
.home-ban-sec {
    text-align: center;
    border-bottom: 1px solid var(--theme-color);
    position: relative;
}
.home-ban-sec .swiper-slide {
	padding: 150px 0 40px;
}
.home-ban-bg {
    background: no-repeat center center/cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: -350px;
    z-index: -1;
    opacity: 0.4;
}
.home-ban-sec .cus-col {
    width: 40%;
}
.home-ban-sec .cus-col:first-child {
    width: 60%;
}
.home-ban-sec figure {
    border-radius: 35% 0 0 50%;
    overflow: hidden;
}
.cus-ban-img-full figure {
    border-radius: 0;
}
.cus-ban-img-full figure img {
    width: 100%;
}
.home-ban-sec .swiper-button-next, .home-ban-sec .swiper-button-prev,
.promo-serv .swiper-button-next, .promo-serv .swiper-button-prev,
.testi-slider .swiper-button-next, .testi-slider .swiper-button-prev {
    color: var(--white);
    background: var(--theme-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
}
.home-ban-sec .swiper-button-next::after, .home-ban-sec .swiper-button-prev::after,
.promo-serv .swiper-button-next::after, .promo-serv .swiper-button-prev::after,
.testi-slider .swiper-button-next::after, .testi-slider .swiper-button-prev::after {
    font-size: 20px;
}
.promo-serv,
.portfolio {
    padding: 40px 0;
    background: var(--theme-bg-color);
    text-align: center;
}
.promo-serv-box {
    border: 2px solid var(--theme-color);
    background: var(--white);
}
.promo-serv-box figure {
    background: no-repeat center center/100% 100%;
    padding: 1px;
}
.promo-serv-inner {
    padding: 25px 15px 0;
}
.promo-serv-box img {
    width: 85%;
    height: 250px;
    object-fit: contain;
    margin: 0 auto;
}
.promo-serv-box p {
    padding: 0 15px;
    min-height: 175px;
}
.promo-serv-box figure .cus-btn-area {
	margin-top: 0;
    margin-bottom: 30px;
}
.four-col-sec {
    padding: 40px 0;
    text-align: center;
}
.four-col-sec .cus-row {
    gap: 15px;
}
.four-col-sec .cus-col {
    width: 25%;
}
.four-col-box {
    border: 2px solid var(--theme-color);
    height: 100%;
    padding: 15px;
    background: var(--theme-bg-color);
}
.four-col-box figure {
    height: 215px;
}
.four-col-box figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.portfolio {
    text-align: center;
}
.portfolio .cus-row {
	display: flex;
	flex-wrap: wrap;
    gap: 15px;
}
.portfolio .cus-col {
    width: calc(25% - 12px);
    border: 2px solid var(--theme-color);
}
.port-box a {
    pointer-events: none;
}
.portfolio .cus-col figure a {
    display: block;
    aspect-ratio: 1/1.1;
	overflow: auto;
}
.portfolio .cus-col figure img {
    width: 100%;
}
.portfolio h5 {
	/* background: var(--theme-color); */
    /* color: var(--white); */
    color: var(--theme-color);
    margin: 0;
    padding: 10px 0;
    box-shadow: 0 0 10px var(--theme-color);
    border-top: 1px solid var(--theme-color);
}
.img-text-icon-row {
    border-bottom: 1px dashed var(--theme-color);
}
.img-text-icon-row .cus-row {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 75px 0;
}
.img-text-icon-row:nth-child(even) .cus-row {
    flex-direction: row-reverse;
}
.img-text-icon-row .cus-col {
    width: 60%;
}
.img-text-icon-row .img-text-icon-img {
    width: 40%;
}
.img-text-icon-row h2 {
    margin-top: 0;
}
.img-text-icon-box-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.img-text-icon-box {
    width: calc(50% - 10px);
}
.img-text-icon-box figure {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
}
.img-text-icon-box figure img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.img-text-icon-box h5 {
    margin: 0;
    color: var(--theme-color);
}
.testimonials {
    text-align: center;
    padding: 50px 0;
}
.testimonials figure {
    width: 150px;
    height: 150px;
    margin: 25px auto;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: var(--theme-color);
}
.testimonials .swiper-slide {
    border: 2px solid var(--theme-color);
    margin-bottom: 50px;
    padding: 15px 15px 30px;
}
.testimonials figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonials q {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonials h4 {
    margin-bottom: 0;
    color: var(--theme-color);
}
.testimonials h6 {
    margin: 0;
}
.contact-sec h2 {
    text-align: center;
}
.contact-sec .cus-col {
    width: calc(100% - 385px);
    position: relative;
}
.contact-sec .cont-info-col {
    background: var(--theme-color);
    /* color: var(--white); */
    padding: 15px;
    width: 385px;
}
.contact-sec .contact-info-box {
    background: var(--theme-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
    padding: 25px 15px;
}
.contact-sec .contact-info-box i {
    font-size: 64px;
}
.contact-sec ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-sec li {
    list-style: none;
    font-size: 24px;
    margin: 0 15px;
    color: var(--white);
}
.contact-sec .contact-info-box h5 {
    margin-bottom: 0;
}
.contact-sec .contact-bg {
    background: no-repeat center center/cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.2;
}
.contact-sec h2 {
    position: relative;
}
.contact-sec .contact-form {
    padding: 15px;
    /* background: var(--theme-bg-color); */
    /* height: 100%; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-sec .contact-form form {
    max-width: 550px;
}
.contact-sec .contact-form label {
    font-size: 16px !important;
}
.contact-form .forminator-field-textarea .forminator-field {
    display: flex;
    flex-wrap: wrap;
}
.contact-form .forminator-description {
    order: 1;
}
.contact-form input, .contact-form textarea {
    /* box-shadow: 0 0 80px inset var(--theme-color); */
    background: var(--theme-bg-color);
    /* background: radial-gradient(transparent ,var(--theme-color) ) !important; */
}
.contact-form .forminator-button-submit {
    font-size: 20px !important;
    background: var(--theme-color) !important;
    color: var(--white);
    display: block !important;
    width: 100% !important;
}
.partners-logo {
    text-align: center;
}
.partners-logo .inner {
    padding: 30px 0;
}
.partners-logo figure {
    padding: 0 25px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners-logo figure img {
    max-height: 100%;
    object-fit: contain;
}
footer {
    border-top: 1px solid var(--theme-color);
}
footer .inner {
    padding: 5px 0;
}
footer .cus-row {
    align-items: center;
}
footer .cus-col {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
}
footer .privacy-link {
	width: 100%;
}
footer .privacy-link a {
	color: var(--theme-text-color);
}
footer p {
    margin: 0;
}
footer iframe {
	width: 250px;
    height: 120px;
    filter: grayscale(1);
}
footer figure {
    max-width: 100px;
	margin-right: 7px;
}
footer li {
    font-size: 14px;
}
.banner {
    background: no-repeat center center/cover;
    position: relative;
}
.banner-layer-light:before,
.banner-layer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-bg-color);
}
.banner-layer-light:before {
    background: var(--theme-bg-color);
	opacity: 0.7;
}
.banner-layer-light .container,
.banner-layer .container {
    position: relative;
}
.banner .inner {
    min-height: 350px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-img-sec .inner {
    padding: 30px 0;
}
.text-img-sec .cus-row,
.contact-form-map .cus-row {
    gap: 30px;
}
.text-img-sec .cus-col {
    width: 50%;
}
.text-img-sec h2 {
    color: var(--theme-text-color);
}
.team,
.services {
    background: var(--theme-color);
}
.team {
    display: none;
}
.team .inner,
.services .inner {
    padding: 50px 0;
}
.team h2 {
    padding-bottom: 50px;
    position: absolute;
}
.team .swiper {
    padding-top: 100px;
}
.team .team-box {
    padding-bottom: 100px;
}
.team .team-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    width: 100%;
    padding: 25px 20px;
    color: var(--black);
    text-align: center;
    overflow: hidden;
    background: var(--theme-color);
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    transition: .3s all ease;
}
.team .team-box:hover .team-text {
    background: var(--theme-color);
    color: var(--white);
    width: 100%;
    height: 150px;
}
.team h3 {
    margin: 5px;
}
.team .team-box:hover h3 a,
.team .team-box:hover h5 {
    color: var(--white);
}
.team h5 {
    color: var(--black);
}
.team .team-box figure {
    padding-bottom: 75%;
    position: relative;
}
.team .team-box figure img {
    max-width: none;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}
.team .social-list {
    bottom: -100px!important;
    transition: all .3s ease 0s;
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    z-index: 100;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%)scale(.5);
    -webkit-transition: .4s all ease;
    transition: .4s all ease;
}
.team .team-box:hover .social-list {
    bottom: 25px !important;
    opacity: 1;
    transform: translateX(-50%)scale(1);
}
.team .social-list ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.team .social-list ul li {
    list-style: none;
    margin: 5px;
}
.team .social-list li a {
    color: var(--white);
    font-size: 16px;
}
.team .swiper-button-next,
.team .swiper-button-prev {
    top: 30px;
    background: var(--theme-color);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 20px;
    line-height: 1.3;
    color: var(--white);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.team .swiper-button-next:before {
    content: "\f061";
}
.team .swiper-button-prev {
    right: 75px;
    left: initial;
}
.team .swiper-button-prev:before {
    content: "\f060";
}
.team .swiper-button-prev:after,
.team .swiper-button-next:after{
    display: none;
}
.award-sec .cus-row {
	align-items: center;
	flex-wrap: wrap;
}
.award-sec .cus-col {
    width: 33.33%;
    padding: 15px;
	margin: auto;
}
.about-gallery {
	padding-bottom: 30px;
}
.about-gallery .cus-row {
	gap: 10px;
	flex-wrap: wrap;
}
.about-gallery .cus-col {
	width: calc(25% - 7.5px);
}
.about-gallery .cus-col:last-child {
    margin-right: auto;
}
.about-gallery a {
	display: block;
	height: 100%;
}
.about-gallery figure {
    padding-bottom: 65%;
	position: relative;
}
.about-gallery figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}
.partners-logo h2 {
    text-align: center;
    margin-bottom: 30px;
}
.partners-logo .inner {
    padding: 30px 0;
}
.partners-logo figure {
    padding: 0 25px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners-logo figure img {
    max-height: 100%;
    object-fit: contain;
}
.services .cus-row {
    flex-wrap: wrap;
    justify-content: normal;
    gap: 15px;
}
.services .cus-col {
    width: calc(33.33% - 10px);
}
.services-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.services-top figure {
    padding-bottom: 57%;
    position: relative;
}
.services-top figure a {
    display: block;
}
.services-top figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s ease;
}
.services-bot {
    background: var(--white);
    padding: 30px;
    padding-right: 25px;
    flex: 1;
}
.contact-info .inner {
    padding: 30px 0;
}
.contact-info .cus-row {
    gap: 15px;
}
.contact-info .cus-col {
    width: 33.33%;
}
.contact-info .contact-info-box,
.box-col-design {
    background: var(--theme-bg-color);
    padding: 30px 15px;
    box-shadow: 2px 2px 10px 0px var(--theme-color);
    border: 5px solid var(--theme-color);
}
.contact-info .contact-info-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    color: var(--theme-text-color);
    font-size: 28px;
    border: 5px solid var(--theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-info h5 {
    margin: 15px 0 10px;
    text-align: center;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form-map .inner {
    padding: 0 0 30px;
}
.contact-form-map .cus-col {
    width: 50%;
}
.contact-form-inner {
    padding: 50px;
    background: var(--theme-color);
	color: var(--white);
}
.contact-form-map iframe {
	filter: grayscale(1);
    display: block;
    height: 100%;
	width: 100%;
}
.contact-form-inner form {
    margin: 0 !important;
}
.contact-form-inner .forminator-field-textarea .forminator-field {
    display: flex;
    flex-wrap: wrap;
}
.contact-form-inner .forminator-description {
    order: 1;
}
.contact-form-inner .forminator-button-submit {
    background: var(--theme-text-color);
    color: var(--white);
    text-transform: uppercase;
    font-size: 20px;
    width: 100% !important;
}
.blog-main-view {
    background: var(--theme-bg-color);
    padding: 50px 0;
}
.blog-main-view .inner {
/*     display: flex;
    gap: 50px; */
}
.blog-main-view article {
/*     width: 66.66%; */
}
.blog-main-view .blog-area {
    margin-bottom: 30px;
    background: var(--white);
}
.blog-main-view .blog-area:last-child {
    margin-bottom: 0;
}
.blog-main-view .blog-main-top a {
    display: block;
}
.blog-main-view .blog-main-bot {
    padding: 30px;
}
.blog-main-view .blog-main-bot-list {
    padding: 0;
    margin: 15px 0 25px;
    display: flex;
}
.blog-main-view .blog-main-bot-list > li {
    margin-right: 15px;
    list-style: none;
    font-size: 16px;
}
.blog-main-view .blog-main-bot-list > li:last-child {
    margin: 0;
}
.blog-main-view .blog-main-bot li i {
    margin-right: 5px;
    color: var(--theme-text-color);
}
.blog-main-view .blog-main-bot .cat-text,
.blog-main-view .blog-main-bot .post-categories {
    display: flex;
    align-items: center;
}
.blog-main-view .blog-main-bot .post-categories {
    margin: 0;
    padding: 0;
}
.blog-main-view .blog-main-bot .post-categories li {
    margin-left: 25px;
}
.blog-main-view .blog-main-bot .post-categories li:first-child {
    margin: 0;
    list-style: none;
}
.blog-main-view aside {
    width: 33.33%;
}
.blog-main-view .side-blog-main {
    position: sticky;
    top: 0;
}
.blog-main-view aside h4 {
    margin-bottom: 40px;
    position: relative;
}
.blog-main-view aside h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    width: 40px;
    background: var(--theme-color);
}
.blog-main-view aside ul {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}
.blog-main-view aside li {
    list-style: none;
}
.blog-main-view .search-area {
    margin-bottom: 30px;
}
.blog-main-view .search-area input[type="search"] {
    border: 1px solid var(--theme-color);
    color: var(--black);
    padding: 12px 17px;
    width: 100%;
    outline: none;
}
.blog-main-view .search-area button[type="submit"] {
    background: var(--theme-color);
    border: none;
    color: var(--white);
    padding: 9px 20px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    font-size: 20px;
    outline: none;
}
.blog-main-view .side-post li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--theme-color);
    position: relative;
    padding-left: 15px;
}
.blog-main-view .side-post li:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.blog-main-view .side-post li:before {
    content: "\f105";
    font-family: FontAwesome;
    font-style: normal;
    text-decoration: inherit;
    font-size: 12px;
    position: absolute;
    left: 0;
    color: var(--theme-color);
}
.blog-main-view aside h6 {
    margin: 0;
}
.blog-main-view aside h6 a:hover {
    color: var(--theme-text-color);
}
.blog-main-view .side-cat ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.blog-main-view .side-cat li,
.blog-main-view .side-tags li {
    border: 1px solid var(--theme-color);
    margin: 5px 5px 5px 0;
    padding: 2px 7px;
}
.blog-main-view .side-cat li:hover,
.blog-main-view .side-tags li:hover {
    background: var(--theme-color);
    color: var(--white);
    border: 1px solid var(--theme-color);
}
.blog-main-view .side-cat li:last-child {
    margin: 0;
}
.blog-main-view .side-cat li .children {
    display: none;
}
.blog-main-view .side-tags ul {
    display: flex;
    flex-wrap: wrap;
}
.blog-single-view {
    padding: 30px;
    background: var(--white);
}
.blog-single-top {
    display: flex;
    padding: 0;
    justify-content: flex-end;
    border-bottom: 1px solid var(--theme-color);
}
.blog-single-top li {
    list-style: inside square;
    margin: 10px 0 10px 10px;
    color: var(--theme-text-color);
    text-transform: uppercase;
}

.blog-single-top li:first-child {
    list-style: none;
    margin-left: 0px;
}
.blog-single-img {
    margin-bottom: 15px;
}
.blog-single-img img, .services-faq-img img {
    width: 100%;
}
.blog-single-view .wp-block-gallery {
    margin: 15px 0;
}
.blog-single-view .cus-ar-popup {
    margin-bottom: 8px !important;
}
.blog-single-view ul li strong,
.blog-single-view ol li strong {
    color: var(--theme-text-color);
}
.blog-single-view h2,
.blog-single-view h3 {
    margin-bottom: 15px;
}
.cus-pagination {
	width: 100%;
}
.cus-pagination ul {
    display: flex;
    justify-content: center;
	padding: 0;
	margin: 0;
}
.cus-pagination li {
    list-style: none;
    margin: 0 7px;
    font-weight: 500;
    font-size: 18px;
}
.cus-pagination li.active {
    color: var(--theme-text-color);
}
.box-col-design {
    padding: 15px 15px 0;
}
.services-btn-view {
    display: flex;
    flex-wrap: wrap;
	gap: 10px;
}
.services-btns a {
    padding: 10px 15px;
    background: var(--theme-color);
    border-radius: 15px 0;
    color: var(--white);
}
.services-faq-row {
    border-bottom: 1px solid var(--theme-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.cus-faq-top {
    position: relative;
    cursor: pointer;
}
.cus-faq-top h5 {
    padding-right: 30px;
    color: var(--theme-text-color);
}
.cus-faq-top .fa {
    position: absolute;
    right: 10px;
    top: 7px;
}
.cus-faq-top .fa-caret-down {
    color: var(--theme-text-color);
}
.cus-faq-top .cus-hide-icon {
    display: none;
}
.cus-faq-bot {
    display: none;
}
.cus-faq-bot p {
    margin: 0;
}
.error-404-sec {
    text-align: center;
    padding: 50px 0;
} 

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
    .container {
        max-width: 1190px;
    }
	.cus-mob-head-btn {
		display: none;
	}
    .menu > .menu-item-has-children > a:after {
        content: "\f078";
        font-family: fontawesome;
        margin-left: 7px;
    }
    .menu > .menu-item-has-children:hover > .sub-menu {
        display: flex;
    }
    .menu > .menu-item-has-children > .sub-menu {
        position: absolute;
        left: 0;
        right: 0;
        background: var(--white);
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 25px;
        align-items: initial;
        border: 2px solid var(--theme-color);
        display: none
    }
    .menu > .menu-item-has-children > .sub-menu > li {
        width: 25%;
    }
    .sub-menu .sub-menu {
        flex-direction: column;
        align-items: flex-start;
    }
    .sub-menu .sub-menu li a {
        text-transform: capitalize;
        font-size: 14px;
        padding: 0 0 10px 50px;
    }
}
@media (min-width: 1300px) {
    .container {
        max-width: 1270px;
    }
}
@media (max-width: 1299px) {
    header nav ul li a {
        padding: 10px 20px;
    }
}

@media (max-width: 1199px) {
    header nav .menu {
        align-items: flex-start;
    }
    .sub-menu li a {
        padding: 10px 0 5px 40px;
    }
    .menu-item-object-services li a {
        text-transform: capitalize;
        padding: 0 0 5px 60px
    }s
    .not-scroll {
        overflow: hidden;
    }
    #nav-menu-icon {
        display: block;
    }
    #nav-hamburger, header nav,
	header .cus-col:nth-child(2), header .cus-col:nth-child(3) {
        display: none;
    }
	header .inner {
		display: flex;
		align-items: center;
	}
    header .cus-row {
        align-items: center;
		width: 100%;
    }
	header .cus-col:last-child {
		display: flex;
		align-items: center;
	}
	.cus-mob-head-btn {
		margin: 0 15px 0 0;
	}
	.cus-head-icon {
		margin-right: 15px;
		padding-left: 30px;
	}
	.cus-head-icon i {
		width: 25px;
    	height: 25px;
		font-size: 12px;
		top: 1px;
	}
	header .navi {
		display: flex;
    	align-items: center;
	}
    header nav {
        padding-top: 100px;
        position: fixed;
        right: 0px;
        top: 0px;
        bottom: 0px;
        background: var(--theme-bg-color);
        min-width: 300px;
        box-shadow: var(--theme-color) 0px 0px 10px;
    }
    header nav > div {
        padding: 0 25px 15px;
        overflow: auto;
        height: 100%;
    }
    header nav ul {
        flex-direction: column;
    }
    .cus-nav-btn:last-child a {
        margin-top: 15px;
    }
    .blog-view .blog-box:not(:first-child) figure a {
        height: 225px;
    }
}
@media (max-width: 991px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 18px;
    }
    h6 {
        font-size: 14px;
    }
    .home-ban-sec .swiper-slide {
        padding: 120px 0 40px;
    }
    .four-col-sec .cus-row,
    .treatment .cus-row,
    .text-img-sec .cus-row,
    .contact-info .cus-row,
    .contact-form-map .cus-row,
    .img-text-icon-row .cus-row,
    .contact-sec .cus-row {
        flex-wrap: wrap;
    }
    .four-col-sec .cus-col,
    .treatment .cus-col:first-child,
    .treatment .cus-col,
    .text-img-sec .cus-col,
    .contact-info .cus-col,
    .contact-form-map .cus-col,
    .blog-main-view article,
    .img-text-icon-row .cus-col,
    .contact-sec .cus-col {
        width: 100%;
    }
    .treatment .inner {
        padding: 30px;
    }
    .treatment-inner {
        margin-bottom: 20px;
    }
    .blog-view .blog-inner {
        padding: 0;
    }
    .blog-view .blog-box {
        border: none !important;
    }
    .blog-view .blog-box:first-child {
        position: static;
        display: flex;
        width: 100%;
    }
    .blog-view .blog-box figure, .blog-view .blog-box .blog-text-view {
        width: 50%;
    }
    .blog-view .blog-box figure a {
        height: 100% !important;
    }
    .blog-view .blog-box:not(:first-child) p {
        display: block;
    }
    .services .cus-col {
        width: calc(50% - 7.5px);
    }
    .contact-form-map iframe {
        height: 500px;
    }
    .blog-main-view aside {
        display: none;
    }
	footer .cus-row {
        flex-wrap: wrap;
        justify-content: center;
    }
	.portfolio .cus-col {
		width: calc(50% - 8px);
	}
}
@media (max-width: 767px) {
    .home-ban-sec .swiper-slide {
        padding: 120px 0 30px;
    }
    .promo-serv,
    .four-col-sec,
    .bg-sec .inner,
    .blog-view .inner,
    .blog-main-view {
        padding: 30px 0;
    }
    .cus-btn-area,
    .treatment .cus-btn-area {
        margin-top: 30px;
    }
	header .cus-col:last-child {
		flex-direction: column;
	}
	.cus-mob-head-btn {
		margin: 0 10px 10px 0;
	}
    .services .cus-col {
        width: 100%;
    }
	.award-sec .cus-row {
		flex-direction: column;
	}
	.award-sec .cus-col {
		width: 100%;
	}
	.about-gallery .cus-col {
    width: calc(33% - 7.5px);
}
    .bg-sec-inner,
    .contact-form-inner {
        padding: 30px;
    }
    footer .cus-col {
        margin: 10px 0;
    }
}
@media (max-width: 575px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 16px;
    }
    .cus-btn, .cus-nav-btn a {
        padding: 3px 15px;
    }
	.cus-head-icon {
		padding-left: 0;
	}
	.cus-head-icon i {
		display: none;
	}
    header .logo a {
        max-width: 90px;
    }
	.nav-menu-icon {
		width: 25px;
	}
	.nav-menu-icon span:nth-child(2), .nav-menu-icon span:nth-child(3) {
		top: 8px;
	}
	.nav-menu-icon span:nth-child(4) {
		top: 16px;
	}
    .home-ban-sec .swiper-slide {
        padding: 100px 0 15px;
    }
    .promo-serv, .four-col-sec, .bg-sec .inner, .blog-view .inner, .text-img-sec .inner, .team .inner, .services .inner, .partners-logo .inner, .contact-info .inner, .blog-main-view {
        padding: 15px 0;
    }
    .cus-btn-area, .treatment .cus-btn-area,
    .contact-info h5 {
        margin: 15px 0 0;
    }
	.cus-mob-head-btn {
		margin: 0 10px 5px 0;
	}
    .treatment .inner,
    .bg-sec-inner,
    .blog-view .blog-text-view,
    .services-bot,
    .contact-info .contact-info-box,
    .contact-form-inner,
    .blog-main-view .blog-main-bot,
    .blog-single-view {
        padding: 15px;
    }
    .treatment,
    .bg-sec-inner h4,
    .partners-logo h2,
    .blog-main-view .blog-main-bot-list {
        margin: 0 0 15px;
    }
    .treatment-inner {
        padding: 0;
    }
    .treatment .cus-btn {
        padding: 5px 15px;
    }
    .blog-view .blog-box {
        flex-direction: column !important;
    }
    .blog-view .blog-box figure, .blog-view .blog-box .blog-text-view {
        width: 100% !important;
    }
    .blog-view .blog-box p {
        max-height: initial;
    }
    .banner .inner {
        min-height: 275px;
    }
    .text-img-sec .cus-row,
    .contact-form-map .cus-row {
        gap: 15px;
    }
    .partners-logo figure {
        padding: 0 10px;
    }
    .contact-form-map iframe {
        height: 400px;
    }
    .contact-form-inner form .forminator-row:nth-child(2) {
        flex-wrap: wrap;
    }
    .contact-form-inner form .forminator-col-6,
    .img-text-icon-box {
        width: 100%;
    }
    .blog-single-top li {
        font-size: 12px;
    }
	.about-gallery .cus-col {
        width: calc(50% - 5px);
    }
	.portfolio .cus-col {
		width: 100%;
	}
}