* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Lora:ital,wght@0,400..700;1,400..700&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap');
:root {
    --thm-font: 'Sora', sans-serif;
    /* Headings */
    --thm-b-font:  'Sora', sans-serif;
    /* Body font */
    --thm-icon-font: "FontAwesome";
    /*Icon Font*/
    --thm-color-one: #1B2391;
    --thm-color-two: #000000;
    /*Light Color*/
    --thm-color-light: #f7f7f7;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    /*Theme Colors*/
    --thm-body-color: #fff;
    /*White Color*/
    --thm-border: #d1d1d1;
    --thm-white: #fff;
    /*Border Color*/
}

/*Animations*/

@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--thm-b-font);
    font-size: 16px;
    line-height: 1.5;
    counter-reset: sectionCounter;
}
.relative {
    position: relative;
}

ul {
    padding-left: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 0;
}
li a {
    text-decoration: none;
}
p {
 font-family:sans-serif;
 color: #464748;
 margin-bottom: 15px;
}
.section-padding {
    padding: 80px 0;
    position: relative;
}
.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}
.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/*Slick Arrows*/

.slick-arrow:hover {
    color: var(--thm-white) !important;
    background-color: var(--thm-color-one);
    border-color: inherit !important;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 20px;
}

.slick-arrow.slick-next:before {
    content: "\f054";
    font-family: 'FontAwesome';
    opacity: 1;
}
.slick-arrow.slick-prev:before {
    content: "\f053";
    font-family: 'FontAwesome';
    opacity: 1;
}

.slick-prev.slick-arrow {
    position: absolute;
    top: 48%;
    left: 0%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 30px;
    height: 30px;
    color: var(--thm-color-one);
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: var(--thm-color-one); */
    border-radius: 50px;
}
.slick-next.slick-arrow {
    position: absolute;
    top: 48%;
    right: 0%;
    bottom: 0;
    z-index: 1;
    width: 30px;
    height: 30px;
    color: var(--thm-color-one);
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: var(--thm-color-one); */
    border-radius: 50px;
}

.slick-arrow.slick-prev:hover {
    border: 2px solid #3766E8;
    background-color:transparent;
    color: #3766E8 !important;
}
.slick-arrow.slick-prev:hover:before {
    color: #3766E8;
}
.slick-arrow.slick-prev:focus {
    border: 2px solid #3766E8;
    background-color: #fff;
    color: #3766E8;
}
.slick-arrow.slick-prev:focus:before {
    color: #3766E8;
}

.slick-arrow.slick-next:hover {
    border: 2px solid #3766E8;
    background-color: transparent;
    color: #3766E8 !important;
}
.slick-arrow.slick-next:hover:before {
    color: #3766E8;
}
.slick-arrow.slick-next:focus {
    border: 2px solid #3766E8;
    background-color: #fff;
    color: #3766E8;
}
.slick-arrow.slick-next:focus:before {
    color: #3766E8;
}

/*Slick Dots*/

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #182946;
    margin: 0 8px;
    transition: 0.6s all;
    border: 0px solid #182946;
}

.slick-dots li.slick-active button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

.slick-dots li.slick-active button:before {
    content: '';
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -5px;
    left: -5px;
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 20px;
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 7px 15px;
}
a {
    transition: .3s all;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: none;
}

h1 {
    font-size: 40px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
}
.thm-btn-one {
    background-color: var(--thm-color-one);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    border-color: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
    text-transform: uppercase;
    font-family: sans-serif;
    transition: 0.5s all;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.thm-btn-one:hover {
    background-color: #000;
    color: #fff;
}
.thm-btn-one i {
    background-color: #fff;
    color: var(--thm-color-one);
    width: 20px;
    height: 20px;
    font-size: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: 0.5s all;
}
.border-btn {
    background: transparent;
    color: var(--thm-color-one);
}
.border-btn i {
    background-color: var(--thm-color-one);
    color: #fff;
}
.border-btn i:hover {
    background-color: #fff;
    color: var(--thm-color-one);
}

.header {
    background: #000;
    border-bottom: 1px solid #C2C7D05E;
    /* padding: 10px 0; */
}
.navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navigation {
    padding: 0;
    display: flex;
    align-items: center;
    margin: 0;
}
.header .navigation .menu-item a {
    color: var(--thm-white);
    font-family: sans-serif;
    font-size: 14px;
}
/*------header end------*/

.main-menu {
    display: flex;
    margin: 0;
    padding: 0;
}
.menu-item {
    padding: 18px 13px;
}
.header.sticky {
    animation-name: fadeHeaderInDown;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    z-index: 22 !important;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    animation-fill-mode: both;
}
.navigaation-warpper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    padding: 7px 0;
}
/* .header .menu-item a:hover {
    color: var(--thm-color-one) !important;
} */
/*-----navigation start-----*/
.header .navigation .menu-item-has-children {
    position: relative;
    /* padding: 23px 13px; */
}
.header .navigation .menu-item-has-children>a:after {
    content: "\f078";
    font-family: var(--thm-icon-font);
    margin-left: 10px;
}
.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.5s all;
    width: 215px;
    visibility: hidden;
    opacity: 0;
    background-color: var(--thm-color-one);
    padding-left: 0;
}
.header .navigation .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 11;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item {
    padding: 0;
    width: 100%;
    padding: 10px 10px;
    border-bottom: 1px solid;
    transition: 0.5s all;
    background-color: var(--thm-color-one);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover a {
    background-color: #000;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    color: var(--thm-white);
    display: flex;
}
 .sub-menu .menu-item a:hover {
    color: var(--thm-white) !important;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 52px;
}
.header .header_action {
    margin-left: 15px;
}
.header.sticky .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: -100%;
    top: 52px;
}
/*-----hamburger start------*/
.hamburger {
  display: none;
}
.hamburger-btn span{
    background: #fff;
    margin-bottom: 5px;
    display: flex;
    position: relative;
    width: 25px;
    height: 2px;
    transition: 0.5s all;
}
.hamburger-btn span:last-child {
    margin-bottom: 0;
}
.hamburger-btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}
.hamburger-btn.active span:nth-child(2) {
    display: none;
}
.hamburger-btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}
/*-----hamburger end------*/


/* banner  */
.banner-title {
    font-size: 65px;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 600;
}
.banner-text-sm {
    background: #1E2D40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 7px;
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    margin-left: -10px;
    color: #fff;
}
.sm-img img {
    margin-left: -10px;
}
.sm-img {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}
.banner-bottom {
    display: flex;
    color: #fff;
    font-size: 20px;
    line-height: 2;
    margin-bottom: 35px;
}
.banner-bottom p {
    color: #fff;
}
.counter-list {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: end;
}
.count-item h5 {
    font-size: 27px;
    font-weight: 600;
}
.count-item p {
    font-size: 16px;
}
.rectangle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px !important;
}
.banner-bg {
    position: relative;
}
.banner-bg img {
    width: 100%;
}
.section-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: -1;
    height: 75%;
}
.rotate-img {
    position: absolute;
    right: 8%;
    top: -70px;
    width: 200px !important;
    animation: banner-anim 20s linear infinite;
}
@keyframes banner-anim {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.partner-hadding:before {
    position: absolute;
    content: '';
    top: 60%;
    left: auto;
    right: 0;
    bottom: 0;
    width: 71%;
    background: #C2C7D0;
    height: 1px;
}
.partner-hadding {
    position: relative;
}
.partner-image {
    display: flex;
    align-items: center;
    padding: 0 50px;
}
.partner-image img {
    width: 120px;
}
.partner-slider {
    padding: 33px 0;
}
.partner-slider .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}
/* ------about start------ */
.about-image img {
    border-radius: 15px;
    width: 84%;
}
.about-details {
    max-width: 500px;
}
.counter {
    display: flex;
    gap: 50px;
    text-align: center;
    margin-top: 30px;
}
/* service */
.service-card {
    margin-bottom: 20px;
    background: #EAEFFF;
    padding: 30px;
    border-radius: 20px;
}
.service-card img {
    width: 61px;
    padding-right: 12px;
}
/* product */
.product-section {
    background: linear-gradient(352.71deg, rgba(255, 255, 255, 0) 53%, #C8D2F4 90%);

}
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-heading h2 {
    margin-bottom: 0;
}
/* product */
.product-card {
    position: relative;
    margin-bottom: 40px;
}
.product-card .product-text {
    position: absolute;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    left: 20px;
}
.product-text p {
    background-color: #EAEFFF;
    border-radius: 30px;
    padding: 5px 30px;
    margin-bottom: 0;
    color: var(--thm-color-one);
}
.working-list {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid;
    margin-bottom: 30px;
}
.circle-box h1 {
    margin-bottom: 0;
    width: 75px;
    height: 75px;
    background: var(--thm-color-one);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}
.working-text {
    padding-left: 20px;
}
.working-text h3 {
    margin-bottom: 10px;
    color: var(--thm-color-one);
}
.testi-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testi-detail img {
    border-radius: 50%;
}
.testimonial-text i {
    font-size: 90px;
    color: #000;
    padding-bottom: 20px;
}
.testimonial-box {
    /* align-items: center; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background: #fff;
    margin-bottom: 27px;
}
.testimonial-text {
    padding: 50px;
    width: 50%;
}
.testimonial-section:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    background: #1B2391B2;
    width: 100%;
    height: 57%;
    z-index: -1;
    border-radius: 30px;
}
.testimonial-section:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 57%;
    z-index: -2;
    border-radius: 30px;
    background-image: url(../images/testi-bg.jpeg);
}
.testimonial-section {
    z-index: 0;
}
/* blog */
.blog-card {
    position: relative;
    margin-bottom: 20px;
}
.work-image img {
    width: 100%;
}
.product-card img {
    width: 100%;
}
.blog-card img {
    width: 100%;
}
.testi-detail img {
    width: auto;
}
.team-headding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.team-headding h1 {
    margin-bottom: 0;
    font-size: 51px;
}
.team-headding img {
    width: 90px;
}
.headding-line {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}
.headding-line::before {
    position: absolute;
    content: '';
    top: 51%;
    left: 0;
    background-color: #C2C7D0;
    width: 40%;
    height: 1px;
    text-align: center;
}
.headding-line::after {
    position: absolute;
    content: '';
    top: 51%;
    right: 0;
    background-color: #C2C7D0;
    width: 40%;
    height: 1px;
    text-align: center;
}
.headding-line img {
    width: 80px;
}
.our-team-image img {
    width: 100%;
}

.footer {
    background: #151515;
    border-radius: 70px 70px 0 0;
}
.ft-title h4 {
    color: #fff;
}
.ft-list .ft-item a {
    color: #fff;
    transition: 0.5s all;
}
.ft-list .ft-item a:hover {
    color: var(--thm-color-one);
}
.copyright-text {
    color: #fff;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #CFCFCF80;
}
.ft-item {
    padding-bottom: 8px;
    font-weight: 100;
}
.ft-list {
    columns: 2;
}
.ft-title {
    margin-bottom: 25px;
}
.ft-top-headding {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #CFCFCF80;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.ft-rorate {
    width: 150px;
    animation: banner-anim 20s linear infinite;
}
.service-card h3 {
    display: flex;
    align-items: center;
}

/*back to top*/
#back-top {
    text-align: center;
    display: none;
}
#back-top a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    text-align: center;
    line-height: 40px;
    border: var(--thm-color-one) solid 1px;
    color: #ffffff;
     background: var(--thm-color-one);
    transition-duration: 0.3s;
    font-size: 22px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 20px;
    transition: 0.5s all;
}

#back-top a:hover {
    background: #fff;
    color: var(--thm-color-one);
}

.breadcrumb {
    padding: 15px;
    font-size: 20px;
}
ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff; /* Gray text */
}
ol li {
    margin-right: 8px;
}
ol li a {
    text-decoration: none;
    color: #fff; /* Blue text */
    transition: color 0.3s;
}
ol li a:hover {
    color: #2563eb; /* Darker blue on hover */
}
.subheader-title h1 {
    color: #fff;
    font-size: 50px;
}
/* subheader */

.subheader {
    position: relative;
    width: 100%;
    height: 300px;
    width: 100%;
    background-image: url(../images/subheader.png);
    display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}
canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/* header two */
.header-two {
    background-color: #fff;
}
.header-two .navigation .menu-item a {
    color: var(--thm-black);
    font-family: sans-serif;
    font-size: 14px;
}
.about-card {
    border: 1px solid #384250;
    padding: 20px;
    border-radius: 10px;
    background: #F6F6F6;
}
.about-card h4 {
    margin-bottom: 5px;
    color: #000;
}
.about-card p {
    margin-bottom: 0;
    color: #000;
}
.rotate-one {
    transform: rotate(-7deg);
}
.rotate-two {
    transform: rotate(7deg);
    margin-top: 21px;
}
.rotate-three {
    transform: rotate(-7deg);
    margin-top: 30px;
}
.rotate-four {
    transform: rotate(7deg);
    margin-top: 30px;
}
.about-right {
    padding-left: 103px;
}
.servicetwo-card {
    border: 1px solid #000;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}
.servicetwo-image {
    background: #EAEFFF;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 15px;
}
.servicetwo-image img {
   width: 90px;
}
.detail-box {
    background: #F4F5F9;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid #E3E8EF;
    margin-bottom: 30px;
}
.form-control {
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #E3E8EF;
    margin-bottom: 20px;
}
.details-list li {
    background: #fff;
    color: #000;
    margin-bottom: 22px;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #E3E8EF;
    transition: 0.5s all;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.details-list li:hover {
    background: #1B2391;
    color: #fff;
}
.appointment-box {
    background: linear-gradient(0deg, #1B2391, #1B2391),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    color: #fff;
    text-align: center;
}
.appointment-box i {
    font-size: 65px;
}
.detail-planing {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.detail-planing i {
    /* color: #fff; */
    color: var(--thm-color-one);
    font-size: 25px;
    width: 30px;
    /* border-radius: 50%; */
    /* padding: 7px; */
}
.project-item {
    columns: 2;
}
.next-btn.w-20 {
    width: 20%;
}
.contact-details i {
    background-color: var(--thm-color-one);
    color: #fff;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-details p {
    text-align: justify;
    margin-bottom: 0;
}
.contact-details {
    border: 1px solid #384250;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
}
.contact-form input {
    background-color: #F6F6F6;
    border: 1px solid #E3E8EF
}
.contact-form {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #E3E8EF;
    height: 100%;
}
.career-image {
    margin-bottom: 20px;
}
.blog-comment p {
    margin-bottom: 0;
}
.blog-comment {
    display: flex;
    align-items: center;
    gap: 20px;
}
blockquote {
    background: #f2f2f2;
    border-radius: 15px 0 0 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}
blockquote i {
    font-size: 50px;
    padding-right: 15px;
}
.comment-one {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.color-one {
    color: var(--thm-color-one);
}
i.fa-brands.fa-twitter {
    color: #000;
}
i.fa-brands.fa-instagram {
    color: #eb6b0a;
}
.comment-one img {
    width: 119px;
    height: 119px;
}
.comment-one.box-comment {
    margin-left: 130px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.blog-box-detail {
    border: 1px solid #f1f1f1;
    /* padding: 16px; */
    border-radius: 15px;
    margin-bottom: 20px;
}
.blog-box-detail h5 {
    background: #000;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px 10px 0 0;
}
ul.detail-item li {
    padding-bottom: 10px;
    font-size: 17px;
}
ul.detail-item  {
   padding-left: 20px;
}
.p-3.popular-tag span {
    background: #f1f1f1;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 13px;
    margin: 5px;
}
.testimonial-slider.slick-initialized .slick-slide {
    display: flex;
}