
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-nice-select/1.1.0/css/nice-select.min.css');
@import url('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css');
@import url('animate.css');
@import url('https://cdn.jsdelivr.net/npm/pretty-checkbox@3.0/dist/pretty-checkbox.min.css');


/**************************************
                General
**************************************/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
}
body{
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
}
a,a:hover,a:focus{
    color: #00507e;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
main{
    overflow: hidden;
    

}
b, strong {
    font-weight: bold;
}
.h1, .h2, .h3, .h4, h1, h2, h3, h4{
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/**************************************
                Helper Class
**************************************/
.section-title{
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #000;
}
.sub-title{
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
text-transform: uppercase;
color: #000;
margin-bottom: 20px;
}
.title{
font-style: normal;
font-weight: 700;
font-size: 23px;
line-height: 30px;
text-transform: uppercase;
color: #001124;
width: 122px;
}
.dec{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #001124;
}
p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 168.5%;
    color: #767799;
}

.card-title{
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    letter-spacing: 0.002em;
    text-transform: uppercase;
    color: #001124;   
}

.primary-btn{ 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 213px;
    height: 65px;
    border: 2px solid #FFFFFF;
    font-style: normal;
font-weight: 600;
font-size: 21px;
line-height: 25px;
text-transform: capitalize;
color: #FFFFFF;
    outline: none;
    transition: all .3s;
}

.primary-btn:hover{
    background: #fff;
    color: #12132A;
}
.secondary-btn{
display: flex;
justify-content: center;
align-items: center;
width: 175px;
height: 49px;
background: #FFFFFF;
box-shadow: 0px 11px 15px rgba(18, 81, 151, 0.25);
border-radius: 8px;
color: #125197;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 19px;
transition: all .3s;
}
.secondary-btn:hover{
    background: #125197;
box-shadow: 0px 11px 15px rgba(18, 81, 151, 0.25);
color: #fff;
}
/**************************************
                Hero Area
**************************************/
.hero-area{
    overflow: hidden;
    position: relative;
}
.hero-area .container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero-content p{
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5em;
    letter-spacing: 0px;
    color: #fff;
}
.hero-content {
    width: 75%;
    margin-top: 100px;
}
  .slide {
    position: relative;
    margin: 0;
    padding: 0;
  }
  .slide .item {
    position: relative;
  }

  .slide .item::after{
        content: '';
        background-color: transparent;
        background-image: linear-gradient(180deg, rgba(0, 66, 116, 0.35) 50%, #004274 100%);
        opacity: 1;
        transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
  }
  .slide .item .image {
    position: relative;
    overflow: hidden;
  }
  .slide .item img {

    object-fit: cover;
    width: 100%;
  }
  .slide > .slick-list,
  .slide > .slick-list > .slick-track,
  .slide > .slick-list > .slick-track > .slick-slide > div {
    position: relative;
    height: 100%;
  }
  .slide-animation{
      animation: fadezoom 8s 0s forwards;
  }
  @keyframes fadezoom {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.2);
    }
  }
  .sec-gap{
    padding: 50px 0;
  }
 .about{
    background-color: #004274;
 } 
.about-box{
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF1A 0%, #F2295B00 100%);
    padding: 35px 25px;
    text-align: center;
    color: #fff;
    transition: ease-in-out .4s;
    -webkit-transition: ease-in-out .4s;
    -moz-transition: ease-in-out .4s;
    -ms-transition: ease-in-out .4s;
    -o-transition: ease-in-out .4s;
}
.about-box h4{
    font-size: 20px;
    line-height: 28px;
}
.about-box p{
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-transform: none;
    color: #FFFFFFC7;
}
.about-box a{
    color: #35c8ff;
    font-size: 15px;
    font-weight: 400;
}
.about-box:hover{
    transform: translate(0, -10px);
    box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
}

.service{
    background-attachment: fixed;
    background-image: url('../img/service-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.service::after{
    content: '';
    background-color: #004D7424;
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.service .container{
    position: relative;
    z-index: 1;
}
.dec{
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.4px;
    line-height: 25px;
}
.service{
    padding: 80px 0;
}
.service-box{
    border-style: solid;
    border-width: 0px 1px 0px 0px;
    background-color: #004274B5;
    border-color:#98CDF4B5 ;
    transition: 0.2s !important;
    padding: 30px 10px;
    -webkit-transition: 0.2s !important;
    -moz-transition: 0.2s !important;
    -ms-transition: 0.2s !important;
    -o-transition: 0.2s !important;
    text-align: center;
   
}
.row .col:last-child .service-box{
    border-right: 0;
}
.service-box h4{
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    min-height: 38px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 0px 20px;
}
.service-box p{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}
.icon-box {
    width: 30%;
    margin: auto;
    margin-bottom: 25px;
}
.service-box a{
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.service-box a:hover{
   background-color:#056AB7;
   color: #fff;
}

.gallery-box{
    position: relative;
    margin: 10px;
}
.gallery-box i{
    color: #6ec1e4;
}
.gallery-content{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 15px;
    color: #fff;
}
.gallery-box:hover .gallery-content{
    background-image: none;
}
.gallery-content p{
    color: #fff;
    font-size: 14px;
}
.gallery-content p.address{
    position: absolute;
    bottom: 0;
    left: 15px;
}
.tags span{
    font-size: 10px;
    line-height: 11px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    padding: 3px 5px;
    color: #fff;
    background-color: #77c720;
    top: 20px;
    left: 20px;
}
.contact{
    padding: 80px 0;
    background-image: url(../img/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: unset;
}
.contact::after {
    content: '';
    background-color: rgba(0, 66, 116, 0.45);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    -webkit-transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    -moz-transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    -ms-transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    -o-transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.contact .container{
    position: relative;
    z-index: 1;
}
.testimonials{
    background-color: #F2F2F2;
}
.testimonial-item{
    text-align: center;
}
.testimonial-thumb {
    margin-bottom: 15px;
}
.testimonial-body,.testimonial-info{
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-transform: none;
    color: #000;
    margin-bottom: 20px;
}
/**************************************
                Footer
**************************************/
footer{
    padding-top: 50px;
    padding-bottom: 40px;
    background: #e2e2e2;
    margin-top: 0px;
}
.footer-title{
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #00507e;
margin-bottom: 10px;
}

footer p,.contact-list,.contact-list a {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-transform: none;
    color: #000;
}
.contact-list li{
    margin-bottom: 15px;
}
.social {
    display: flex;
    flex-wrap: wrap;
}

footer ul li a{
    margin-bottom: 10px;
    font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 25px;
color: #00507e;
mix-blend-mode: normal;
opacity: 0.8;
    display: block;
}

footer ul li a:hover{
    color: #00507e;
    opacity: 1;
}

.copyright{
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 30px;
}
.copyright p{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
text-align: center;
mix-blend-mode: normal;
opacity: 0.75;
    
}

.call-buton .cc-calto-action-ripple {
	z-index: 99999;
	position: fixed;
	right: 1rem;
	bottom: 8rem;
	background: #00507e;
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; }
	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 2rem; }
	.call-buton .cc-calto-action-ripple:hover i {
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg); }
  
  @-webkit-keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 0 rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%);
	  box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 0 rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%), 0 0 0 20px rgba(236, 139, 0, 0); } }
  
  @keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 0 rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%);
	  box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 0 rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%), 0 0 0 20px rgba(236, 139, 0, 0); } }