/* fontowsme cdn  */
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-shims.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v5-font-face.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-font-face.min.css?token=7ca6a895ef);

/* Exporting Fonts */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
    box-sizing: border-box;
}

:root {
    --primarycolor: #01132d;
    --secondarycolor: #1c1c1c;
    --btn-text: #01132d;
    --bluecolor: #3eadff;
    --black: #000000;
    --white: #ffffff;
    --secondarLight: #87cdff;
    --transition: 0.3s all ease;
    --gradient-bg: linear-gradient(to bottom right, #01132d, #6759ff);
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    color: var(--subtittle);
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 123px;
    font-weight: 700;
    color: var(--bluecolor);
}

h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--primarycolor);
}

h2.small {
    font-size: 40px;
    color: var(--primarycolor);
}

h3 {
    font-size: 38px;
    font-weight: 500;
    color: var(--lightblue);
}

a,
a:hover,
button,
button:hover {
    transition: 0.3s all ease;
}

a {
    text-decoration: none;
}

.btn_site {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border-radius: 10px;
    border: 2px solid var(--white);
    background-color: var(--white);
    color: var(--btn-text);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 15px;
    min-width: 276px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn_site::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: var(--btn-text);
    transition: 0.3s all ease;
    z-index: -1;
}

.btn_site:hover {
    color: var(--white);
}

.btn_site:hover::before {
    height: 100%;
}

/* CSS-Style */

.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 25px 0 0;
    z-index: 1050;
}

.header .sub-text {
    color: var(--white);
}

.header .cust-btn {
    border-radius: 5px;
    min-width: 160px;
}

/* Bnner */

.banner {
    padding: 165px 0 40px;
    position: relative;
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom right, #01132d, #6759ff);
    clip-path: polygon(0 0, 100% 0, 100% 79%, 0% 100%);
}

.banner::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #f2f3f4;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 79%);
}

.banner h2 {
    font-size: 49px;
    font-weight: 600;
    color: var(--white);
}

.banner h3 {
    font-size: 40px;
    font-weight: 400;
    color: var(--white);
}

.banner p {
    color: var(--white);
    font-size: 29px;
    font-weight: 400;
    margin-bottom: 30px;
}

.banner-img {
    max-width: 521px;
    margin-left: auto;
}

/* section-1 */

.section-1 {
    margin: 100px 0 0;
}

.section-1 h2 {
    text-align: center;
    margin-bottom: 80px;
}

.section-1 .arrow {
    top: 14px;
    position: absolute;
    left: 50%;
    width: 91%;
    z-index: -1;
    transform: rotate(3deg);
}

.section-1 .arrow2 {
    transform: rotate(-2deg);
    top: -24px;
}

.section-1 .img img {
    width: auto;
}

.section-1 .img {
    text-align: center;
    margin-bottom: 34px;
}

.section-1 .text h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-1 .text p {
    color: #616161;
    text-align: center;
}

.section-1 .text-1 {
    max-width: 294px;
    margin: auto;
}

.section-1 .text-2 {
    max-width: 350px;
    margin: auto;
}

.section-1 .text-3 {
    max-width: 315px;
    margin: auto;
}

/* section2 */

.section-2 {
    background-color: var(--white);
    padding: 150px 0px;
}

.section-2 .wrapper {
    max-width: 1170px;
    margin: auto;
}

.section-2 .text h3 {
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 6px;
}

.section-2 .text h2 {
    margin-bottom: 20px;
    max-width: 489px;
}

.section-2 .form-control {
    max-width: 389px;
    padding: 16px;
    margin: 16px 0px;
    border-radius: 10px;
}

.section-2 .img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-2 img {
    max-width: 210px;
}

.section-2 .img .rocket-img {
    position: absolute;
    max-width: 490px;
    left: -50px;
    right: 0;
    margin: auto;
    z-index: -1;
}

.section-2 button {
    margin-top: 10px;
    width: 100%;
    max-width: 389px;
}

.form-btn {
    background-color: var(--bluecolor);
    border-color: var(--bluecolor);
    color: var(--white);
    min-width: 300px;
}

.section-2 .form input::placeholder {
    color: rgba(97, 97, 97, 0.7);
    -webkit-text-fill-color: rgba(97, 97, 97, 0.7);
}

/* section-3 */

.section3 {
    margin: 50px auto 60px;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom right, #01132d, #6759ff);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 79%);
}

.section3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #f2f3f4;
    clip-path: polygon(0 0, 100% 0, 100% 79%, 0 100%);
}

.section3 .text h2 {
    font-size: 45px;
    font-weight: 500;
    max-width: 446px;
    color: var(--white);
    line-height: 1.5;
}

.bref .img img {
    width: auto;
}

.bref .bref-text {
    color: #616161;
    font-size: 20px;
    font-weight: 300;
    margin-left: 15px;
}

.bref {
    display: flex;
    align-items: center;
    background-color: var(--white);
    max-width: 643px;
    padding: 20px 23px;
    margin-bottom: 20px;
    border-radius: 7px;
}

.contact-form {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
    padding: 44px 35px 40px;
    margin-top: 60px;
}

.contact-form .form-control {
    font-size: 20px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
}

.section-3 .form input::placeholder {
    color: rgba(97, 97, 97, 0.7);
    -webkit-text-fill-color: rgba(97, 97, 97, 0.7);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-form .contact-text {
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
    padding-top: 25px;
}

.contact-form button {
    min-width: 371px;
}

.option {
    margin: 24px 0;
}

.contact-form [type="checkbox"] {
    border-color: var(--bluecolor);
    width: 18px;
    height: 18px;
    border-width: 2px;
    margin-top: 6px;
}

.contact-form [type="checkbox"]:checked {
    background-color: var(--bluecolor);
}

.contact-form label {
    color: rgba(0, 0, 0, 0.8);
    font-size: 20px;
    font-weight: 400;
}

.contact-form textarea {
    background-color: var(--white);
    border-radius: 12px;
    border-color: rgba(174, 171, 199, 0.8);
}

.contact-form button {
    margin: 40px 0px 0px;
}

/* section-4 */

.section-4 {
    margin: 20px 0;
}

.section-4 h3 {
    font-size: 36px;
    font-weight: 600;
    color: var(--primarycolor);
    margin-bottom: 20px;
}

.section-4 .text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    padding-bottom: 15px;
}

.section-4 .img {
    background-color: var(--bluecolor);
    border-radius: 12px;
    padding: 50px 65px;
    position: relative;
    z-index: 1;
}

.section-4 .img .grid-lines {
    width: 87%;
    margin: auto;
    display: block;
}

.section-4 .rotate-logo {
    background: transparent !important;
    width: 60px;
    height: 60px;
}

.section-4 .rotating-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#rotatingLogos {
    width: 350px;
    height: 350px;
    position: relative;
}

/* section-5 */

.section-5 {
    margin: 140px 0px 60px;
    background: var(--white);
}

.section-5 h2 {
    color: var(--primarycolor);
}

.section-5 .section-title p {
    color: rgba(28, 28, 28, 0.7);
    margin: 12px auto 30px;
}

.section-5 .text h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary);
}

.section-5 .text img {
    max-width: 6px;
    margin-right: 6.8px;
}

.section-5 .text li {
    list-style-type: none;
    display: flex;
    align-items: baseline;
}

.section-5 .text li {
    color: var(--accent);
    font-size: 16px;
    font-weight: 300;
    margin-top: 25px;
}

.section-5 button {
    margin-top: 32px;
}

/* section-6 */

.section6 {
    padding: 50px 0;
}

.section6 .wrapper {
    background: linear-gradient(to bottom right, #01132d, #6759ff);
    border-radius: 12px;
    padding: 45px;
}

.section6 h2 {
    color: var(--white);
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.section6 p {
    color: rgba(225, 225, 225, 0.8);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    max-width: 940px;
    margin: auto;
    margin-bottom: 39px;
}

.section6 .col-md-auto {
    max-width: 235px;
    width: 100%;
}

.section6 h3 {
    font-size: 20px;
    color: #01132d;
    font-weight: 600;
}

.icon-img {
    background-color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    min-height: 70px;
}

.icon-img img {
    width: auto;
    max-width: 100%;
    margin-right: 10px;
}

.section6 .booking {
    text-align: center;
    min-width: 173px;
    margin-top: 40px;
}

/* section-8 */

.section-8 {
    padding: 50px 0;
}

.section-8 h2 {
    max-width: 934px;
    margin: auto;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 30px;
}

.section-8 img {
    width: auto;
}

.section-8 thead tr {
    background: linear-gradient(to bottom right, #01132d, #6759ff);
}

.section-8 thead th {
    background-color: transparent !important;
    box-shadow: none !important;
}

.section-8 .cust-tabel {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0px 12px 30px rgba(103, 89, 255, 0.15);
}

.section-8 th {
    color: var(--white);
    font-size: 26px;
    font-weight: 500;
    padding: 35px 0 35px 40px;
}

.section-8 th:first-of-type {
    border-top-left-radius: 12px;
}

.section-8 th:last-of-type {
    border-top-right-radius: 12px;
}

.section-8 th.short {
    width: 220px;
    padding-left: 0;
    padding-right: 40px;
}

.section-8 .table-responsive {
    padding: 20px;
}

.section-8 .text td {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    color: var(--secondarycolor);
    padding: 25px 0 25px 40px;
}

.section-8 tbody tr {
    border-bottom: 1px solid #e4e4e4;
}

.section-8 tbody tr:last-of-type {
    border-color: transparent;
}

.section-8 tbody tr:last-of-type td {
    padding-bottom: 30px;
}

/* Section-9 */

.section9 {
    margin-top: 60px;
    margin-bottom: 200px;
}

.section9 .text {
    background-color: rgba(62, 173, 255, 0.1);
    border-radius: 20px;
    padding-top: 52px;
    padding-bottom: 139px;
}

.section9 h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--bluecolor);
    text-align: center;
    margin-bottom: 4px;
}

.section9 h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondarycolor);
    text-align: center;
}

.public-icons {
    max-width: 971px;
    margin: -7% auto 0;
    padding: 0 25px;
}

.prod-icon {
    min-height: 190px;
    background-color: var(--white);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 288px;
    padding: 20px;
    position: relative;
}

.prod-icon .pilly-icon {
    width: 65%;
}

.prod-icon .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 33px;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s all ease;
}

.prod-icon:hover .hover-content {
    opacity: 1;
    transition: 0.3s all ease;
}

.prod-icon .hover-content h4 {
    color: var(--white);
}

.prod-icon .hover-content .btn_site {
    min-width: 90px;
    margin-top: 15px;
    padding: 9px 15px;
    border-color: #fff;
}

.prod-icon .hover-content .btn_site:hover {
    color: var(--white) !important;
}

/* Pilly Ponka */

.prod-icon .hover-content.pilly {
    background: #f8931d;
}

.prod-icon .hover-content.pilly .btn_site {
    color: #f8931d;
}

.prod-icon .hover-content.pilly .btn_site::before {
    background: #f8931d;
}

/* Launchapd  */

.prod-icon .hover-content.launch .btn_site::before {
    background: #3eadff;
}

.prod-icon .hover-content.launch {
    background: #3eadff;
}

.prod-icon .hover-content.launch .btn_site {
    color: #3eadff;
}

/* Utilasoft  */

.prod-icon .hover-content.utila .btn_site::before {
    background: #3769b1;
}

.prod-icon .hover-content.utila {
    background: #3769b1;
}

.prod-icon .hover-content.utila .btn_site {
    color: #3769b1;
}

/* Render Real  */

.prod-icon .hover-content.render .btn_site::before {
    background: #2e3192;
}

.prod-icon .hover-content.render {
    background: #2e3192;
}

.prod-icon .hover-content.render .btn_site {
    color: #2e3192;
}

/* Tumble Yard  */

.prod-icon .hover-content.tumble .btn_site::before {
    background: #ff6000;
}

.prod-icon .hover-content.tumble {
    background: #ff6000;
}

.prod-icon .hover-content.tumble .btn_site {
    color: #ff6000;
}

/* Footer*/

footer {
    background-color: var(--bluecolor);
    padding: 50px 0;
    position: relative;
}

footer .text {
    text-align: center;
}

footer .text p,
footer .text a {
    font-size: 16px;
    color: var(--white);
}

footer .text a:hover {
    color: var(--blue-color);
}

footer .text button {
    color: var(--white);
}

footer .text img {
    margin-bottom: 20px;
    max-width: 280px;
}

.font-medium {
    font-weight: 500;
}

footer .text p.font-medium {
    font-size: 22px;
}

.domain-list {
    background-color: var(--primarycolor);
    border-radius: 20px;
    padding: 60px 60px;
    max-width: 934px;
    margin: -13% auto 50px;
}

.domain-list .dom-text h3 {
    color: var(--white);
    font-size: 32px;
    line-height: 1.5;
}

/* Quote Page */

.quote-page {
    position: relative;
    z-index: 1;
}

.quote-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom right, #01132d, #6759ff);
    clip-path: polygon(0 0, 100% 0, 100% 79%, 0% 100%);
}

.quote-banner::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #f2f3f4;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 79%);
}

.quote-page .quote-banner {
    padding: 71px 0 97px 0;
}

.quote-page span {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: var(--bluecolor);
    background-color: rgba(225, 225, 225, 0.14);
    border-radius: 12px;
    padding: 14px 31px;
    display: inline-block;
}

.quote-page .main-text {
    margin-top: 20px;
}

.quote-page h1 {
    font-size: 67px;
    font-weight: 700;
    color: var(--bluecolor);
}

.quote-page p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin: 10px 0;
}

.quote-page .form-btn {
    min-width: 210px;
}

.meet-req span {
    color: var(--lightblue);
    text-decoration: underline;
}

.quote-page input {
    max-width: 50px;
    min-height: 47px;
    border-radius: 10px;
    border-color: var(--white);
    margin-bottom: 20px;
}

.quote-page button {
    margin-bottom: 23px;
}

.quote-page .form-control {
    background: transparent;
}

.quote-sec {
    margin-bottom: 50px;
}

/*Question-page */

.question {
    padding: 100px 0 60px 0;
}

.question .txt {
    margin-top: 10px;
}

.question .txt h2 {
    color: var(--bluecolor);
}

.question .txt p {
    margin-top: 20px;
    color: var(--secondarycolor);
}

.question .txt button {
    margin-top: 40px;
}

.question .main-sec {
    margin-bottom: 117px;
}

.question .info {
    border-top: 1px solid #e0e0e0;
    text-align: center;
    padding-top: 22px;
}

.question .info a,
.question .info p {
    color: var(--secondarycolor);
}

.question .info a:hover {
    color: var(--bluecolor);
}

.question .accordion-button:not(.collapsed) {
    color: var(--secondarycolor);
    font-weight: 500;
}

.question .accordion-item {
    border-radius: 10px !important;
    border: none;
    background-color: rgba(62, 173, 255, 0.1);
    margin-bottom: 12px;
}

.question .accordion-button {
    background: transparent;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-weight: 500;
    color: var(--accent);
    height: 60px;
}

.question .accordion-body {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondarycolor);
}

#thankYou .img img {
    max-width: 88px;
}

#thankYou h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primarycolor);
}

#thankYou p {
    color: var(--secondarycolor);
}

/* Contact Popup */

.contact_popup .modal-dialog {
    max-width: 800px;
}

.contact_popup .modal-content {
    border-radius: 20px;
}

.contact_popup .modal-header {
    padding: 10px 20px;
}

.contact_popup .modal-body {
    padding: 20px 20px 0;
}

.contact_popup .modal-footer {
    border-top: 0;
    padding: 0 20px 20px;
}

.contact_popup .modal-footer .btn_site {
    padding: 9px 15px;
}

.contact_popup h2,
.contact_popup h3 {
    color: #293652;
}

.contact_popup .form-floating label {
    font-size: 14px;
    color: rgba(41, 54, 82, 0.8) !important;
    opacity: 1 !important;
}

.contact_popup input {
    height: 50px !important;
    color: rgba(41, 54, 82, 0.8);
}

.contact_popup input::placeholder {
    color: rgba(97, 97, 97, 0.7);
    -webkit-text-fill-color: rgba(97, 97, 97, 0.7);
}

.pivacy-policy h2 {
    color: var(--bluecolor);
    font-size: 40px;
}

.pivacy-policy h4 {
    margin: 20px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--primarycolor);
}

.pivacy-policy p {
    color: var(--primarycolor);
}

.pivacy-policy li {
    margin-top: 10px;
}

@media (max-width: 1399px) {
    .section-4 .img {
        padding: 50px 55px;
    }
    .section-4 .rotate-logo {
        width: 50px;
        height: 50px;
    }
    #rotatingLogos {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 1199px) {
    /* banner */
    h1 {
        font-size: 100px;
    }
    .banner h3 {
        margin-top: 10px;
    }
    .section-1 .arrow2 {
        top: -7px;
    }
    .section-4 .img {
        padding: 50px 38px;
        max-width: 410px;
        margin-left: auto;
    }
    .section-4 h3 {
        font-size: 32px;
    }
    .section-2 img {
        max-width: 190px;
    }
}

@media (max-width: 991px) {
    .banner-img {
        margin: 60px auto 0;
    }
    .section-1 .arrow {
        width: 87%;
    }
    .section-1 .arrow2 {
        top: 4px;
    }
    .section-2 .text h2 {
        font-size: 36px;
    }
    .section-2 img {
        max-width: 140px;
    }
    /* Section-3 */
    .section3 .text h2 {
        max-width: 100%;
        margin-bottom: 50px;
    }
    .bref {
        max-width: 100%;
    }
    .section-4 .text {
        max-width: 100%;
    }
    .section-4 .img {
        margin-bottom: 50px;
    }
    .section6 .col-md-auto {
        max-width: 205px;
    }
    .contact-form {
        padding: 40px 30px;
    }
    .contact-form h3 {
        font-size: 17px;
    }
    .contact-form label {
        font-size: 15px;
    }
    .contact-form .form-control {
        font-size: 15px;
    }
    /* section-5 */
    .section-5 {
        margin-top: 100px;
    }
    .section-5 .text {
        margin-top: 50px;
    }
    /* Section-6 */
    .section6 p {
        font-size: 13px;
    }
    .section6 h3 {
        font-size: 17px;
    }
    .icon-img {
        min-height: 0px;
    }
    /* Section-9 */
    .public-icons {
        margin: -15% auto 0;
    }
    .domain-list {
        padding: 60px 20px;
        margin-top: -23%;
    }
    .domain-list .dom-text h3 {
        font-size: 29px;
    }
    .section-4 .img {
        padding: 50px 27px;
    }
    footer .text img {
        max-width: 240px;
    }
    .prod-icon .hover-content {
        padding: 10px 25px;
    }
    .contact-form [type="checkbox"] {
        margin-top: 2px;
    }
    .section-2 {
        padding: 120px 0;
    }
    .section-2 .img .rocket-img {
        left: 0;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px 10px;
    }
    .header .sub-text {
        color: var(--btn-text);
    }
    .header .btn_site {
        background: var(--bluecolor);
        color: var(--white);
        border-radius: 10px;
        margin-top: 10px;
    }
    .banner {
        text-align: center;
        padding: 130px 0 40px;
    }
    .banner h2 {
        font-size: 40px;
    }
    .banner h3 {
        font-size: 26px;
    }
    h1 {
        font-size: 70px;
    }
    .banner p {
        font-size: 22px;
    }
    h2.small,
    .section3 .text h2,
    .section-4 h3 {
        font-size: 30px;
    }
    .section-1 h2 {
        margin-bottom: 45px;
    }
    .section-1 .arrow {
        display: none;
    }
    .section-1 .col-md-4 {
        margin-bottom: 40px;
    }
    .section-1 .text p {
        font-size: 14px;
    }
    .section-2 {
        padding: 70px 0px 50px;
    }
    .section-2 .wrapper {
        text-align: center;
    }
    .section-2 .text {
        margin-top: 80px;
    }
    .section-2 .text h3 {
        font-size: 24px;
    }
    .bref {
        padding: 20px 15px;
    }
    .contact-form {
        margin-top: 40px;
    }
    .bref .img img {
        width: 30px;
    }
    .bref .bref-text {
        font-size: 14px;
    }
    /* section-4 */
    .section-5 {
        margin: 0px 0px 50px;
    }
    .section-5 .text li {
        margin-top: 15px;
        font-size: 14px;
    }
    .section-5 .section-title p {
        font-size: 12px;
    }
    /* section-3 */
    .section3 {
        margin: 30px 0 50px;
        padding: 50px 0px;
    }
    .al-range-slider__grid-mark {
        font-size: 12px;
    }
    .section-4 .img {
        max-width: 350px;
        margin: 0 auto 50px;
        padding: 35px 6px;
    }
    .section-4 h3 {
        font-size: 28px;
    }
    .section-4 .rotate-logo {
        width: 40px;
        height: 40px;
    }
    .contact-form {
        padding: 35px 20px;
    }
    .contact-form h3 {
        font-size: 15px;
        line-height: 1.5;
    }
    .progress-text {
        font-size: 14px;
    }
    .option {
        display: none;
    }
    .contact-form button {
        margin: 40px 0 0;
        min-width: auto;
        width: 100%;
    }
    .section9 .text {
        padding: 40px 15px 100px;
    }
    .section9 h2,
    .section9 h3 {
        font-size: 26px;
        line-height: 1.3;
    }
    .prod-icon {
        max-width: 100%;
    }
    .section-4 .text p {
        font-size: 14px;
    }
    .section6 {
        padding-top: 0;
    }
    .section6 .wrapper {
        padding: 45px 20px;
    }
    .section6 .col-md-auto {
        width: 100%;
        max-width: 100%;
    }
    .section6 h3 {
        min-width: 115px;
    }
    .domain-list {
        padding: 50px 20px;
        margin-top: -49%;
    }
    .domain-list .dom-text h3 {
        font-size: 29px;
        margin-bottom: 30px;
        text-align: center;
    }
    .domain-list .dom-img {
        max-width: 280px;
        margin: auto;
    }
    /* Fotter */
    footer .text img {
        max-width: 220px;
    }
    footer .text p {
        font-size: 16px;
    }
    footer .text p.font-medium {
        font-size: 18px;
    }
    .prod-icon .pilly-icon {
        width: 65%;
        height: 100%;
    }
    .quote-page h1 {
        font-size: 40px;
    }
    .quote-page p {
        font-size: 16px;
    }
    .quote-page .banner {
        margin: 50px 0;
    }
    .question .txt h2 {
        font-size: 30px;
    }
    .question {
        padding: 50px 0 20px;
    }
    .question .txt button {
        font-size: 14px;
    }
    .question .accordion {
        margin-top: 40px;
    }
    .question .main-sec {
        margin-bottom: 50px;
    }
    .section-8 .text td {
        font-size: 14px;
        padding: 20px 0 20px 15px;
    }
    .section-8 th {
        padding: 20px 0 20px 15px;
        font-size: 14px;
    }
    .section-8 th.short {
        padding-right: 10px;
    }
    .section-8 th.short img {
        max-width: 20px;
    }
    .section-8 td img {
        max-width: 20px;
    }
    .contact-form [type="checkbox"] {
        margin-top: 2px;
    }
    .section-8 .table-responsive {
        padding: 15px 10px;
        margin: 0 -12px;
    }
    .section-8 {
        padding: 20px 0;
    }
    .section-5 .text {
        margin-top: 25px;
    }
    .prod-icon .hover-content h4 {
        font-size: 20px;
    }
}

#contactModal .modal-dialog {
    max-width: 1140px;
}

/* blog page  */
@media (min-width: 1200px) {
    .banner-blog .col-xl-9 {
        width: 70%;
    }

    .banner-blog .col-xl-3 {
        width: 30%;
    }
}

.bg-blue {
    background: linear-gradient(to bottom right, #01132d, #6759ff);
}

.header-blog .navbar {
    background: var(--gradient-bg);
    padding: 15px 12px !important;
    border-radius: 10px;
}

section.banner-blog {
    padding: 150px 0 50px;
}

.banner-blog .main-image {
    background-color: var(--secondarLight);
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.banner-blog .main-image img {
    border-radius: 10px 10px 0 0;
    height: 450px;
    object-fit: cover;
}

.banner-blog .main-image .img-details {
    padding: 30px 40px 22px;
}

.main-image .img-details h2 {
    color: var(--btn-text);
    font-size: 18px;
    font-weight: 700;
    margin-top: 5px;
}

.main-image .img-details p {
    color: var(--black);
    font-weight: 400;
    font-size: 14px;
    position: relative;
    padding-left: 7px;
}

.main-image .img-details p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    background-color: var(--black);
}

.popular .tittle h3 {
    color: var(--primarycolor);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
}

.popular .list h4 {
    font-size: 14px;
    font-weight: 600;
    color: #0d1b36;
    margin-bottom: 5px;
}

.popular .list p {
    font-size: 14px;
    font-weight: 400;
    color: var(--btn-text);
    max-width: 258px;
}

.popular .list a {
    margin-bottom: 18px;
    border-radius: 10px;
    padding: 10px 10px;
    display: block;
    text-decoration: none;
}

.popular .list:last-of-type {
    margin-bottom: 0;
}

.popular .list a:hover,
.popular .list.active a {
    background-color: var(--secondarLight);
}

.search-blog {
    margin-bottom: 32px;
}

.search-blog .form-control {
    border-radius: 30px;
    border: 1px solid var(--primarycolor);
    font-size: 16px;
    color: var(--btn-text);
    box-shadow: unset;
    border-right: unset;
    padding: 12px 15px;
}

.search-blog input::placeholder {
    color: #c1c1c1;
}

.search-blog .input-group-text {
    border-left: unset;
    border-radius: 0 30px 30px 0;
    background: transparent;
    border-color: var(--primarycolor);
    padding: 16px 15px;
    color: var(--primarycolor);
    font-size: 20px;
    cursor: pointer;
}

.blog-card .image img {
    transition: var(--transition);
}

.blog-card .image {
    overflow: hidden;
    border-radius: 15px;
}

.blog-card:hover .image img {
    transform: scale(1.15);
    transition: var(--transition);
}

.blog-card .deatils p {
    color: var(--primarycolor);
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

.blogs a {
    text-decoration: none;
    color: unset;
}

.blog-card .deatils h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 5px 0 10px;
    max-width: 357px;
}

.blogs {
    margin-bottom: 170px;
}

/* Blog-details Page */
.detail-blog img {
    border-radius: 10px !important;
}

@media (min-width: 768px) {
    .detail-blog .col-md-9 {
        width: 87%;
    }
}

@media (min-width: 768px) {
    .detail-blog .col-md-2 {
        width: 12%;
    }
}

.banner-blog .tittle h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--btn-text);
}

.social-media {
    border-radius: 50%;
    background-color: var(--secondarLight);
    width: 60px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: var(--black);
    font-size: 22px;
    margin-bottom: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.detail-blog .social-icons a {
    text-decoration: none;
}

.social-media:hover {
    background: var(--white);
    border: 1px solid;
    color: #3eadff;
    transition: var(--transition);
}

.blog-faq {
    margin-bottom: 80px;
}

.blog-faq .tittle h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.faq-answers {
    background: var(--secondarLight);
    border-left: 4px solid var(--blue-color);
    border-radius: 10px;
    padding: 30px 20px 20px;
}

.faq-answers .accordion-item {
    background-color: transparent !important;
    border: unset !important;
}

.faq-answers .accordion-button {
    color: var(--primarycolor);
    background: transparent;
    color: var(--primarycolor);
    font-size: 20px;
    font-weight: 600;
    padding: 16px 0;
}

.faq-answers .accordion-button:not(.collapsed) {
    color: var(--primarycolor);
    background: transparent;
    box-shadow: none;
}

.faq-answers .accordion-button:focus {
    box-shadow: none;
}

.faq-answers .accordion-body {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    padding: 16px 0;
    max-width: 1030px;
}

.faq-answers .accordion-button::after {
    background-image: url(../image/faq-arrow.svg);
    transform: rotate(180deg);
}

.faq-answers .accordion-button:not(.collapsed)::after {
    background-image: url(../image/faq-arrow.svg);
    transform: rotate(0deg);
}

.blog-explain {
    margin-bottom: 100px;
}

.blog-explain h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-explain p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 20px;
}

.blog-explain .image {
    position: relative;
    z-index: 1;
    padding: 0 40px 20px;
}

.blog-explain .image::before {
    content: "";
    padding-bottom: 22px;
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    background: var(--gradient-bg);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 67%;
}

.blog-explain .v-left {
    height: 50%;
}

.blog-explain .book-pic {
    text-align: center;
    margin: auto;
}

.blog-explain .book-text {
    max-width: 250px;
    margin: auto;
}

.blog-explain .book-text h2 {
    color: var(--white);
    font-size: 40px;
    margin: 0;
    padding: 20px 0;
    text-decoration: underline;
    cursor: pointer;
}

.blog-explain .alert {
    background: var(--secondarLight);
    border-radius: 10px;
    padding: 20px 40px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.blog-explain .alert::before {
    content: "";
    background-color: var(--primarycolor);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    border-radius: 10px 0 0 10px;
}

.blog-explain .alert p {
    color: var(--blue-color);
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
}

/* book popup  */
.popup-book .modal-content {
    background-color: var(--primarycolor);
    position: relative;
    z-index: 1;
}

.popup-book .section1 {
    padding: 64px 0;
}

#freeguied .modal-header .btn-close {
    background: transparent
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath d='M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c-9.4 9.4-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0z' fill='%23fff'/%3e%3c/svg%3e")
        center / 1em auto no-repeat;
}

.v-left {
    position: absolute;
    width: 35%;
    height: 80%;
    opacity: 0.34;
    left: 0;
    bottom: 6%;
    z-index: -1;
}

.v-right {
    position: absolute;
    width: 35%;
    height: 77%;
    opacity: 0.4;
    right: 0;
    top: 0;
    z-index: -1;
}

.img-book img {
    max-width: 330px;
    height: 100%;
}

.popup-book .section1 h2 {
    color: var(--white);
    margin: 10px 0;
}

.popup-book .modal-body {
    position: unset;
}

.popup-book .section1 h3 {
    font-size: 26px;
    color: var(--white);
}

.popup-book .section1 p {
    font-size: 18px;
    color: rgba(225, 225, 225, 0.8);
    margin-bottom: 28px;
}

.popup-book .section1 .form {
    max-width: 483px;
    margin: auto;
}

.popup-book .form input {
    margin: 0 0 20px;
}

.popup-book .form button {
    max-width: 483px;
    margin-top: 28px;
    font-weight: 400;
    background: var(--bluecolor);
    color: var(--white);
    transition: var(--transition);
}

.popup-book .form button:hover {
    color: var(--btn-text);
    background-color: var(--white);
    transition: var(--transition);
}

.popup-book .form input::placeholder {
    color: rgba(225, 225, 225, 0.7);
    -webkit-text-fill-color: rgba(225, 225, 225, 0.7);
}

.popup-book .section1 .form-control {
    background-color: var(--btn-text);
    color: var(--white);
    border-radius: 50px;
    border: 1px solid rgba(225, 225, 225, 0.7);
    padding: 14px 15px;
}

/* Author-Section */
.author-section {
    padding: 170px 0 20px;
    margin: 64px 0 200px;
}

.author-profile {
    display: flex;
    justify-content: space-between;
}

.author-profile .author-leftside {
    width: 28%;
    text-align: center;
}

.author-profile .author-righttside {
    width: 70%;
}

.author-section .profile-pic img {
    border-radius: 50% !important;
    max-width: 200px;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 20px;
}

.author-links .tittle h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--primarycolor);
    margin-bottom: 16px;
}

.author-links .profiles-link .btn_site {
    min-width: 230px;
    background-color: var(--primarycolor);
    border: 2px solid var(--primarycolor);
    color: var(--white);
    padding: 13px 16px;
}

.author-links .profiles-link .btn_site:hover {
    background: transparent;
    color: var(--primarycolor);
}

.author-links .profiles-link .btn_site::before {
    background: var(--white);
}

.author-links .profiles-link {
    margin-bottom: 16px;
}

.author-links .profiles-link:last-of-type {
    margin-bottom: 0;
}

.details-author .tittle h2 {
    font-size: 40px;
    font-weight: 400;
}

.details-author .tittle p {
    font-size: 24px;
    font-weight: 400;
    color: var(--primarycolor);
}

.details-author .tittle {
    margin-bottom: 40px;
}

.details-author .para p {
    font-size: 20px;
    font-weight: 400;
    color: var(--primarycolor);
    margin-bottom: 14px;
    max-width: 750px;
}

.details-author .para p:last-of-type {
    margin-bottom: 0;
}

.detail-blog .author a {
    display: flex;
    align-items: center;
    margin: 30px 0 0 30px;
}

.detail-blog .author-pic img {
    border-radius: 50% !important;
    max-width: 100px;
    aspect-ratio: 1;
    object-fit: cover;
    margin-right: 12px;
}

.detail-blog .author .text h2 {
    font-size: 30px;
    font-weight: 400;
    color: var(--secondarycolor);
}

.detail-blog .author .text p {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondarycolor);
}

/* Responsive */

@media (max-width: 1399px) {
    .section-4 .img {
        padding: 50px 55px;
    }

    .banner-blog .tittle h2 {
        font-size: 36px;
    }

    .section-4 .rotate-logo {
        width: 50px;
        height: 50px;
    }

    #rotatingLogos {
        width: 300px;
        height: 300px;
    }

    /* blog oage  */
    .blog-explain .image {
        padding: 25px;
    }

    .blog-explain .book-text h2 {
        font-size: 38px;
    }

    .checkout-buy .pay-details {
        padding: 20px 10px;
    }

    .popular-blog-list {
        overflow-y: auto;
        padding: 10px;
    }

    .popular-blog-list::-webkit-scrollbar {
        width: 5px;
    }

    .popular-blog-list::-webkit-scrollbar-track {
        background: #f0f6f9;
    }

    .popular-blog-list::-webkit-scrollbar-thumb {
        background: var(--primarycolor);
        border-radius: 10px;
        height: 50px;
    }
}

@media (max-width: 1199px) {
    /* banner */
    h1 {
        font-size: 100px;
    }

    .banner h3 {
        margin-top: 10px;
    }

    .section-1 .arrow2 {
        top: -7px;
    }

    .section-4 .img {
        padding: 50px 38px;
        max-width: 410px;
        margin-left: auto;
    }

    .section-4 h3 {
        font-size: 32px;
    }

    .section-2 img {
        max-width: 190px;
    }

    .banner-blog .tittle h2 {
        font-size: 30px;
    }

    /* Author Profile */
    .author-section {
        padding: 150px 0 20px;
        margin: 64px 0 150px;
    }

    .author-section .profile-pic img {
        max-width: 170px;
    }

    .details-author .para p {
        font-size: 18px;
    }

    .popular-blog-list {
        max-height: 525px;
    }
}

@media (max-width: 991px) {
    .banner-img {
        margin: 60px auto 0;
    }

    .section-1 .arrow {
        width: 87%;
    }

    .section-1 .arrow2 {
        top: 4px;
    }

    .section-2 .text h2 {
        font-size: 36px;
    }

    .section-2 img {
        max-width: 140px;
    }

    /* Section-3 */
    .section3 .text h2 {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .bref {
        max-width: 100%;
    }

    .section-4 .text {
        max-width: 100%;
    }

    .section-4 .img {
        margin-bottom: 50px;
    }

    .section6 .col-md-auto {
        max-width: 205px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .contact-form h3 {
        font-size: 17px;
    }

    .contact-form label {
        font-size: 15px;
    }

    .contact-form .form-control {
        font-size: 15px;
    }

    /* section-5 */
    .section-5 {
        margin-top: 100px;
    }

    .section-5 .text {
        margin-top: 50px;
    }

    /* Section-6 */
    .section6 p {
        font-size: 13px;
    }

    .section6 h3 {
        font-size: 17px;
    }

    .icon-img {
        min-height: 0px;
    }

    /* Section-9 */
    .public-icons {
        margin: -15% auto 0;
    }

    .domain-list {
        padding: 60px 20px;
        margin-top: -23%;
    }

    .domain-list .dom-text h3 {
        font-size: 29px;
    }

    .section-4 .img {
        padding: 50px 27px;
    }

    footer .text img {
        max-width: 240px;
    }

    .prod-icon .hover-content {
        padding: 10px 25px;
    }

    .contact-form [type="checkbox"] {
        margin-top: 2px;
    }

    .section-2 {
        padding: 120px 0;
    }

    .section-2 .img .rocket-img {
        left: 0;
    }

    /* blog page  */
    .blog-explain .image {
        padding: 25px;
    }

    /* Author */
    .author-section .profile-pic img {
        max-width: 140px;
    }

    .detail-blog .author .text h2 {
        font-size: 25px;
    }

    .detail-blog .author .text p {
        font-size: 16px;
    }

    .author-links .tittle h3 {
        font-size: 18px;
    }

    .author-links .profiles-link .btn_site {
        min-width: 160px;
        font-size: 14px;
    }

    .details-author .tittle h2 {
        font-size: 30px;
    }

    .details-author .tittle p {
        font-size: 18px;
    }

    .details-author .para p {
        font-size: 16px;
    }

    .details-author .tittle {
        margin-bottom: 20px;
    }

    .author-section {
        padding: 100px 0 20px;
    }

    .detail-blog .author .text h2 {
        font-size: 25px;
    }

    .detail-blog .author .text p {
        font-size: 16px;
    }

    .social-media {
        font-size: 16px;
        width: 35px;
    }

    .popular-blog-list {
        max-height: 300px;
    }

    .banner-blog .main-image .img-details {
        padding: 15px;
    }

    .blog-card .deatils h2 {
        font-size: 14px;
    }

    .banner-blog .main-image img {
        height: 250px;
    }

    /* poker chip page  */
    .header-v2 .navbar-brand img {
        max-width: 190px !important;
    }
    .header-v2 .navbar-expand-md .navbar-nav .nav-link {
        font-size: 14px !important;
    }
    .header-v2 .btn_site.style-2 {
        min-width: unset !important;
    }
    .poker-text h1 {
        font-size: 30px !important;
    }
    .poker-text span,
    .poker-text h3 {
        font-size: 16px !important;
    }
    .poker-text p {
        font-size: 14px !important;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px 10px;
    }

    .header .sub-text {
        color: var(--btn-text);
    }

    .header .btn_site {
        background: var(--bluecolor);
        color: var(--white);
        border-radius: 10px;
        margin-top: 10px;
    }

    .banner {
        text-align: center !important;
        padding: 130px 0 40px !important;
    }

    .banner h2 {
        font-size: 40px;
    }

    .banner h3 {
        font-size: 26px;
    }

    h1 {
        font-size: 70px;
    }

    .banner p {
        font-size: 22px;
    }

    h2.small,
    .section3 .text h2,
    .section-4 h3 {
        font-size: 30px;
    }

    .section-1 h2 {
        margin-bottom: 45px;
    }

    .section-1 .arrow {
        display: none;
    }

    .section-1 .col-md-4 {
        margin-bottom: 40px;
    }

    .section-1 .text p {
        font-size: 14px;
    }

    .section-2 {
        padding: 70px 0px 50px;
    }

    .section-2 .wrapper {
        text-align: center;
    }

    .section-2 .text {
        margin-top: 80px;
    }

    .section-2 .text h3 {
        font-size: 24px;
    }

    .bref {
        padding: 20px 15px;
    }

    .contact-form {
        margin-top: 40px;
    }

    .bref .img img {
        width: 30px;
    }

    .bref .bref-text {
        font-size: 14px;
    }

    /* section-4 */
    .section-5 {
        margin: 0px 0px 50px;
    }

    .section-5 .text li {
        margin-top: 15px;
        font-size: 14px;
    }

    .section-5 .section-title p {
        font-size: 12px;
    }

    /* section-3 */
    .section3 {
        margin: 30px 0 50px;
        padding: 50px 0px;
    }

    .al-range-slider__grid-mark {
        font-size: 12px;
    }

    .section-4 .img {
        max-width: 350px;
        margin: 0 auto 50px;
        padding: 35px 6px;
    }

    .section-4 h3 {
        font-size: 28px;
    }

    .section-4 .rotate-logo {
        width: 40px;
        height: 40px;
    }

    .contact-form {
        padding: 35px 20px;
    }

    .contact-form h3 {
        font-size: 15px;
        line-height: 1.5;
    }

    .progress-text {
        font-size: 14px;
    }

    .option {
        display: none;
    }

    .contact-form button {
        margin: 40px 0 0;
        min-width: auto;
        width: 100%;
    }

    .section9 .text {
        padding: 40px 15px 100px;
    }

    .section9 h2,
    .section9 h3 {
        font-size: 26px;
        line-height: 1.3;
    }

    .prod-icon {
        max-width: 100%;
    }

    .section-4 .text p {
        font-size: 14px;
    }

    .section6 {
        padding-top: 0;
    }

    .section6 .wrapper {
        padding: 45px 20px;
    }

    .section6 .col-md-auto {
        width: 100%;
        max-width: 100%;
    }

    .section6 h3 {
        min-width: 115px;
    }

    .domain-list {
        padding: 50px 20px;
        margin-top: -49%;
    }

    .domain-list .dom-text h3 {
        font-size: 29px;
        margin-bottom: 30px;
        text-align: center;
    }

    .domain-list .dom-img {
        max-width: 280px;
        margin: auto;
    }

    /* Fotter */
    footer .text img {
        max-width: 220px;
    }

    footer .text p {
        font-size: 16px;
    }

    footer .text p.font-medium {
        font-size: 18px;
    }

    .prod-icon .pilly-icon {
        width: 65%;
        height: 100%;
    }

    .quote-page h1 {
        font-size: 40px;
    }

    .quote-page p {
        font-size: 16px;
    }

    .quote-page .banner {
        margin: 50px 0;
    }

    .question .txt h2 {
        font-size: 30px;
    }

    .question {
        padding: 50px 0 20px;
    }

    .question .txt button {
        font-size: 14px;
    }

    .question .accordion {
        margin-top: 40px;
    }

    .question .main-sec {
        margin-bottom: 50px;
    }

    .section-8 .text td {
        font-size: 14px;
        padding: 20px 0 20px 15px;
    }

    .section-8 th {
        padding: 20px 0 20px 15px;
        font-size: 14px;
    }

    .section-8 th.short {
        padding-right: 10px;
    }

    .section-8 th.short img {
        max-width: 20px;
    }

    .section-8 td img {
        max-width: 20px;
    }

    .contact-form [type="checkbox"] {
        margin-top: 2px;
    }

    .section-8 .table-responsive {
        padding: 15px 10px;
        margin: 0 -12px;
    }

    .section-8 {
        padding: 20px 0;
    }

    .section-5 .text {
        margin-top: 25px;
    }

    .prod-icon .hover-content h4 {
        font-size: 20px;
    }

    /* Blog Page */
    section.banner-blog {
        margin: 0;
        padding: 125px 0 40px;
    }

    .banner-blog .main-image .img-details {
        padding: 10px 10px 20px;
    }

    .banner-blog .main-image {
        margin-bottom: 20px;
        height: unset;
    }

    .main-image .img-details h2,
    .blog-card .deatils h2,
    .blog-faq .tittle h2 {
        font-size: 20px !important;
    }

    .banner-blog .tittle h2 {
        font-size: 25px !important;
    }

    .popular .tittle h3 {
        margin-bottom: 10px;
    }

    .popular .list a {
        margin-bottom: 0;
    }

    /* Blog Details */
    .detail-blog .social-icons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .social-media {
        margin-bottom: 0;
        width: 50px;
    }

    .blog-explain .image {
        margin-bottom: 30px;
        background-size: 100% 56%;
    }

    .blog-explain .book-text h2 {
        font-size: 24px;
    }

    .detail-blog .social-icons {
        margin-top: 0;
    }

    .blog-explain .book-text {
        max-width: 204px;
    }

    .blog-faq .tittle h2 {
        font-size: 15px !important;
    }

    .faq-answers {
        padding: 15px;
    }

    .faq-answers .accordion-button {
        font-size: 15px;
    }

    .faq-answers .accordion-body {
        padding: 0;
    }

    .v-left,
    .v-right {
        width: 50%;
    }

    .popup-book .section1 h3 {
        font-size: 20px;
    }

    .blog-faq {
        margin-bottom: 30px;
    }

    .popup-book .section1 {
        padding: 20px 0 40px;
    }

    .blog-explain .alert {
        padding: 15px;
    }

    .blog-explain .alert p {
        font-size: 14px;
    }

    .blog-explain {
        margin-bottom: 40px;
    }

    .popular .list {
        margin-bottom: 10px;
    }

    .search-blog .input-group-text {
        padding: 14px;
    }

    /* Author Profile*/
    .author-section .profile-pic img {
        max-width: 200px;
    }

    .author-profile {
        display: block;
    }

    .author-profile .author-leftside {
        width: 100%;
        margin-bottom: 40px;
    }

    .author-profile .author-righttside {
        width: 100%;
    }

    .author-links .profiles-link .btn_site {
        width: 100%;
        min-width: unset;
        font-size: 16px;
    }

    .details-author .para p {
        font-size: 14px;
    }

    .detail-blog .author .text h2 {
        font-size: 22px;
    }

    .detail-blog .author .text p {
        font-size: 14px;
    }

    .profiles-link.btn-wrape {
        width: unset;
    }

    .popular-blog-list {
        overflow-y: unset;
        padding: unset;
        max-height: unset;
    }

    .blog-explain .book-text {
        max-width: 100%;
        text-align: center;
        font-size: 30px !important;
    }

    .blog-explain p {
        font-size: 14px;
    }

    .detail-blog .author-pic img {
        max-width: 70px;
    }

    .detail-blog .author a {
        margin: 20px 0 0;
    }

    .blog-explain .book-text h2 {
        font-size: 30px;
    }

    .blog-faq .tittle h2 {
        margin-bottom: 10px;
    }

    .blog-explain .image {
        padding: 0 25px 25px;
    }

    .popup-book .section1 .form-control {
        padding: 11px 15px;
    }

    .popup-book .form button {
        margin-top: 20px;
    }

    .header-blog {
        padding: 5px 0 !important;
    }

    .header .btn_site {
        padding: 9px 0;
    }

    .main-image .img-details h2 {
        font-size: 16px !important;
    }

    /* pocker chip page  */
    .header-v2 .btn_site.style-2 {
        width: 100% !important;
    }
    .header-v2 .nav-item {
        width: 100% !important;
        text-align: center !important;
    }
    .poker-text h1 {
        margin: 7px auto 20px !important;
    }
    .poker-text span,
    .poker-text h3 {
        font-size: 16px !important;
    }
    .poker-text p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    .poker-text .btn_site {
        width: 100% !important;
    }
    .poker-img {
        max-width: 250px !important;
        margin: auto !important;
    }
}

#contactModal .modal-dialog {
    max-width: 1140px;
}


/* poker chip page  */

.header-v2 .btn_site.style-2 {
    min-width: 120px;
}

.small-wrapper {
    max-width: 1170px;
    margin: auto;
}

.poker-banner {
    padding: 180px 0 170px;
    margin-bottom: 150px;
}

.poker-text span,
.poker-text h3 {
    color: white;
    font-size: 22px;
    font-weight: 500;
}

.poker-text h1 {
    color: white;
    font-size: 56px;
    font-weight: 600;
    margin: 10px 0 25px;
    line-height: 1.3;
}

.poker-text p {
    color: white;
    font-size: 18px;
    max-width: 620px;
    margin: 5px 0 35px;
}

.btn_site.style-2 {
    border-radius: 4px;
    padding: 10px 24px;
    min-width: unset;
    color: #4542b8;
}

.btn_site.style-2:hover {
    color: var(--white);
}

