:root {
    --primary: #154899;
    --light: #F8F8F8;
    /* --dark: #252525; */
    --dark: #042964;
    --light-blue: #5CB1DE;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Spinner ***/

.bg-skyblue {
    background-color: #1899D6;
}

/*** Button ***/

.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    margin-top: 10px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--light);
    border-color: #fff;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

/*** Navbar ***/

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right:30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}




.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/

.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/*** Section Title ***/

.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/*** Facts ***/

.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}

/*** About & Feature ***/

.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}


.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

/* .feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}  */

/*** Service ***/

.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .5);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: white;
    background: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}

/*** Project ***/

.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}

/*** Team ***/

.team-items {
    margin: 5rem 0;
    justify-content: center;
}

.team-item {
    padding: 1px;
    width: 150px;
    margin: auto;
    height: 100%;
    background: grey;
}

/* .team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
} */

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

/*** Appointment ***/

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}

/*** Testimonial ***/

.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #F8F8F8;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #1899D6;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #fff;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}



.h-100 {
    margin: 0 7px;
}



.logo_img {
    color: #fff;

}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
/* .section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
} */

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

/* .section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
} */

/* @-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
} */

/* @-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
} */


.bg_col {
    background-color: #5CB1DE !important;
    color: #fff;
}

.service {
    background-image: linear-gradient(to bottom,
            rgba(0, 87, 169, 0.514),
            rgba(0, 10, 21, 0.541)),
        url(../img/service-bg-img.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 0;
}
.service-2 {
    background-image: linear-gradient(to bottom,
            rgba(0, 87, 169, 0.514),
            rgba(0, 10, 21, 0.541)),
        url(../img/certificates/bg-img.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 0;
}

.text_white {
    color: #fff !important;
}

.clients-section{
    background-color: #F7F7F7;
}

.clients-img{
    height: 100%;
    text-align: center!important;
}

.clients-img img{
    border: 1px solid gray;
}

/* testimoniql work */

.theme-section-module {
    margin: 2rem 0 3.75rem;
    padding: 0;
    position: relative;
}

.theme-section-module .theme-section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #878e94;
    margin: 0;
    padding: 0 0 0.313rem;
}

.theme-section-module .theme-section-title {
    margin: 0rem;
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 400;
}

.theme-section-module .theme-section-title b {
    font-weight: 600;
}

.theme-separator-line-horrizontal-full {
    background-color: #007bff;
}

.theme-separator-line-horrizontal-full {
    width: 100%;
    height: 0.25rem;
    width: 5.25rem;
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.938rem;
}

.theme-testimonial-block {
    background-color: #fff;
    border: 1px solid #e9e9e9;
    position: relative;
    border-radius: 3px;
    text-align: center;
    margin: 0 0 3.125rem;
    padding: 2.5rem 1.25rem 1.5rem;
    font-size: unset;
    transition: all 0.5s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.theme-testimonial-block {
    border-top: 3px solid #007bff;
}

.theme-testimonial-block:hover {
    box-shadow: 0 10px 25px rgb(0 0 0 / 10%);
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-07px);
    transform: translateY(-10px);
}

.theme-testimonial-block .thumbnail {
    margin: 0 auto 2rem;
    width: 6.25rem;
    height: 6.25rem;
    position: relative;
}

.theme-testimonial-block .thumbnail img {
    margin: 0.125rem;
}

.testimonial-content {
    position: relative;
    padding: 0 0 1.875rem;
    display: flex;
    flex-direction: column;
}

.testimonial-content i {
    color: var(--primary);
}

.theme-testimonial-block .name {
    color: #01012f;
    font-size: 1rem;
    font-weight: 600;
    font-style: normal !important;
    margin: 0px 0 -3px;
    display: block;
}

.theme-testimonial-block .position {
    font-size: 0.938rem;
    color: #878e94;
    margin-bottom: 30px;
}

/* .theme-testimonial-block::after {
    color: #007bff;
}
.theme-testimonial-block::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    content: "\f10d";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 30px;
    line-height: 1.2;
} */


/* our projects section */


.project-item {
    margin: 0 10px;
    background-color: #ffffff;
    margin: 0 0 3.125rem;
    border-radius: 3px;
    border: 1px solid #e9e9e9;
    transition: all 0.5s;
}

.project-item:hover {
    box-shadow: 0 10px 25px rgb(0 0 0 / 10%);
}

.project-item h3 {
    color: var(--primary);
}

.project-item .key {
    font-weight: bold;
    color: black;
}

.project-item .value {
    font-weight: normal;
    color: #777777;
}

.project-detail {
    padding: 10px;
}

.post {
    background-color: #ffffff;
    margin: 0 0 3.125rem;
    border-radius: 3px;
    border: 1px solid #e9e9e9;
    padding: 0;
    transition: all 0.5s;
}

.post:hover,
.site-content .theme-blog .post:hover {
    box-shadow: 0 10px 25px rgb(0 0 0 / 10%);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.post-content {
    padding: 1.563rem 1.375rem 2rem;
}

.entry-meta {
    font-weight: 500;
    font-size: 0.938rem;
    margin: 0 0 0.6rem;
    width: 100%;
    overflow: hidden;
}

.entry-meta>span {
    color: #878e94;
    margin: 0px -5px 0px 0px;
}

.entry-meta .cat-links a {
    color: #007bff;
}

.theme-blog .post .entry-header {
    position: relative;
    margin: 0 0 2.188rem;
}

.theme-blog .post .entry-title {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 600;
    word-break: break-word;
    white-space: normal;
}

.entry-content {
    overflow: hidden;
}

.entry-title a {
    color: #042964;
}
.profile{
  padding-top: 40px;
  background-color: #F7F7F7; 
  align-items: center!important;
}
.profile h2{
    padding-bottom: 27px;
    text-align: center;
    font-size: 48px
}

.profile a{
    color: black;
}


.all-page-bar {
    position: relative;
}

img {
    vertical-align: middle;
    border-style: none;
}
.all-page-bar .breadcrum-container {
    position: absolute;
    background: rgba(0,0,0, 0.7);
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.h-100 {
    height: 100%!important;
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}
.text-center {
    text-align: center!important;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.all-page-bar .title h1 {
    font-size: 60px;
    font-weight: 800;
    color: white;
}
h1 {
    font-size: 24px;
}
.text-center{
    align-items: center;
    text-align: center;
}


.all-page-bar .title h1 {
    font-size: 60px;
}

.cards{
  border-radius: 20px;
}
.mission-vision{
    background-color: #042964;
    padding: 60px;
    
}



















.portfolio-single-section{
	position:relative;
	padding:40px 0px 0px;
}

.portfolio-single-section .image-column{
	position:relative;
	margin-bottom:40px;
}

.portfolio-single-section .image-column .inner-column{
	position:relative;
}

.portfolio-single-section .image-column .inner-column .image{
	position:relative;
}

.portfolio-single-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.portfolio-single-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.portfolio-single-section .content-column .inner-column{
	position:relative;
	padding-top:50px;
	padding-left:50px;
}

.portfolio-single-section .content-column .inner-column h3{
	position:relative;
	color:#012068;
	line-height:1.3em;
	font-weight:700;
	margin-bottom:20px;
}





.portfolio-single-section .content-column .inner-column .project-list{
	position:relative;
}

.portfolio-single-section .content-column .inner-column .project-list li{
	position:relative;
	color:#666666;
	font-size:15px;
	padding-left:20px;
	margin-bottom:10px;
}

.portfolio-single-section .content-column .inner-column .project-list li strong{
	font-weight:400;
	color:#012068;
}

.portfolio-single-section .content-column .inner-column .project-list li .icon{
	position:absolute;
	left:0px;
	top:0px;
	color:#303ffa;
	font-size:14px;
}

.portfolio-single-section .lower-section{
	position:relative;
	margin-top:40px;
}
.main-slider .auto-container{
	position:relative;
}
.auto-container{
	position:static;
	max-width:1200px;
	padding:0px 15px;
	margin:0 auto;
}
.header-style-two .header-upper .auto-container{
	position:relative;
}
.about-section-three .image-column{
	position:relative;
	text-align:center;
}
.testimonial-block-three .inner-box .image-column{
	position:relative;
}

.testimonial-block-three .inner-box .image-column .inner-column{
	position:relative;
	margin-top:-28px;
	
}

.testimonial-block-three .inner-box .image-column .inner-column .image{
	position:relative;
}

.testimonial-block-three .inner-box .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}
.services-section-eight .image-column{
	position:relative;
}

.services-section-eight .image-column .inner-column{
	position:relative;
	margin-left:60px;
}

.services-section-eight .image-column .inner-column .image{
	position:relative;
}

.services-section-eight .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.services-section-eight .image-column .inner-column .image .overlay-box{
	position:absolute;
	left:10px;
	top:10px;
	right:10px;
	bottom:10px;
	padding:0px 30px 60px;
	background-color:rgba(255,255,255,0.90);
}

.services-section-eight .image-column .inner-column .image .overlay-box .content{
	position:absolute;
	left:30px;
	bottom:60px;
}

.services-section-eight .image-column .inner-column .image .overlay-box .content h2{
	position:relative;
	font-weight:700;
	font-size:120px;
	line-height:80px;
	color:#000000;
}

.services-section-eight .image-column .inner-column .image .overlay-box .content h2 span{
	font-weight:400;
	display:block;
	font-size:24px;
	font-family: 'Playfair Display', serif;
}
.about-section-four .image-column{
	position:relative;
	margin-bottom:40px;
}

.about-section-four .image-column .inner-column{
	position:relative;
}

.about-section-four .image-column .inner-column:before{
	position:absolute;
	content:'';
	left:-160px;
	top:40px;
	width:387px;
	height:255px;
	z-index:-1;
	display:inline-block;
	background:url(../images/background/pattern-4.png) center top no-repeat;
}

.about-section-four .image-column .image-2{
	position:absolute;
	right:0px;
	top:80px;
	opacity:0.6;
	z-index:-1;
}
.portfolio-single-section .image-column{
	position:relative;
	margin-bottom:40px;
}

.portfolio-single-section .image-column .inner-column{
	position:relative;
}

.portfolio-single-section .image-column .inner-column .image{
	position:relative;
}

.portfolio-single-section .image-column .inner-column .image img{
	position:relative;
	width:140%;
	display:block;
    right: 60px;
}

.portfolio-single-section .content-column .inner-column .project-list{
	position:relative;
}

.portfolio-single-section .content-column .inner-column .project-list li{
	position:relative;
	color:#666666;
	font-size:15px;
	padding-left:20px;
	margin-bottom:10px;
}

.portfolio-single-section .content-column .inner-column .project-list li strong{
	font-weight:400;
	color:#012068;
}

.portfolio-single-section .content-column .inner-column .project-list li .icon{
	position:absolute;
	left:0px;
	top:0px;
	color:#303ffa;
	font-size:14px;
}








.fw-500{
    font-weight: 600!important;
    color: rgb(108 104 104)
}
#img{
    padding-top: 50px;
}







.subtitle {
    font-size: 15px;
    color: #E48216;
    color: #6f6f6f;
    margin-bottom: 15px;
    font-weight: 500;
    display: block;
    text-transform: uppercase;
    text-decoration: underline;
}

.section-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 0px;
    font-weight: 700;
}
.services-items {
    padding: 25px 35px;
}
.mb-30 {
    margin-bottom: 30px;
}
.services-itm-color {
    background: #FBF7EE;
}
.services-itm-color2 {
    background: #F8F8F8;
}
.services-itm-color3 {
    background: #F1F8F9;
}
.services-itm-color4 {
    background: #F9F6F6;
}

.features__content {
    padding: 25px 25px 20px 25px;
    border: 1px solid #E7EAEF;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.features__thumb {
    overflow: hidden;
}

.features__content-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 18px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.features:hover .features__content {
    background-color: #E48216;
    border: 1px solid #E48216;
  }
  .features:hover .features__content-title {
    color: #ffffff;
  }
  .features:hover .features__content p {
    color: #ffffff;
  }
  .features:hover .features__content a {
    color: #ffffff;
  }
  .features:hover .features__content a i {
    color: #ffffff;
  }
  .features:hover .features__content a:hover i {
    margin-left: 10px;
  }

  
  .social-media-section{
    position: fixed;
    top: 60%;
    right: 5px;
    z-index: 99;
    width: 47px;
  }

  .second-gmail{
    padding-left: 32px;
  }











.section-head{
    text-transform: uppercase;
    font-size: 40px;
    color: #154899;
}
.msg{
    color: #154899 !important;
    font-size: 30px;
}
.pera{
    text-align: justify;
}
#aj{
    font-size: 11px;
}
.footer-head{
    text-transform: uppercase;
    font-size: 30px;
    color: #154899;
    text-align: center;

}
.building{
    border: 1px solid rgb(223, 220, 220);
}

.testimonial-item{
    padding: 10px;
}


@media (max-width:425px) {
    .strategic{
        display: none;
    }
    .me-3 {
        margin-right: 1rem !important;
        width: 270px;
    }
    
    .about-img, .feature-img {
        
        min-height: 0px;
    }
.img-n{
    margin-left: 0rem !important;
}
}
@media (max-width:375px){
    .me-3 {
        margin-right: 1rem !important;
        width: 220px;
    }

}
@media (max-width:320px){
    .me-3 {
        margin-right: 1rem !important;
        width: 170px;
    }
    .pb-5 {
        padding-bottom: 0rem !important;
    }

}
@media (max-width:320px){
    .location-n{
        margin-right: 9rem !important;
    
    }

}


.quote_btn button {
    width: 30%;
    border: 1px solid #154899;
    border-radius: 5px;
    background: #154899;
    color: #fff;
    padding: 14px;
    margin-left: 0;
}
.quote_btn button:hover{
background-color: #5CB1DE;
color: white;
}
.boxx{
    width: 100%;
    border: 1px solid #252525;

    
    height: 55px;
    padding-left: 10px;
    padding-right: 5px;

    
    
    
}
#message{
    width: 100%;
    height: 160px;
    border: 1px solid #252525;
    padding-left: 10px;

}
.contact_from_box{
    max-width: 70%;
    margin: 0 auto; 
}
.label{
    padding-bottom: 4px;
}
.justify-content{
    align-items: center;
}
.count{
    text-align: center  ;
    padding-bottom: 10px;
}


@media (max-width: 425px){
.me-3 {
   
    width: 180px;
}
.contact_from_box {
    max-width: 95%;
   
}
.foot{
    margin-top: 50px;
}
.all-page-bar .title h1 {
    font-size: 38px;
    padding-top: 28px;
}
.centers{
text-align: center;
}
.all-page-bar .title h1 {
    font-size: 29px;
    padding-top: 118px;
    padding-bottom: 81px;
}
.cards{
    padding: 18px 19px !important;
}
.mis-gap{
    margin-bottom: 40px;
}
.portfolio-single-section .image-column .inner-column .image img {
    height: 346px;

}
.pt-5 {
    padding-top: 0rem !important;
}

.core{
    padding: 28px;
}
.portfolio-single-section .content-column .inner-column {
   
    padding-left: 12px;
}
.portfolio-single-section .image-column .inner-column .image img {
    width: 100%;
    margin-left: 62px;
   
}
.quote_btn button {
    width: 38%;
    
}
.mission-vision {
    padding: 0px !important;
}
.text-start {
   
    text-align: justify !important;
}
p {
    text-align: justify !important;
}

}
@media (max-width: 574px){
    .navbar-brand img{
        width: 280px;

    }
    p {
        text-align: justify !important;
    }
    .contact_from_box {
        max-width: 95%;
       
    }
}

@media (max-width: 424px){
    .navbar-brand img{
        width: 271px;
    }
    p {
        text-align: justify !important;
    }
    .contact_from_box {
        max-width: 95%;
       
    }
    
}
@media (max-width: 375px){
    .navbar-brand img{
        width: 270px;
    }
    
    p {
        text-align: justify !important;
    }
    .contact_from_box {
        max-width: 95%;
       
    }
}

@media (max-width: 374px){
.navbar-brand img {
    width: 216px;
}
}






        
  




