/* Fonts */
:root {
    --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Poppins", sans-serif;
}



/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #e84545; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--prussianblue-color: #669bbc; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #3a3939; /* The default color of the main navmenu links */
    --nav-hover-color: #e84545; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #e84545; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

/*body,code { font:0.75em Nanum Gothic, Verdana,Dotum,AppleGothic,sans-serif; color:#353535; background:#fff; }*/

div{ -webkit-touch-callout: none;
     user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     -webkit-user-select: none;
}

videos = document.querySelectorAll("video");
for (var i = 0, l = videos.length; i < l; i++) {
    var video = videos[i];
    var src = video.src || (function () {
        var sources = video.querySelectorAll("source");
        for (var j = 0, sl = sources.length; j < sl; j++) {
            var source = sources[j];
            var type = source.type;
            var isMp4 = type.indexOf("mp4") != -1;
            if (isMp4) return source.src;
        }
        return null;
    })();
    if (src) {
        var isYoutube = src && src.match(/(?:youtu|youtube)(?:\.com|\.be)\/([\w\W]+)/i);
        if (isYoutube) {
            var id = isYoutube[1].match(/watch\?v=|[\w\W]+/gi);
            id = (id.length > 1) ? id.splice(1) : id;
            id = id.toString();
            var mp4url = "http://www.youtubeinmp4.com/redirect.php?video=";
            video.src = mp4url + id;
        }
    }
}

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 98px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 64px;
    }
}

.song-myung-regular {
  font-family: "Song Myung", serif;
  /*font-weight: 400;*/
  font-style: normal;
}

.nanum-myeongjo-regular {
  font-family: "Nanum Myeongjo", serif;
 /* font-weight: 400;*/
  font-style: normal;
}

.noto-sans-kr-regular {
  font-family: "Noto Sans KR", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}



/*** Section Title ***/
.section-sub-title {
    position: relative;
    display: inline-block;
    color: #242424  !important;  
	font-weight: 600;

}

.section-sub-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--color-primary);
}

.section-sub-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--color-primary);
}

.section-sub-title.text-start::before,
.section-sub-title.text-end::after {
    display: none;
}

.search {
    position: relative;
    margin-top: -25px !important;
    z-index: 1;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

@media(min-width: 1200px) {
   .section-title {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
	}
}



.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
}


.sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-airblue);
}

 .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-lightgrayish) !important;
}

 .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-lightgrayish) !important;
}


.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-lightgrayish) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-lightgrayish) !important;
}



.section-title h2:before,
.section-title h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--bs-prussianblue);
    display: inline-block;
}

.section-title h2:before {
    margin: 0 15px 10px 0;
}

.section-title h2:after {
    margin: 0 0 10px 15px;
}

.section-title p {
    margin-bottom: 0;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-airblue);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-airblue) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-airblue);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-airblue);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/

@media (max-width: 576px) {

	.section-title {
		margin-top: 0rem !important;
	}
}
.section-title {
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-airblue);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-lightgrayish) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-lightgrayish) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-airblue);
    
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-lightgrayish) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-lightgrayish) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-airblue) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-airblue) !important;
	font-weight: 700;
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-airblue);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {

	.navbar .nav-item:hover .dropdown-menu {
    font-size:14px;
	}

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        /*padding: 10px 20px;*/
        border: 1px solid var(--bs-airblue);
        color: var(--bs-airblue);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
		z-index: 10;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 8px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
		width: 130px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-airblue);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-airblue);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-airblue);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-airblue) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
		width: 20px;
        height: 20px;
        font-size: 12px;
        top: 100px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 750px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
		height: auto;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    bottom:-20%;
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/about-title.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0 60px 0;
}

.bg-about {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/about-title.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
@media(max-width: 576px) {

	.services-contents .sub-title {
	font-size:1.5rem !important;
	}

	.services-contents .about-title-1 {
	 font-size:1.3rem !important;
	}

	.services-contents p {
	 font-size:12px !important;
	}




}

.services-contents .sub-title {
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	color: var(--bs-airblue);
	font-size:2.0rem;
	font-weight:600;

}


.services-contents .about-title-1 {
	 font-size:1.8rem;
	}

.services-contents .service-item {
    position: relative;
    padding-top: 40px;
}

.services-contents .service-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-contents .service-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-right: 5px solid var(--background-color);
}

.services-contents .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-right: 50px;
    line-height: 0;
}

.services .service-item .icon i {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

.services-contents .service-item .icon:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 50px;
    z-index: 1;
    bottom: -15px;
    right: -15px;
    transition: 0.3s;
}

@media(max-width: 576px) {
		
	.services-contents .service-item {
    position: relative;
    padding-top: 20px !important;
    padding-bottom: 20px ;
	}

	 .services-contents .service-item .title {
		font-weight: 600  !important;
		margin-bottom: 0px  !important;
		font-size: 14px  !important;
	}
}
.services-contents .service-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services-contents .service-item .title a {
    color: var(--heading-color);
}

.services-contents .service-item .title a:hover {
    color: var(--accent-color);
}

.services-contents .service-item .description {
    line-height: 24px;
    font-size: 14px;
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
/*** Service Start ***/

@media(max-width: 576px) {

	.service .sub-title {
		position: relative;
		display: inline-block;
		text-transform: uppercase;
		color: var(--bs-airblue);
		font-size: calc(1.375rem + 1.2vw);
		font-weight:600;
        line-height: 1.2;

	}

    .sub-title::before {
		content: "";
		width: 100px;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		margin-top: 8px;
		margin-right: -100px;
		border: 1px solid var(--bs-lightgrayish) !important;
	}

	.service .service-item .service-content .service-content-inner h5 {
	font-size:14px;
	font-weight:600;

	}

	.service .service-item .service-content .service-content-inner p {
	font-size:12px;
	font-weight:600;

	}

    .btn-prussianblue {
   font-size:12px;
	font-weight:600;
	}

    
	.service .service-item .service-content .service-content-inner {
	  height: 140px;
	}


}
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-prussianblue);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: var(--bs-prussianblue);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

.service .service-item .service-content .service-content-inner h5 {
    font-size:18px;
	font-weight:700;
}

/*** Service End ***/



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
    margin-top: 30px;
}

.service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.service-details .services-list {
    background-color: var(--surface-color);
}

.service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: 0.3s;
}

.service-details .services-list a:first-child {
    margin-top: 0;
}

.service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--prussianblue-color);
}

.service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: var(--prussianblue-color);
}

.service-details .services-list a.active i {
    color: var(--contrast-color);
}

.service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--prussianblue-color), transparent 95%);
    color: var(--prussianblue-color);
}

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
}

.service-details .download-catalog a:last-child {
    padding-bottom: 0;
}

.service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--prussianblue-color);
}

.service-details .download-catalog a:hover {
    color: var(--prussianblue-color);
}

.service-details .help-box {
    background-color: var(--prussianblue-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

.service-details .help-box .help-icon {
    font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
    color: var(--contrast-color);
}



.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {

    font-size: 20px;
    margin-right: 8px;
    color: var(--bs-airblue);
}




/*----------------------------------------
  6.Faq Area
----------------------------------------*/

.faq-details .panel-heading {
  padding: 0;
}

.panel-default>.panel-heading {
  background-color: transparent;
  border: medium none;
  color: #333;
}

.faq-details h4.check-title a {
  color: #333;
  display: block;
  font-weight: 700;
  letter-spacing: 2px;
  margin-left: 40px;
  padding: 6px 10px;
  text-decoration: none;
}

.panel-body {
  padding: 15px 15px 0px 50px;
}

.faq-details h4.check-title {
  color: #444;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.faq-details a span.acc-icons {
  position: relative;
}

.faq-details a span.acc-icons::before {
  color: #333;
  content: "";
  font-family: fontawesome;
  font-size: 24px;
  height: 40px;
  left: -51px;
  line-height: 39px;
  position: absolute;
  text-align: center;
  top: -10px;
  width: 42px;
}

.faq-details h4.check-title a.active, .faq-details a.active span.acc-icons::before {
  color: #3EC1D5;
}

.faq-details a.active span.acc-icons::before {
  content: "";
  font-family: fontawesome;
  font-size: 24px;
  height: 40px;
  left: -51px;
  line-height: 39px;
  position: absolute;
  text-align: center;
  top: -10px;
  width: 42px;
}

.second-row {
  margin-top: 30px;
}

.event-content.head-team h4 {
  background: transparent none repeat scroll 0 0;
  color: #333;
  padding: 30px 0 10px;
  font-weight: 500;
  text-transform: capitalize;
}

.tab-menu .nav-tabs>li>a:hover {
  border-color: #eee #eee #ddd;
}

.tab-menu {
  display: block;
  text-align: center;
}

.tab-menu ul.nav {
  margin: 0;
  padding: 0;
}

.tab-menu ul.nav li {
  border: medium none;
  display: inline-block;
}

.tab-content {
  border: 0px solid #ccc;
  padding: 0 ;
}

.tab-menu ul.nav li a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border-radius: 0;
  color: #444;
  display: block;
  font-weight: 500;
  margin-right: 5px;
  padding: 10px 20px;
  font-family: raleway;
  font-size: 18px;
}

.tab-menu ul li.active a, .tab-menu ul li.hover a, .tab-menu ul li.focus a {
  border-bottom: 1px solid #fff;
  color: #3EC1D5 !important;
}

.tab-menu .nav-tabs {
  border-bottom: none;
}

.tab-main-img a {
  position: relative;
  display: block;
}

.tab-main-img a:hover span.events-offer {
  height: 20%;
}

.tab-main-img a span.events-offer {
  background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
  bottom: 0;
  color: #fff;
  content: "";
  font-size: 20px;
  font-weight: 700;
  height: 0%;
  left: 0;
  line-height: 70px;
  padding: 0;
  position: absolute;
  text-align: left;
  transition: all 0.5s ease 0s;
  width: 100%;
  padding: 0px 10px;
}



/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------
.blog-details {
    padding-bottom: 30px;
}

.blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog-details .title {
    color: var(--heading-color);
    font-size: 1.6em;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .meta-top ul li + li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog-details .meta-bottom .tags li + li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
}

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
    padding: 10px 0 40px 0;
}

.blog-author .author-container {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
    max-width: 120px;
    margin-right: 20px;
}

.blog-author h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0px;
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog-author .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-right: 5px;
}

.blog-author p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}

/*** About Start ***/

/*
.about .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.about .section-title h2:before,
.about .section-title h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
}

.about .section-title h2:before {
    margin: 0 15px 10px 0;
}

.about .section-title h2:after {
    margin: 0 0 10px 15px;
}

.about .section-title h2:before,
.about  .section-title h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
}
*/
.about .sub-title-1::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 2px solid var(--bs-airblue) !important;
}

.about .sub-title-1::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 2px solid var(--bs-airblue) !important;
}

.about .sub-title-1 {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
    font-size: 2rem;
	color: var(--bs-airblue) !important;
}

.about ul.about-list{

	  list-style-type: none;
	  margin: 0;
	  padding: 0;
}


.about .about-title {
    position: relative;
    overflow: hidden;
   /* height: 100%;*/
    border-radius: 10px;
	color: var(--bs-prussianblue) !important;
	font-weight: 700;
}

.about .about-title-1 {
    position: relative;
    overflow: hidden;
   /* height: 100%;*/
    border-radius: 10px;
	color: var(--bs-prussianblue) !important;
	/*font-weight: 700;*/
}


.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.about .about-img .about-img-inner {
    position: absolute;
    left: 0; 
    bottom: 0; 
    border: 10px solid; 
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;

}

.about .about-img .about-experience {
    position: absolute;
    top: 110px; 
    left: -115px; 
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-airblue);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}



.about .about-img .about-experience_1 {
    position: absolute;
    top: 155px; 
    left: -125px; 
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-airblue);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}



@media (max-width: 575px) {



	.about .about-img .about-experience_1 {
    
    top: 85px  !important; 
    left: -70px  !important; 
    font-size: 14px !important;
	letter-spacing: 1px  !important;
     font-weight: 400  !important;
	}

   .about .about-img .about-img-inner {
    position: absolute;
    left: 0; 
    bottom: 0; 
    border: 10px solid; 
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;

	}

	.about .about-img .about-img-inner {
    position: absolute;
    left: 0; 
    bottom: 0; 
    border: 10px solid; 
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;
    width:50%;
	height:50%;
	}

	.about .about-title-1 {
    position: relative !important;
    overflow: hidden !important;
   /* height: 100%;*/
    border-radius: 10px !important;
	color: var(--bs-prussianblue) !important;
	font-weight: 400 !important;
    font-size: calc(1.075rem + 1.0vw) !important;
    margin-bottom:2rem !important;
	}
}


/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-airblue);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-airblue);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel_4-001.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
    
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-airblue);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-airblue) !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-airblue);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-airblue);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-airblue);
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/carousel_4-001.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-airblue);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-airblue);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-airblue) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-airblue);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-airblue);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/


/*** Blog Start ***/


.blog .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.blog .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-airblue);
}

.blog .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-prussianblue) !important;
}

.blog .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-prussianblue) !important;
}

.blog .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-airblue);
    font-weight: 600;
    font-size: calc(1.375rem + 0.3vw);
}

.blog .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-prussianblue) !important;
}

.blog .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-prussianblue) !important;
}
/*** Contact End ***/


.blog {
	margin-top : 0rem;
	margin-bottom : 2rem;
}


.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
	border-bottom:0px;
	 background: var(--bs-light);
    border: 1px solid var(--bs-airblue);
	height:200;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(198, 198, 198, .5);
}



.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid var(--bs-airblue);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 1rem;
}


	.blog .blog-item .blog-centent a{
			font-size: 16px;
			font-weight: 700;
			position: relative;
			margin-bottom:1.2rem ;
	}

	.blog .blog-item .blog-centent a:hover{
			color: #6c757d;
	}

    	.blog .blog-item .blog-centent p{
			font-size: 14px;
			position: relative;
			margin-bottom:1.0rem ;
	}

@media (max-width: 575px) {

 .blog .section-title {
   margin-bottom:1rem !important;
}

	.blog .blog-item .blog-centent {
    padding: 0.5rem !important;
}

	.blog .blog-item .blog-centent a{
			font-size: 14px  !important;
			font-weight: 600  !important;
			position: relative  !important;
			margin-bottom:1rem !important;
	}


	.blog .blog-item .blog-centent .btn{
			font-size: 12px  !important;
			font-weight: 500  !important;
			position: relative  !important;
			padding: 0.3rem !important;
	}

	.blog .blog-item .blog-centent p{
			font-size: 12px;
			position: relative;
			margin-bottom:1.0rem ;
	}
}

/*** Blog End ***/


/*** Contact Start ***/
.contact-bg {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/carousel_4-001.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-airblue);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-airblue) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}





		.features1 .section-header h2 {
			font-size: 32px;
			font-weight: 700;
			position: relative;
			color: #fff;
		}


		.features1 .service-item {
		  padding: 10px;
		  border-color: var(--bs-airblue);
		  /*opacity: .7;*/
		  height: 100%;
		 text-align:center;
         border: 20px solid #dee2e6 !important;
		}

		.features1 .service-item .icon {
		  width: 100px;
		  height: 100px;
		  position: relative;
		  margin-bottom: 30px;
		  margin-top: 20px;
		}



	.features1 .service-item .icon img {
	 /* color: var(--color-secondary);*/
	 color: #212429;
	  font-size: 40px;
	  transition: ease-in-out 0.3s;
	  z-index: 2;
	  position: relative;
	  line-height: 1.8;
		left: 50px;
	 /* filter: opacity(0.5) drop-shadow(0 0 0 #ffffff);*/

	}

	.features1 .service-item .icon:before {
	  position: absolute;
	  content: "";
	  height: 50%;
	  width: 50%;
	 background: var(--bs-orange);
	  border-radius: 50px;
	  z-index: 1;
	  top: 50px;
	  left: 125px;
	  transition: 0.3s;
	}


@media (max-width: 768px) {

		
	.features1 .service-item .icon img {
	 /* color: var(--color-secondary);*/
	 color: #212429;
	  font-size: 40px;
	  transition: ease-in-out 0.3s;
	  z-index: 2;
	  position: relative;
	  line-height: 1.8;
		left: 50%;
	  filter: opacity(0.5) drop-shadow(0 0 0 #ffffff);
	
	}
	 .features1 .service-item .icon:before {
	  position: absolute;
	  content: "";
	  height: 100%;
	  width: 100%;
	  background: var(--bs-orange);
	  border-radius: 50px;
	  z-index: 1;
	  top: 30px;
	  left: 100px;
	  transition: 0.3s;

  }
}


@media (max-width: 575px) {

		.features1 .section-header h4 {
			font-size: 24px;
			font-weight: 700;
			position: relative;
			color: #fff;
		}


			.features1 .service-item {
		  padding: 40px;
		  background: #ffffff ; 
		  /*opacity: .7;*/
		  height: 100%;
		 text-align:center;
			border: 10px solid #dee2e6 !important;
		}

		.features1 .service-item .icon {
		  width: 38px;
		  height: 38px;
		  position: relative;
		  margin-bottom: 30px;
		}



			.features1 .service-item .icon img {
			 /* color: var(--color-secondary);*/
			 color: #212429;
			  font-size: 18px;
			  transition: ease-in-out 0.3s;
			  z-index: 2;
			  position: relative;
			  line-height: 1.8;
				left: 0px;
			  filter: opacity(0.5) drop-shadow(0 0 0 #ffffff);
				width:70px;

			}

			.features1 .service-item .icon:before {
			  position: absolute;
			  content: "";
			  height: 35px;
			  width: 35px;
			  background: var(--bs-orange);
			  border-radius: 50px;
			  z-index: 1;
			  top: 20px;
			  left: 50px;
			  transition: 0.3s;
			}

		.features1 .service-item h4 {
		 /* color: var(--bs-light);
		  border-bottom: 4px solid #ebebed;
		*/
		  color: #252a2f !important;
		  border-bottom: 4px solid #252a2f !important;
		  font-weight: 600 !important;
		  margin: 0 0 10px 0 !important;
		  padding-bottom: 8px !important;
		  font-size: 4vw !important;
		  position: relative !important;
		  display: inline-block !important;
		  letter-spacing:-2.5px;

		  transition: 0.3s !important;
			padding-top: 10px !important;
		}

		.features1 .service-item p {
		  line-height: 16px !important;
		  font-size: 14px !important;
		  margin-bottom: 0;
		}

}

.features1 .service-item h4 {
 /* color: var(--bs-light);
  border-bottom: 4px solid #ebebed;
*/
  color: #375669;
  border-bottom: 4px solid #375669;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 24px;
  position: relative;
  display: inline-block;

  transition: 0.3s;
    padding-top: 10px;
}

.features1 .service-item p {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}

.features1 .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.features1 .service-item:hover .icon:before {
  background: var(--color-secondary) !important;
}

.features1 .service-item:hover .icon img:before {


	color: #252a2f;

}

.features1 .service-item:hover h4 {
  border-color: var(--color-primary);
}

@media (max-width: 395px) {

		.features1 .service-item {
		  padding: 10px;
		border: 7px solid #dee2e6 !important;
		}



		.features1 .service-item .icon img {
			left: 3vw !important;

		}

		.features1 .service-item .icon:before {
		  left: 10vw !important;
			background: var(--bs-orange);
		}

	.features1 .service-item .icon {
		  width: 13vw !important;
		  height: 38px !important;
		  position: relative !important;
		  margin-bottom: 15px !important;
		}



}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
    margin-left: 3px;
}


.features {
  scroll-margin-top: 0 !important;
  padding: 0 !important;
}






.features .nav-link {
  padding: 15px 0 !important;
  transition: 0.3s !important;
  color: var(--color-secondary) !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  height: 100% !important;
  border: 0 !important;
  border-bottom: 4px solid #e2e4e6 !important;
}

.features .nav-link i {
  padding-right: 15px !important;
  font-size: 48px !important;
}

.features .nav-link h4 {
  font-size: 18px !important; 
  font-weight: 600 !important;
  margin: 0 !important;
}

	.features .container{

		width: 100% !important;
		padding-right: 0 !important;
		padding-left: 0 !important;
		margin-right: 0 !important; 
		margin-left: 0 !important;
	  scroll-margin-top: 0 !important;

	}

/*** Img Border ***/

.features .txt-border::before {
    position: absolute;
    content: "";
     top: 3rem;
    left: 3rem;
    right: 0rem;
    bottom: 0rem;
    border: 5px solid var(--bs-prussianblue);
 object-fit: cover;
    border-radius: 6px;
}


.img-border {
    position: relative;
    height: 100%;
   
}


.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


.features .img-border img {
     top: 0rem  !important;
    left: 0rem !important;
      border: 6px solid var(--surface-color);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);

	width: 100% !important;
	 height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
	max-height: 100%;
	min-height: 350px;
}


.features .img-border1 img {
     top: 0rem  !important;
    left: 0rem !important;
      border: 6px solid var(--surface-color);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);

	width: 100% !important;
	 height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
	max-height: 100%;
	min-height: 350px;
}


.features .img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 1rem;
    bottom: 1rem;
    border: 5px solid var(--bs-prussianblue);
    border-radius: 6px;
}


@media (max-width: 575px) {


  .features .nav-link h4 {
    font-size: 12px !important;
	font-weight: 500 !important;
  }

	.features .container{

		width: 100% !important;
		padding-right: 0 !important;
		padding-left: 0 !important;
		margin-right: 0 !important; 
		margin-left: 0 !important;
	  scroll-margin-top: 0 !important;

	}


	.img-border {
    position: relative;
    height: 250px;
	}

	

	.features .img-border::before {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		right: 1rem;
		bottom: 1rem;
		border: 5px solid var(--bs-prussianblue);
		border-radius: 6px;
        width: 100%;
	}

	.img-border img {
		position: absolute;
		height: calc(100% - 3rem);
		object-fit: cover;
		border-radius: 6px;
	}


	.features .img-border img {
		 top: 0rem  !important;
		left: 0rem !important;
		width: 100% !important;
		    height: auto !important;
			max-height: 230px;
			min-height: 200px;
		  border: 6px solid var(--surface-color);
		box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
	}

   .features .tab-content {
	  margin-top: 0px !important;
	  border: 0px solid #ccc !important;
      padding: 0 10px 10px !important;;
	}

	.features .tab-pane ul li {
	  padding-top: 10px !important;
	  padding: 2px 0 !important;
	  display: flex !important;
	  align-items: center;

	  font-size: 12px !important;
	  padding-right: 4px !important;
	  color: var(--bs-gray-dark) !important;
	 
	}
}




.features .nav-link:hover {
  color: var(--color-primary) !important;
}

.features .nav-link.active {
  color: var(--color-primary) !important;
  background-color: transparent !important;
  border-color: var(--color-primary) !important;
}

.features .tab-content {
  margin-top: 30px ;
}

.features .tab-pane h3 {
  font-weight: 700 !important;
  font-size: 32px !important;
  position: relative !important;
  margin-bottom: 20px !important;
  padding-top: 20px !important;
}

.features .tab-pane h3:after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  width: 60px !important;
  height: 3px !important;
  background: var(--color-primary) !important;
  left: 0 !important;
  bottom: 0 !important;
}

.features .tab-pane ul {
  list-style: none !important;
  padding: 0 !important;
}

.features .tab-pane ul li {
  padding-top: 10px ;
  padding: 5px 0 ;
  display: flex ;
  align-items: center;

  font-size: 16px ;
  padding-right: 4px ;
  color: var(--bs-gray-dark) ;
 
}


.features .tab-pane ul li p{
  padding-top: 10px !important;
  padding: 5px 0 !important;
  display: flex !important;
  align-items: center;

  font-size: 16px !important;
  padding-right: 4px !important;
  color: var(--bs-gray-dark) !important;
 
}



.hiright-info {
 background-color: var(--bs-info) !important;  
 color:var(--bs-coolblue) !important;  
 line-height: 1.4em !important;  
 
}

.lightgrayish-info {
 background-color: var(--bs-lightgrayish) !important;  
 color:#ffffff !important;  
 font-size: 1.2em !important;  
 line-height: 1.4em !important;  
 
}


.features .tab-pane p:last-child {
  margin-bottom: 0 !important;
}

/*------------------------*/
.features .page01-box {
    background-color: var(--prussianblue-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 20px 15px;
}

.features .page01-box .help-icon {
    font-size: 1.6em;
}

.features .page01-box h4,
.features .page01-box a {
    color: var(--contrast-color);
	 font-size: 1.2em;
	letter-spacing: -0.1375em; 
}
/*-------------------------*/


/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-airblue);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-airblue);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(239, 239, 239, 0.9), rgba(239, 239, 239, 0.9)), url(../img/carousel_4-001.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-airblue);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

@media (max-width: 575px) {

	/*** Footer Start ***/
	.footer {
		background: linear-gradient(rgba(239, 239, 239, 0.9), rgba(239, 239, 239, 0.9)), url(../img/carousel_4-001.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.footer .footer-item h4 {
		font-size:  calc(1.0rem + 0.3vw);
	}

	.footer .footer-item a {
        font-size:  calc(0.7rem + 0.3vw);
		line-height: 20px;
		color: var(--bs-body);
		transition: 0.5s;
	}

	.footer .footer-item p {
		line-height:20px;
         font-size:  calc(0.7rem + 0.3vw);
        padding-top:10px;
	}

	.footer .footer-item a:hover {
		letter-spacing: 2px;
		color: var(--bs-airblue);
	}

	/*** Footer End ***/

   /*** copyright Start ***/
	.copyright {
		font-size:  calc(0.7rem + 0.3vw);
		line-height: 18px;
        text-align:center;
	}


}


.pc_br {display:block}
.t900_br{display:none}
.mobile_br{display:none}

@media all and (max-width:899px){
  .pc_br{display:none !important}
  .t900_br {display:block !important}
}
@media screen and (max-width: 480px) {
  .t900_br {display:none !important}
  .mobile_br{display:block !important}
}
	/*** copyright end ***/


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

@media (max-width: 575px) {

	.faq .faq-container .faq-item h3 {
		font-weight: 500 !important;
		font-size: 14px !important;
		line-height: 18px !important;
		margin: 0 15px 0 0 !important;
	}

   	.faq .faq-container {
		height: 350px !important;
	}

   .faq .content p {
    font-size: 12px !important;
	}



}

	.faq .faq-container {
		height: 300px 
	}


.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.faq .content p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}


/*** Service ***/
.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

@media (max-width: 575px) {

	.contact .info-item {
    padding: 10px  !important;
	}

    .contact .info-item-sev-1 {
		font-weight: 700 !important;
		padding: 0.5rem !important;
       font-size: calc(0.975rem + 0.5vw);
	}




}

.contact .info-item-title {
    line-height: 0;
    color: var(--bs-airblue) !important;
	padding-right: 10px;
    vertical-align: middle;
    text-align: center !important;
    font-weight: 700 !important;
    padding: 0.5rem !important;
    font-size: calc(1.075rem + 0.5vw) !important;
}

.contact .info-item-title i{
   font-weight: 700 !important;
    font-size: calc(1.075rem + 0.5vw) !important;
     line-height: 0;
    color: var(--accent-color);
	padding-right: 5px;
    vertical-align: middle;
}





.contact .info-item {
    background: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 30px;
}

.contact .info-item-sev-1 {
    font-size: calc(0.875rem + 0.5vw);
    font-weight: 700;
    line-height: 1.2;
     color: var(--bs-airblue) ;
    vertical-align: middle;
    text-align: center;
    background-color: lavender;
    padding: 1rem ;
}


.contact .info-item-sev-write {
    font-size: calc(0.875rem + 0.8vw);
    font-weight: 700;
    line-height: 2;
    color: #fff ;
    vertical-align: middle;
    text-align: center;
    background-color: var(--bs-airblue) !important;
    padding: 0rem ;
}


.contact .info-item-sev-blue {
    font-size: calc(0.875rem + 0.8vw);
    font-weight: 700;
    line-height: 2;
    color:  var(--bs-airblue) ;
    vertical-align: middle;
    text-align: center;
    background-color: #fff !important;
    padding: 0rem ;
}


.contact .info-item-sev-blue-2 {
    font-size: calc(0.775rem + 0.8vw);
    font-weight: 600;
    line-height: 2;
    color:  var(--bs-airblue) ;
    vertical-align: middle;
    text-align: center;
    background-color: #fff !important;
    padding: 0rem ;
}


.contact .info-item-sev-danger {
    font-size: calc(0.775rem + 0.6vw);
    font-weight: 500;
    line-height: 2;
    color:  #dc3545 !important;
    vertical-align: middle;
    text-align: center;
    background-color: #fff !important;
    margin-bottom: 0.5rem !important;
}



.contact .info-item .subway_2 {
 background-color: #00B140  !important;
  color: white  !important;

	a:hover {
	  color: #white !important;
	}
}


.contact .info-item .subway_2  a{
 background-color: #00B140  !important;
  color: white  !important;


}

.contact .info-item .subway_2  a:hover{
 border: 1px dotted #00B140;
 background-color: white  !important;
  color: #00B140  !important;


}


.contact .info-item .way_1 {
 background-color: #6c757d  !important;
  color: white  !important;
}




.contact .info-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0 10px 0;
    text-align: right;
    vertical-align: middle;
}

.contact .info-item h4 {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0 10px 0;
    vertical-align: middle;
}

.contact .info-item .h3red {
 /* font-size: 20px;*/
    font-weight: 600;
    margin: 20px 0 10px 0;
 color: var(--accent-color);
}

.contact .info-item .h3blue {
 /* font-size: 20px;*/
    font-weight: 600;
    margin: 20px 0 10px 0;
 color: #3580BB;
text-decoration:underline;
}

.contact .info-item p {
  font-size: 20px;
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    background: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 30px;
    height: 100%;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


/*----------------------------------------*/
/*  9.Payment History area
/*----------------------------------------*/
.payment-history-area {
    background: url(img/background/bg3.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.payment-history-area::after {
    background: rgba(255,255,255, 0.8) none repeat scroll 0 0;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.deposite-content {
    position: relative;
}
.deposite-content table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}
.deposite-content td, 
.deposite-content th {
  border: 1px solid #ccc;
  text-align: left;
  padding: 8px;
}
.deposite-content tr:nth-child(even) {
  background-color: #E9EBEC;
}
.diposite-box {
    width: 100%;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 10px;
    margin-bottom: 30px;
    position: relative;
}
.diposite-box::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0px;
    width: 100%;
    height: 5px;
    background:  var(--prussianblue-color);
}
.diposite-box h4 {
    display: inline-block;
    font-size: 26px;
    background: var(--prussianblue-color);
    padding: 10px 30px;
    margin-bottom: 25px;
    border-radius: 3px;
    color:#fff;
}
.diposite-box span {
    float: right;
    font-size: 28px;
    color: #fff;
    background: var(--prussianblue-color);
    padding: 10px 20px;
    border-radius: 3px;
    line-height: 32px;
}



/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/


.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.blog-posts .post-img {
    height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.blog-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.blog-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.blog-posts .title a:hover {
    color: var(--prussianblue-color);
}

.blog-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.blog-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.blog-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
}


	.faq .content a {
   font-weight: 500 !important;
		font-size: 14px !important;
	}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/

.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    padding: 3px 10px;
    position: relative;
    transition: 0.3s;
}

.search-widget form input[type="text"] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: var(--background-color);
    color: var(--default-color);
}

.search-widget form input[type="text"]:focus {
    outline: none;
}

.search-widget form button {
    background: var(--prussianblue-color);
    color: var(--contrast-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.search-widget form button i {
    line-height: 0;
}

.search-widget form button:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
}


.blog-pagination {
  /*  padding-top: 0;*/
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
    background: var(--prussianblue-color);
    color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/

@media (max-width: 575px) {


.blog-details .article {
    background-color: var(--surface-color);
    padding: 10px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}


}


.blog-details {
    padding-bottom: 30px;
}

    
.blog-details .img-border1 {
		position: relative;
		height: 100%;
        text-align: center;
		}



.blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
    margin: 20px;
	height: 200px !important;
    overflow: hidden;
}



.blog-details .title {
    color: var(--heading-color);
    font-size: 1.2em;
    font-weight: 700;
    padding: 0;
    margin: 10px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details .meta-top-2 {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


.blog-details .meta-bottom-title {
    margin-bottom: 30px;
   /* color: color-mix(in srgb, var(--default-color), transparent 40%);*/
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	padding-bottom: 20px;
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .meta-top ul li + li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-top: 50px;
}

.blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog-details .meta-bottom .tags li + li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
}

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
    padding: 10px 0 40px 0;
}

.blog-author .author-container {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
    max-width: 120px;
    margin-right: 20px;
}

.blog-author h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0px;
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog-author .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-right: 5px;
}

.blog-author p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding: 10px 0;
}

.blog-comments .comments-count {
    font-weight: bold;
}

.blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog-comments .comment .comment-img img {
    width: 60px;
}

.blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog-comments .comment h5 a {
    font-weight: bold;
    color: var(--default-color);
    transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
    color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
    padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
    padding-top: 10px;
}

.comment-form form {
    background-color: var(--surface-color);
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
    font-weight: bold;
    font-size: 22px;
}

.comment-form form p {
    font-size: 14px;
}

.comment-form form input {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
}

.comment-form form input:focus {
    color: var(--default-color);
    background-color: var(--surface-color);
    box-shadow: none;
    border-color: var(--accent-color);
}

.comment-form form input::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
    height: 120px;
}

.comment-form form textarea:focus {
    color: var(--default-color);
    box-shadow: none;
    border-color: var(--accent-color);
    background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
    margin-bottom: 25px;
}

.comment-form form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 20px 20px 20px vpx;
  margin: 0 15px 30px 0;
  min-height: 150px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 150px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
 /* left: 0px;*/
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 80px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item .txt {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 60px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}



/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
	margin: auto;
    display: block;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
   align-items: center;
}



/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/page-01-bg-01.jpg) center center no-repeat;
    background-size: cover;
    height:300px;
}


@media(max-width: 768px) {

.fact {
      background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/page-01-bg-02.jpg) center center no-repeat;
    background-size: cover;
height:100px;
    }
}



/*** Service ***/
.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}



/*
---------------------------------------------
cta
---------------------------------------------
*/

section.simple-cta {
  background-image: url(../img/cta-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  padding: 180px 0px 180px 0px;
}

section.simple-cta .left-image {
  margin-right: 45px;
}


@media(max-width: 768px) {

	section.simple-cta h6 {
	  font-size: 1.5em !important;
	  margin-top: 10px !important;
	}

	section.simple-cta h4 {
	  font-size: 32px !important;
	  line-height: 35px !important;
	  margin-top: 20px;
	}


}
section.simple-cta h6 {
  font-size: 2.0em ;
  color: #17224D;
  font-weight: 900;
}

section.simple-cta h4 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 55px;
  margin-top: 20px;
}

section.simple-cta p {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 40px;
}



/* 
---------------------------------------------
testimonials
--------------------------------------------- 
*/


@media(max-width: 768px) {


section.testimonials:before {
  position: absolute;
  content: '';
  background-image: url(../img/testimonials-left-dec.png);
  left: 0px;
  top: -60px !important;
  width: 100% !important;
  height: 352px !important;
  z-index: 1;
}

section.testimonials:after {
  position: absolute;
  content: '';
  background-image: url(../img/testimonials-right-dec.png);
  right: 0px;
  bottom: 40px !important;
  width: 632px;
  height: 352px;
  z-index: 1;
}


}
section.testimonials {
  position: relative;
}

section.testimonials:before {
  position: absolute;
  content: '';
  background-image: url(../img/testimonials-left-dec.png);
  left: 0px;
  top: 20px;
  width: 593px;
  height: 352px;
  z-index: 1;
}

section.testimonials:after {
  position: absolute;
  content: '';
  background-image: url(../img/testimonials-right-dec.png);
  right: 0px;
  bottom: 40px;
  width: 632px;
  height: 352px;
  z-index: 1;
}

.testimonials .item {
  border-radius: 15px;
  padding: 30px;
  background-color: #fff;
  margin: 15px;
  transition: all .3s;
  position: relative;
  z-index: 2;
}

.testimonials .item:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.06);
}

.testimonials .item p {
  font-size: 16px;
  font-style: italic;
}

.testimonials .item h4 {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 900;
  position: relative;
}

.testimonials .item span {
  font-size: 13px;
  font-weight: 700;
  color: #dc8cdb;
}

.testimonials .item img {
  max-width: 44px;
  z-index: 2;
  position: absolute;
  right: 30px;
  bottom: 30px
}

.testimonials .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonials .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0px 4px;
}

.testimonials .owl-dots .active {
  background-color: #dc8cdb;
}




/*********************/
/*     Details 2     */
/*********************/
.basic-2 {
	padding-top: 4.5rem;
	padding-bottom: 9.5rem;
	background: url('../img/details-2-background.jpg') center center no-repeat;
	background-size: cover;
}

.basic-2 .text-container {
	margin-bottom: 4rem;
    margin-top: 5rem;
}

.basic-2 h2 {
	margin-bottom: 1.75rem;
}

.basic-2 p {
	margin-bottom: 2rem;
}

.basic-2 p2 {
	margin-bottom: 1.5rem;
}


@media(max-width: 768px) {


	.basic-2 {
		padding-top: 0rem  !important;
		padding-bottom: 0rem  !important;
	}


	.basic-2 .text-container {
		margin-bottom: 0rem  !important;
		margin-top: 0rem  !important; 
	}

	.Service-top-2 {
	 width:100% !important; 
	  height: 50vw !important; 
   
 

	}

	.Service-top-3 h4{
	   font-size: calc(1.0rem )  !important; 
	 
	}

	.Service-top-3 h1{
	   font-size: calc(1.3rem - 0.3vw) !important;

	}

	.Service-top-3 {
	  
      padding-right: 0;
	  vertical-align: middle;
	 
	}

	.Service-top-info .rote-text{
         transform: rotateY(14deg) rotate(-5deg) scale(1.2) translateX(10px) translateY(0px);
		font-size: calc(1.375rem - 0.1vw) !important;

	}

	.Service-top-info h1{
		font-size: calc(1.175rem - 0.1vw) !important;

	}


	.Service-top-info {
		text-align: center;
		padding-top:17vw !important;
	
        margin-left: 20vw  !important;
	}

  .Service-top-1 {
	  height: 50vw !important;

	}
}


.Service-top-1 {
  background-image: url('/img/page14-5.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 450px;

}

.Service-top-info {
	text-align: left;
    padding-top: 15vh;
   
    margin-left: 35vw;
}

.Service-top-info .rote-text{
  transform: rotateY(14deg) rotate(-5deg) scale(1.2) translateX(20px) translateY(-5px);
  position:absolute;

  font-size: calc(2.375rem + 0.2vw) ;
  color: #fffc00 ;  
  font-weight: 600;
  font-family: "Nanum Myeongjo", serif;

}


.Service-top-info h1{
	font-size: calc(2.375rem - 0.1vw) 

}

.Service-top-2 {
	background: url('/img/page14-4.png') center center no-repeat;
	background-repeat: no-repeat;
	  background-position: center center;
	  background-size: cover;
	  height: 450px;


}
.Service-top-3 {
    text-align: right;
    padding-top:5%;

}


.ts-service-box {
    text-align: left;
    width:100%;
    padding-bottom:1rem;
  

}

.ts-service-box_r {
    text-align: right;
    width:100%;
    padding-bottom:1rem;

}

.ts-service-box-info  {
   padding-top:1rem;
   width:100%;

}


.ts-service-box-info  h4{
    font-size: calc(1.175rem + 0.1vw) ;

}

.ts-service-box-info  p{
    font-size: calc(0.975rem - 0.1vw) ;
     margin-bottom: 0rem  !important; 

}

.ts-service-box-img  img{
    width: 100% ;
    padding:0;

}