@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #004e94;
    --secondary-color: #3e9d28;
    --white-color: #ffffff;
    --text-color: #5a5a5a;
    --dark-color: #2c2c2c;
    --transition: ease-in-out .3s;
    --border-radius: 5px;
    --border-color: #e3e3e3;
    --bg-color: #edf3ff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--dark-color);
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.mt {
    margin-top: 80px;
}

.mb {
    margin-bottom: 80px;
}

.pt {
    padding-top: 80px;
}

.pb {
    padding-bottom: 80px;
}

.container {
    max-width: 1200px;
}





/* Top Header  */
.top-header {
    background: var(--primary-color);
    padding: 5px 0;
}

.th-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.th-wrap ul {
    display: flex;
    align-items: center;
}

.th-left ul li a {
    display: block;
    color: var(--white-color);
    font-size: 14px;
    transition: var(--transition);
}

.th-left ul li a:hover {
    color: var(--secondary-color);
}

.th-left ul li a i {
    font-size: 24px;
    vertical-align: middle;
    margin-right: 3px;
}

.th-left ul li+li a {
    margin-left: 30px;
}

.th-right {
    display: flex;
    align-items: center;
}

.th-right h3 {
    font-size: 15px;
    margin-bottom: 0;
    color: var(--white-color);
    font-weight: normal;
}

.th-right ul li a {
    display: block;
    font-size: 22px;
    color: var(--white-color);
    margin-left: 12px;
    transition: var(--transition);
}

.th-right ul li a:hover {
    color: var(--secondary-color);
}

/* Top Header End  */







/* Header  */
.header {
    background: var(--white-color);
    box-shadow: 0px 5px 30px rgb(0 0 0 / 30%);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.header-navigation ul {
    display: flex;
}

.header-navigation ul li a {
    color: var(--dark-color);
    display: block;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    padding: 38px 22px;
}

.header-navigation ul li a:hover {
    color: var(--secondary-color);
}

.header-utilities a {
    color: var(--primary-color);
    display: block;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    line-height: normal;
    border-radius: 50px;
    background: var(--secondary-color);
    color: var(--white-color);
    transition: var(--transition);
}

.header-utilities a:hover {
    background-color: var(--primary-color);
}

.header-utilities {
    display: flex;
    align-items: center;
}

.header-utilities-btns {
    display: flex;
}

.header-utilities a i {
    margin-left: 5px;
    font-size: 22px;
    vertical-align: middle;
}

.toggle-btn {
    margin-left: 20px;
    cursor: pointer;
}

.toggle-btn span {
    display: block;
    height: 1.7px;
    width: 35px;
    background: var(--primary-color);
    margin: 6px 0;
}

.toggle-btn:hover span {
    background-color: var(--secondary-color);
}

.toggle-btn span:nth-child(2) {
    width: 25px;
    margin-left: auto;
}

.toggle-btn span:nth-child(3) {
    width: 35px;
    margin-left: auto;
}

.toggle-btn span:nth-child(4) {
    width: 25px;
    margin-left: auto;
}

.sub-menu-item {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 305px;
    background: var(--white-color);
    box-shadow: 0px 3px 10px rgb(0 0 0 / 15%);
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
}

.sub-menu-item:hover .sub-menu {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.sub-menu ul {
    display: block;
}

.sub-menu ul li a {
    padding: 10px 20px;
    transition: var(--transition);
}

.sub-menu ul li+li a {
    border-top: 1px solid #eeeeee;
}

.sub-menu ul li a:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.header-utilities-mobile {
    display: none;
}

/* Header End  */





/* Mobile Menu */

#mySidenav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1024;
    background: var(--white-color);
    width: 320px;
    height: 100%;
    overflow-x: hidden;
}

.sidenav {
    margin-right: -320px;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.sidenav.active {
    margin-right: 0;
    box-shadow: -5px 0px 15px 0 rgb(0 0 0 / 15%);
    opacity: 1;
    visibility: visible;
}

.sidenav ul ul {
    background: #efefef;
}

#menu1 li a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-color);
    transition: var(--transition);
    font-weight: 500;
    font-size: 16px;
}

#menu1 li a:hover {
    color: var(--secondary-color);
}

.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: var(--white-color);
    box-shadow: 0 6px 20px 0 rgb(0 0 0 / 10%);
}

.mobile-logo img {
    height: 50px;
    width: auto;
}

#close-btn {
    background: var(--primary-color);
    color: var(--white-color);
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 32px;
    font-size: 25px;
    border-radius: 100%;
}

#mySidenav::-webkit-scrollbar {
    width: 7px;
}

#mySidenav::-webkit-scrollbar-track {
    background: var(--white-color);
    display: none;
}

#mySidenav::-webkit-scrollbar-thumb {
    background: rgb(208 208 208);
    border-radius: 10px;
}

.mobile-contact {
    padding-top: 10px;
    margin-top: 15px;
    border-top: 1px solid var(--border-color);
}

.mobile-contact ul li a {
    padding: 10px 20px;
    color: var(--dark-color);
    display: block;
    transition: var(--transition);
}

.mobile-contact ul li a:hover {
    color: var(--secondary-color);
}

.mobile-contact ul li a i {
    margin-right: 7px;
    font-size: 20px;
    vertical-align: middle;
}

.social-media {
    padding: 20px 20px 0;
}

.social-media ul {
    display: flex;
}

.social-media ul li a {
    display: block;
    font-size: 25px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-media ul li+li a {
    margin-left: 15px;
}

.social-media ul li a:hover {
    color: var(--primary-color);
}

.sub-menu-item a i {
    font-size: 12px;
    margin-left: 2px;
}

/* Mobile Menu End */






/* Slider  */
.slider {
    position: relative;
    z-index: 10;
    clip-path: polygon(100% 0, 100% 85%, 48% 100%, 0 85%, 0 0);
}

.slider-caption {
    position: absolute;
    max-width: 1200px;
    top: 45%;
    transform: translateY(-45%);
    margin: auto;
    left: 0;
    right: 0;
    padding-left: 15px;
    padding-right: 15px;
}

.slider-caption h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white-color);
    margin-bottom: 0;
}

.slider-caption p {
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 35px;
    color: var(--white-color);
    line-height: 1.8;
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 1;
    width: 10%;
    top: -80px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: inherit;
    position: relative;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    position: absolute;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--white-color);
    border-radius: 100%;
    color: var(--primary-color);
    font-size: 18px;
    box-shadow: 0px -1px 35px 5px rgba(48, 22, 165, 0.495)
}

.carousel-control-prev-icon::before {
    content: '\f104';
    left: 0;
}

.carousel-control-next-icon::before {
    content: '\f105';
    right: 0;
}

.slider-caption-col {
    max-width: 650px;
}

.carousel-item:nth-child(1) .slider-caption-col {
    margin-left: auto;
}

.carousel-item:nth-child(2) .slider-caption-col {
    margin-right: auto;
}

.carousel-item:nth-child(3) .slider-caption-col {
    margin-left: auto;
}

.carousel-item:nth-child(4) .slider-caption-col {
    margin-right: auto;
}

.carousel-item:nth-child(5) .slider-caption-col {
    margin-left: auto;
}

.carousel-item {
    position: relative;
}

.carousel-item::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.426);
}

.carousel-item img {
    animation: zoom 25s infinite;
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.5, 1.5);
    }
}

/* Slider End  */






/* Message  */
.message-media {
    position: relative;
    height: 380px;
}

.rolls {
    left: 0;
    width: 360px;
    height: 360px;
    margin: 0 auto;
    position: absolute;
    animation: rotate linear 10s infinite;
    margin-left: 0;
    border-radius: 100%;
    top: 0;
    right: 0;
    margin: auto;
}

.roll {
    top: -10px;
    left: -10px;
    color: #fff;
    width: 360px;
    height: 360px;
    display: block;
    position: absolute;
    background: linear-gradient(to left, rgb(62 157 40 / 30%) 0%, rgb(0 78 147 / 40%) 100%);
    text-align: center;
    border-radius: 100%;
}

.roll:nth-child(2) {
    top: -10px;
    left: -10px;
    width: 360px;
    height: 360px;
    border-radius: 100%;
}

.roll:nth-child(3) {
    top: 10px;
    left: -10px;
    width: 360px;
    height: 360px;
    border-radius: 100%;
}

.roll:nth-child(4) {
    top: -10px;
    left: 10px;
    width: 360px;
    height: 360px;
    border-radius: 100%;
}

.rolls-img {
    position: absolute;
    left: 0px;
    right: 0;
    margin: auto;
    text-align: center;
    top: 30px;
    bottom: 0;
}

.rolls-img img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 100%;
    margin: auto;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.message-info span {
    display: block;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
}

.message-info h3 {
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
}

.message-info {
    margin-left: -30px;
}

/* Message End  */






/* Services  */
.main-title {
    text-align: center;
    margin-bottom: 40px;
}

.main-title h3 {
    font-size: 40px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

.main-title span {
    display: inline-block;
    color: var(--primary-color);
}

.service-wrap {
    text-align: center;
    padding: 30px 25px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white-color);
    box-shadow: 0 0px 40px rgb(0 0 0 / 15%);
}

.service-wrap:hover {
    border-color: var(--primary-color);
}

.service-img img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

.service-wrap:hover .service-img img {
    transform: rotateY(180deg);
}

.service-content {
    margin-top: 15px;
}

.service-content h3 {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 0;
}

.service-content a {
    display: block;
    margin-top: 25px;
    font-size: 16px;
    color: var(--secondary-color);
    transition: var(--transition);
    font-weight: 600;
}

.service-content a i {
    font-size: 11px;
    margin-left: 3px;
    vertical-align: middle;
}

.service-content a:hover {
    color: var(--primary-color);
}

.service.pb {
    padding-bottom: 55px;
}

/* Services End  */







/* About Section  */
.about-section {
    background: var(--bg-color);
}

.about-section-content span {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.about-section-content h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--dark-color);
    text-transform: capitalize;
}

.main-btn {
    padding-top: 20px;
}

.main-btn a {
    background: var(--secondary-color);
    color: var(--white-color);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.main-btn a i {
    margin-left: 7px;
    vertical-align: middle;
    font-size: 20px;
}

.main-btn a:hover {
    background: var(--primary-color);
}

.about-section-media {
    text-align: right;
}

.about-section-col+.about-section-col .about-section-media {
    text-align: left;
}

.about-section-media img {
    height: 480px;
    border-radius: var(--border-radius);
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.about-section-col+.about-section-col {
    margin-top: 80px;
}

.about-section-col:nth-child(even) .row {
    flex-direction: row-reverse;
}

.about-section-col:nth-child(even) .about-section-media {
    margin-left: 0px;
}

.about-section-col:nth-child(even) .about-section-content {
    margin-left: 50px;
}

/* About Section End  */





/* Why Choose  */
.why-choose {
    background: var(--bg-color1);
}

.why-choose-wrap {
    text-align: center;
    position: relative;
}

.borders {
    position: absolute;
    right: -110px;
    top: 0;
    width: 181px;
    height: 32px;
    background-repeat: no-repeat;
}

.bottom-borders {
    top: 144px;
}

.why-choose-icon {
    position: relative;
    border-radius: 100%;
    display: inline-block;
    border: 3px solid var(--white-color);
    transition: var(--transition);
}

.why-choose-icon:hover {
    border-color: var(--primary-color);
}

.why-choose-icon img {
    height: 160px;
    width: 160px;
    border: 10px solid var(--white-color);
    background: #00958714;
    border-radius: 100%;
    box-shadow: 0 0 15px 0 rgb(24 35 51 / 20%);
    padding: 15px;
}

.why-choose-icon span {
    display: block;
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    text-align: center;
    background: var(--primary-color);
    height: 45px;
    width: 45px;
    line-height: 40px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    border-radius: 100%;
    margin: auto;
    border: 3px solid var(--white-color);
    box-shadow: 0 0 9px 0 rgb(24 35 51 / 28%);
    z-index: 10;
    transition: var(--transition);
}

.why-choose-icon:hover span {
    background-color: var(--secondary-color);
}

.why-choose-content {
    margin-top: 35px;
}

.why-choose-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--dark-color);
}

.why-choose-content p {
    margin-bottom: 0;
    margin-top: 20px;
}

/* Why Choose End  */





/* Content Section  */
.content-points-wrap {
    padding: 80px 60px 80px 0;
}

.content-point-list {
    display: flex;
}

.content-point-list+.content-point-list {
    margin-top: 50px;
}

.content-point-media {
    width: 80px;
}

.content-point-info {
    width: calc(100% - 100px);
    padding-left: 20px;
}

.content-point-media img {
    height: 70px;
    width: auto;
}

.content-point-info h3 {
    color: var(--white-color);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0;
}

.content-point-info p {
    margin-top: 15px;
    margin-bottom: 0;
    color: var(--white-color);
    line-height: 1.7;
}

.content-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}

.content-section-wrap {
    padding: 80px 0 80px 80px;
}

.content-section::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000000;
    opacity: .6;
    z-index: -1;
    width: 50%;
    margin-left: auto;
}

.content-section::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    opacity: .7;
    z-index: -1;
    width: 50%;
}

.content-section-wrap span {
    display: block;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
}

.content-section-wrap h3 {
    margin-top: 15px;
    color: var(--white-color);
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 0;
}

.content-section-wrap p {
    margin-top: 25px;
    color: var(--white-color);
    line-height: 1.9;
}

.content-section-wrap p:last-child {
    margin-bottom: 0;
}

/* Content Section End  */





/* Portfolio  */
.information {
    position: relative;
}

.information .main-title {
    margin-bottom: 25px;
}

.information::before {
    position: absolute;
    content: '';
    top: 32%;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    z-index: -1;
}

.portfolio {
    position: relative;
    padding-left: 14px;
}

.portfolio .slick-track {
    padding: 125px 0px;
}

.portfolio .item {
    padding: 0 5px;
}

.portfolio .item img {
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
}

.portfolio .slick-center a {
    transform: scale(1.8);
    display: block;
    position: relative;
    z-index: 9999;
    border-radius: 10px;
    transition: all 1000ms;
}

.portfolio .slick-center a img {
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 15px rgb(0 0 0 / 40%);
    border: 10px solid var(--white-color);
}

.slick-prev:before,
.slick-next:before {
    background: var(--white-color);
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    display: block;
    color: var(--primary-color);
    opacity: 1;
    box-shadow: 0px 0px 10px rgb(0 150 136);
}

.slick-prev:before {
    content: '\f060';
    font-family: 'Line Awesome Free';
    font-weight: 900;
}

.slick-next:before {
    content: '\f061';
    font-family: 'Line Awesome Free';
    font-weight: 900;
}

.slick-prev,
.slick-next {
    z-index: 10;
    top: 45%;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

/* Portfolio End  */





/* Testimonials  */
.testimonials-wrap {
    display: flex;
    align-items: center;
}

.testimonials-title {
    width: 200px;
}

.testimonials-list {
    width: calc(100% - 200px);
    padding-left: 29px;
    position: relative;
}

.testimonials-title h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white-color);
}

.testimonials-title h3 img {
    height: 25px;
    width: auto;
    vertical-align: top;
}

.testimonials-title span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-color);
    color: #cbcbcb;
}

.rating {
    margin: 5px 0;
}

.rating img {
    height: 22px;
    width: auto;
}

.testimonials-title p {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #cbcbcb;
}

.testimonials-list::before {
    position: absolute;
    content: '';
    left: 0;
    width: 1px;
    height: 270px;
    background: #C7CCD1;
}

.testimonials-list .slick-slide {
    padding-left: 50px;
    padding-right: 1px;
}

.testimonials-card {
    border: 1px solid #C7CCD1;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.testimonials-count {
    position: absolute;
    left: -47px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    padding: 15px 10px;
    width: 120px;
}

.testimonials-number span {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 500;
}

.testimonials-number span:nth-child(2) {
    font-size: 45px;
    letter-spacing: -2px;
    line-height: 1.2;
}

.testimonials-count p {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.7;
    color: var(--white-color);
}

.testimonials-info {
    padding-left: 55px;
}

.testimonials-info p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
    color: #e0e0e0;
}

.testimonials-profile {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.testimonials-profile img {
    height: 64px;
    width: 64px !important;
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
}

.testimonials-profile-info {
    margin-left: 10px;
}

.testimonials-profile-info h3 {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--white-color);
}

.testimonials-profile-info span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    color: #cbcbcb;
    font-weight: normal;
}

.testimonials {
    margin-top: 50px;
}

/* Testimonials End  */





/* Blog  */
.blog-media {
    overflow: hidden;
    height: 300px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.blog-media a {
    height: 100%;
    width: 100%;
}

.blog-media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    border: 1px solid var(--border-color);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    padding: 20px;
}

.blog-content span {
    display: block;
    font-size: 14px;
    color: #787878;
}

.blog-content h3 {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content h3 a {
    display: block;
    color: var(--dark-color);
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

/* Blog End  */





/* Partners  */
#partners {
    margin-left: -25px;
    margin-right: -25px;
}

.partners .slick-slide {
    margin: 0 30px;
}

.partners img {
    transition: var(--transition);
    cursor: pointer;
}

.partners img:hover {
    filter: grayscale(1);
}

/* Partners End  */






/* Footer  */
.footer {
    background: var(--primary-color);
    padding-top: 60px;
    padding-bottom: 30px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.footer::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("../img/footer.png");
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: top 40px center;
    z-index: -1;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-content p {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--white-color);
}

.footer-content ul {
    display: flex;
    margin-top: 20px;
}

.footer-content ul li a {
    color: var(--white-color);
    font-size: 22px;
    transition: var(--transition);
    display: block;
}

.footer-content ul li+li a {
    margin-left: 15px;
}

.footer-content ul li a:hover {
    color: var(--secondary-color);
}

.footer-col h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-col ul li a {
    font-size: 15px;
    color: var(--white-color);
    display: block;
    transition: var(--transition);
    position: relative;
    padding-left: 20px;
}

.footer-col ul li a::before {
    position: absolute;
    content: '\f101';
    left: 0;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 10px;
    top: 5px;
}

.footer-col ul li+li a {
    margin-top: 15px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    margin-left: 5px;
}

.footer-col .form-control {
    border: none;
    border-radius: var(--border-radius);
    height: 42px;
    font-size: 14px;
}

.footer-col button {
    width: 100%;
    border-radius: var(--border-radius);
    border: none;
    background: var(--secondary-color);
    color: var(--white-color);
    font-weight: 600;
    font-size: 16px;
    padding: 10px 10px;
    margin-top: 10px;
}

.footer-col .form-control:focus {
    outline: none;
    box-shadow: none;
}

.footer-col p {
    font-size: 15px;
    color: var(--white-color);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 15px;
}

.footer-bottom p a {
    display: inline-block;
    color: var(--secondary-color);
    transition: var(--transition);
}

.footer-bottom p a:hover {
    color: var(--primary-color);
}

.space1 {
    padding-left: 60px;
}

.space2 {
    padding-left: 10px;
}

/* Footer End  */




/* Popup Form  */
.modal-header {
    background: var(--primary-color);
    padding: 15px 30px;
}

.modal-title {
    font-size: 25px;
    color: var(--white-color);
}

.btn-close {
    opacity: 1;
    background-color: var(--white-color);
    border-radius: 100%;
}

.modal-body {
    padding: 30px;
}

.popup-form .form-control {
    height: 50px;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.popup-form .form-group {
    margin-bottom: 20px;
}

.popup-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

.popup-form textarea.form-control {
    height: 130px;
}

.popup-form button {
    background: var(--secondary-color);
    color: var(--white-color);
    border: none;
    padding: 13px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.popup-form button:hover {
    background: var(--primary-color);
}

.modal {
    background: rgb(0 0 0 / 75%);
}

.modal-dialog {
    max-width: 550px;
}

.modal-content {
    border: none;
}

.large-popup .modal-dialog {
    max-width: 800px;
}

.port-popup-wrap img {
    border-radius: var(--border-radius);
}

.port-popup-wrap img {
    border-radius: var(--border-radius);
}

.port-popup-wrap p {
    margin-top: 20px;
    font-size: 16px;
}

.port-popup-wrap a {
    display: inline-block;
    background: var(--primary-color);
    border-radius: 50px;
    padding: 10px 25px;
    color: var(--white-color);
    font-weight: 600;
    transition: var(--transition);
}

.port-popup-wrap a:hover {
    background: var(--secondary-color);
}

/* Popup Form End  */









/* About Us Page  */
.page-banner {
    position: relative;
    z-index: 0;
}

.page-banner::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 30%);
    z-index: -1;
}

.page-banner-wrap {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-banner-wrap h1 {
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
}

.page-banner-wrap .breadcrumb {
    margin-top: 20px;
    margin-bottom: 0;
}

.page-banner-wrap .breadcrumb li {
    font-size: 16px;
    font-weight: 500;
}

.page-banner-wrap .breadcrumb li a {
    color: var(--white-color);
    text-decoration: none;
}

.page-banner-wrap .breadcrumb-item.active {
    color: #d5d5d5 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

.about-us-content span {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    padding-right: 65px;
}

.about-us-content span::before {
    position: absolute;
    content: '';
    bottom: 0;
    top: 0;
    margin: auto;
    right: 0;
    height: 3px;
    width: 50px;
    background: var(--secondary-color);
}

.about-us-content h3 {
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 26px;
}

.about-us-media {
    padding-left: 60px;
    position: relative;
    z-index: 0;
    text-align: center;
}

.about-us-media:before {
    content: '';
    width: 280px;
    height: 135px;
    background-image: url("../img/dots.png");
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 55px;
    left: 0;
    z-index: -1;
}

.about-us-media img {
    border: 8px solid var(--white-color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius);
    border-top-left-radius: 150px;
}

.about-us-media span {
    display: block;
    background-image: -webkit-linear-gradient(left, #004e93, #3e9d28);
    color: var(--white-color);
    padding: 15px 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .5px;
    position: absolute;
    left: 60px;
    bottom: -22px;
    right: 0;
    margin: auto;
    max-width: 320px;
    border-radius: 50px;
}
.about-us-content p {
    font-size: 15px;
    line-height: 1.9;
}
/* About Us Page End  */






/* Contact Us Page  */
.contact-details {
    background: var(--primary-color);
    padding:40px 30px;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    min-height: 437px;
}

.contact-details ul li {
    display: flex;
}

.contact-details ul li i {
    font-size: 30px;
    color: var(--white-color);
    margin-right: 15px;
}

.contact-details-info span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
}

.contact-details-info p {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--white-color);
    margin-top:5px;
}

.contact-details ul li +li {
    margin-top: 40px;
}
.contact-form {
    background: var(--white-color);
    padding:40px 30px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}
.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    padding: 3px 10px;
    font-size: 15px;
}

.contact-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form textarea.form-control {
    height: 100px;
}

.contact-form button {
    border: none;
    background: var(--primary-color);
    padding: 10px 30px 12px;
    border-radius: var(--border-radius);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-form button:hover {
    background: var(--secondary-color);
}
.map {
    margin-top: 50px;
}
.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h3 {
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.page-title p {
    max-width: 65%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 0;
}
.service-page.mb {
    margin-bottom: 55px;
}
/* Contact Us Page  */






/* Service Details  */
.service-featured-images img {
    border-radius: var(--border-radius);
}

.service-featured-images {
    margin-bottom: 30px;
}
.service-details-main h2 {
    margin-bottom: 20px;
    font-size: 30px;
}
.service-sidebar {
    box-shadow: 0px 2px 15px rgba(0,0,0,0.15);
    border-radius: var(--border-radius);
    padding: 25px;
    position: sticky;
    top:120px;
}

.service-sidebar h3 {
    margin-top: -25px;
    margin-left: -25px;
    margin-right: -25px;
    background: var(--primary-color);
    padding: 15px 25px;
    color: var(--white-color);
    font-size: 22px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    margin-bottom: 20px;
}
.service-sidebar ul li a {
    display: block;
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-left:22px;
}
.service-sidebar ul li a::before{
    position: absolute;
    content: '\f101';
    left: 0;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 12px;
    top:5px;
}

.service-sidebar ul li+li {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
}
.service-sidebar ul li a:hover {
    color: var(--primary-color);
}
/* Service Details End  */








/* Blog Page  */
.blog-page .blog-wrap{
    margin-bottom:40px;
}
.blog-page.mb {
    margin-bottom: 40px;
}
.general-page h3 {
    margin-bottom: 30px;
    font-size: 30px;
    color: var(--primary-color);
}
/* BLog Page End  */