*:not(i) {
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
}

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

button {
    border: none;
    background: none;
    padding: 0;
}

input,
button:focus {
    outline: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}

.gab-15 {
    clear: both;
    height: 15px;
}

.grey-color {
    color: #666;
}
.bg-grey {
    background-color: #f1f1f1;
}

.no-padding {
    padding: 0 !important;
}
.mb-30 {
    margin-bottom: 30px;
}

.sec-padding {
    padding: 70px 0;
}
.sec-padding-top {
    padding-top: 70px;
}
.sec-padding-bottom {
    padding-bottom: 70px;
}

.sec-margin {
    margin: 70px 0;
}
.sec-margin-top {
    margin-top: 70px;
}
.sec-margin-bottom {
    margin-bottom: 70px;
}

.table thead th {
    white-space: nowrap;
}

/** main btn **/
.main-btn {
    display: inline-block;
	background-color: #027e9d;
    border: 1px solid #027e9d;
    border-radius: 35px;
    color: #ffffff;
    font-size: 18px;
    padding: 12px 40px;
    cursor: pointer;
}

.main-btn.white {
    background: #fff;
    border: 1px solid #027e9d;
    color: #027e9d;
}

.main-btn:hover {
    background-color: transparent;
    color: #027e9d;
}

.main-btn.white:hover {
    background-color: #027e9d;
    color: #fff;
}


.text-grey {
	color: #777;
}
.text-blue {
	color: #027e9d;
}
.text-dark-blue {
	color: #2b2d42;
}

/** section title **/
.section-title {
    position: relative;
}

.section-title h2 {
    font-weight: bold;
    font-size: 32px;
}

.section-title p {
    max-width: 770px;
    margin: auto;
    color: #555;
    font-style: italic;
    font-size: 18px;
    margin-top: 30px;
}


/** section title **/
.section-title {
    margin-bottom: 40px;
}

.section-title h1 {
    margin-bottom: 13px;
	font-size: 50px;
    font-weight: bold;
    color: #2b2d42;
}

.section-title p {
    color: #777;
}
.section-title span {
	color: #02a9d3;
	font-size: 32px;
	font-family: 'Dancing Script', cursive;
}

.dropdown .droplist {
    width: 160px;
    min-width: 240px;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 100%;
    -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 17%);
            box-shadow: 0 6px 12px rgb(0 0 0 / 17%);
    border-radius: 3px;
    background: #fff;
    z-index: 9;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.dropdown .droplist li {
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #77777717;
}

.dropdown .droplist li:last-child {
    border-bottom: 0;
}

.dropdown:hover .droplist {
    visibility: visible;
    opacity: 1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}


/*** Header ***/
header {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgb(100 30 22 / 55%);
/*
    position: relative;
    z-index: 99;
    background: #fff;
    margin: auto;
*/
}

header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px 0 32px;
    height: 100px;
}

header nav .logo img {
    width: 100px;
	height: 95px;
	object-fit: contain;
	-o-object-fit: contain;
}

header nav .bars {
    cursor: pointer;
    display: none;
	color: #fff;
}

header nav .links-list {
    margin-left: auto;
}

header nav .links-list > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

header nav .links-list > ul .list-item {
    margin-right: 30px;
    position: relative;
    padding: 38px 0;
}

header nav .links-list > ul .list-item:last-child {
    margin-right: 0;
}

header nav .links-list > ul .list-item .link {
    color: #fff;
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
    position: relative;
    padding-bottom: 3px;
    font-size: 15px;
    text-transform: uppercase;
}

header nav .links-list > ul .list-item .link:hover {
    color: #989898;
}

header nav .links-list > ul .list-item.dropdown .link i {
/*    font-size: 10px;*/
    margin-left: 3px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

header nav .links-list > ul .list-item.dropdown:hover i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

header nav .links-list > ul .list-item img {
    width: 35px;
}

header nav .links-list > ul .list-item .link.active-link,
header nav .links-list > ul .list-item .link:hover {
    color: #02a9d3;
}
header nav .links-list > ul .list-item .link.active-link {
	font-weight: bold;
}

header nav .links-list > ul .list-item .drop-list {
    background: #fff;
    padding: 10px;
    position: absolute;
    top: 100%;
    z-index: 2;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

header nav .links-list > ul .list-item .drop-list li {
    width: 150px;
    padding: 8px;
}

header nav .links-list > ul .list-item .drop-list li a {
    display: block;
}

header nav .links-list > ul .list-item li a {
    white-space: nowrap;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

header nav .links-list > ul .list-item li a:hover {
    color: #ddd;
}

header nav .profile-content {
    color: #656565;
    position: relative;
    margin-left: 15px;
}

header nav .profile-content .profile-img img {
    width: 35px;
    border-radius: 50%;
    margin-right: 7px;
}

header nav .profile-content .dropdown {
    position: absolute;
    top: 125%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    width: 200px;
    color: #999;
    font-size: 13px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

header nav .profile-content:hover .dropdown {
    visibility: visible;
    opacity: 1;
}

header nav .profile-content .dropdown li {
    margin-bottom: 10px;
}

header nav .profile-content .dropdown li i {
    margin-right: 5px;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
	background: rgb(100 30 22 / 70%);
    -webkit-animation-name: stickyheader;
    animation-name: stickyheader;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    width: 100%;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

@-webkit-keyframes stickyheader {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes stickyheader {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


header nav .links-list > ul .list-item:hover .drop-list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}


/***
	hero section
***/
.hero-section {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}
.hero-section .video-container {
	position: relative;
	width: 100%;
	height: 100%;
}
.hero-section .video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 10;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
}
.hero-section .hs-overlay {
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,.5);
    z-index: 99;
}
.hero-section .hs-content {
	position: absolute;
    top: 50%;
    left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 100%;
	text-align:  center;
	z-index: 99;
}
.hero-section .hs-content .title {
	font-size: 65px;
	font-family: 'Dancing Script', cursive;
}
.hero-section .hs-content h5 {
	color: #cfcfcf;
}


/***
	about section
***/
.about-section .about-media {
	padding-top: 80px;
	padding-left: 50px;
	padding-right: 20px;
	position: relative;
}
.about-section .about-media img {
	border-radius: 50%;
	width: 100%;
}
.about-section .about-media img.main-img {
	width: 450px;
	height: 450px;
	max-width: 100%;
	object-fit: cover;
}
.about-section .about-media img.ov-img {
	height: 290px;
    width: 290px;
    border: 15px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.about-section .list-check li {
	padding: 10px 6px 10px 55px;
	color: #222;
	font-weight: 500;
	position: relative;
	font-size: 15px;
	margin-bottom: 20px;
}
.about-section .list-check li:after {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 40px;
    background-color: #f6f6f6;
    font-size: 18px;
    color: #02a9d3;
}

/***
	Events Section
***/
.events-section .event-card {
	position: relative;
}
.events-section .event-card .card-img img {
	width: 100%;
	height: 430px;
}
.events-section .event-card .card-details {
	width: 100%;
    height: 100%;
	padding: .5em .8em;
    padding-left: 80px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	font-size: 20px;
}
.events-section .event-card .card-details::before,
.events-section .event-card .card-details::after {
    content: '';
    height: 35px;
    width: 35px;
    position: absolute;
    transition: all .35s ease;
    opacity: 0;
}
.events-section .event-card .card-details::before {
    content: '';
    right: 15px;
    top: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translate(-100%, 50%);
}
.events-section .event-card .card-details:after {
    content: '';
    left: 15px;
    bottom: 15px;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: translate(100%, -50%);
}
.events-section .event-card .card-details:hover:before, 
.events-section .event-card .card-details:hover:after {
    transform: translate(0,0);
    opacity: 1;
}
.events-section .event-card .card-details h5 {
	font-size: 1.5rem;
    font-weight: bold;
    margin: 30px 0 15px;
}
.events-section .event-card .card-details h5 a {
	color: #fff;
}
.events-section .event-card .card-details h5 a:hover {
	text-decoration: underline;
}
.events-section .event-card .card-details p {
	color: #fff;
	font-size: 15px;
}
.events-section .owl-theme .owl-nav [class*=owl-] {
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #2b2d42;
    margin: 0 15px;
    padding: 0;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    letter-spacing: 10px;
    text-decoration: underline;
}

/***
	Services Section
***/
.services-section .service-card {
    background-color: #fff;
    box-shadow: 1px 1.732px 60px 0px rgb(0 0 0 / 10%);
    border-radius: 6px;
    padding: 20px;
}
.services-section .service-card .card-img {
	overflow: hidden;
	border-radius: 6px;
	position: relative;
}
.services-section .service-card .card-img:before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.services-section .service-card:hover .card-img:before {
	-webkit-animation: shine .75s;
    animation: shine .75s;
}
.services-section .service-card .card-img img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}
.services-section .service-card .card-content {
	padding: 25px 10px 10px 10px;
}
.services-section .service-card .card-content h3 {
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.services-section .service-card .card-content h3 a {
	color: #2b2d42;
}
.services-section .service-card .card-content h3 a:hover {
	color: #027e9d;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

/***
	CTA Section
***/
.cta-section {
    background: url(../img/cta-bg.jpg) center center/cover no-repeat local;
    padding: 235px 0;
    text-align: center;
    position: relative;
	overflow: hidden;
}
.cta-section .cta-content {
	position: relative;
	z-index: 3;
}
.cta-section h2 {
    font-size: 100px;
    font-weight: 600;
    color: #fff;
    margin: -0.12em 0 0.4em;
    text-transform: uppercase;
	line-height: .9em;
}
.glass-effect {
    width: 700px;
    position: absolute;
    top: 20%;
	left: calc(50% - 350px);
    -webkit-filter: blur(80px);
    filter: blur(80px);
    opacity: 0.5;
    z-index: 1;
}
.glass-effect:before {
    content: "";
    background-color: #ef233c;
    width: 285px;
    height: 285px;
    border-radius: 50%;
    position: absolute;
	max-width: 100%;
    left: 320px;
    top: 0;
}
.glass-effect:after {
    content: "";
    background-color: #04868b;
    width: 400px;
    height: 400px;
	max-width: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

/***
    Footer
***/
footer {
    padding: 50px 0 20px;
    background: #641E16;
    color: #c6c6c6;
}

footer .footer-content {
    padding-bottom: 25px;
}

footer .footer-logo img {
    width: 130px;
	height: 125px;
	object-fit: contain;
	-o-object-fit: contain;
    margin-bottom: 20px;
}

footer .footer-title h5 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

footer .footer-col li {
    margin-bottom: 10px;
}

footer .footer-col li > a {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

footer .footer-col li > a:hover {
    color: #02a9d3;
}

footer .contact-list li i {
    color: #333;
    width: 24px;
}

footer .news-text a:hover {
    color: #ccc;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

footer .news-text span {
    display: block;
    font-size: 13px;
    color: #333;
    margin-top: 10px;
}

footer .follow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

footer .follow p {
    margin-left: 10px;
}

footer .follow p a {
    display: block;
    margin-top: 5px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

footer .follow p a:hover {
    color: #ccc;
}

footer .footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 25px;
}

footer .footer-bottom .copyrights p i {
    margin: 0 10px;
    color: #f00;
}

footer .footer-bottom .copyrights p a {
    color: #119ec1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

footer .footer-bottom .copyrights p a:hover {
    color: #fff;
}

footer .footer-social .social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

footer .footer-social .social-list li {
    margin-left: 20px;
}

footer .footer-social .social-list li a:hover {
    color: #119ec1;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

/***
	banner area
***/
.banner-area {
    position: relative;
    background-image: url(../img/br-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10rem 2rem;
}
.banner-area:before {
    background-color: rgb(0 0 0 / 55%);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.banner-area h1 {
    letter-spacing: 1.8px;
}
.banner-area h6 {
    letter-spacing: 1.2px;
	font-weight: normal;
}
.banner-area h6 a {
    color: #ccc;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.banner-area h6 a i {
	font-size: 12px;
    margin: 0 7px;
}

/***
	about icons section
***/
.about-icons-section .about-icon h5 i {
	font-size: 30px;
	margin-right: 10px;
}

/***
	contact section
***/
.contact-section .contact-details a:hover {
    color: #f00;
}
.contact-section .map-container {
	height: 100%;
}
.contact-section .map-container iframe {
	min-height: 100%;
}
.map-container iframe {
    width: 100%;
}


/***
	conatct section 2
***/
.contact-section-2 .contact-form {
	background-image: url(../img/contact-bg1.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	min-height: 600px;
	padding: 0 100px;
}
.contact-section-2 .contact-form form {
	width: 100%;
}
.contact-section-2 .contact-bg {
	height: 100%;
	background-image: url(../img/contact-bg2.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/*** main form ***/
.main-form label {
    display: block;
}
.main-form input, .main-form textarea, .main-form select {
    width: 100%;
    height: 45px;
	font-size: 14px;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
    padding: 0 20px;
    outline: none;
}
.main-form textarea {
    height: 5rem;
    padding: 10px 20px;
}
.main-form .submit button {
    cursor: pointer;
}

/***
	projects section
***/
.projects-section .project-card .card-img .img-holder {
	position: relative;
}
.projects-section .project-card .card-img .img-holder:before {
	content: "";
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.projects-section .project-card:hover .card-img .img-holder:before {
	opacity: 0.7;
}
.projects-section .project-card .card-img img {
	width: 100%;
	height: 370px;
	object-fit: cover;
}
.projects-section .project-card .card-content a:hover {
	color: #02a9d3;
}

/***
	page details section
***/
.page-details-section .page-details-content img {
	width: 100%;
	height: 550px;
	object-fit: cover;
}
.page-details-section .pdetails-slider img {
	width: 100%;
	height: 550px;
	-o-object-fit: cover;
       object-fit: cover;
}
.page-details-section .owl-theme .owl-nav [class*=owl-] {
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #2b2d42;
    margin: 0 15px;
    padding: 0;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    letter-spacing: 10px;
    text-decoration: underline;
}



/**
    Responsive
**/
@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
	.cta-section {
		width: calc(100% - 180px);
		margin: 0 auto;
	}
}

@media (max-width: 1399px) {
	.cta-section {
		padding: 180px 0;
	}
}

@media (min-width: 1200px) {
	.events-section .owl-nav, .page-details-section .owl-nav {
		position: absolute;
		width: 100%;
		top: 50%;
		margin-top: 35px;
	}
	.events-section .owl-theme .owl-nav .owl-prev, .page-details-section .owl-theme .owl-nav .owl-prev {
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		position: absolute;
		left: -85px;
	}
	.events-section .owl-theme .owl-nav .owl-next, .page-details-section .owl-theme .owl-nav .owl-next {
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		position: absolute;
		right: -85px;
	}
}

@media(max-width: 1199px) {
	.events-section .event-card .card-details {
		padding-left: 30px;
	}
	.cta-section {
		padding: 130px 0;
	}
	.cta-section h2 {
		font-size: 80px;
	}
}

@media(max-width: 991px) {

    /* header */
    header nav .bars {
        display: block;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    header nav .links-list {
        display: none;
        background: #fff;
        padding: 30px;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        border-radius: 8px;
		box-shadow: 1px 1.732px 60px 0px rgb(0 0 0 / 20%);
    }
	header nav .links-list > ul .list-item .link {
		color: #212529;
	}

    header nav .links-list > ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    header nav .links-list > ul .list-item {
        margin: 5px 0;
    }

    header nav .links-list > ul .list-item:last-child {
        width: 218px;
    }

    .dropdown .droplist {
        width: 100%;
    }

    header nav .links-list > ul .list-item {
        padding: 0 0 5px;
    }
	.cta-section {
		padding: 110px 0;
	}
	.cta-section h2 {
		font-size: 60px;
	}
	.contact-section-2 .contact-form {
		min-height: 500px;
		padding: 20px 40px;
	}
	.contact-section-2 .contact-bg {
		height: 400px;
	}
	.page-details-section .pdetails-slider img {
		height: 450px;
	}
}

@media(max-width: 767px) {
    .main-btn {
        font-size: 15px;
        padding: 10px 35px;
    }

    .section-title h2 {
        font-size: 21px;
    }
    .section-title p {
        font-size: 14px;
    }
	.section-title h1 {
		font-size: 30px;
	}
	.section-title span {
		font-size: 22px;
	}
	.hero-section {
		height: 90vh;
	}
	.hero-section .hs-content .title {
		font-size: 36px;
	}
	.about-section .about-media img.main-img {
		width: 350px;
		height: 350px;
	}
	.about-section .about-media img.ov-img {
		width: 190px;
		height: 190px;
	}
	.events-section .event-card .card-img img {
		height: 350px;
	}
	.events-section .event-card .card-details h5 {
		font-size: 1.1rem;
	}
	.events-section .event-card .card-details p {
		font-size: 14px;
	}
	.cta-section h2 {
		font-size: 50px;
	}
	.contact-section-2 .contact-form {
		padding: 20px;
	}
	.projects-section .project-card .card-img img {
		height: 280px;
	}
	.page-details-section .pdetails-slider img {
		height: 350px;
	}
}

@media(max-width: 575px) {
	footer .footer-bottom {
		flex-direction: column;
		align-items: center;
	}
	.events-section .event-card .card-img img {
		height: 280px;
	}
	.about-section .about-media {
		padding-top: 40px;
		padding-left: 0;
		padding-right: 0;
	}
	.services-section .service-card .card-img img {
		height: 220px;
	}
	.about-section .about-media img.main-img {
		width: 250px;
		height: 250px;
	}
	.about-section .about-media img.ov-img {
		width: 130px;
		height: 130px;
	}

}

.errors{
    color: red;
    font-size: 16px;

}

.forbidden
{
    cursor: not-allowed !important;
}
header
{
    padding: 10px 0px;
}
header nav .logo img:before{
    border: 1px solid #ddd;

}

header nav .logo img {
    width: 110px;
    height: 115px;
    object-fit: contain;
    -o-object-fit: contain;
}
.slider-size  .card-img img {
    width: 88% !important;
    height: 259px !important;;
    border: 2px dashed #818181 !important;;
    padding: 31px !important;;
    /* background: #ddd; */
}
.slider-size .card-img img {
    width: 100% !important;
    height: 262px !important;
    border: 2px dashed #818181 !important;
    padding: 14px !important;
    /* background: #ddd; */
}
@media (min-width: 1200px)
{
    #slider2 .owl-theme .owl-nav .owl-prev, #slider2 .owl-theme .owl-nav .owl-prev ,  #slider2 .owl-theme .owl-nav .owl-next {
        top: -40px;
    }
}
