@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap");

@font-face {
    font-family: "Compact";
    src: url("../fonts/SF-Compact-Rounded-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Compact";
    src: url("../fonts/SF-Compact-Rounded-Semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

*,
:focus {
    outline: 0px !important;
}

:root {
    --main_color: #0d1018;
    --second_color: #f15a22;
    --gray_color: #9b9b9b;
    --green_color: #28a745;
}

body {
    font-family: "Compact";
    font-weight: 400;
    overflow: hidden;
    width: 100%;
    color: rgb(255, 255, 255);
    letter-spacing: 1px;
    background-color: var(--main_color);
}

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

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

::-webkit-scrollbar {
    background-color: rgb(255, 255, 255);
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: rgb(255, 255, 255);
}

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

/* Preloader
=====================*/
.preloader {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    background-color: var(--main_color);
}

.preloader p {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 14px;
    line-height: 20px;
    color: #fff;
    position: absolute;
    width: 100%;
    height: 130px;
    text-align: center;
    top: -140px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.pace {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    border: 0px;
    height: 2px;
    overflow: hidden;
    background-color: var(--main_color);
}

.pace .pace-progress {
    z-index: 9999999;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: var(--second_color);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Mouse Cursor
=========================*/
.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--second_color);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -ms-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    background-color: var(--second_color);
    opacity: 0.3;
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--second_color);
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    -webkit-transition: all 80ms ease-out;
    -moz-transition: all 80ms ease-out;
    -ms-transition: all 80ms ease-out;
    -o-transition: all 80ms ease-out;
    transition: all 80ms ease-out;
}

.cursor-outer.cursor-hover {
    opacity: 0;
}

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;
}

.link {
    margin-bottom: 15px;
    background-color: #f15a22;
    color: rgb(255, 255, 255);
    line-height: 50px;
    display: inline-block;
    border-radius: 25px;
    padding: 0px 20px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    border: 0px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #f15a22, #ed1a3b);
}

.link span {
    position: relative;
}

.link::before {
    content: "";
    clip-path: circle(0% at 50% 50%);
    background-color: rgb(255, 255, 255);
    right: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: clip-path 0.4s linear 0s;
}

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

.link:hover {
    color: var(--second_color) !important;
}

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

.form-group {
    margin-bottom: 15px;
}

label {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-family: "Compact";
    margin: 0px 0px 15px;
    text-transform: capitalize;
}

.form-control {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    border: 1px solid rgb(31, 31, 48) !important;
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    color: rgb(255, 255, 255) !important;
}

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

::placeholder {
    color: rgb(255, 255, 255);
    opacity: 1;
}

header {
    position: fixed;
    border-bottom: 1px solid rgb(31, 31, 48);
    width: 100%;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 9997;
    padding: 25px 0px;
    background-color: transparent;
    margin: auto;
    transition: all 0.4s linear 0s;
}

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

header a.logo {
    position: relative;
    z-index: 999;
    display: inline-block;
    width: 240px;
}

header a.logo::first-letter {
    color: var(--second_color);
}


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

header .btns {
    z-index: 9999;
    display: flex;
}

header .btns .link {
    margin-inline-start: 15px;
    font-family: "Compact";
    background-color: #f26933;
    color: rgb(255, 255, 255);
    line-height: 45px;
    display: inline-block;
    border-radius: 25px;
    padding: 0px 15px;
    font-size: 14px;
    border: 0px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

header .btns .link:hover {
    color: var(--second_color) !important;
}

header .btns a i {
    margin-inline-end: 5px;
}

header .btns .menu-btn {
    vertical-align: middle;
    border: 0px;
    padding: 0px;
    background: linear-gradient(45deg, #f15a22, #ed1a3b);
    width: 50px;
    min-width: 50px;
    height: 50px;
    margin-inline-start: 5px;
    border-radius: 50%;
    display: none;
}

header .btns .menu-btn span {
    display: block;
    background-color: rgb(255, 255, 255);
    height: 2px;
    width: 50%;
    margin: 5px auto;
    border-radius: 12px;
}

@media (max-width: 991px) {
    header .btns .menu-btn {
        display: inline-block;
    }
}

.navbar {
    padding: 0px;
    margin: -53px 0px 0px;
}

.navbar .navbar-nav {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-inline-end: 215px;
}

.navbar .navbar-nav li a {
    font-size: 16px;
    color: rgb(255, 255, 255);
    margin-inline-start: 15px;
    line-height: 45px;
    font-family: "Compact";
    text-transform: uppercase;
}

.navbar .navbar-nav li a::before {
    content: "";
    position: absolute;
    bottom: 5px;
    border-radius: 25px;
    width: 0px;
    height: 3px;
    background-color: var(--second_color);
    transition: all 0.4s linear 0s;
}

.navbar .navbar-nav li.active a::before,
.navbar .navbar-nav li a:hover::before {
    width: 30px;
}

@media (max-width: 991px) {
    header {
        padding: 15px 0;
    }

    .navbar {
        margin-top: 0px;
        background-color: var(--main_color);
        position: absolute;
        top: 88px;
        width: 100%;
        border-bottom: 1px solid rgb(31, 31, 48);
    }

    .navbar ul.navbar-nav {
        border-top: 1px solid rgba(255, 255, 255, 0.067);
        display: block;
        text-align: center;
        padding: 10px 0px;
        align-items: flex-start !important;
        flex-flow: row wrap !important;
        justify-content: space-between !important;
    }

    .navbar ul.navbar-nav li {
        display: block;
        margin: 0;
        text-align: start;
    }

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

    .navbar ul.navbar-nav li.active a {
        background-color: var(--main_color);
        color: var(--second_color) !important;
    }
}

@media (max-width: 575px) {
    .navbar ul.navbar-nav li {
        margin: 1%;
        width: 48%;
    }

    .navbar ul.navbar-nav li a {
        font-size: 14px;
        margin: auto;
    }

    header .btns .link {
        padding: 0 10px;
        line-height: 15px;
    }

    header .btns .link i {
        margin: auto;
        margin-inline-end: auto;
        width: 50px;
        height: 50px;
        font-size: 21px;
        line-height: 50px;
    }
}


.main_sec {
    height: 100vh;
}

.intro {
    position: relative;
    display: block;
    color: rgb(255, 255, 255);
    max-width: 991px;
    margin: auto;
    text-align: start;
}

.intro h1 {
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 50px;
    letter-spacing: 3px;
    line-height: 55px;
}

.intro h1 span {
    color: var(--second_color);
}

.intro h3 {
    margin: 50px auto;
    font-size: 22px;
    text-transform: lowercase;
    font-weight: 400;
    line-height: 30px;
    font-family: "Compact";
    letter-spacing: 0;
}

.intro .link {
    margin-inline-end: 5px;
}

.fixed_shap {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100px;
    right: 0px;
    margin: auto;
    z-index: -1;
}

.banner-circle img {
    animation-name: rotateme;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.banner-shape-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    animation: 2s linear 0s infinite normal none running moveleftbounce;
    z-index: -1;
}

.banner-shape-2 {
    position: absolute;
    bottom: 25px;
    right: -50px;
    animation: 10s linear 0s infinite normal none running animationFramesOne;
    z-index: -1;
}

.banner-dot-shape-1 {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateY(-20%) translateX(-50%);
    animation: 25s linear 0s infinite normal none running animationFramesOne;
    z-index: -1;
}

.banner-dot-shape-2 {
    position: absolute;
    top: 15%;
    left: 5%;
    transform: translateY(-15%) translateX(-5%);
    animation: 10s linear 0s infinite normal none running animationFramesOne;
    z-index: -1;
}

.banner-dot-shape-3 {
    position: absolute;
    bottom: 10%;
    left: 35%;
    transform: translateY(-10%) translateX(-35%);
    animation: 20s linear 0s infinite normal none running animationFramesOne;
    z-index: -1;
}

.banner-dot-shape-4 {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    animation: 15s linear 0s infinite normal none running animationFramesOne;
    z-index: -1;
}

.banner-dot-shape-5 {
    position: absolute;
    top: 20%;
    right: 10%;
    transform: translateY(-20%) translateX(-10%);
    animation: 20s linear 0s infinite normal none running animationFramesOne;
    z-index: -1;
}

.banner-dot-shape-1,
.banner-dot-shape-2,
.banner-dot-shape-3,
.banner-dot-shape-4,
.banner-dot-shape-5,
.banner-shape-1,
.banner-shape-2,
.lines {
    z-index: 0;
    opacity: 0.25;
}

@-webkit-keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animationFramesOne {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@-webkit-keyframes moveleftbounce {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes moveleftbounce {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0px);
    }
}

.join_beta {
    position: fixed;
    background-color: var(--main_color);
    padding: 25px;
    z-index: 9999;
    inset-inline-end: -350px;
    top: 0px;
    height: 100%;
    width: 100%;
    max-width: 350px;
    overflow-y: auto;
    border-left: 1px solid rgb(31, 31, 48);
    transition: all 0.4s linear 0s;
}

.join_beta .close {
    border: 1px solid rgb(31, 31, 48);
    color: rgb(255, 255, 255);
    background-color: transparent;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 22px;
    font-size: 13px;
    position: absolute;
    inset-inline-end: 15px;
    top: 26px;
}

.join_beta h3 {
    margin: 0px 0px 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 25px;
    color: rgb(255, 255, 255);
    font-family: "Compact";
}

.join_beta .link {
    margin-top: 25px;
}

.join_beta.move {
    inset-inline-end: 0%;
}

section {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0px;
    position: relative;
    z-index: 98;
}

.sec_id {
    position: absolute;
    width: 100%;
    top: -120px;
    height: 100px;
}

.text {
    text-align: start;
}

.text p {
    margin: 0px;
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 40px;
    padding-inline-end: 60px;
}

img {
    cursor: pointer;
}

.chat_btns {
    position: fixed;
    inset-inline-end: 20px;
    bottom: 35px;
    width: 55px;
    height: 55px;
    z-index: 999;
    text-align: center;
}

.scroll {
    position: absolute;
    width: 54px;
    height: 70px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    text-align: center;
}

.scroll .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: 3s ease-out 0s infinite normal none running move;
    left: 0px;
    right: 0px;
    margin: auto;
}

.chevron:first-child {
    animation: 3s ease-out 1s infinite normal none running move;
}

.chevron:nth-child(2) {
    animation: 3s ease-out 2s infinite normal none running move;
}

.chevron::before,
.chevron::after {
    content: " ";
    position: absolute;
    top: 0px;
    height: 100%;
    width: 51%;
    background: rgb(255, 255, 255);
}

.chevron::before {
    left: 0px;
    transform: skew(0deg, 30deg);
}

.chevron::after {
    right: 0px;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.chat_btns a {
    display: block;
    position: relative;
    font-size: 32px;
    margin: auto;
    border: 0px;
    width: 55px;
    height: 55px;
    padding: 0px;
    border-radius: 50%;
    color: rgb(255, 255, 255) !important;
}

.chat_btns a i {
    line-height: 51px;
}

.chat_btns a::after,
.chat_btns a::before {
    width: 55px;
    height: 55px;
    background: transparent;
    top: 50%;
    left: 50%;
    content: "";
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s linear 0s;
    animation: 1.5s ease 0.6s infinite normal none running ripple;
}

.chat_btns a::after {
    animation-delay: 0.6s;
}

.chat_btns a.whats {
    background-color: rgb(37, 211, 102);
}

.chat_btns a.whats::after,
.chat_btns a.whats::before {
    box-shadow: rgba(37, 211, 102, 0.6) 0px 0px 0px 0px;
}

.chat_btns a.mes {
    background-color: rgb(0, 153, 255);
    margin-bottom: 13px;
}

.chat_btns a.mes::after,
.chat_btns a.mes::before {
    box-shadow: rgba(0, 153, 255, 0.6) 0px 0px 0px 0px;
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 15px;
    }

    100% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 0px;
    }
}

@keyframes ripple {
    70% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 15px;
    }

    100% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 0px;
    }
}

.about_cont {
    text-align: start;
    padding-inline-start: 30px;
}

.about_cont h3 {
    margin: 0px 0px 25px;
    font-weight: 600;
    font-size: 26px;
    line-height: 35px;
    font-family: "Compact";
}

.about_cont h2 {
    margin: 0px 0px 25px;
    font-size: 35px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--second_color);
}

.about_cont p {
    margin: 0px 0px 25px;
    font-size: 16px;
    text-transform: lowercase;
    font-weight: 500;
    line-height: 25px;
    font-family: "Compact";
    letter-spacing: 0px;
    text-align: justify;
}

.about_cont .link {
    min-width: 160px;
    text-align: center;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px auto 25px;
}

.counter li {
    font-family: "Compact";
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter li span {
    display: block;
    font-size: 45px;
    font-family: "Compact";
    font-weight: bold;
}

.service_title {
    text-align: start;
}

.service_title h3 {
    margin: 0px 0px 15px;
    font-weight: 600;
    font-size: 32px;
    line-height: 35px;
    letter-spacing: 3px;
}

.service_title p {
    font-family: "Compact";
    font-size: 16px;
    margin: 0px;
}

.service_item {
    border: 1px solid rgb(31, 31, 48);
    padding: 40px;
    border-radius: 25px;
    margin-top: 25px;
}

.service_item svg {
    width: 60px;
    fill: rgb(255, 255, 255);
    margin: 0px auto 25px;
}

.service_item h3 {
    margin: 0px 0px 15px;
    font-weight: 600;
    font-size: 18px;
    line-height: 35px;
}

.service_item p {
    font-family: "Compact";
    font-size: 14px;
    text-align: justify;
    margin: 0px;
}

.service_item:hover svg {
    fill: var(--second_color);
}

.service_item:hover {
    border-color: var(--second_color);
}

#works {
    padding-bottom: 50px
}

#works .section_title h3 {
    text-align: start;
    font-size: 22px;
    margin: 0 0 25px;
}

#works .section_title p {
    margin: 0 0 15px;
    font-size: 14px;
    text-align: start;
    font-family: "Compact";
}

.work_item {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 350px;
    margin-top: 25px;
}

.work_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s linear all;
}

.clients {
    border-top: 1px solid rgb(31, 31, 48);
    border-bottom: 1px solid rgb(31, 31, 48);
    padding: 50px 0px 40px;
}

.client_item {
    filter: contrast(0);
}

.client_item:hover {
    filter: contrast(1);
}

#contact {
    padding-top: 50px;
}

.contact_info {
    text-align: start;
}

.contact_info h3 {
    font-size: 20px;
    margin: 0px 0px 35px;
}

.contact_info li {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
    width: 100%;
}

.contact_info li i {
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin-inline-end: 15px;
    background-color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 50%;
    color: var(--second_color);
}

.contact_info li a {
    color: rgb(255, 255, 255);
    font-family: "Compact";
    font-size: 16px;
    line-height: 25px;
}

.contact_info li a span {
    margin-bottom: 5px;
}

.contact_info .link {
    margin-top: 15px;
}

.contact_form {
    padding: 35px;
    border: 1px solid rgb(31, 31, 48);
    border-radius: 25px;
    text-align: start;
}

.contact_form h3 {
    font-size: 20px;
    margin: 0px 0px 25px;
}

footer {
    background-color: var(--main_color);
    padding: 70px 0px 25px;
    color: rgb(255, 255, 255);
    position: relative;
    border-top: 1px solid rgb(31, 31, 48);
    text-align: start;
    margin-top: 35px;
}

footer h3 {
    font-size: 20px;
    margin: 0px 0px 15px;
}

footer h4 {
    font-family: "Compact";
    font-size: 14px;
    line-height: 22px;
    margin: 15px 0px 0px;
    padding-inline-end: 25px;
    letter-spacing: 0;
}

footer p {
    font-family: "Compact";
    font-size: 14px;
    margin: 0 0 10px;
}

footer a.up_btn {
    position: absolute;
    right: 0px;
    left: 0px;
    margin: auto;
    top: -20px;
    background: linear-gradient(45deg, #f15a22, #ed1a3b);
    color: rgb(255, 255, 255);
    z-index: 99;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px !important;
}

footer li a {
    color: rgb(255, 255, 255);
    font-family: "Compact";
    font-size: 14px;
    text-align: justify;
    margin: 10px 0px 0px;
    letter-spacing: 0px;
    display: inline-block;
}

footer li a:hover {
    color: var(--second_color);
}

footer form {
    position: relative;
    margin-top: 25px;
}

footer form .form-control {
    height: 55px;
    line-height: 55px;
    border-radius: 25px;
}

footer form .link {
    position: absolute;
    inset-inline-end: 5px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    line-height: 40px;
    height: 40px;
}

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

footer .social li a {
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    background-color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 50%;
    color: var(--second_color);
    overflow: hidden;
}

footer .social li a i {
    display: block;
    line-height: 40px;
    color: #fff;
}

footer .social li a img {
    width: 26px;
    margin: 7px auto;
}

.facebook_bc {
    background-color: #1877f2 !important;
}

.youtube_bc {
    background-color: #CD201F !important;
}

.linkedin_bc {
    background-color: #0a66c2 !important;
}

.instagram_bc {
    background-color: #e4405f !important;
}


.tiktok_bc {
    background-color: #000000 !important;
}

.twitter_bc {
    background-color: #ffffff !important;
}

@media (max-width: 1199px) {
    .main_sec {
        height: auto;
        padding-top: 150px;
    }

    .intro {
        text-align: center;
    }

    .intro h1 {
        margin: 0px 0px 25px;
        font-size: 32px;
        letter-spacing: 2px;
    }

    .intro h3 {
        font-size: 16px;
        line-height: 25px;
        font-family: "Compact";
    }

    .about_cont h3 {
        margin: 0px 0px 25px;
        font-weight: 600;
        font-size: 24px;
        line-height: 38px;
        font-family: "Compact";
    }

    .about_cont h2 {
        margin: 0px 0px 25px;
        font-size: 35px;
        line-height: 40px;
        text-transform: uppercase;
        font-weight: bold;
        color: var(--second_color);
    }


    .about_cont h3 {
        margin: 0px 0px 15px;
        font-size: 20px;
        line-height: 30px;
    }

    .about_cont h2 {
        font-size: 32px;
        line-height: 30px;
    }

    .service_item {
        padding: 20px;
    }

    .service_item svg {
        margin: 0px auto 15px;
    }

    .service_item h3 {
        font-size: 16px;
        line-height: 28px;
    }

    .service_item p {
        font-size: 12px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .main_sec {
        padding-top: 110px;
    }

    .intro h1 {
        margin: 0;
        font-size: 42px;
        letter-spacing: 2px;
    }

    .intro h3 {
        font-size: 22px;
        line-height: 30px;
        margin: 15px auto 25px;
    }

    .intro .w-100 {
        min-width: 100%;
        text-align: center;
        justify-content: center;
    }

    .about_cont h3 {
        margin: 0px 0px 25px;
        font-weight: 600;
        font-size: 24px;
        line-height: 38px;
        font-family: "Compact";
    }

    .about_cont h2 {
        margin: 0px 0px 25px;
        font-size: 35px;
        line-height: 40px;
        text-transform: uppercase;
        font-weight: bold;
        color: var(--second_color);
    }

    .counter {
        flex-wrap: wrap;
        margin: auto;
    }

    .counter li {
        min-width: 50%;
        margin-top: 25px;
    }

    .contact_form {
        margin-top: 25px;
    }

    footer h3 {
        margin-top: 15px
    }

    .custom_row {
        flex-direction: column-reverse;
    }

    .about_cont {
        padding: 0;
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .service_item {
        padding: 10px;
    }


    .service_item h3 {
        font-size: 14px;
    }

    .work_item {
        height: 230px;
    }
}

@media (max-width: 576px) {
    .link_button {
        display: flex !important;
        justify-content: center;
        margin-bottom: 0px;
    }
    .navbar {
        top: 80px;
    }

    .intro h1 {
        font-size: 26px;
        line-height: 35px;
    }

    .intro h3 {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0;
        text-align: justify;
        margin-bottom: 10px;
    }

    .intro .link {
        margin: auto;
        margin-top: 15px;
    }

    .intro .w-100 {
        flex-direction: column;
        align-items: center;
    }

    .about_cont p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 15px;
    }

    .about_cont h3 {
        margin: 0px 0px 15px;
        font-size: 14px;
        line-height: 20px;
        text-align: start;
    }

    .about_cont h2 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .counter li {
        min-width: 50%;
        margin-top: 15px;
        font-size: 10px;
        letter-spacing: 0;
    }

    .counter li span {
        font-size: 24px;
    }

    .service_title h3,
    #works .section_title h3 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    .service_title p,
    #works .section_title p {
        font-size: 12px;
        margin: 0;
    }

    .contact_form {
        padding: 15px;
    }

}

.alert {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 50px;
    z-index: 999;
    border-radius: 0;
    text-align: center;
    line-height: 50px;
    padding: 0 15px;
    border: 0;
    background: linear-gradient(45deg, #f15a22, #ed1a3b);
    color: #fff;
    text-transform: uppercase;
}

.alert button {
    border: 0;
    background-color: #fff;
    color: #f15623;
    font-size: 18px;
    padding: 0;
    margin-inline-start: 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 24px;
}

.link_button {
    display: flex !important;
    justify-content: center;
}
