@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

img {
    max-width: 100%;
}

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: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

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

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

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

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

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

a {
    text-decoration: none;
    color: #000;
    white-space: initial;
    font-family: "Montserrat", sans-serif;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

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

p {
    font-weight: 500;
    line-height: 25px;
    margin: 0;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-family: "Young Serif", serif;
    font-size: 90px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    margin-bottom: 16px;
    padding-bottom: 4px;
    width: max-content;
}

h2 {
    font-family: "Young Serif", serif;
    font-size: 55px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-family: "Young Serif", serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

h4 {
    font-family: "Young Serif", serif;
    font-size: 22px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: "Young Serif", serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: "Young Serif", serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
    background-position: right 0.7rem top 50%;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/*---------------------------------------------------- Tabs Section Start ----------------------------------------------------------- */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/*---------------------------------------------------- Tabs Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Carousel Section Start ----------------------------------------------------------- */

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

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    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: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    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: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

/*---------------------------------------------------- Carousel Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Button Section Start ----------------------------------------------------------- */

.theme_btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #e952cf;
    position: relative;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #19add2;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}


.site-btn span {
    padding: 15px 25px;
    border: unset;
    border-radius: 35px;
    color: #ffffff;
    z-index: 1;
    position: relative;
    font-size: 14px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    border: 1px solid #5d6a4f;
    text-transform: uppercase;
}

.site-btn {
    display: flex;
    align-items: center;
}

.site-btn-arrow {
    background: #5d6a4f;
    width: 50px;
    height: 48px;
    border: 1px solid #5d6a4f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.7s ease all;
}

.site-btn span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #5d6a4f;
}

.site-btn:hover .site-btn-arrow {
    transform: rotate(29deg);
}

/*---------------------------------------------------- Button Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Header Section Start ----------------------------------------------------------- */

.menuSec {
    padding: 13px 0;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    background: #fff;
    border-radius: 30px;
    padding: 8px 0;
    background-color: #ffffff29;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    transition: 0.5s all;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 31px;
    font-size: 14px;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 600;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    background: #fff;
    color: #000;
}

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

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

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

.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: #ffffff;
    color: #000000 !important;
}

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

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

.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: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

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

.slick-slide {
    opacity: 1;
}

/*---------------------------------------------------- Header Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Banner Section Start ----------------------------------------------------------- */

.banner-sec {
    margin-bottom: 100px;
    position: relative;
    background-image: url(../images/banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #242031;
    align-content: end;
}

.scrol-bnr:hover {
    color: #5d6a4f;
}

.baner-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    margin-top: 20px;
}

.banner-text h1 span {
    font-size: 30px;
    display: block;
}

.banner-text p {
    color: #fff;
    margin-bottom: 20px;
    width: 76%;
    opacity: 50%;
}

.banner-points ul li {
    margin-bottom: 12px;
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 13px 22px;
    width: max-content;
    background-color: #ffffff00;
    backdrop-filter: blur(10px);
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.5s all;
}

.banner-sec.iner {
    align-content: center;
    height: 550px;
}

.banner-sec.iner:before {
    background: unset;
}

.banner-sec.iner .row {
    padding: unset;
}

.banner-text.iner h1 {
    border: unset;
    font-size: 80px;
    padding-top: 30px;
    margin-bottom: 0;
}


.banner-points ul li:hover {
    background-color: #211f22;
    border-color: #ccc;
}

.banner-points ul {
    width: 23%;
    column-count: 2;
}

.banner-points {
    display: flex;
    justify-content: end;
}

.header-buttons a {
    justify-content: end;
}

.review-bnr {
    display: flex;
    align-items: center;
    border-right: 1px solid #fff;
    padding-right: 23px;
    margin-right: 22px;
    color: #fff;
    gap: 10px;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 500;
}

.baner-review {
    display: flex;
    align-items: center;
}

.bnr-mntl-last {
    display: flex;
    align-items: center;
    background: #222421;
    padding: 6px 20px 7px 7px;
    border-radius: 50px;
    gap: 11px;
}

.review-bnr i {
    color: #ffc107;
}

.bnr-mntl-last p {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.scrol-bnr {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}

.banner-sec .row {
    padding-top: 14%;
}

.banner-sec:before {
    content: '';
    position: absolute;
    bottom: 13%;
    left: 0;
    background: #ffffff66;
    width: 100%;
    height: 1px;
}


/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

a.top-navigator {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 61px;
    font-size: 25px;
    color: white;
    background: #179ffc;
}

a.top-navigator:hover {
    background: #000;
}

a.top-navigator i {
    transition: 0.3s all ease-in-out;
}

footer {
    padding: 55px 0 0 0;
    width: 100%;
    background: #070707;
}

.foot-bottom {
    padding: 15px 0px;
    border-top: 1px solid #343434;
    margin-top: 50px;
}

.footer-logo-txt-socail {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.footer-logo-txt-socail p {
    font-size: 14px;
    width: 80%;
    margin: 10px 0;
}

ul.quick-links {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 8px;
}

ul.quick-links-services {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 22px;
}

ul.quick-links-services li {
    color: #fff;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
}

footer .container {
    padding-bottom: 40px;
}

.foot-bottom .container {
    padding: unset;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: transparent;
    border: 1px solid white;
    border-radius: 50%;
    font-size: 24px;
    margin-right: 10px;
    box-shadow: 0 5px 15px 0px rgb(0 0 0 / 60%);
    transform: translatey(0px);
    transition: 0.3s all ease-in-out;
    overflow: hidden;
}

.social-links a:hover {
    background-color: var(--primary);
}

.quick-links a {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.quick-links a:hover {
    color: #5d6a4f;
    text-decoration: underline;
}

.foot-number {
    font-size: 30px;
    font-family: 'Montserrat';
    color: #fefefe;
    display: block;
    margin-bottom: 20px;
}

.foot-number:hover {
    color: #0d68ae;
}

a.req-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 72px;
    border: 1px solid white;
    padding: 0 20px;
    font-size: 14px;
    font-family: 'Roboto';
    color: white;
    transition: 0.3s all ease-in-out;
    margin-top: 20px;
}

a.req-btn:hover {
    background: var(--primary);
}

.foot-timing li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #3c3c3c;
}

.foot-timing li span {
    font-size: 14px;
    color: #fff;
}

span.text-darkbrown.green {
    color: #8ccffd;
}

.foot-bottom p {
    text-align: center;
}

section.news-letter ul {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 0px;
}

section.news-letter p {
    color: #fff;
    width: 77%;
}

.new-box button {
    border: transparent;
    width: 32%;
    color: #fff;
    padding: 14px 0;
    background: #5d6a4f;
    font-family: 'Montserrat';
    text-transform: uppercase;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
}

.news-letter {
    background: #070707;
    padding: 60px 20px 60px;
    border-bottom: 1px solid #ffffff30;
}

.news-letter .new-box input::placeholder {
    text-transform: uppercase;
    font-size: 12px;
    font-family: 'Montserrat';
}

.news-letter h2 {
    color: #fff;
    font-weight: 500;
    margin: 0;
    font-size: 22px;
    line-height: 25px;
    letter-spacing: 1px;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.news-letter .new-box {
    position: relative;
    display: flex;
    align-items: center;
    height: 65px;
    gap: 12px;
}

.news-letter .new-box input {
    background: #f6f6f6;
    border: 0;
    padding: 15px 22px;
    width: 100%;
    border-radius: 30px;
    color: #000;
}

.news-letter .new-box .theme-button {
    border: 0;
}

.news-letter .new-box .theme-button:hover {
    box-shadow: none;
}

.social-links a:hover {
    color: #fff;
    background: #179ffc;
}

section.news-letter .row {
    align-items: center;
}

footer h6 {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

footer p {
    font-size: 14px;
    color: #fff;
}

.add-cont ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
}

.add-cont ul li i {
    font-size: 15px;
    color: #fff;
}

.add-cont ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.add-cont ul li p {
    font-size: 14px;
    width: 80%;
}

ul.social {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.social li a i {
    font-size: 15px;
    color: #fff;
    background-color: transparent;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    opacity: 50%;
}

ul.social li a i:hover {
    opacity: 100%;
}

.container-fluid {
    padding: 0 4%;
}

footer h4 {
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Resources Section Start ------------------------------------------------------------- */

.resources-sec {
    padding: 100px 0;
    background-color: #242031;
    background-image: url(../images/blog-back.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.resource-head {
    text-align: center;
    margin-bottom: 25px;
}

.resource-head h2 {
    margin-top: 10px;
    color: #fff;
}

.resource-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 0.5s all;
}

.resource-image {
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.resource-date {
    position: absolute;
    top: 30px;
    left: 30px;
    font-family: 'Montserrat';
    font-size: 18px;
    color: #000;
    background: #fff;
    width: 65px;
    text-align: center;
    padding-bottom: 7px;
    font-weight: 500;
    border-radius: 7px;
    overflow: hidden;
}

.resource-date span {
    font-size: 14px;
    font-weight: 500;
    display: block;
    padding: 10px;
    background: #5d6a4f;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.resource-text {
    padding: 37px 30px 35px 37px;
    background: #fff;
    width: 86%;
    margin: -80px auto 0;
    position: relative;
    z-index: 3;
    border-radius: 15px;
    transition: 0.5s all;
}

.resource-text ul {
    display: flex;
    align-items: center;
    gap: 33px;
    margin-bottom: 18px;
}

.resource-text p {
    margin: 10px 0 18px;
    color: #000;
    opacity: 50%;
    font-weight: 600;
}

.resource-text h3 {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 35px;
}

.site-hd-ptext {
    font-family: "Young Serif", serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    border: 1px solid #c5c5c5;
    border-radius: 30px;
    width: max-content;
    padding: 8px 17px 6px 30px;
    position: relative;
}

.site-hd-ptext:before {
    content: '';
    position: absolute;
    top: 16px;
    left: 14px;
    background: #5d6a4f;
    width: 8px;
    height: 8px;
    border-radius: 20px;
}

.resource-head .site-hd-ptext {
    margin: 0 auto;
    background: #242031e8;
    border: 1px solid #63606b;
    color: #fff;
}

.resource-text ul li {
    border-right: 1px solid #5d6a4f;
    padding-right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}

.resource-text ul li:Last-child {
    border: unset;
}

.resource-text ul li span {
    font-size: 14px;
}

.resource-main:hover .resource-text {
    background: #5d6a4f;
}

.resource-main:hover .resource-text * {
    color: #fff;
}

.resource-main:hover .resource-text img {
    filter: brightness(29.5);
}

.resource-main:hover .resource-text .site-btn-arrow {
    border-color: #fff;
}

.resource-main:hover .resource-text .site-btn span {
    border-color: #fff;
}

.resource-main:hover .resource-image img {
    transform: scale(1.5);
    filter: brightness(0.5);
}

.resources-sec.inner {
    padding: unset;
    margin-bottom: 100px;
    background: unset;
}

.resources-sec.inner .resource-text {
    box-shadow: 0 0 20px 5px #0000001c;
}

.resource-image.detl img {
    height: 620px;
}

/*---------------------------------------------------- Resources Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Get Involved Section Start ------------------------------------------------------------- */

.get-involved-sec {
    margin-bottom: 100px;
}

.get-involved-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.get-involved-image {
    width: 97%;
}

.get-involved-text p {
    margin-bottom: 10px;
    color: #000;
    opacity: 60%;
}

.get-involved-text ul li {
    border-bottom: 1px solid #ccc;
    padding-bottom: 14px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #000;
    opacity: 60%;
}

.get-involved-text ul li p {
    opacity: 90%;
}

.get-involved-text h2 {
    margin: 18px 0 10px;
    text-transform: uppercase;
}

.get-involved-text ul {
    margin-bottom: 32px;
}

/*---------------------------------------------------- Get Involved Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Service Section Start ------------------------------------------------------------- */

.service-image {
    border-radius: 13px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.5s all;
}

.service-text {
    padding: 30px 0 0;
}

.service-head-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.service-head-main p {
    width: 80%;
    opacity: 60%;
}

.service-sec.inner {
    padding: unset;
    background-color: unset;
    background-image: unset;
}

.service-main.iner * {
    color: #000;
}

.service-main.iner .site-btn span {
    color: #fff !important;
}

.service-main.iner {
    margin-bottom: 50px;
}

.serv-head {
    width: 100%;
}

.serv-head h2 {
    margin-top: 13px;
    text-transform: uppercase;
}

.service-sec * {
    color: #fff;
}

.service-sec {
    padding: 100px 0;
    background: #242031;
    background-image: url(../images/serv-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    margin-bottom: 100px;
}

.service-text p {
    opacity: 60%;
    margin: 11px 0 20px;
}

.service-text h4 {
    font-size: 24px;
    text-transform: uppercase;
}

.service-text .site-btn img {
    width: auto;
}

.service-main:hover .service-image img {
    transform: scale(1.5);
    filter: brightness(0.5);
}

/* SERVICE DETAIL CSS START  */

.serv-detail-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 30px;
    object-position: 0 -100px;
}

.service-detail-sec {
    margin-bottom: 100px;
}

.serv-detail-text p {
    margin-bottom: 30px;
    opacity: 60%;
    color: #000;
}

.serv-detail-text h2 {
    margin-bottom: 13px;
}

/*---------------------------------------------------- Service Section End ------------------------------------------------------------- */

/*---------------------------------------------------- How Work Section Start ------------------------------------------------------------- */

.how-work-sec {
    margin-bottom: 100px;
}

.howwork-main ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 22px 0 27px;
}

.howwork-main ul li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 42px 11px 14px;
    background: #ededed;
    border-radius: 10px;
    transition: 0.5s all;
}

.howwork-head {
    display: flex;
    align-items: center;
}

.howwork-head div {
    width: 100%;
}

.howwork-head .site-hd-ptext {
    width: max-content;
    margin-bottom: 10px;
}

.work-icons {
    width: 73px !important;
    height: 62px;
    background: #5d6a4f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    transition: 0.5s all;
}

.work-icons img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(317deg) brightness(106%) contrast(101%);
}

.howwork-main ul li h4 {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.3;
}

.howwork-head p {
    color: #000;
    opacity: 50%;
    width: 84%;
    font-weight: 600;
}

.howwork-main ul li:hover {
    background: #5d6a4f;
}

.howwork-main ul li:hover .work-icons {
    background: #fff;
}

.howwork-main ul li:hover h4 {
    color: #fff;
}

.howwork-main ul li:hover .work-icons img {
    filter: brightness(0);
}

.how-work-image img {
    width: 100%;
    height: 555px;
    object-fit: cover;
    object-position: 0px -70px;
    border-radius: 10px;
}

.how-work-image {
    margin-bottom: 30px;
}

.howwork-counter-main {
    text-align: center;
    background: #ededed;
    padding: 40px 30px;
    border-radius: 10px;
    transition: 0.5s all;
    margin-right: 15px;
}

.counter-work {
    font-family: 'Young Serif';
    font-size: 40px;
    color: #000;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.howwork-counter-main h5 {
    color: #5d6a4f;
    text-transform: uppercase;
}

.howwork-counter-main:hover h5 {
    color: #fff;
}

.howwork-counter-main:hover {
    background: #5d6a4f;
}

.howwork-counter-main:hover .counter-work {
    color: #fff;
}

.how-work-sec .col:Last-child .howwork-counter-main {
    margin-right: 0;
    margin-left: 10px;
}

/*---------------------------------------------------- How Work Section End ------------------------------------------------------------- */

/*---------------------------------------------------- About Us Section Start ------------------------------------------------------------- */

.about-sec {
    margin-bottom: 100px;
}

.about-image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 18px;
}

.about-image {
    margin-top: 50px;
}

.about-image-side p {
    width: 90%;
    margin: 0 0 0 auto;
    color: #000;
    opacity: 60%;
    font-weight: 600;
}

.accordion-body {
    background: #ededed;
}

.accordion-item {
    border: unset;
    margin-bottom: 20px;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: #5d6a4f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

button.accordion-button {
    transition: 0.5s all;
    display: flex;
    align-items: center;
    gap: 19px;
    padding: 12px 20px;
    border-radius: 10px;
    background-color: #ededed;
    overflow: hidden;
    font-family: 'Young Serif';
    font-size: 20px;
    text-transform: uppercase;
}

.accordion-button:not(.collapsed) {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    box-shadow: unset;
    color: #000;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #ededed;
}

.about-text h2 {
    margin-top: 11px;
}

button.accordion-button:hover {
    background: #242031;
    color: #fff;
}

.accordion-body p {
    background: #fff;
    padding: 20px 20px 18px;
    border-radius: 10px;
}

.accordion-button:not(.collapsed)::after {
    content: '\2b';
    background-image: unset;
    font-size: 30px;
    line-height: 1;
}

.accordion-button::after {
    content: '\f068';
    background-image: unset;
    font-family: 'FontAwesome';
    font-size: 25px;
}

/*---------------------------------------------------- About Us Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Why Choose Section End ------------------------------------------------------------- */

.why-choos-sec {
    background-image: url(../images/whychose-back.png);
    height: 100%;
    width: 100%;
    padding: 100px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-color: #242031;
    margin-bottom: 100px;
}

.why-choos-sec.iner {
    margin: unset;
}

.why-choos-boxone h2 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 44px;
}

.why-choos-boxone p {
    color: #fff;
    opacity: 50%;
    margin-bottom: 30px;
}

.why-choos-boxone ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-family: 'Young Serif';
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-choos-boxone ul {
    margin-bottom: 90px;
}

.why-choos-boxtwo img {
    width: 100%;
    height: 560px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}

.why-boxthree-imgone {
    height: 60px;
    width: 60px;
    background: #4b5540;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 22px;
}

.why-choos-boxthree h3 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.why-boxthree-imgtwo img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.worksec-ul {
    position: absolute;
    bottom: 140px;
    right: 83px;
}

.worksec-ul ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
}

.worksec-ul ul li {
    padding: 14px 15px;
    background: #ffffffab;
    border-radius: 50px;
    font-family: 'Young Serif';
    text-transform: uppercase;
    font-size: 14px;
    color: #000;
}

.why-choos-boxone .site-hd-ptext {
    color: #fff;
    margin-bottom: 14px;
}

/*---------------------------------------------------- About Us Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Contact Section Start ------------------------------------------------------------- */

.contact-image img {
    width: 100%;
    height: 551px;
    object-fit: cover;
    border-radius: 12px;
}

.contact-sec {
    margin-bottom: 100px;
}

.contact-image {
    margin-right: 20px;
}

.contact-text input, .contact-text textarea {
    width: 100%;
    margin-bottom: 21px;
    height: 60px;
    border-radius: 30px;
    border: 1px solid #b3b3b3;
    padding: 10px 22px;
    color: #000;
}

.contact-text textarea {
    height: 180px;
    align-content: end;
    resize: none;
}

.contact-text h2 span {
    color: #095360;
}

.contact-text h2 {
    position: relative;
    margin-bottom: 10px;
}

.contact-text h2:before {
    left: 0;
}

.contact-text p {
    opacity: 70%;
    margin-bottom: 20px;
    color: #000;
}

.contact-text textarea::placeholder, .contact-text input::placeholder {
    color: #000;
    font-family: "Montserrat", serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-text button.site-btn {
    border: unset;
    background: unset;
    padding: unset;
}

.get-involved-text.train ul {
    margin-bottom: 20px;
}

/*---------------------------------------------------- Contact Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Help Section Start ------------------------------------------------------------- */

section.get-started-sec {
    margin-bottom: 100px;
}

.getstarted-head {
    text-align: center;
    margin-bottom: 33px;
}

.getstarted-head h2 {
    margin-bottom: 9px;
}

.getstarted-head p {
    opacity: 70%;
    width: 85%;
    margin: 0 auto;
}

section.get-started-sec input, section.get-started-sec select {
    width: 100%;
    height: 60px;
    border: 1px solid #939292;
    margin-bottom: 20px;
    padding: 0 25px;
    color: #000;
    border-radius: 30px;
}

section.get-started-sec textarea {
    width: 100%;
    height: 150px;
    align-content: end;
    padding: 12px 25px;
    color: #000;
    resize: none;
    border: 1px solid #939292;
    margin-bottom: 30px;
    border-radius: 20px;
}

.lst-btn-get button.site-btn {
    border: unset;
    padding: unset;
    background: unset;
    margin: 0 auto;
}

/*---------------------------------------------------- Help Section End ------------------------------------------------------------- */