@import url('https://fonts.googleapis.com/css2?family=Lexend+Mega:wght@300;400;500;600;700;800;900&family=Libre+Bodoni:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

body{
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 43px;
    color: #FFFFFF;
}
ul,li{
    list-style: none;
    padding: 0;
}
a{
    color: #ffffff;
    text-decoration: none;
}

a.nav-brand {
    padding: 25px;
    max-width: 230px;
}
/* a.nav-brand:hover{
background:#000;
} */
.navbar.navbar-expand-lg.navbar-light {
    padding: 0px 60px 0px 0px;
}
.site-header {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    width: 100%;
	background-color:#ffffff;
}

.site-header .navbar-nav li a.nav-link {
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #000000;
    padding: 0 15px;
}
.all-banner-sec {
    height: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #053656;
    background-position: center;
    background-size: cover;
}

.all-banner-heading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.all-banner-heading h1 {
    font-family: 'Libre Bodoni';
    font-style: normal;
    font-weight: 400;
    font-size: 105px;
    line-height: 131px;
    color: #FFFFFF;
}
.line-up-down-bar {
    animation: elasticus 2.2s cubic-bezier(0, 1, 0.01, 1) infinite;
    background: #FFFFFF;
    opacity: 0.8;   
    bottom: -6px;
    display: inline-block;
    height: 200px;
    left: 0;
    margin: 0 auto;
    position: relative;
    right: 0;
    width: 2px;
}
.line-up-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.line-up-down-bar:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    left: -4px;
    top: 15%;
    opacity: 1;
    z-index: 9;
}
/*footer start here*/
.site-footer{
    padding: 150px 0;
    background: #053656;
}
.site-footer-head h3 {
    position: relative;
    font-family: 'Libre Bodoni';
    font-style: normal;
    font-weight: 700;
    font-size: 72px;
    line-height: 90px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.site-footer-head h3:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 4px;
    background: #FFFFFF;
}
.site-footer .row {
    align-items: center;
}
.site-footer-right li {
    text-align: right;
    margin-bottom: 15px;
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #fff;
}
.copy_ryt p {
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
}
.site-footer-right li a:hover {
    color: #000;
    text-decoration: none;
}
/*about sec start heree*/
.about-us-sec{
    padding: 150px 0;
}
.about-us-sec .row{
    align-items: center;
    margin-bottom: 60px;
}
.about-us-sec p{
    color: #767675;
}

/*homepage start here*/
.scroll-down {
    position: relative;
    text-align: center;
    z-index: 1;
}

.scroll-down-text{
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    transform: rotate(90deg);
    margin-top: 80px;
}

.scroll-down-bar{
  animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  background: #d8d8d8;
  bottom: 0;
  display: inline-block;
  height: 100px;
  left: 0;
  margin: 0 auto;
  position: relative;
  right: 0;
  width: 2px;
}

@keyframes elasticus{
  0%{
    transform: scale(1, 0);
    transform-origin: 0% 0%;
}
  50%{
    transform: scale(1, 1);
    transform-origin: 0% 0%;
}
  50.1%{
    transform: scale(1, 1);
    transform-origin: 0% 100%;
}
  100%{
    transform: scale(1, 0);
    transform-origin: 0% 100%;
}
}
.banner-sec {
    background: #053656;
   /* height: 1100px;*/
    padding: 250px 0 100px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
}
.banner-heading h1 {
    font-family: 'Libre Bodoni';
    font-style: normal;
    font-weight: 400;
    font-size: 105px;
    line-height: 119px;
    color: #FFFFFF;
    width: 100%;
    margin-bottom: 40px;
}
.banner-heading h1 span {
	position: relative;
    top: -20px;
}
.banner-txt p {
    font-size: 22px;
    line-height: 1.6;
}
.circle-btn a img {
    max-width: 200px;
    width: 100%;
    height: 100%;;
    animation-name: rotate;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    border-radius: 50%;
}
@keyframes rotate{
    from{ transform: rotate(-360deg); }
    to{ transform: rotate(360deg); }
}
.circle-btn a {
    position: relative;
}
.circle-btn a:after {
    position: absolute;
    content: "";
    left: 50%;
    top: 100%;
    transform: translate(-50%,-50%);
    background-image: url(../images/group.png);
    width: 20px;
    height: 82px;
    background-size: contain;
    background-repeat: no-repeat;
}
.banner-sec .row {
    align-items: center;
}
.circle-btn {
    text-align: -webkit-right;
}
.inquire-btn {
    width: 100%;
    margin-top: 25px;
    text-align: right;
}
.inquire-btn a {
    font-size: 20px;
    background-color: #fff;
    color: #053656;
    padding: 16px 28px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    display: flex;
    max-width: 255px;
    text-align: center;
    border-radius: 50px;
	margin: auto;
}
.inquire-btn a:hover{
    background: #053656;
    color: #fff;
}
.para_sec {
	padding: 80px 0;
}
.para_sec .para p {
	color: #767675;
}
/*contact page start here*/
.contact-sec {
    padding: 140px 0;
}
.contact-sec .contact-form {
    max-width: 870px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D2D2D2;
    margin: auto;
    padding: 50px;
}
.contact-sec .contact-form h6.form-head {
    color: #053656;
    font-family: 'Libre Bodoni';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
}
.contact-sec .contact-form .form-row {
    margin-top: 30px;
}
.contact-form .form-row  .input-group-text i {
    font-family: 'FontAwesome';
    font-size: 30px;
    color: #fff;
}
.contact-form .form-row  .input-group-text {
    width: 70px;
    background: #053656;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}
.contact-form .form-row input.form-control {
    height: 70px;
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #D3DEE6;
    background: #F4F9FC;
    border-radius: 0;
    border: none;
}
.contact-form .form-row button.sumbit-btn {
    border: none;
    width: 100%;
    height: 60px;
    background: #053656;
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.form-control:focus{
    border-color: none;
    box-shadow: none;
}

/*qualification start here*/
.quali-sec {
    padding: 150px 0;
}
.quali-sec .Qualifications-img {
    padding: 32px 37px;
    background: #FCFCFC;
    box-shadow: 0px 4px 104px #EFEFEF;
}

/*services page start here*/
.service-type-sec {
    padding: 150px 0;
}
.service-type-box {
    padding: 80px 30px;
    text-align: center;
    background: #F5F5F5;
    height: 100%;
}
.service-type-box h6 {
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #053656;
}
.service-type-icon {
    background: #053656;
    padding: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    margin: auto;
    margin-bottom: 50px;
}
.service-type-sec .row .col-lg-3.col-md-6.col-sm-6 {
    margin-bottom: 30px;
}
.service-loc-box {
    background: #FFFFFF;
    border: 1px solid #053656;
    display: flex;
    align-items: center;
    padding: 20px;
}

.service-loc-box i {
    color: #053656;
    /*font-family: 'font awesome 6 brands';
    font-size: 20px;
    font-family: “FontAwesome 5 free”;
    font-weight: normal;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\00A3";*/
}
.service-loc-box i {
    color: #053656;
    font-family: 'fontawesome';
    font-weight: lighter;
    border: 1px solid;
    padding: 6px 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.service-loc-box p {
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #767675;
    margin-bottom: 0;
}
.service-area-sec{
    padding-bottom: 150px;
}
.service-area-sec .row .col-lg-6.col-md-6.col-sm-6.col-12{
    margin-bottom: 20px;
}
.service-area-map {
    border: 8px solid #000000;
}
.service-areas-location h3 {
    position: relative;
    font-family: 'Libre Bodoni';
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 52px;
    color: #053656;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.service-areas-location h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background: #053656;
}
.service-area-sec .row:first-child {
    align-items: center;
}
.service-area-about{
    margin-top: 70px;
}
.service-area-about p {
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #767675;
}
                 /* .Qualification */


.quali-head{
    background: #053656;
    padding: 15px 20px;
}
.quali-head h2{
    font-family: 'Libre Bodoni';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 35px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}
.quali-text {
    border-bottom: 1px solid #EEEEEE;
    padding: 0px 0px 20px;
    margin: 0px 0px 20px;
}
.quali-text h4{
    font-family: 'Libre Bodoni';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 36px;
    color: #053656;
}
.quali-text h5{
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 43px; 
    color: #767675;
}
.quali-content{
    padding: 40px;
}
.quali-content h3{
    font-family: 'Libre Bodoni';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #053656;
    margin-bottom: 24px;
    padding-bottom: 10px;
    position: relative;
    padding-top: 10px;
}
.quali-content h3:after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 4px;
    background: #053656;
}
.quali-content h6{
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #767675;
    padding-top: 10px;
}
.quali-content p{
    color: #767675;
    padding-top: 10px;   
}
.quali-content ul li{
    color: #767675;
    list-style: none;
    padding-bottom: 10px;
}
.quali-box{
    background: #FFFFFF;
    border: 1px solid #BDBDBD;
}
.certi-sec{
    padding-bottom: 50px;
}
.pro-box{
    background: #F8F8F8;
    padding: 30px;
    height: 100%;
}

.pro-box h4{
    font-family: 'Libre Bodoni';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #053656;
    padding: 10px 0px;
}
.certificate-sec{
    
    color: #767675;  
    padding-bottom: 100px   ;
}
.p-box .col-md-6{
    margin-top: 20px;
}
.pro-box ul li{
    color: #767675;   
}
.insure{
    padding-top: 50px;
    border-top: 1px solid #EEEEEE;
}
.certificate-content {
    padding: 40px;
}
.servic{
    padding-bottom: 50px;
    min-height: 260px;
}
.sig-img {
    border-bottom: 1px solid #D8D8D8    ;
    margin-bottom: 10px;
}
.certi-para {
    padding: 30px 0px;
}
.dis-head h4{
    font-family: 'Libre Bodoni';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #053656;
    text-decoration-line: underline;
    color: #053656;
    padding-right: 10px;   
}
.dis-head {
    display: flex;
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 10px;
}
.certi-table th{
    font-family: 'Libre Bodoni';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #053656; 
    padding: 10px;
    border: 1px solid #D9D9D9;
    background: #FAFAFA;
}
.certi-table td{
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #767675;
    padding: 10px;
    border-right: 1px solid #D9D9D9; 
}

tbody {
    border: 1px solid #C7C7C7;
    background: #fff;
 
}
.des-box {
    background: #FAFAFA;
    padding: 20px;
    margin-bottom: 30px;
    word-break: break-all;
}
table{
    width: 100%;
}
.ft{
  font-size: 16px;
}
.certificate-img {
    float: right;
    background: #FFFFFF;
    box-shadow: 0px 4px 104px #efefef;
    padding: 20px;
}

.site-footer-right a{
	padding:0px !important;
}

.page-id-17 input.wpcf7-form-control.has-spinner.wpcf7-submit.sumbit-btn {
    border: none;
    width: 100%;
    height: 60px;
    background: #053656;
    font-family: 'Lexend Mega';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.wpcf7 form.invalid .wpcf7-response-output{
	color: black;
}