@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: CabinetGrotesk;
    src: url("../font/CabinetGrotesk-Medium.ttf");
}

@font-face {
    font-family: CabinetGrotesk-bold;
    src: url("../font/CabinetGrotesk-Bold.ttf");
}

@font-face {
    font-family: CabinetGrotesk-regular;
    src: url("../font/CabinetGrotesk-Regular.ttf");
}

* {
    font-family: "Work Sans", sans-serif;
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
    color: white;
}

a {
    color: white;
}

body {
    background-color: black;
    padding: 0 20px;
    overflow-x: hidden;
}

svg:hover {
    cursor: pointer;
}

header {
    position: sticky;
    top: 0px;
    padding-top: 20px;
    background: black;
}

.header-1 {
    z-index: 2;
    background-color: black;
    margin-right: 0px;
    margin-left: 0px;
    border: 1px solid #464646;
    top: 20px;
}

#loop {
    z-index: -99;
    display: flex;
    position: absolute;
    top: 200px;
    height: 300px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

#loop h1 {
    background-color: transparent;
    color: #292929;
    font-family: "Unbounded", sans-serif;
    font-size: 260px;
    font-weight: 400;
    animation-name: anim;
    animation-duration: 1700s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#loop>h1>span {
    -webkit-text-stroke: 1.2px #000;
    font-weight: 500;
}

@keyframes anim {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.header-1 svg {
    padding-left: 10px;
}

.header-1 img {
    padding-top: 12px;
    padding-bottom: 15px;
}

.hero-sec {
    display: flex;
    height: 80vh;
    z-index: -99px;
}

.hero-sec h1 {
    font-family: CabinetGrotesk;
    text-align: center;
    margin-bottom: 40px;
    font-size: 86px;
}

a {
    text-decoration: none;
}

.hero-sec h1 span {
    color: #767676;
    font-family: CabinetGrotesk;
}

.btn-pink {
    font-family: "Work Sans", sans-serif;
    color: white;
    background-color: #FB435B;
    border: none;
    transition: all 0.3s ease-in-out;
    padding-block: 16px;
    padding-inline: 50px;
    border-radius: 0px;
    display: flex;
    outline: none;
    overflow: hidden;
    font-size: 15px;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

.button {
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 16px;
    padding-inline: 50px;
    background: #FB435B;
    border-radius: 0px;
    display: flex;
    color: #ffff;
    border: none;
    outline: none;
    overflow: hidden;
    font-size: 15px;
}

.btn-pink:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.btn-pink:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.btn-pink::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

::selection {
    color: black;
    background: #FB435B;
}

.blur-1 {
    z-index: -1;
    position: fixed;
    width: 455px;
    height: 455px;
    background: rgba(251, 67, 91, 0.25);
    filter: blur(200px);
    left: 1300px;
    bottom: 560px;
}

.blur-3 {
    z-index: -1;
    right: 0px;
    left: 0px;
    position: absolute;
    width: 1593px;
    height: 944px;
    background: rgba(0, 0, 0, 0.911);
    filter: blur(200px);
}

.blur-2 {
    top: 500px;
    z-index: -1;
    width: 455px;
    height: 455px;
    background: rgba(251, 67, 91, 0.25);
    filter: blur(200px);
    position: fixed;
    left: 240px;
}

.left-menu {
    z-index: 10;
    background-color: black;
    top: 20px;
    position: fixed;
    width: 70px;
    padding: 25px 23px;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #464646;
}

.right-menu {
    z-index: 10;
    background-color: black;
    top: 20px;
    position: fixed;
    width: 1px;
    right: 20px;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #464646;
}

.bottom-menu {
    z-index: 3;
    background-color: #000;
    padding-bottom: 20px;
    bottom: 0px;
    position: fixed;
    width: calc(100% - 40px);
}

.box-bottom {
    background-color: white;
    width: 70px;
    height: 70px;
    border-right: solid 1px #464646;
}

.icon-group a svg path{
    transition: 0.5s;
}

a:hover svg path {
    stroke: white;
    transition: 0.5s;
}

nav a:hover,
nav a.active svg path {
    color: white;
}

.feedback:hover svg path {
    fill: white;
    transition: 0.5s;
}

.bg-blak-2 {
    background-color: black;
}

.bottom-menu>div {
    border: 1px solid #464646;
    padding: 25px 0;
}

.bottom-menu p {
    font-family: CabinetGrotesk-regular;
    margin-bottom: 0px;
}

.bottom-menu p:hover {
    font-family: CabinetGrotesk-bold;
    cursor: pointer;
}

.section-1 {
    margin-top: 120px;
}

.section-1 .container {
    max-width: 1100px;
}

.section-1 h2 {
    margin-bottom: 25px;
    font-family: CabinetGrotesk-bold;
    font-size: 48px;
}

.pera {
    color: #767676;
    font-size: 26px;
    margin: 0px;
    padding-bottom: 75px;
}

.card-1 {
    margin-bottom: 60px;
    padding: 40px 20px 40px 20px;
    background-color: #0E0E0E;
    border: 1px solid #262626;
}

.card-1 span {
    font-family: CabinetGrotesk;
    font-size: 24px;
}

.card-1 p {
    font-size: 20px;
    color: #767676;
    margin: 0px;
}

.card-1 h3 {
    font-family: CabinetGrotesk-regular;
    margin-bottom: 10px;
    font-size: 34px;
}

.card-1 svg:hover {
    color: #FB435B;
}

#loop-2 {
    display: flex;
    height: 50%;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

#loop-2 h1 {
    z-index: -99;
    margin-top: 100px;
    background-color: transparent;
    color: white;
    font-family: "Unbounded", sans-serif;
    font-size: 200px;
    font-weight: 400;
    animation-name: anim;
    animation-duration: 1700s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#loop-2>h1>span {
    -webkit-text-stroke: 1.2px #000;
    font-weight: 500;
}

@keyframes anim {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.pera-2 {
    color: #767676;
    font-size: 20px;
    margin-bottom: 40px;
}

.section-3 {
    margin-top: 100px;
}

.section-3 h1 {
    font-family: CabinetGrotesk;
    font-size: 3rem;
    margin-bottom: 70px;
}

.span-1 {
    font-family: CabinetGrotesk;
    color: #767676;
}

.span-2 {
    font-family: CabinetGrotesk;
    color: #FB435B;
}

.right-card {
    margin-bottom: 64px;
    background-color: #0E0E0E;
    border: 1px solid #2b2b2b;
}

.right-card h4 {
    font-family: CabinetGrotesk-regular;
    padding-left: 30px;
    margin-bottom: 18px;
}

.icons {
    padding-top: 22px;
    border-bottom: 1px solid #262626;
}

.section-3 .col-lg-7 {
    padding: 0px;
}

.section-3 .col-lg-4 {
    padding: 0px;
}

.icons-1 {
    margin-right: 30px;
}

.info-1 {
    padding: 26px 30px 20px 30px;
    font-size: 20px;
}

.span-11 {
    color: #43A3FB;
}

.span-12 {
    color: #43FBB9;
}

.span-3 {
    color: #9FFB43;
}

.span-4 {
    color: #C043FB;
}

.span-5 {
    color: #FB435B;
}


.section-4 {
    margin-bottom: 150px;
    margin-top: 150px;
}

.section-4 h2 {
    font-size: 48px;
    font-family: CabinetGrotesk-bold;
}

.box-1 {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #0E0E0E;
    border: 1px solid #262626;
}

.box-1 svg {
    margin-bottom: 15px;
}

.box-1 h4 {
    font-size: 26px;
    font-family: CabinetGrotesk;
    margin-bottom: 12px;
}

.box-1 p {
    color: #767676;
    font-size: 20px;
    margin: 0px;
}

.box-2 {
    margin-top: 40px;
    padding: 25px;
    background-color: #0E0E0E;
    border: 1px solid #262626;
}

.box-2 svg {
    margin-bottom: 15px;
}

.box-2 h4 {
    font-size: 26px;
    font-family: CabinetGrotesk;
    margin-bottom: 12px;
}

.box-2 p {
    color: #767676;
    font-size: 20px;
    margin: 0px;
}

.box-3 {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #0E0E0E;
    border: 1px solid #262626;
}

.box-3 svg {
    margin-bottom: 15px;
}

.box-3 h4 {
    font-size: 26px;
    font-family: CabinetGrotesk;
    margin-bottom: 12px;
}

.box-3 p {
    color: #767676;
    font-size: 20px;
    margin: 0px;
}

.card-1 svg circle {
    transition: 1s;
}

.card-1:hover svg circle {
    fill: rgb(251, 65, 90);
}

.box-4 {
    margin-top: 40px;
    padding: 25px;
    background-color: #0E0E0E;
    border: 1px solid #262626;
}

.box-4 svg {
    margin-bottom: 15px;
}

.box-4 h4 {
    font-size: 26px;
    font-family: CabinetGrotesk;
    margin-bottom: 12px;
}

.box-4 p {
    color: #767676;
    font-size: 20px;
    margin: 0px;
}

.box-5 {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #0E0E0E;
    border: 1px solid #262626;
}

.box-5 svg {
    margin-bottom: 15px;
}

.box-5 h4 {
    font-size: 26px;
    font-family: CabinetGrotesk;
    margin-bottom: 12px;
}

.box-5 p {
    color: #767676;
    font-size: 20px;
    margin: 0px;
}

.box-6 {
    margin-top: 40px;
    padding: 25px;
    background-color: #0E0E0E;
    border: 1px solid #262626;
}

.box-6 svg {
    margin-bottom: 15px;
}

.box-6 h4 {
    font-size: 26px;
    font-family: CabinetGrotesk;
    margin-bottom: 12px;
}

.box-6 p {
    color: #767676;
    font-size: 20px;
    margin: 0px;
}

.section-5 {
    margin-bottom: 150px;
}

.section-5 h2 {
    margin-bottom: 50px;
    font-size: 3rem;
    font-family: CabinetGrotesk;
}

.button-1 {
    background-color: #FB435B;
    border: none;
    border-radius: 8.75rem;
    padding: 18px 70px;
}

.button-2 {
    background-color: #0E0E0E;
    border: none;
    border-radius: 8.75rem;
    padding: 18px 24px;
}

.button-group {
    margin-bottom: 60px;
}

.boxes {
    background-color: #0E0E0E;
    border: 1px solid #262626;
}

.boxes img {
    border: 1px solid #262626;
}

.boxes h3 {
    font-size: 1.625rem;
    margin: 0;
    padding: 25px 0px 25px 25px;
}

.section-6 {
    margin-bottom: 150px;
}

.section-6 .row {
    margin: 0;
}

.top-6 {
    padding: 18px 30px 18px 30px;
}

.top-6 {
    background-color: #0E0E0E;
    border: 1px solid #262626;
}

.top-6 svg {
    margin-left: 17px;
}

.b-top {
    border: 1px solid #262626;
    background-color: #0E0E0E;
    padding: 30px;
    border-top: none;
}

.bottom-6 {
    border-radius: 10px;
    padding: 35px 60px;
    background-image: url("/img/section-6\ back.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bottom-6 h2 {
    font-family: CabinetGrotesk;
    padding-top: 27px;
    font-size: 2.875rem;
}

.color-green {
    color: #6FDA44;
}

.section-7 {
    margin-bottom: 150px;
}

.section-7 h1 {
    margin-bottom: 50px;
    font-size: 3.75rem;
    font-family: CabinetGrotesk;
}

.comment-box {
    border: 1px solid #262626;
    background-color: #0E0E0E;
    padding: 30px;
}

.comment-box h4 {
    font-family: CabinetGrotesk;
    font-size: 1.375rem;
    margin-bottom: 0;
}

.comment-box p {
    margin-bottom: 0;
    font-size: 1.125rem;
    color: var(--Grey, #767676);
}

.pera-1 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.comment-box-2 {
    margin-top: 24px;
    border: 1px solid #262626;
    background-color: #0E0E0E;
    padding: 30px;
}

.comment-box-2 h4 {
    font-family: CabinetGrotesk;
    font-size: 1.375rem;
    margin-bottom: 0;
}

.comment-box-2 p {
    margin-bottom: 0;
    font-size: 1.125rem;
    color: var(--Grey, #767676);
}

.comment-box-3 {
    margin-top: 24px;
    border: 1px solid #262626;
    background-color: #0E0E0E;
    padding: 30px;
}

.comment-box-3 h4 {
    font-family: CabinetGrotesk;
    font-size: 1.375rem;
    margin-bottom: 0;
}

.comment-box-3 p {
    margin-bottom: 0;
    font-size: 1.125rem;
    color: var(--Grey, #767676);
}

.section-8 {
    margin-bottom: 150px;
}

.section-8 h1 {
    margin-bottom: 50px;
    font-size: 3.75rem;
    font-family: CabinetGrotesk;
}

.blog-1 {
    border: solid 1px #232323;
}

.blog-1 h4 {
    font-family: CabinetGrotesk;
    font-size: 1.625rem;
}

.blog-1 p {
    color: #767676;
    font-size: 1.25rem;
}

.blog-p {
    background-color: #0B0B0B;
    padding: 30px 35px 35px 35px;
}

.blog-p span {
    color: #767676;
}

.section-9 {
    margin-bottom: 150px;
}

.section-9 h1 {
    margin-bottom: 50px;
    font-size: 3.75rem;
    font-family: CabinetGrotesk;
}

.section-9 .col-lg-7 {
    padding: 0;
}

.map {
    border: 1px solid #3B3B3B;
    padding-bottom: 50px;
}

.map p {
    margin: 0;
}

.calls {
    padding: 50px 0 50px 50px;
    padding-top: 40px;
}

.tcl-icon {
    margin-top: 40px;
}

.e-mail {
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-control {
    font-size: 20px;
    padding: 18px 0 18px 25px;
    border: none;
    border-radius: 0;
    color: white;
    background-color: #1F1F1F;
}

.form-control::placeholder {
    color: #767676;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form {
    border: 1px solid #3B3B3B;
    padding: 40px 50px;
    background-color: #0E0E0E;
    border-left: none;
}

.form-label {
    margin-bottom: 12px;
    font-size: 18px;
}

.btn-form {
    font-family: "Work Sans", sans-serif;
    color: white;
    background-color: #FB435B;
    border: none;
    margin-top: 30px;
    padding-block: 16px;
    padding-inline: 50px;
    border-radius: 0px;
    display: flex;
    outline: none;
    overflow: hidden;
    font-size: 22px;
    width: 100%;
}

.end {
    margin-bottom: 120px;
}

.end p {
    margin-bottom: 0px;
}

.end-info {
    padding-bottom: 50px;
    border-bottom: 1px solid #161616;
}

.end .col-lg-2 {
    padding: 0;
}

.last-h6 {
    margin-top: 20px;
    color: #7f7f7f;
}

@media (max-width: 1500px) {
    .container {
        max-width: 1220px;
    }
}

@media (max-width: 1440px) {
    .container {
        max-width: 1100px;
    }

    .end p {
        font-size: 12px;
    }

    .btn-form {
        font-weight: normal;
        font-size: 18px;
    }

    .hero-sec h1 {
        font-size: 75px;
    }
}

@media(max-width: 1300px) {
    .container {
        max-width: 1000px;
    }

    .blur-1 {
        left: 700px;
    }

    .left-menu svg {
        display: none;
    }

    .left-menu {
        width: 2px;
        padding: 0 0;
    }

    .bottom-menu .offset-lg-1 {
        margin-left: 70px;
    }
}

@media (max-width: 1104px) {
    .container {
        max-width: 950px;
    }

    .blur-1 {
        display: none;
    }

    .blur-2 {
        display: none;
    }

    .blur-3 {
        display: none;
    }
}

@media (max-width: 1040px) {
    .container {
        max-width: 850px;
    }

    .blur-1 {
        left: 400px;
    }
}


@media (max-width: 992px) {
    .container {
        max-width: 850px;
    }
}

@media (max-width: 835px) {
    .container {
        max-width: 700px;
    }

    .one {
        width: 100%;
        margin-bottom: 25px;
    }

    .two {
        width: 100%;
        margin-bottom: 25px;
    }

    .three {
        width: 100%;
        margin-bottom: 25px;
    }
}


@media (max-width: 576px) {
    .hero-sec h1 {
        font-size: 50px;
    }

    .container {
        max-width: 100%;
    }

    .tcl-icon {
        display: none;
    }

    .top-icon {
        display: none;
    }

    .left {
        width: 50%;
    }

    .right {
        width: 40%;
    }

    .bottom-menu .offset-lg-1 {
        margin-left: 10%;
    }
}

@media (max-width: 430px) {
    .header-1 svg {
        display: none;
    }

    .header-1 {
        width: 100%;
        text-align: center;
    }

    .hero-sec h1 {
        font-size: 34px;
    }

    #loop h1 {
        font-size: 160px;
    }

    #loop {
        top: 250px;
    }

    .section-1 h2 {
        margin-top: 50px;
        font-size: 32px;
    }

    .pera {
        font-size: 18px;
    }

    .card-1 h3 {
        text-align: center !important;
    }

    .card-1 p {
        margin-bottom: 15px;
        text-align: center !important;
    }

    #loop-2 h1 {
        margin-top: 50px;
        font-size: 120px;
    }

    .section-3 {
        margin-top: 50px;
    }

    .section-3 h1 {
        font-size: 32px;
    }

    .info-1 {
        padding: 20px;
    }

    .i-1 {
        display: none;
    }

    .section-4 {
        margin: 50px 50px;
    }

    .section-4 h2 {
        font-size: 32px;
    }

    .section-4 .p-3 {
        padding: 0 !important;
    }

    .box-1 {
        text-align: center;
        padding: 15px
    }

    .box-2 {
        text-align: center;
        padding: 15px
    }

    .box-3 {
        margin-top: 80px;
        text-align: center;
        padding: 15px
    }

    .box-4 {
        margin-bottom: 80px;
        text-align: center;
        padding: 15px
    }

    .box-5 {
        text-align: center;
        padding: 15px
    }

    .box-6 {
        text-align: center;
        padding: 15px
    }

    .section-5 {
        margin-top: 50px;
    }

    .section-5 h2 {
        margin-bottom: 30px;
        font-size: 32px;
    }

    .button-group {
        margin-bottom: 30px;
    }

    .section-6 svg {
        display: none;
    }

    .bottom-6 {
        padding: 30px;
    }

    .bottom-6 h2 {
        font-size: 32px;
    }

    .section-7 {
        margin-bottom: 50px;
    }

    .section-7 h1 {
        font-size: 32px;
    }

    .comment-box-2 {
        margin-top: 20px;
    }

    .comment-box {
        margin-top: 20px;
    }

    .section-8 {
        margin-bottom: 50px;
    }

    .section-8 h1 {
        font-size: 32px;
    }

    .blog-1 {
        text-align: center;
    }

    footer {
        text-align: center;
    }

    .ourteam {
        margin-top: 30px;
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 375px) {
    .hero-sec h1 {
        font-size: 40px;
    }

    #loop h1 {
        font-size: 160px;
    }

    #loop {
        top: 140px;
    }
}