@import url('https://fonts.googleapis.com/css2?family=Barlow: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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    word-break: break-word;
    font: 15px / 25px Poppins, sans-serif;
    color: rgb(57, 57, 57);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: rgb(40, 177, 109);
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: rgb(57, 57, 57);
}

a:hover {
    transition: 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: 0.5s;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0px;
}

select {
    background: url("../images/arrow.png") right center no-repeat rgb(255, 255, 255);
    padding: 0px 40px 0px 30px;
}

::-webkit-input-placeholder {
    color: rgb(0, 0, 0);
}

ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

img {
    max-width: 100%;
}

@font-face {
    font-family: unisans;
    src: url("../fonts/Uni Sans Heavy Caps.ttf");
}

.noPadding {
    padding: 0px;
}

.noLeft {
    padding-left: 0px;
}

.noRight {
    padding-right: 0px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0px !important;
}

.p-0 {
    padding: 0px !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0px;
}

.centerCol {
    float: none;
    margin: 0px auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    align-items: center;
}

h1 {
    width: fit-content;
    font-size: 67px;
    font-family: unisans;
    color: rgb(255, 255, 255);
    font-weight: 400;
    margin: 0px;
}

h2 {
    font-family: unisans;
    font-size: 67px;
    color: rgb(29, 43, 55);
    font-weight: 400;
    margin: 0px;
}

h3 {
    font-family: unisans;
    font-size: 22px;
    color: rgb(29, 43, 55);
    font-weight: 400;
    margin: 0px;
}

h4 {
    font-family: unisans;
    font-size: 24px;
    color: rgb(0, 0, 0);
    font-weight: 400;
    margin: 0px;
}

h5 {
    font-family: unisans;
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 0px;
}

h6 {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgb(0, 0, 0);
    margin: 0px;
}

p {
    color: rgb(137, 144, 151);
    font-size: 14px;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
    margin: 0px;
}

.menuSec {
    padding: 0px;
}

.menuSec img {
    margin: 0px;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0px;
    padding: 0px;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 40px 10px;
    font-size: 14px;
    font-family: unisans;
    font-weight: 400;
}

.menuSec ul li a::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -1px;
    width: 0%;
    height: 1px;
    background-color: rgb(255, 255, 255);
    transition: width 0.3s;
}

.menuSec ul li a:hover::after,
.menuSec ul li a:active::after {
    width: 100%;
    transition: width 0.5s;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: rgb(0, 0, 0);
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
    padding: 13px 20px !important;
    color: rgb(255, 255, 255) !important;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0px;
}

.menuSec li>ul>li>a::before,
.menuSec li>ul>li>a::after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0) !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0px;
}

.menuSec ul::before,
.menuSec ul::after {
    content: " ";
    display: none;
}

.menuSec ul::after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: rgb(0, 0, 0);
    right: 7%;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0) !important;
}

.dropdown-menu {
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0px;
    margin: 0px;
    font-size: 1rem;
    color: rgb(33, 37, 41);
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    position: absolute !important;
    text-align: left !important;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    opacity: 1;
    width: 50px;
    height: 50px;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: rgb(255, 255, 255);
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: rgb(255, 255, 255);
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
    border-width: 10px 0px;
    border-right-style: initial;
    border-left-style: initial;
    border-right-color: initial;
    border-left-color: initial;
    border-image: initial;
    border-top-style: solid;
    border-top-color: transparent;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    opacity: 1;
    border-radius: 20px;
    margin: 3px !important;
}

.carousel-caption {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0px;
    right: 0px;
    margin: 0px;
    padding: 0px;
    color: rgb(255, 255, 255);
    text-align: left;
    display: flex;
    align-items: center;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    background: rgb(255, 255, 255);
    width: 12px;
    height: 12px;
    margin: 0px;
}

.carousel-indicators .active {
    margin: 0px;
    background-color: rgb(40, 177, 109);
    width: 10px;
    height: 12px;
}

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291px) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}

.menuSection {
    position: absolute;
    width: 100%;
    z-index: 99;
}

.menuSection::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    background: linear-gradient(90deg, rgba(81, 135, 167, 1) 60%, rgba(81, 135, 167, 0) 85%);
    height: 1px;
    width: 100%;
}

.themebtn2 {
    background: rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 2px solid rgb(62, 123, 161);
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 50px;
    padding: 5px 10px 5px 20px;
    transition: background-color 0.4s, color 0.4s;
    font-family: unisans;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
}

.btn_icon2 {
    background: rgb(62, 123, 161);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.btn_icon2 img {
    transition: transform 0.4s;
    width: 15px !important;
    height: 12px !important;
    object-fit: contain !important;
}

.themebtn2:hover .btn_icon2 img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(597%) hue-rotate(265deg) brightness(121%) contrast(100%);
    transform: translateX(5px);
}

.themebtn2:hover .btn_icon2 {
    background: rgb(29, 43, 55);
}

.themebtn2:hover {
    border: 2px solid rgb(29, 43, 55);
    color: rgb(255, 255, 255);
    background: rgb(62, 123, 161);
}

.headbtn {
    text-align: end;
}

.container-fluid {
    padding: 0px 5%;
}

.banner_text h1 span {
    display: block;
    position: relative;
    z-index: 35;
}

.banner_text h1 span::before {
    position: absolute;
    content: "";
    background-color: rgb(29, 43, 55);
    width: 130%;
    height: 100%;
    top: 0px;
    right: -20px;
    z-index: -1;
}

.bnr_bg img {
    height: 830px;
    width: 100%;
    object-fit: cover;
}

.bnr_bg {
    position: relative;
}

.bnr_bg::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    background: rgba(62, 123, 161, 0.95);
    height: 100%;
    width: 100%;
}

.bnr_flx {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 50px;
    position: relative;
}

.headset a {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    text-align: start;
}

.headset_txt h4 {
    color: rgb(255, 255, 255);
    font-size: 14px;
    margin-bottom: 5px;
}

.headset_txt h5 {
    color: rgb(255, 255, 255);
    font-size: 19px;
}

.headset i {
    color: rgb(255, 255, 255);
    font-size: 40px;
}

.banner_text p {
    color: rgb(189, 210, 222);
    margin-bottom: 20px;
    width: 90%;
}

.bnr_left_padding {
    padding-top: 30px;
    padding-left: 30px;
    border-left: 1px solid rgb(89, 143, 175);
}

.banner_img {
    position: absolute;
    bottom: 0px;
    width: 45%;
    right: 0px;
    z-index: 3;
    height: 83%;
}

.main_slider {
    position: relative;
}

.main_slider::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    background-image: url("../images/bnr-b4.png");
    height: 60%;
    width: 23%;
    z-index: 2;
    background-size: cover;
    background-repeat: no-repeat !important;
}

.banner-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0px;
    position: absolute;
    bottom: 60px;
    width: 100%;
}

.banner-progress-bar {
    width: 300px;
    height: 1px;
    background: rgb(100, 148, 178);
    position: relative;
    overflow: hidden;
}

.banner-progress-bar-fill {
    height: 100%;
    background-color: rgb(255, 255, 255);
    width: 0%;
    transition: width 0.4s ease-in-out;
}

.span-p {
    font-family: unisans;
    font-size: 23px;
    font-weight: 500;
    line-height: 25px;
    color: rgb(100, 148, 178);
    padding: 0px 20px;
    transition: color 0.3s;
}

.span-p.active {
    color: rgb(255, 255, 255);
}

.banner_text {
    position: relative;
    z-index: 1;
}

.bnr_slid_left:hover,
.bnr_slid_right:hover {
    opacity: 1;
}

.bnr_slid_left {
    background: linear-gradient(rgb(70, 124, 160), rgb(70, 124, 160)) padding-box padding-box, linear-gradient(to left, rgb(70, 124, 160), rgb(255, 255, 255)) border-box border-box;
}

.bnr_slid_right {
    background: linear-gradient(rgb(70, 124, 160), rgb(70, 124, 160)) padding-box padding-box, linear-gradient(to left, rgb(255, 255, 255), rgb(70, 124, 160)) border-box border-box;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

.bnr_slid_left img {
    transform: rotate(180deg);
}

.bnr_slid_left img,
.bnr_slid_right img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.bnr_slid_left,
.bnr_slid_right {
    width: 50px;
    height: 50px;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    opacity: 0.5;
    transition: 0.3s;
}

.bnr_slider .slick-list {
    overflow: visible;
}

.bnr_slider .slick-slide {
    opacity: 0;
}

.bnr_slider .slick-active {
    opacity: 1;
}

.bnr_social ul li a {
    background-color: #6995b1;
    color: #ffffff;
    font-size: 14px;
    overflow: hidden;
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    position: relative;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.bnr_social ul li a::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: -1;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background-color: #437da1;
    height: 40px;
    width: 40px;
}

.bnr_social ul li a:hover::after {
    background-color: #ffffff;
}

.bnr_social ul li a:hover {
    background-color: #ffffff;
    color: #467ca0;
}

.bnr_social ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}

.bnr_social {
    position: absolute;
    bottom: 60px;
    right: 60px;
}

/* about */
.abt {
    padding: 130px 0px;
}

.abt_rght p {
    margin-bottom: 20px;
}

.abt_txt {
    background-color: rgb(62, 123, 161);
    padding: 40px;
}

.abt_txt h3 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    margin-bottom: 10px;
}

.abt_txt p {
    color: rgb(193, 209, 220);
}

.abt_rght {
    background-color: rgb(255, 255, 255);
    padding: 35px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
    margin-top: -69%;
    margin-right: 10%;
}

.abt_img img {
    margin-bottom: 20px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* about */
.d_block {
    display: block;
}

/* why choose us */
.whu_txt p {
    margin-bottom: 20px;
    width: 95%;
}

.whu_txt ul {
    column-count: 2;
    margin-bottom: 10px;
}

.whu_txt ul li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.whu_txt ul li::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-image: url("../images/check-list.png");
    height: 100%;
    width: 100%;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat !important;
}

.whu_txt .make ul {
    column-count: 2;
    margin-bottom: 10px;
}

.whu_txt .make ul li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.whu_txt .make ul li::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -12px;
    background-image: url("../images/check-list.png");
    height: 100%;
    width: 100%;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat !important;
}

.whu_img {
    background-color: rgb(62, 123, 161);
    padding: 50px;
}

.whu_img img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border: 5px solid rgb(255, 255, 255);
}

.whu_txt_right_padding {
    padding: 30px 0px 30px 30px;
}

.whu_txt_left_padding {
    padding: 30px 30px 30px 0px;
}

/* why choose us */
/* hero sec */
.hero {
    /* background: url("../images/hero-bg.jpg") 0% 0% / cover no-repeat; */
    padding: 107px 0px;
    margin: 0px 3%;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url(../images/hero-before.png);
    height: 63%;
    width: 23%;
    z-index: 2;
    background-size: cover;
    background-repeat: no-repeat !important;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0px;
    background-image: url(../images/hero-after.png);
    height: 60%;
    width: 23%;
    z-index: 2;
    background-size: cover;
    background-repeat: no-repeat !important;
    right: 0;
}

.hero_txt p {
    color: rgb(199, 213, 224);
    margin-bottom: 20px;
}

.hero_txt h2 {
    color: rgb(255, 255, 255);
}

.hero_flx {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* hero sec */
/* service */
.service {
    padding: 65px 0px 120px;
    position: relative;
    z-index: 1;
}

.service::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    background: rgb(62, 123, 161);
    height: 490px;
    width: 100%;
}

.service .container-fluid {
    padding: 0px 0px 0px 5%;
}

.service_haeding p {
    color: rgb(193, 209, 220);
}

.service_haeding h2 {
    color: rgb(255, 255, 255);
}

.ser_main {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    margin-bottom: 50px;
}

.ser_img img {
    width: 100%;
    object-fit: cover;
    height: 250px;
}

.ser_txt h3 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(210, 213, 215);
}

.ser_txt p {
    margin-bottom: 20px;
}

.ser_txt ul li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.ser_txt ul li::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-image: url("../images/check-list.png");
    height: 100%;
    width: 100%;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat !important;
}

.ser_txt {
    padding: 30px 20px;
}

.service_right {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
    width: 22%;
    height: 860px;
}

.service_right img {
    width: 100%;
    height: 106%;
    object-fit: cover;
}

.service_slider .slick-slide {
    opacity: 1;
    margin: 0px 15px 0 0;
}

.service_slider .slick-track {
    margin: 20px 0px;
}

.ser_slid_left img {
    transform: rotate(180deg);
}

.ser_slid_left img,
.ser_slid_right img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.ser_slid_left,
.ser_slid_right {
    width: 50px;
    height: 50px;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    opacity: 0.5;
    transition: 0.3s;
}

.service_slider_btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.ser_slid_left:hover,
.ser_slid_right:hover {
    opacity: 1;
}

.ser_slid_left {
    background: linear-gradient(rgb(70, 124, 160), rgb(70, 124, 160)) padding-box padding-box, linear-gradient(to left, rgb(70, 124, 160), rgb(255, 255, 255)) border-box border-box;
}

.ser_slid_right {
    background: linear-gradient(rgb(70, 124, 160), rgb(70, 124, 160)) padding-box padding-box, linear-gradient(to left, rgb(255, 255, 255), rgb(70, 124, 160)) border-box border-box;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

/* service */
/* testimonial */
.testimonial {
    padding: 120px 0px;
}

.testimonial_haeding {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial_haeding p {
    margin: 0px auto;
    width: 80%;
}

.client {
    padding: 25px 25px 50px;
    background-color: rgb(29, 43, 55);
    width: 70%;
    margin: auto;
    height: 400px;
}

.client_icon {
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: 30px;
    background: rgb(62, 123, 161);
}

.client_txt h4 {
    color: rgb(255, 255, 255);
    font-size: 17px;
    writing-mode: tb;
}

.client_txt h4 span {
    display: block;
    font-size: 11px;
}

.client ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.client_txt {
    border-top: 1px solid rgb(75, 86, 96);
    padding: 50px 20px 20px;
}

.test_main {
    background-color: rgb(70, 124, 160);
    padding: 40px;
    height: 400px;
}

.test_main ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(85, 139, 172);
}

.test_main h4 {
    color: rgb(255, 255, 255);
    font-size: 25px;
    margin-bottom: 30px;
}

.test_main h5 {
    color: rgb(255, 255, 255);
    font-size: 21px;
    margin-bottom: 5px;
}

.test_main h6 {
    color: rgb(255, 255, 255);
    font-size: 12px;
}

.test_main p {
    color: rgb(159, 189, 208);
    margin: 20px 0px;
}

.test_main img {
    height: 115px;
    width: 115px;
    object-fit: cover;
}

.rating i {
    color: rgb(255, 255, 255);
}

.rating span {
    font-size: 18px;
    color: rgb(255, 255, 255);
    font-family: unisans;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 40px;
}

.slider-nav .slick-slide {
    opacity: 0;
}

.slider-nav .slick-active {
    opacity: 1;
}

.slider-for .slick-slide {
    margin: 0px;
}

/* testimonial */
/* blog */
ul.blog-page-box-ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin: 10px 0px;
}

.blog-page-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 55px;
}

.blog-page-box>img {
    width: 100%;
}

.blog-page-box-text {
    padding: 20px 50px 10px 10px;
    width: 88%;
    position: absolute;
    z-index: 1;
    background: rgb(255, 255, 255);
    bottom: 0px;
    left: 0px;
}

.blog-page-box-text p {
    margin-bottom: 0px;
}

ul.blog-page-box-ul li {
    text-transform: uppercase;
    font-size: 11px;
    font-family: unisans;
}

section.blog-sec-page {
    padding: 100px 0px;
}

ul.blog-page-box-ul li i {
    color: rgb(59, 120, 158);
    font-size: 10px;
    padding-right: 7px;
}

.blog-page-box h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.blog-page-box img {
    height: 470px;
    width: 100%;
    object-fit: cover;
}

.blog_slider .slick-slide {
    opacity: 1;
    margin: 0px 15px;
}

.blog_slider .slick-track {
    margin: 20px 0px;
}

.blog_slid_left img {
    transform: rotate(180deg);
}

.blog_slid_left img,
.blog_slid_right img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(97%) sepia(4%) saturate(169%) hue-rotate(169deg) brightness(84%) contrast(98%);
    transition: 0.3s;
}

.blog_slid_left,
.blog_slid_right {
    width: 50px;
    height: 50px;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
}

.blog_slider_btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.blog_slid_left {
    background: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) padding-box padding-box, linear-gradient(to left, rgb(255, 255, 255), rgb(205, 208, 211)) border-box border-box;
    transition: 0.3s;
}

.blog_slid_right {
    background: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) padding-box padding-box, linear-gradient(to left, rgb(205, 208, 211), rgb(255, 255, 255)) border-box border-box;
    transition: 0.3s;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

.blog_slid_left:hover {
    background: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) padding-box padding-box, linear-gradient(to left, rgb(255, 255, 255), rgb(59, 120, 158)) border-box border-box;
}

.blog_slid_right:hover {
    background: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) padding-box padding-box, linear-gradient(to left, rgb(59, 120, 158), rgb(255, 255, 255)) border-box border-box;
}

.blog_slid_left:hover img,
.blog_slid_right:hover img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(91%) saturate(295%) hue-rotate(159deg) brightness(90%) contrast(92%);
}

/* blog */
/* footer */
.footerSec {
    background: rgb(29, 43, 55);
    position: relative;
    overflow: hidden;
    padding: 80px 0px 0px;
}

footer ul.social li a i:hover {
    transform: scale(1.1);
    color: rgb(114, 114, 105);
}

footer ul li a {
    transition: 0.1s;
    font-size: 14px;
    line-height: 23px;
    color: rgb(128, 136, 143);
    font-family: Montserrat;
    font-weight: 400;
}

footer ul li a:hover {
    color: rgb(255, 255, 255);
}

.footerSec .footer-btm .row {
    padding-bottom: 20px;
    padding-top: 20px;
}

.copy-txt p {
    color: rgb(126, 130, 137);
}

.footerSec .footer-btm::before {
    position: absolute;
    content: "";
    width: 124%;
    height: 1px;
    top: 0px;
    right: -148px;
    margin: 0px auto;
    background: rgb(71, 83, 92);
    opacity: 1;
}

.news-letter ul li a {
    gap: 14px;
    line-height: 20px;
    margin: 30px 0px;
}

.news-letter ul li a:hover {
    color: rgb(255, 255, 255);
    transform: translate(3px, 0px);
}

h5.subscribe {
    text-transform: uppercase;
    margin-top: 30px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ft-header {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.footer-about h4.text-light.ft-header {
    text-transform: unset;
}

.ft-header::before {
    position: absolute;
    content: "";
    width: 160px;
    height: 2px;
    bottom: 0px;
    background: rgb(79, 90, 99);
    opacity: 1;
    left: 2px;
}

footer .news-letter {
    position: relative;
    height: 100%;
    padding-bottom: 60px;
}

footer .foot-quick-links {
    position: relative;
    padding-left: 10px;
}

footer ul.social {
    gap: 10px;
    padding-bottom: 50px;
}

h5.ft-header {
    margin-top: 0px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 700;
}

.ft-header {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-about {
    position: relative;
    height: 100%;
}

.footer-about img {
    width: 80%;
}

footer .foot-quick-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-btm {
    position: relative;
}

.footerSec .row {
    position: relative;
    overflow: hidden;
}

.footerSec .footer-btm .row p a {
    color: rgb(114, 114, 105);
}

.footer-about p {
    color: rgb(128, 136, 143);
    width: 70%;
    margin-top: 30px;
}

ul.social li a {
    background-color: rgb(103, 113, 121);
    color: rgb(255, 255, 255);
    font-size: 13px;
    overflow: hidden;
    height: 37px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 3;
    position: relative;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

ul.social li a::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: -1;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background-color: rgb(29, 43, 55);
    height: 35px;
    width: 33px;
}

ul.social li a:hover::after {
    background-color: rgb(59, 120, 158);
}

ul.social li a:hover {
    background-color: rgb(59, 120, 158);
    color: rgb(255, 255, 255);
}

/* footer */
html,
body {
    overflow-x: hidden;
}

/* inner pages */
/* inner banner */
.inr_bnr_bg {
    position: relative;
}

.inr_bnr_bg::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    height: 100%;
    width: 100%;
    background: rgba(62, 123, 161, 0.95);
}

.inr_bnr_bg img {
    height: 550px;
    width: 100%;
    object-fit: cover;
    object-position: 10% 20%;
}

.inrbnr.main_slider::before {
    background-image: url(../images/inr_bnr_before.png);
    height: 60%;
    width: 18%;
}

.inrbnr_txt h1 {
    margin-top: 5%;
    width: unset;
    text-align: center;
}

/* inner banner */
/* service_page */
.service_page {
    padding: 100px 0;
}

/* service_page */
/* faqs */
.faqs_heading p {
    width: 80%;
}

.faqs_heading h2 {
    margin-bottom: 5px;
}

.faqs_heading {
    margin-bottom: 40px;
}

.accordion-button {
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 30px 20px 30px 10px;
    font-size: 15px;
    color: #000000;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

.accordion-button:not(.collapsed) {
    color: #3e7ba1;
    background-color: #4ab1e64a;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url(../images/plus.png);
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus-sign.png);
    transform: rotate(-180deg);
}

.accordion-button:focus {
    z-index: 3;
    border-color: #48ade1;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(72 173 225 / 34%);
}

/* faqs */
/* contact page  */
section.contact_top {
    padding: 100px 0;
}

.contact_top .cont_box {
    background: #1d2b37;
    padding: 70px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.contact_top .cont_box h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid #4f5a63;
    width: 80%;
    padding-bottom: 20px;
    font-family: "Barlow", sans-serif;
}

.contact_top .cont_box a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
}

.contact_top .cont_box a:hover {
    color: #fff;
}

.contact_btm_heading {
    text-align: center;
    margin-bottom: 40px;
}

.contact_btm_heading h2 {
    margin-bottom: 5px;
}

.contact_btm_heading p {
    margin: 0 auto;
    color: #6e6e6e;
    width: 80%;
}

.cont_form input,
.cont_form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #bdbdbd;
    font-size: 11px;
    transition: border-color 0.3s;
    font-family: 'Montserrat';
}

.cont_form input:focus,
.cont_form textarea:focus {
    outline: none;
    border-color: #5b8061;
}

.cont_form textarea {
    min-height: 150px;
    resize: none;
}

.cont_form input::placeholder,
.cont_form textarea::placeholder {
    color: #909091;
    text-transform: uppercase;
    font-weight: 500;
}

section.contact_btm {
    padding-bottom: 100px;
}

/* contact page */
/* Resources Detail */
.resource_detail {
    padding: 100px 0;
}

.rd-page-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 55px;
}

.rd-page-box img {
    height: 570px;
    width: 100%;
    object-fit: cover;
}

.rd-page-box-text {
    padding: 20px 50px 10px 10px;
    width: 88%;
    position: relative;
    z-index: 1;
    background: rgb(255, 255, 255);
    margin-top: -12%;
}

ul.rd-page-box-ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin: 10px 0px;
}

ul.rd-page-box-ul li {
    text-transform: uppercase;
    font-size: 11px;
    font-family: unisans;
}

ul.rd-page-box-ul li i {
    color: rgb(59, 120, 158);
    font-size: 10px;
    padding-right: 7px;
}

.rd-page-box h3 {
    font-size: 35px;
    margin-bottom: 10px;
}

.rd-page-box p {
    margin-bottom: 20px;
}

/* Resources Detail */
/* services Detail */
.serv_detail {
    padding: 100px 0px;
}

.serv_detail_txt p {
    margin-bottom: 20px;
}

.serv_detail_txt {
    background-color: rgb(62, 123, 161);
    padding: 40px;
}

.serv_detail_txt {
    background-color: rgb(255, 255, 255);
    padding: 35px;
    box-shadow: rgb(0 0 0 / 7%) 0px 8px 20px;
    margin-top: -69%;
    margin-right: 10%;
}

.serv_detail_img img {
    margin-bottom: 20px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.serv_detail_txt h2 {
    font-size: 56px;
    margin-bottom: 10px;
}

.sd_ul ul {
    column-count: 3;
    /* column-count: 2; */
}

.sd_ul ul li {
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

.sd_ul ul li::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-image: url(../images/check-list.png);
    height: 100%;
    width: 100%;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat !important;
}

.sd_ul2 ul {
    column-count: 2;
}

.sd_ul2 ul li {
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

.sd_ul2 ul li::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-image: url(../images/check-list.png);
    height: 100%;
    width: 100%;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat !important;
}

.sd_p p {
    margin-bottom: 20px;
}

.sd_p {
    margin-top: 30px;
}

/* services Detail */
/* Book Consultation*/
.booking {
    padding: 100px 0;
}

.booking_form input,
.booking_form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #bdbdbd;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: 'Montserrat';
    font-weight: 400;
    border-radius: 5px;
}

.booking_form input::placeholder,
.booking_form textarea::placeholder {
    text-transform: uppercase;
    color: #9f9fa0
}

.booking_form select {
    border: 1px solid #bdbdbd;
    font-family: 'Montserrat';
    width: 100%;
    padding: 15px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #9f9fa0 !important;
    background-image: url(../images/selectarrow.png);
    background-repeat: no-repeat;
    background-position: 98%;
    background-size: 10px;
    border-radius: 5px;
}

.booking_form textarea {
    min-height: 150px;
    resize: none;
}

.select_shape {
    position: relative;
}

.select_shape::before {
    content: '';
    width: 10px;
    height: 73%;
    position: absolute;
    background-image: url(../images/select-shape.png);
    top: 0px;
    background-size: contain;
    right: 70px;
    background-repeat: no-repeat;
}

/* Book Consultation */
/* inner pages */
.abt-text-2 ol {
    list-style-type: decimal;
    margin-left: 25px;
}

.abt-text-2 ul {
    list-style-type: disc;
    margin-left: 25px;
}

.abt-text-2 ol li,
.abt-text-2 ul li {
    margin-top: 5px;
    margin-bottom: 5px;
}

.abt-text-2 h1,
.abt-text-2 h2,
.abt-text-2 h3,
.abt-text-2 h4,
.abt-text-2 h5,
.abt-text-2 h6 {
    /* margin-top: 5px; */
    margin-bottom: 5px;
}

.abt-text-2 p {
    margin-top: 5px;
    margin-bottom: 5px;
}

.fadeInLeft {
    float: left !important;
}

i.fa-regular.fa-clock.clock-style {
    font-size: 19px;
}

.ser_txt {
    height: 320px;
}

.ser_txt div p {
    margin-bottom: 10px;
}

.ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-bottom: 10px;
}

.header-logo.wow.fadeInLeft {
    /* width: 150px;
height: 70px; */
    width: 98px;
    height: 100px;
}

.footer-about a img {
    /* width: 80% !important;
height: 65px; */
    height: 159px;
    width: 100%;
}

/* New updated code Testimonial silder */
.rd-page-box-text ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 12px;
    margin-top: 7px;
}

.rd-page-box-text p {
    margin-top: 7px;
}

.dmca-badge {
    text-align: center;
}

.dmca-badge img {
    transition: 0.3s;
}

.dmca-badge img:hover {
    transform: scale(1.05);
}

body .uwy.userway_p1 .userway_buttons_wrapper {
    top: 89.8% !important;
    right: auto;
    bottom: auto;
    left: calc(5.6vw - 21px) !important;
    transform: translate(-100%);
}

body .uwy .uit,
body .uwy .uwif {
    position: fixed;
    top: 0;
    left: -75% !important;
    bottom: 0;
    right: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    visibility: visible !important;
    opacity: 0 !important;
    background: 0 0 !important;
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: inherit;
    display: none;
}

.uwaw-initial .uwaw-btn_reset-widget {
    background: #3e7ba1 !important;
    border-color: #3e7ba1 !important;
}

.userway-access-button {
    bottom: 15px !important;
    right: auto !important;
    left: 15px !important;
}

/* Override UserWay widget position to top right */
.userway-widget {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 99999;
    /* keep it on top */
}

/* .footer-btm {
padding: 20px 0;
border-top: 1px solid #eee;
}
.dmca-badge img {
max-width: 140px;
transition: 0.3s ease;
}
.dmca-badge img:hover {
transform: scale(1.05);
} */
#mic-init-access-tool .mic-access-tool-general-button {
    position: fixed !important;
    z-index: 99999 !important;
    display: block !important;
    bottom: 7px;
    left: 7px;
    background-color: #3e7ba1 !important;
    cursor: pointer;
    border: solid 2px #fff;
    border-radius: 4px 4px 20px 4px;
    color: #fff;
    padding: 0;
}

#mic-init-access-tool .mic-access-tool-general-button:focus,
#mic-init-access-tool .mic-access-tool-general-button:hover {
    color: #467ca0 !important;
    border-color: #467ca0 !important;
    background-color: #0000008f;
}

button#mic-access-tool-general-button:hover div span {
    color: #fff !important;
}

#mic-init-access-tool .mic-access-tool-box {
    color: #333;
    overflow-y: auto;
    -webkit-box-shadow: 1px 0 4px 0 #777;
    box-shadow: 1px 0 4px 0 #777;
    position: fixed;
    height: 100vh;
    width: 320px;
    top: 0;
    left: 0;
    background-color: #3e7ba1 !important;
    z-index: 9999999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .4s !important;
    transition: opacity .4s !important;
}

#mic-init-access-tool .mic-access-tool-box .mic-access-tool-box-header button:focus,
#mic-init-access-tool .mic-access-tool-box .mic-access-tool-box-header button {
    color: #3e7ba1 !important;
    background-color: #0000008f;
}

#mic-init-access-tool .mic-access-tool-box .mic-access-tool-box-header button:focus,
#mic-init-access-tool .mic-access-tool-box .mic-access-tool-box-header button:hover {
    color: #fff !important;
    background-color: #0000008f;
}

#mic-init-access-tool .mic-access-tool-box>div:not(.mic-access-tool-box-header):not(.mic-toolbox-all-credits) .mic-subtitle-span {
    font-size: 20px !important;
    display: block;
    padding: 12px 0;
    text-align: center;
    color: #3e7ba1 !important;
    font-variant: small-caps;
}

#mic-init-access-tool a:focus,
#mic-init-access-tool a:hover {
    color: #fff !important;
    border-color: #3e7ba1 !important;
    background-color: #0000008f;
}

#mic-init-access-tool .mic-access-tool-box .link-access-page button:focus,
#mic-init-access-tool .mic-access-tool-box .link-access-page button:hover,
#mic-init-access-tool .mic-access-tool-box .mic-disable-buttons button:focus,
#mic-init-access-tool .mic-access-tool-box .mic-disable-buttons button:hover {
    color: #ef7c20;
    border-color: #3e7ba1 !important;
    background-color: #0000008f !important;
    cursor: pointer;
}

button#mic-toolbox-disable-buttons-reset-all:hover span {
    color: #fff !important;
}

button#mic-toolbox-cursor-big-white:hover span,
button#mic-toolbox-cursor-big-black:hover span,
button#mic-toolbox-zoom-up:hover span,
button#mic-toolbox-content-links:hover span,
button#mic-toolbox-content-headers:hover span,
button#mic-toolbox-content-images:hover span,
button#mic-toolbox-fonts-up:hover span,
button#mic-toolbox-fonts-down:hover span,
button#mic-toolbox-fonts-simple:hover span,
button#mic-toolbox-contrast-monochrome:hover span,
button#mic-toolbox-contrast-soft:hover span,
button#mic-toolbox-contrast-hard:hover span,
button#mic-toolbox-disable-buttons-keyboard:hover span,
button#mic-toolbox-disable-buttons-animations:hover span {
    color: #fff !important;
}

#mic-init-access-tool .mic-access-tool-box .mic-buttons-block button:focus,
#mic-init-access-tool .mic-access-tool-box .mic-buttons-block button:hover {
    color: #fff !important;
    border-color: #3e7ba1 !important;
    background-color: #0000008f !important;
}

.footer-btm .d-flex {
    display: flex;
    align-items: center;
    position: relative;
}

#copyrightText {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.footer-btm a {
    margin-left: auto;
}

.footer-btm img {
    margin-left: auto;
}

.banner_img img {
    width: 70%;
    height: 100%;
    object-fit: cover;
}