@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --main_color: #40a767;
    --second_color: #F3CA52;
    --black_color: #020612;
}

*,
:focus {
    box-sizing: border-box;
    outline: 0px !important;
}

body {
     font-family: "Rubik", sans-serif;
     font-weight: 400;
     overflow: hidden;
     width: 100%;
     color: var(--black_color);
     background-color: rgb(255, 255, 255);
     padding: 0px;
     margin: 0px;
     text-align: start;
}

*,
:focus {
    scroll-behavior: smooth;
    outline: 0px !important;
}


@media all and (max-width:1460px) {
    .container {
        max-width: 1260px;
    }
}


@media all and (max-width:1260px) {
    .container {
        max-width: 1170px;
    }
}



::selection {
    background-color: var(--main_color) !important;
    color: rgb(255, 255, 255) !important;
}

::-webkit-scrollbar {
    border-radius: 25px;
    background-color: transparent;
    width: 3px;
}

::-webkit-scrollbar-track {
    border-radius: 25px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: var(--main_color);
}

ul {
    display: block;
    position: relative;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

ul li {
    display: inline-block;
}

a,
a:hover,
a:focus {
    cursor: pointer;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0px auto;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

textarea.form-control {
    min-height: 80px;
    resize: none;
}

.link {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    line-height: 60px;
    text-align: center;
    font-size: 16px;
    padding: 0px 35px;
    background-color: var(--main_color);
    color: rgb(255, 255, 255);
    font-weight: 500;
    border: 0px;
    box-shadow: none;
    border-radius: 45px;
    transition: color 0.3s linear 0s;
}

.link::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    border-radius: 3px;
    clip-path: circle(0% at 50% 100%);
    background-color: #fff3;
    transition: clip-path 0.4s linear 0s;
}

.link i {
    margin: 0px 3px;
}

.link span {
    position: relative;
    z-index: 999;
}

.link:hover {
    color: #fff;
}

.link:hover::before {
    clip-path: circle(100% at 50% 100%);
}

.white_btn.link {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.icon_link {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    margin: auto;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 21px;
    background-color: var(--main_color);
    border: 0px;
    box-shadow: none;
    border-radius: 50%;
    line-height: 50px !important;
    padding: 0px !important;
    color: #fff;
}

.icon_link:hover {
    color: #fff
}

label {
    font-size: 16px;
    margin: 0px 0px 15px;
    display: block;
    font-weight: 500;
}

.form-control {
    height: 45px;
    line-height: 45px;
    border-radius: 25px;
    font-size: 16px;
    border: 1px solid rgb(226, 226, 226) !important;
    box-shadow: none !important;
    outline: none !important;
    background-color: white !important;
    color: var(--black_color) !important;
    padding: 0 25px;
}

.cursor {
    z-index: 9999;
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: var(--main_color);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    transition: background-color 0.3s linear 0s, width, height;
}

header {
    position: fixed;
    top: 20px;
    padding: 20px 0;
    left: 0px;
    width: 100%;
    z-index: 9998;
    background-color: transparent;
    transition: all 0.4s linear 0s;
    min-height: 100px;
}

header.move {
    background-color: var(--black_color);
    top: 0px;
}

header .logo {
    margin: 0px;
    z-index: 9998;
    position: relative;
    transition: all 0.4s linear 0s;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #fff;
    font-size: 42px;
    line-height: 60px;
}

header .logo:first-letter {
    display: inline-block;
    background-color: var(--main_color);
}

header .logo img {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.067);
    border-radius: 50%;
    object-fit: contain;
    padding: 15px;
    margin-inline-end: 10px;
}

header .logo span {
    color: #fff;
    font-weight: bold;
    font-size: 44px;
    background-color: var(--main_color);
    border-radius: 50%;
    display: inline-block;
    margin-inline-end: 10px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
}

header .btns {
    z-index: 9998;
    position: relative;
    display: flex;
    align-items: center;
}

header .btns a {
    margin: 0px;
    padding: 0px 15px;
    background-color: var(--second_color);
    line-height: 45px;
}

header .btns a.lang {
    background-color: #fff;
    line-height: 35px !important;
    margin-inline-start: 15px;
    color: var(--second_color);
}

header .menu_btn {
    display: none;
    z-index: 999;
    min-width: 60px;
    height: 60px;
    line-height: 63px;
    border: 0px;
    background-color: rgb(255, 255, 255);
    padding: 0px;
    color: var(--main_color);
    border-radius: 50%;
    font-size: 24px;
}

header .navbar {
    min-height: 60px;
    width: 100%;
    margin: -60px auto auto;
    padding: 0px;
}

header .navbar ul {
    width: 100%;
    align-items: center;
    justify-content: end;
}

header .navbar ul li {
    display: inline-block;
}

header .navbar ul li span {
    display: none;
}

header .navbar ul li a {
    position: relative;
    color: rgb(255, 255, 255) !important;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    margin-inline-start: 40px;
    line-height: 60px;
    display: block;
    transition: all 0.3s linear 0s;
    padding: 0px !important;
}

header .navbar ul li a:hover {
    color: var(--second_color);
}

header .navbar ul li a.active {
    color: rgb(255, 255, 255);
}

header .navbar ul li a.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 0px;
    border-radius: 25px;
    width: 35px;
    height: 7px;
    background-color: var(--main_color);
    transition: all 0.3s ease 0s, all 0s ease 0s, all 0s linear 0s;
}

@media (max-width: 991px) {
    header {
        top: 0 !important;
        padding: 0 !important;
        background-color: var(--black_color) !important;
        padding: 10px 0 !important;
    }

    header .menu_btn {
        display: inline-block;
        margin-inline-start: 15px;
    }

    header .navbar {
        background-color: var(--main_color);
        margin: 0px;
        z-index: 999;
        min-height: auto;
        margin-top: 15px;
    }

    header .container,
    header .navbar .container .row,
    header .navbar .container .col-12 {
        min-width: 100%;
        width: 100%;
        margin: 0px;
        padding: 0 15px !important;
    }

    header .navbar .container,

    header .navbar .container .row,

    header .navbar .container .row .col-12 {
        padding: 0 !important;
    }


    header .navbar ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        transition: all 0.4s linear 0s;
    }

    header .navbar ul li {
        display: block;
        min-width: 100%;
    }

    header .navbar ul li img {
        display: none;
    }

    header .navbar ul li span {
        display: block;
    }

    header .navbar ul li a {
        color: rgb(255, 255, 255);
        margin: 0px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        line-height: 50px;
        font-size: 16px;
        padding: 0 30px !important;
    }

    header .navbar ul li:last-child a {
        border-bottom: 0
    }

    header .navbar ul li a::before {
        display: none;
    }
}

section {
    padding: 70px 0px;
    position: relative;
    z-index: 999;
}

.section_color {
    background-color: #f1f1f1;
}

.section_title {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 700;
    color: var(--main_color);
    line-height: 40px;
}

.section_title::before {
    content: "";
    position: absolute;
    inset: auto 0px -20px;
    height: 10px;
    width: 120px;
    border-bottom: 7px double var(--gray_color);
    z-index: -1;
    margin: auto;
}

.main_section {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 170px 0px 110px;
    background: url(../images/bc.png) no-repeat center;
    background-size: cover;
}


.intro {
    position: relative;
}

.intro h1 {
    font-size: 44px;
    text-transform: uppercase;
    line-height: 50px;
    margin: 40px auto;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.intro h1 span {
    display: block;
    margin-bottom: 25px;
    font-size: 120px;
    line-height: 125px;
    font-weight: 800;
}

.intro h1 i {
    color: var(--main_color);
    text-shadow: 1px 1px 3px #2b2b2b;
    font-style: normal;
}

.intro p {
    font-size: 24px;
    color: #fff;
    margin: 0px auto 40px;
    max-width: 860px;
    line-height: 45px;
}

.intro ul li:first-child .link {
    margin-inline-end: 15px;
}

.intro li:last-child a.link {
    background-color: #fff;
    color: var(--main_color);
}

.up_btn {
    display: none;
    position: fixed;
    inset-inline-end: 20px;
    margin: auto;
    bottom: 15px;
    z-index: 9999;
}

.sec_id {
    position: absolute;
    height: 70px;
    top: -70px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.sec_id#home {
    top: -100px;
}

.about h3 {
    margin: 0 0 70px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 50px;
}

.about_item {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 25px;
    transition: 0.6s linear transform;
}

.about_item img {
    width: 100px;
    margin: auto;
    background-color: rgba(22, 93, 49,15%);
    border-radius: 50%;
    padding: 15px;
    transition: 0.6s linear transform;
}

.about_item:hover {
    transform: translateY(-15px);
}

.about_item:hover img {
    transform: rotate(360deg);
}

.about_item h4 {
    margin: 25px auto 20px;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: var(--main_color);
    line-height: 30px;
}

.about_item p {
    margin: 0;
    font-size: 16px;
    text-align: justify;
}

.text_item {
    margin-top: 25px;
}

.text_item h4 {
    margin: 25px auto 20px;
    font-size: 32px;
    font-weight: 600;
    color: var(--main_color);
    line-height: 40px;
}

.text_item .list li {
    display: block;
    font-size: 18px;
    padding-inline-start: 20px;
    position: relative;
    line-height: 35px;
    margin-bottom: 15px;
}

.text_item .list li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgba(22, 93, 49,40%);
    border-radius: 50%;
    inset-inline-start: 0;
    top: 11px;
}

.startgy_img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-top: 25px;
    border-radius: 5px;
}

.services {
    padding-bottom: 30px;
}

.service_item {
    background-color: #fff;
    padding: 25px 15px;
    margin: 0 0 40px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 190px;
    position: relative;
    cursor: pointer;
}

.service_item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10px;
    right: 0;
    border-radius: 25px;
    background-color: rgba(22, 93, 49,40%);
    z-index: -1;
    transform: rotate(0deg);
    opacity: 0;
    transition: 0.4s linear all;
}

.service_item h3 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--main_color);
}

.service_item p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
}

.service_item:hover {
    background-color: var(--main_color);
}

.service_item:hover h3,
.service_item:hover p {
    color: #fff;
}

.service_item:hover::before {
    transform: rotate(-3deg);
    opacity: 1;

}

.team {
    padding: 100px 0;
    color: #fff;
}

.team .row {
    position: relative;
}

.team .team_head {
    margin: 0;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
}

.team p {
    margin: 40px auto;
    font-size: 25px;
    text-align: center;
    max-width: 991px;
}

.team .tags li:hover {
    background-color: var(--main_color);
    color: #fff;
}

.team .tags li {
    border: 1px solid var(--main_color);
    border-radius: 25px;
    padding: 0 30px;
    line-height: 50px;
    font-size: 18px;
    margin: 0 5px;
}

.project_item {
    display: block;
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 25px;
}

.project_item img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.4s linear transform;
}

.project_item h3 {
    color: #fff;
    position: absolute;
    width: 100%;
    bottom: 0;
    margin: 0;
    padding: 50px 25px 25px;
    background: linear-gradient(0deg, rgba(64, 167, 103, 80%) 20%, transparent);
    font-weight: 700;
    font-size: 18px;
}

.project_item:hover img {
    transform: scale(1.1) rotate(3deg);
}

.logo_list {
    margin: 70px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo_list li {
    width: 230px;
}

.logo_list li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact_info li {
    display: block;
}

.contact_info li a {
    color: var(--black_color);
    font-size: 18px;
    margin: 0px 0px 20px;
    display: block;
    font-weight: 500;
}

.contact_info li a i {
    width: 40px;
    height: 40px;
    margin: auto;
    background-color: rgba(22, 93, 49,15%);
    border-radius: 50%;
    transition: 0.6s linear transform;
    text-align: center;
    line-height: 40px;
    color: var(--main_color);
    font-size: 16px;
    margin-inline-end: 15px;
}

.contact_info h3 {
    display: block;
    position: relative;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    color: var(--main_color);
    line-height: 40px;
}

.contact_info p {
    margin: 20px auto 35px;
    font-size: 18px;
    line-height: 35px;
    padding-inline-end: 50px;
    text-align: justify;
    font-weight: 500;
}

footer {
    text-align: center;
    padding: 30px 0;
    background: url(../images/bc.png) no-repeat center;
    background-size: cover;
}

footer span {
    color: #fff;
    font-weight: 700;
    font-size: 65px;
    background-color: var(--main_color);
    border-radius: 50%;
    display: block;
    margin: auto auto 25px;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
}

footer p {
    color: #fff;
    margin: auto;
    font-size: 20px;
    text-align: center;
}

@media all and (max-width:991px) {
    .intro h1 {
        line-height: 55px;
        margin: 0 auto 15px;
        font-size: 36px;
    }

    .intro h1 span {
        font-size: 70px;
        line-height: 80px;
    }

    .intro p {
        font-size: 20px;
        line-height: 40px;
        margin: 0 auto 20px;
    }

    .team .tags li {
        margin-bottom: 15px;
    }

    .logo_list li {
        width: 22%;
    }

    .cursor {
        display: none !important;
        opacity: 0 !important;
    }
    .service_item{
        min-height: 165px;
    }
    
}

@media all and (max-width:767px) {
    .team {
        padding: 50px 0;
    }

    .project_item {
        height: 270px;
    }
     .service_item{
        min-height: auto;
    }
    .main_section{
        background-position:left
    }
}

@media all and (max-width:576px) {
    .main_section {
        padding: 150px 0 50px;
    }

    .intro h1 {
        font-size: 24px;
        line-height: 45px;
    }

    .intro h1 span {
    }

    .intro h1 i {
        color: var(--main_color);
        text-shadow: 1px 1px 3px #2b2b2b;
        font-style: normal;
    }

    .intro p {
        font-size: 16px;
        margin: 0px auto 20px;
        line-height: 28px;
    }

    .intro ul li:first-child .link {
        margin-inline-end: 15px;
    }

    .intro li:last-child a.link {
        background-color: #fff;
        color: var(--main_color);
    }

    .intro ul li {
    }

    .intro ul li .link {
        width: 100%;
        padding: 0 20px;
        line-height: 45px;
    }

    .about_item {
        padding: 0
    }

    .team {
        padding: 30px 0
    }

    .team .tags li {
        width: 100%;
        margin: 10px 0;
    }

    .logo_list {
        margin: 40px auto 0;
        flex-wrap: wrap;
    }

    .logo_list li {
        width: 50%;
        margin-bottom: 15px;
        padding: 5px;
    }

    .logo_list li img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .works {
        padding-bottom: 30px;
    }

    .contact_info p {
        padding: 0
    }
    .about h3{
        font-size: 20px;
        line-height: 30px;
        text-align: justify;
        margin: 0 0 45px;
    }
    [data-aos^=fade][data-aos^=fade]{
        opacity: 1;
        transform: none;
    }
   .team .team_head {
    font-size: 28px;
}

.team p {
    margin: 30px auto;
    font-size: 18px;
}
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader img {
    width: 281px;
    margin-bottom: 35px;
}

.spinner {
    margin: auto;
    width: 60px;
    height: 60px;
    text-align: center;
    -webkit-animation: sk-rotate 2s infinite linear;
    animation: sk-rotate 2s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

.dot1 {
    background-color: var(--main_color);
}

.dot2 {
    top: auto;
    background-color: var(--main_color);
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}