:root {
    --c1: #0161FF;
    --c2: #FFB406;
    --c3: #090909;
    --c4: #BFBFBF;
    --c5: #FAF8F9;
    --ct: #2F2F2F;
    /* --ct: #555555; */
    --cf: #ffffff;
    --cb: #000000;
}

@font-face {
    font-family: "Cy Grotesk";
    src: url(../font/cy-grotesk-wide.ttf);
}

@font-face {
    font-family: "poppins";
    src: url(../font/Poppins-Regular.ttf);
}

body {
    padding: 0;
    margin: 0;
    color: var(--ct);
    font-family: "poppins";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    background-color: var(--cf);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--c3);
    font-family: "Cy Grotesk";
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
}

h1 {
    font-size: 66px;
    /* text-align: center; */
    line-height: normal;
    /* text-transform: uppercase; */
}

h2 {
    font-size: 54px;
    text-transform: capitalize;
}

h2 span {
    color: var(--c2);
}

h3 {
    font-size: 24px;
    /* color: var(--c1); */
}

h4 {
    font-size: 30px;
}

p,
li {
    color: var(--ct);
    font-family: "poppins";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* 166.667% */
    margin-bottom: 20px;
}

li strong {
    color: var(--c3);
}

ul {
    padding-left: 0px;
    margin: 0;
    list-style: none;
}

li,
p:last-of-type {
    margin-bottom: 0px;
}

.lg-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.md-container {
    max-width: 1638px;
    margin: 0 auto;
}

.cnt-left-margin {
    margin-left: calc((100% - 1638px) / 2);
}

.cnt-right-margin {
    margin-right: calc((100% - 1638px) / 2);
}

.flex {
    display: flex;
}

.img img {
    max-width: 100%;
    height: auto;
}

.title_sec {
    /* text-align: center; */
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    color: var(--cf);
    font-family: "poppins";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 16px 32px;
    border-radius: 8px;
    margin-top: 32px;
    background-color: var(--c1);
    text-transform: capitalize;
}

.btn:visited {
    color: var(--cf);
}

.btn:hover {
    color: var(--cf);
    background-color: var(--c3);
}

.btn-md {
    padding: 16px 24px;
}

.btn-black {
    background-color: var(--c3);
}

.btn-cirlce {
    color: var(--cf);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 140px;
    height: 140px;
    padding: 10px;
    padding-right: 44px;
    border-radius: 50%;
    background-color: unset;
    border: 1px solid var(--cf);
}

.btn-cirlce::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 20px;
    width: 16px;
    height: 2px;
    background: var(--cf);
    transition: all 0.4s ease-in;
    transform: rotate(-45deg);
}

.btn-cirlce::after {
    content: "";
    position: absolute;
    top: 46%;
    right: 15px;
    width: 7px;
    height: 7px;
    margin-top: -1px;
    transition: all 0.3s ease;
    border-right: 2px solid var(--cf);
    border-bottom: 2px solid var(--cf);
    transform: rotate(-82deg) translateY(-70%);
    transition: all 0.4s ease-in;
}

.btn-cirlce:visited {
    color: var(--cf);
}


/* ---- btn-cirlce balck ---  */

.btn-cirlce-black {
    color: var(--c3);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 160px;
    height: 160px;
    padding: 20px;
    text-align: start;
    /* padding-right: 44px; */
    border-radius: 50%;
    background-color: unset;
    border: 1px solid rgba(85, 85, 85, 0.40);
}

.btn-cirlce-black::before {
    position: absolute;
    content: "";
    top: 58%;
    right: 46px;
    width: 16px;
    height: 2px;
    background: var(--c3);
    transition: all 0.4s ease-in;
    transform: rotate(-45deg);
}

.btn-cirlce-black::after {
    content: "";
    position: absolute;
    top: 53.8%;
    right: 40px;
    width: 7px;
    height: 7px;
    margin-top: -1px;
    transition: all 0.3s ease;
    border-right: 2px solid var(--c3);
    border-bottom: 2px solid var(--c3);
    transform: rotate(-82deg) translateY(-70%);
    transition: all 0.4s ease-in;
}

.btn-cirlce-black:visited {
    color: var(--c3);
}

.btn-touch {
    color: var(--cf);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    position: relative;
    /* display: inline-flex;
    align-items: center; */
    padding: 0px;
    padding-right: 20px;
    padding-left: 62px;
    border-radius: 0;
    background-color: unset;
    border: none;
}

.btn-touch::before {
    content: "";
    position: absolute;
    top: 43%;
    right: 0px;
    width: 8px;
    height: 8px;
    margin-top: -1px;
    border-right: 2px solid var(--cf);
    border-bottom: 2px solid var(--cf);
    transform: rotate(315deg);
    transition: all 0.4s ease-in;
}

.btn-touch::after {
    position: absolute;
    content: "";
    top: 46%;
    left: 0px;
    width: 50px;
    height: 2px;
    background: var(--cf);
    transition: all 0.4s ease-in;
    /* transform: rotate(0deg); */
}

.btn-touch:hover {
    color: var(--c2);
    background-color: unset;
}

.btn-touch:visited {
    color: var(--cf);
}


/* .btn-cirlce */

@media(max-width:1700px) {
    .md-container {
        max-width: 94%;
    }
    .cnt-left-margin {
        margin-left: calc((100% - 94%) / 2);
    }
    .cnt-right-margin {
        margin-right: calc((100% - 94%) / 2);
    }
}

@media(max-width:1440px) {
    li,
    p {
        font-size: 16px;
        line-height: 150%;
    }
    h1 {
        font-size: 46px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 26px;
    }
    .btn {
        font-size: 18px;
    }
    .btn-cirlce,
    .btn-cirlce-black {
        font-size: 16px;
        width: 130px;
        height: 130px;
    }
    .btn-cirlce::before,
    .btn-cirlce-black::before {
        right: 27px;
    }
    .btn-cirlce::after,
    .btn-cirlce-black::after {
        right: 22px;
    }
}

@media(max-width:1300px) {
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 34px;
    }
    /* h3 {
        font-size: 18px;
    } */
    h4 {
        font-size: 22px;
    }
    /* h5 {
        font-size: 18px;
    } */
}

@media(max-width:1200px) {
    h2 {
        font-size: 32px;
    }
    /* h4 {
        font-size: 20px;
    } */
}

@media(max-width:990px) {
    h1 {
        font-size: 38px;
    }
    .md-container {
        max-width: 100%;
        padding: 0 24px;
    }
    .cnt-left-margin {
        margin-left: 0px;
        max-width: 100%;
        padding: 0 24px;
    }
    .cnt-right-margin {
        margin-right: 0px;
        max-width: 100%;
        padding: 0 24px;
    }
    .title_sec {
        margin-bottom: 40px;
    }
}

@media(max-width:768px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 26px;
    }
    /* h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 20px;
    } */
}