:root {
    --color-1: #2ab673;
    --color-1-op: rgba(42, 182, 115, 0.5);
    --color-2: #4d4d4f;
}

/*-------------------------------------------------------------------------------
  1. Global
-------------------------------------------------------------------------------*/

/* 1.1 General */

@font-face {
    font-family: Nexalight;
    src: url(../fonts/NexaDemo-Light.ttf);
}

@font-face {
    font-family: Nexabold;
    src: url(../fonts/NexaDemo-Bold.ttf);
}

@font-face {
    font-family: brushscript;
    src: url(../fonts/BrushScriptOpti-Regular.ttf);
}

@font-face {
    font-family: "Font Awesome 6 Free";
    src: url(../fonts/fontawesome-webfont.woff2);
}

html {
    -webkit-font-smoothing: antialiased;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Red Hat Display", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", serif;
}

h1.title,
h3.title {
    font-family: "Oswald", serif;
}

strong {
    font-weight: 800;
}

p {
    margin: 10px 0 0;
}

ul.list {
    padding: 0;
    margin: 0;
}

.list li {
    list-style: none;
}

a {
    color: var(--color-1);
    -webkit-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #999;
    outline: none;
}

a:focus {
    text-decoration: none;
}

.bg-clr-1 {
    background-color: var(--color-1);
    color: #fff;
}

.bg-clr-2 {
    background-color: var(--color-1-op);
    color: #4d4d4f;
}

.bg-clr-3 {
    background-color: var(--color-3);
}

h1.sec-title {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.button {
    display: inline-block;
    text-transform: capitalize;
    text-align: center;
    background-color: var(--color-2);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 20px 40px;
    border-radius: 5rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.button:before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    right: 3px;
    bottom: 3px;
    background-color: var(--color-1);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.2);
    transition: all ease 0.4s;
}

.button:hover {
    color: #fff !important;
}

.button:hover::before {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.button.clr {
    background-color: #ffffff;
    color: var(--color-1) !important;
}

.button.clr:hover {
    color: #fff !important;
}

.button.clr:before {
    background-color: var(--color-1);
}

.button.btn-sm {
    padding: 15px 30px;
    font-size: 0.7em;
}

.btn-slide {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5em;
    padding: 20px 40px;
}

/*-------------------------------------------------------------------------------
  Header
-------------------------------------------------------------------------------*/

header {
    background: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
}

header .logo {
    max-height: 60px;
}

.top-nav {
    margin: 0;
}

.top-nav li {
    display: inline-block;
    padding-right: 15px;
}

.top-nav li a {
    font-size: 15px;
    font-weight: 100;
    color: #000;
}

/*Nav*/
.navbar {
    height: 90px;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.fixed-top .navbar {
    height: 70px;
    background-color: var(--color-1-op);
}

.fixed-top .logo {
    height: 40px;
    overflow: hidden;
}

.navbar-nav li {
    padding: 5px;
    margin-left: 10px;
    margin-right: 10px;
}

.fixed-top .navbar-nav li a {
    color: #000;
}

.navbar-nav li a {
    color: var(--color-1);
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    font-family: "Oswald", serif;
    font-size: 18px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.navbar-nav li a:hover {
    /* color: #8a6441; */
    color: var(--color-1);
    text-decoration: none;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
}

.dropdown-toggle::after {
    margin-left: 0.5em;
}

.navbar-nav li {
    margin: 0px;
}

.navbar-nav .dropdown-menu {
    background-color: var(--color-2);
    border-radius: 0px;
    box-shadow: none;
    border: 0px;
}

.navbar-toggler {
    background: #fff;
    border-radius: 0px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.fixed-top.navbar {
    height: 50px;
}

header {
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    animation: 0.5s slideout;
    animation-timing-function: ease-in-out;
}

@keyframes slideout {
    0% {
        top: -110px;
    }

    100% {
        top: 0px;
    }
}

header.fixed-top {
    background: var(--color-3);
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    animation-name: slidein;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
}

@keyframes slidein {
    0% {
        top: -110px;
    }

    100% {
        top: 0%;
    }
}

.overlay-slider {
    background: rgb(0, 0, 0);
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
}

.numbered .tp-bullet {
    position: relative;
    width: auto;
    height: 15px;
    background: transparent;
    cursor: pointer;
    color: #fff;
    transition: 3s height;
}

.numbered .tp-bullet-number {
    text-align: left;
    white-space: nowrap;
}

.numbered .tp-bullet-number,
.numbered .tp-bullet .tp-count {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.numbered .tp-bullet.selected:nth-child(4) {
    padding-bottom: 4px;
    border-bottom: 2px solid;
}

.numbered,
.tp-tabs,
.tp-thumbs {
    top: 47% !important;
}

.numbered .tp-bullet .tp-count {
    position: relative;
    font-size: 14px;
    bottom: 5px;
}

.numbered .tp-count:before {
    content: "";
    height: 3px;
    width: 40px;
    transform: scaleX(0);
    display: block;
    background: var(--color-1);
    top: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.numbered .tp-count:before,
.revicon {
    position: absolute;
}

.numbered .tp-bullet.selected .tp-count {
    color: var(--color-1);
}

.white .numbered .tp-bullet .tp-count,
.white .numbered .tp-count:before,
.white .numbered .tp-bullet.selected .tp-count {
    color: #fff;
}

.white .numbered .tp-count:before {
    content: "";
    background: #fff;
}

.numbered .tp-bullet.selected .tp-count:before {
    transform: scaleX(1);
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

/*-------------------------------------------------------------------------------
  About Section
-------------------------------------------------------------------------------*/

.about-cercle {
    padding: 150px 0;
    position: relative;
}

.about-cercle:before {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    height: 100%;
    width: 300px;
    z-index: -1;
    content: "";
    background: -webkit-linear-gradient(115deg, #4d4d4f, #4d4d4f);
    background: linear-gradient(-25deg, #4d4d4f, #4d4d4f);
    background: -webkit-linear-gradient(-25deg, #4d4d4f, #4d4d4f);
    background: -ms-linear-gradient(-25deg, #4d4d4f 0, #4d4d4f 100%);
}

.about-img {
    overflow: hidden;
    border-radius: 50%;
    width: 470px;
    height: 470px;
    box-shadow: 0 10px 40px 0 rgba(50, 50, 50, 0.3);
    border: 3px solid #fff;
    margin: auto;
    z-index: 11;
}

.about-img img {
    border-radius: 50px;
    -webkit-transform: scale(1);
    transform: scale(1);
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img:hover img {
    transform: scale(1.1);
}

.about-box ul {
    padding: 0;
    margin: 0;
}

.about-box ul li {
    display: inline-flex;
    align-items: center;
    padding: 20px;
    background-color: var(--color-1-op);
    margin-bottom: 10px;
}

.about-box .box-icon i {
    font-size: 2em;
    line-height: 0;
    display: block;
    background: var(--color-1);
    color: #fff;
    padding: 24px;
    border-radius: 60px;
    transition: all 0.3s ease-in-out 0.1s;
}

.about-box ul li:hover i {
    transform: rotateY(360deg);
    transition: all 0.3s ease-in-out 0.1s;
    background: #fff;
    color: var(--color-1);
}

.about-box .box-content {
    padding-left: 20px;
}

/*-------------------------------------------------------------------------------
  CTA Section
-------------------------------------------------------------------------------*/

.cta-support {
    background: rgba(0, 0, 0, 0.7) url(../img/parallax.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: color;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.5);
}

.contact-form button {
    border: none;
}

.ftr-logo img {
    max-width: 150px;
}

.strategies-item,
.strategies-item-2 {
    padding: 40px 20px;
    text-align: center;
    background: var(--color-1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
    height: 100%;
    max-height: 350px;
}

.strategies-item-2 {
    background: var(--color-2);
}

.strategies-item-2:before,
.strategies-item:before {
    position: absolute;
    right: -95px;
    top: -53px;
    width: 73px;
    height: 120px;
    content: "";
    background: #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.strategies-icon {
    width: 112px;
    height: 112px;
    line-height: 112px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.strategies-icon i {
    color: var(--color-1);
    font-size: 2.5em;
    line-height: 0;
}

.strategies-icon:before {
    position: absolute;
    left: -6px;
    top: -7px;
    width: 112%;
    height: 112%;
    content: "";
    background: hsla(0, 0%, 100%, 0.5);
    border-radius: 50%;
    z-index: -11;
}

.strategies-item-2:hover:before,
.strategies-item:hover:before {
    right: -22px;
}

.strategies-item-2:hover i,
.strategies-item:hover i {
    transform: rotateX(360deg);
    transition: all 0.3s ease-in-out 0.1s;
    background: #fff;
    color: var(--color-1);
}

.strategies-content h2 {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-top: 20px;
}

/*-------------------------------------------------------------------------------
  Contact
-------------------------------------------------------------------------------*/

.contact-form input,
.contact-form textarea,
.contact-form select,
.get-q-form input[type="text"],
.get-q-form input[type="email"],
.get-q-form input[type="number"],
.get-q-form textarea,
.get-q-form select {
    border-radius: 0px;
    padding: 15px 18px;
    border: 1px solid var(--color-1-op);
}

.ftr-icon {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    border: 0px solid;
    background: #fff;
}

.ftr-icon span {
    margin-right: 12px;
    line-height: 1.5;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    padding: 0px;
    background: #5271ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/*-------------------------------------------------------------------------------
  
           Inside Pages

-------------------------------------------------------------------------------*/

#page_header {
    background-image: url(../img/dot-bg.png);
    background-position: right -50% center;
    background-size: 70%;
    background-repeat: no-repeat;
    background-color: var(--color-2);
    padding-top: 80px;
    background-blend-mode: color-burn;
    padding-bottom: 80px;
}

.title-sec {
    background: rgba(74, 97, 53, 1) url(../img/slide_bg.png);
    background-size: 35%;
    background-blend-mode: color-burn;
    color: #fff;
}

#page_header h1 {
    color: #fff;
    font-weight: bold;
}

/* 
.key-sec .image img{
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  width: 90%;
  height: 500px;
} */

.key-list,
.work-list {
    margin: 0;
    padding: 0;
}

.key-list li,
.work-list li {
    display: inline-block;
    padding: 10px 0;
}

.key-list span,
.work-list span {
    padding: 15px;
    display: inline-block;
    border-radius: 10px;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    float: left;
    margin-right: 20px;
}

.key-list span {
    background-color: var(--color-1);
}

.work-list span {
    background-color: var(--color-3);
    color: var(--color-1);
}

/* Testimonial */

.testimonial-con {
    padding: 135px 0 200px;
}
.testimonial-con .testimonial_content h6 {
    margin-bottom: 16px;
}
.testimonial-con .testimonial_content h2 {
    margin-bottom: 40px;
}
.testimonial-con .testimonial-sideimage {
    position: absolute;
    top: -20px;
    left: 20px;
    transform: rotate3d(0, 1, 0, 180deg);
}
.testimonial-con .testimonial-sideimage i {
    font-size: 4em;
    color: var(--color-1);
}
.testimonial-con .carousel-inner {
    width: 850px;
    margin: 0 auto;
}
.testimonial-con .testimonial-box ul {
    margin-bottom: 22px;
}
.testimonial-con .testimonial-box ul li {
    display: inline-block;
}
.testimonial-con .testimonial-box ul li i {
    font-size: 16px;
    line-height: 16px;
    color: var(--color-1);
}
.testimonial-con .testimonial-box p {
    margin-bottom: 28px;
    color: #000;
}
.testimonial-con .testimonial-box .lower_content {
    margin-bottom: 35px;
}
.testimonial-con .testimonial-box .name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: var(--color-1);
    font-family: "Urbanist", sans-serif;
}
.testimonial-con .carousel-indicators {
    margin: 0;
}
.testimonial-con .carousel-indicators li {
    opacity: 1;
    width: 60px;
    background: none;
    text-indent: 1px;
    margin: 0 10px;
    display: inline-block;
}
.testimonial-con .carousel-indicators li figure {
    border-radius: 100%;
    position: relative;
    width: 74px;
    height: 74px;
    line-height: 69px;
    text-align: center;
    border: 1px solid transparent;
}
.testimonial-con .carousel-indicators li img {
    border-radius: 100%;
    width: 60px;
}
/* Specific styles for Firefox */
@-moz-document url-prefix() {
    .testimonial-con .carousel-indicators li img {
        position: relative;
        right: 1px;
    }
    .testimonial-con .carousel-indicators li figure {
        line-height: 69px;
    }
}
.testimonial-con .carousel-indicators .active figure {
    border: 1px solid var(--color-1);
}
.testimonial-con .pagination_outer {
    position: relative;
}
.testimonial-con .carousel-control-prev,
.testimonial-con .carousel-control-next {
    opacity: 1;
}
.testimonial-con .carousel-control-prev i,
.testimonial-con .carousel-control-next i {
    font-size: 25px;
    top: 0;
    position: absolute;
    color: var(--color-1) !important;
    transition: all 0.3s ease-in-out;
}
.testimonial-con .carousel-control-prev i {
    left: 275px;
}
.testimonial-con .carousel-control-next i {
    right: 260px;
}
.testimonial-con .carousel-control-prev i:hover,
.testimonial-con .carousel-control-next i:hover {
    color: var(--color-2) !important;
}

a.back-top {
    position: fixed;
    background: var(--color-1-op);
    color: #fff;
    right: 70px;
    bottom: 40px;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    visibility: hidden;
    opacity: 0;
}

.back-top.back-top-visible {
    visibility: visible;
    opacity: 1;
}

a.back-top i {
    line-height: 0;
}

/*-------------------------------------------------------------------------------
  Media Query
-------------------------------------------------------------------------------*/
@media only screen and (max-width: 1130px) {
    .navbar-nav li a {
        padding-left: 7px;
        padding-right: 7px;
    }

    .cta a {
        padding: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 150px;
        left: 0;
        width: 100%;
        text-align: center;
        background: #17ae25;
    }
}

@media only screen and (max-width: 600px) {
    .demo-gallery > ul > li a > img {
        max-height: 200px;
    }

    .carousel-control-prev {
        left: -50px;
    }

    .carousel-control-next {
        right: -50px;
    }

    .plr-100 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .plr-50 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-img .about-name {
        font-size: 20px;
    }

    .about-img .about-name {
        position: inherit;
    }

    #about .plr-50 {
        padding-left: 20px;
        padding-right: 20px;
    }

    #contact .p-60 {
        padding: 20px;
        text-align: center;
    }
    #contact h3 {
        text-align: center;
    }
    .contact-details div {
        text-align: center !important;
    }
}

@media only screen and (max-width: 430px) {
    .navbar .navbar-brand img {
        max-width: 60px;
    }
}

@media only screen and (max-width: 320px) {
    #contact .justify-content-center:first-child {
        padding: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .h-captcha {
        transform: scale(0.78);
        margin-left: -9vw;
    }
    h1 {
        font-size: 2.5rem !important;
    }
}
