.bio, .site-description {
	display:none;
}
.loader{
width: 100%;
    height: 100vh;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(var(--whiteColor));
    z-index: 9;
}

/* LOADER 1 */

#loader-1>div {
    position: relative;
    width: 30px;
    height: 30px;
}
#loader-1>div:before, #loader-1>div:after{
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 5px solid transparent;
  border-top-color: rgba(var(--primaryColor));
}

#loader-1>div:before{
  z-index: 100;
  animation: spin 1s infinite;
}

#loader-1>div:after{
  border: 5px solid rgba(var(--primaryColor), 0.1);
}

@keyframes spin{
  0%{
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100%{
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.top-header {
    background: rgba(var(--primaryColor));
    padding: 12px 0;
}

.top-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-links, ul.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-links a {
    display: flex;
    gap: 10px;
    color: rgba(var(--whiteColor));
	font-size:14px;
}

.social-links a {
    display: flex;
}

.contact-links a, ul.social-links a {
	opacity:0.87;
}

.contact-links a:hover, ul.social-links a:hover {
    opacity:1 !important;
}

.site-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.site-header-wrapper img.custom-logo {
    max-width: 100px;
	    display: block;
	height:100%;
}

.site-header-wrapper .site-navigation .menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-header-wrapper .site-navigation .menu a {
    color: rgba(var(--blackColor), 0.7);
	position:relative;
}

.site-header-wrapper .site-navigation .menu a:hover {
	color:rgba(var(--primaryColor));
}

.site-header-wrapper .site-navigation .menu li:last-child a {
    padding: 12px 20px;
    background: rgba(var(--primaryColor));
    color: rgba(var(--whiteColor));
    border-radius: 30px;
    display: flex;
    border: 1px solid rgba(var(--primaryColor));
}

.site-header-wrapper .site-navigation .menu li:last-child a:after {
	display:none;
}

.site-header-wrapper .site-navigation .menu li:last-child a:hover {
    background: transparent;
    color: rgba(var(--primaryColor));
    border: 1px solid rgba(var(--primaryColor));
}

.main-banner .elementor-image-carousel-wrapper .elementor-image-carousel, .main-banner .elementor-widget-image-carousel .swiper-slide img {
max-height: calc(100vh - 168px);
    min-height: calc(100vh - 168px);
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.main-banner .elementor-image-carousel-wrapper .elementor-image-carousel:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primaryColor), 0.2);
    z-index: 9;
}

.director-image img {
	max-height:450px;
	object-fit:cover;
	object-position:top;
	    height: 100% !important;
}
.wpcf7-spinner {
    display: none;
}
footer.elementor-slideshow__footer.elementor-lightbox-prevent-close {
    display: none;
}



.footer-logo img.custom-logo {
    display: flex;
    max-width: 150px;
	height:100%;
}

.site-footer-top {
    padding: 50px 0;
	background: rgb(2 6 69 / 2%);
}

.footer-top-wrap {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.site-footer-btm {
    background: rgba(var(--primaryColor));
    padding: 10px 0;
}

.site-footer-btm-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer-btm-wrap p, .site-footer-btm-wrap p a {
    font-size: 14px;
    color: rgba(var(--whiteColor));
}
.footer-address-box .contact-links a {
    display: block;
    color: rgba(var(--blackColor));
    opacity: 0.7;
	align-items:center;
}

.footer-address-box .contact-links a svg {
    vertical-align: middle;
    max-width: 20px;
    max-height: 20px;
    margin-right: 5px;
}

.footer-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-address-box ul.contact-links {
    flex-direction: column;
    align-items: start;
    gap: 12px;
}

.footer-menu-box .menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu-box .menu a {
	color:rgba(var(--blackColor), 0.7);
	position:relative;
	font-size:14px;
}

.site-footer-btm-wrap p {
    margin: 0 !important;
}

.site-footer .menu a:after, .site-navigation ul li a:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(var(--primaryColor));
    opacity: 0;
    visibility: hidden;
    transition: var(--Animation300);
}


 .site-navigation ul li a:hover:after, .site-footer .menu a:hover:after {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.contact-form .elementor-shortcode {
    max-width: 450px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    border: 1px solid #000;
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
	outline:none;
}

.contact-form textarea {
	max-height:85px;
	resize:none;
}
.director-image.e-flex {
    overflow: hidden;
    border-radius: 10px;
}
.contact-form input.wpcf7-form-control.wpcf7-submit {
    padding: 12px 20px;
    background: rgba(var(--primaryColor));
    color: rgba(var(--whiteColor));
    border-radius: 30px;
    display: flex;
    border: 1px solid rgba(var(--primaryColor));
    max-width: 120px;
    margin: 0 auto;
	outline:none;
	    cursor: pointer;
	    transition: 300ms all;
	text-align:center;
	justify-content: center;
}

.contact-form input.wpcf7-form-control.wpcf7-submit:hover {
	background: transparent;
    color: rgba(var(--primaryColor));
    border: 1px solid rgba(var(--primaryColor));
}

.contact-form label {
    color: #000;
}

body .wpcf7-not-valid-tip {
    color: red;
    font-size: 12px;
}
body .wpcf7 form .wpcf7-response-output {
    padding: 8px;
    margin: 0;
    margin-top: 14px;
    background: #ff00000d;
    border: 1px solid red !important;
    color: red;
    font-size: 14px;
    text-align: center;
	border-radius: 5px;
}
body .wpcf7 form.sent .wpcf7-response-output {
    border-color: #00800c !important;
    color: #00800c;
    background: #46b4501a;
}