* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}

@mixin transition($property) {
    -webkit-transition: $property;
    transition: $property;
}

@mixin transform($transform) {
    -webkit-transform: $transform;
    transform: $transform;
}

@mixin box-shadow($box-shadow) {
    -webkit-box-shadow: $box-shadow;
    box-shadow: $box-shadow;
}

@mixin border-radius($border-radius) {
    -webkit-border-radius: $border-radius;
    border-radius: $border-radius;
}

@mixin transition-duration($transition-duration) {
    -webkit-transition-duration: $transition-duration;
    transition-duration: $transition-duration;
}

@mixin transition-property($transition-property) {
    -webkit-transition-property: $transition-property;
    transition-property: $transition-property;
}

@mixin transition-timing-function($transition-timing-function) {
    -webkit-transition-timing-function: $transition-timing-function;
    transition-timing-function: $transition-timing-function;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a:focus {
    /* // -moz-outline-style: none; */
    outline: none
}

input[type="file"]::-webkit-file-upload-button {
    cursor: pointer;
}

input[type="file"]::-moz-file-upload-button {
    cursor: pointer;
}

input[type="file"]::-ms-file-upload-button {
    cursor: pointer;
}

input[type="file"]::-o-file-upload-button {
    cursor: pointer;
}

input[type="file"] {
    cursor: pointer;
}

html body {
    font-family: "Inter Tight", sans-serif;
    font-weight: normal;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    padding: 68px 0px 0px 0px;
    margin: 0px;
    position: relative;
}

*::selection {
    color: var(--white);
    background: var(--primary);
}

*::-moz-selection {
    color: var(--white);
    background: var(--primary);
}

*::-webkit-selection {
    color: var(--white);
    background: var(--primary);
}

*::-ms-selection {
    color: var(--white);
    background: var(--primary);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    font-family: "Inter Tight", sans-serif;
    border: 0;
    outline: 0;
    font-size: 100%;
}

b,
strong {
    font-weight: 600;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

a,
div a:hover,
div a:active,
div a:focus,
button {
    text-decoration: none;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

a,
span,
div a:hover,
div a:active,
button {
    text-decoration: none;
}

*::after,
*::before,
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

body a {
    font-family: "Inter Tight", sans-serif;
    font-weight: normal;
    color: var(--secondary);
    text-decoration: none;
    outline: none !important;
    transition: all 0.5s;
}

body a:focus {
    outline: none !important;
}

body a:hover {
    color: var(--primary);
    outline: none !important;
    transition: all 0.5s;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ul,
li {
    list-style: none;
}

input,
select,
textarea,
.site textarea {
    font-family: "Inter Tight", sans-serif;
    font-weight: normal;
    width: 100%;
    background: #fff;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}


img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    outline: none !important;
}

body p {
    color: var(--secondary);
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    padding-bottom: 10px;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.256px;
}

body p a {
    color: var(--secondary);
    font-weight: 900;
}

body p:last-child {
    padding-bottom: 0px;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Inter Tight", sans-serif !important;
}



.gform_wrapper .gform_heading {
    display: none;
}

.gform_wrapper.gravity-theme form {
    position: relative;
}

.gform_wrapper .gfield input, .gform_wrapper .gfield select, .gform_wrapper .gfield textarea {
    background: rgb(255, 255, 255);
    height: 46px;
    padding: 5px 25px !important;
    color: var(--secondary);
    font-size: 16px !important;
    font-weight: 500;
    border-radius: 6px;
    letter-spacing: 0.224px;
    font-family: "Inter Tight", sans-serif !important;
    border: 1px solid rgba(10, 31, 31, 0.13);
}

.gform_wrapper .gfield input::placeholder, .gform_wrapper .gfield select::placeholder, .gform_wrapper .gfield textarea::placeholder {
    color: rgb(10 31 31 / 40%);
    font-weight: 500;
}

.gform_wrapper .gfield select {
    line-height: normal !important;
}
.gform_wrapper .gfield select option{
    color: #000;
}

.gform_wrapper .gfield_checkbox input ,.gform_wrapper input[type="checkbox"]{
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    height: 14px;
    width: 14px;
    line-height: 14px !important;
    padding: 0 !important;
    margin-right: 9px;
    position: relative;
    cursor: pointer;
    height: auto !important;
}
.gform_wrapper .gfield_error legend{
    color: #222 !important;
}
.gform_wrapper .gfield_error label{
    color: #999 !important;
}
/* // .gform_wrapper .gfield_checkbox input[type=checkbox]:before ,.gform_wrapper input[type="checkbox"]:before{
//     content: "";
//     display: block;
//     position: absolute;
//     width: 14px;
//     height: 14px;
//     top: 0;
//     left: 0;
//     border-radius: 2px;
//     border: 1px solid rgba(255, 255, 255, 0.15);
//     background: rgba(255, 255, 255, 0.04);
// }
// .gform_wrapper .gfield_checkbox input[type=checkbox]:checked:before ,.gform_wrapper input[type="checkbox"]:checked:before {
//     border-color: #0FB2B2;
//     background: #0FB2B2;
// }
// .gform_wrapper .gfield_checkbox input[type=checkbox]:checked:after ,.gform_wrapper input[type=checkbox]:checked:after {
//     content: "";
//     display: block;
//     width: 5px;
//     height: 9px;
//     border: 1px solid #fff;
//     border-width: 0 2px 2px 0;
//     transform: rotate(45deg);
//     position: absolute;
//     top: -3px;
//     left: 0;
//     bottom: 0;
//     right: 0;
//     margin: auto;
// } */
.gform_wrapper .gfield .gfield_checkbox .gfield_label {
    font-size: 16px;
    font-weight: 400;
    color: #FFF;
}
.gform_wrapper .gfield_checkbox {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}
.gform_wrapper .gfield legend.gfield_label .gfield_required {
    display: none;
}
.gform_wrapper .gfield_checkbox label {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-transform: capitalize;
}

.gform_wrapper .gfield select {
    cursor: pointer;
    appearance: none;
}
.gform_wrapper .gfield .ginput_container_select::before {
    position: absolute;
    content: "";
    background-image: url("https://www.pure-crypto.com/wp-content/uploads/2026/01/drop-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 9px;
    right: 20px;
    top: 0;
    pointer-events: none;
    bottom: 0;
    margin: auto 0;
}
html .gform_wrapper .gfield textarea {
    height: 120px !important;
    resize: none;
    padding: 15px 20px !important;
}
.gform_wrapper .gfield div.ginput_container {
    background-color: transparent;
    width: 100%;
}

.gform_wrapper::-webkit-input-placeholder,
.gform_wrapper:-ms-input-placeholder,
.gform_wrapper::placeholder {
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 400;
}

.gform_wrapper .gform_footer {
    position: relative;
    width: max-content;
    padding: 0 !important;
    margin-top: 50px !important;
}

.ginput_container_consent label.gfield_consent_label {
    color: #4D4D4D;
    font-size: 16px;
}
.gform_wrapper .gfield div.ginput_container {
    position: relative;
}
.ginput_container_consent label.gfield_consent_label a {
    color: var(--primary);
}
.ginput_container_consent label.gfield_consent_label a:hover {
    color: var(--secondary);
}

.gform_wrapper .gform_footer .gform_button {
    appearance: none;
    z-index: 11;
    margin: 0 !important;
    border: unset;
    background: var(--primary);
    padding: 15px 61px 15px 30px;
    display: flex;
    border-radius: 100px;
    cursor: pointer;
    font-family: "Inter Tight", sans-serif;
    color: var(--white);
    gap: 10px;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.34px;
    transition: all 0.5s ease;
    outline: 2px solid rgba(30, 136, 229, 0.5) !important;
    position: relative;
}

.gform_wrapper .gform_footer .gform_button:hover {
    background: var(--secondary);
    color: var(--white);
    outline: 2px solid rgba(30, 136, 229, 0.5) !important;
}

body img.gform_ajax_spinner {
	display: none !important;
}

.gform_wrapper input::-webkit-outer-spin-button,
.gform_wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

html .gform_wrapper input[type=radio] {
    height: 20px !important;
    width: 20px !important;
    margin-right: 5px;
    line-height: normal !important;
    background: transparent!important;
    padding: 0 !important;
    appearance: none;
    border-radius: 100px;
    position: relative;
}

html .gform_wrapper input[type=radio]:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: -1px;
    bottom: 0;
    border-radius: 100px;
    border: 2px solid rgba(0, 0, 0, 0.20) !important;
    margin: auto;
}
html .gform_wrapper input[type=radio]:checked:before{
    border-color: var(--primary);
    background: var(--primary);
}
html .gform_wrapper input[type=radio]:checked:after {
    content: "";
    display: block;
    width: 5px;
    height: 9px;
    border: 1px solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: -3px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.gform_wrapper .gfield_radio {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.gform_wrapper .gfield_radio label {
    cursor: pointer;
    white-space: nowrap;
    color: var(--secondary);
    font-size: 14px !important;
    font-weight: 500;
    line-height: 171.429%;
    letter-spacing: 0.224px;
}

.gform_validation_errors {
    background: transparent !important;
    border: 1px solid red !important;
    margin: 15px 0 !important;
    padding: 0 !important;
    text-align: center;
    height: auto !important;
    line-height: normal;
    box-shadow: unset !important;
}

.gform_validation_errors h2.gform_submission_error {
    padding: 10px !important;
    font-size: 12px !important;
    line-height: 120% !important;
    background: transparent;
    font-weight: 500 !important;
    margin-top: 0px !important;
    letter-spacing: 0.4px;
    color: red !important;
    text-align: center;
    margin: 0 !important;
    text-transform: capitalize;
}

.gform_validation_errors span.gform-icon.gform-icon--close {
    display: none !important;
}

.gfield_validation_message {
    background: transparent !important;
    border: 0 !important;
    font-size: 11px !important;
    padding: 0 !important;
    color: red !important;
    font-weight: 300;
    letter-spacing: 1.5px !important;
    position: absolute;
    bottom: -17px;
}

.instruction.validation_message {
    display: none;
}

.gform_confirmation_message h3 {
    padding: 20px 0 0;
    font-weight: 600;
}

.gform_confirmation_message p {
    font-size: 18px !important;
    color: var(--secondary);
}

.gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: unset !important;
    grid-gap: 20px 20px !important;
}
legend.gfield_label {
    color: var(--secondary);
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: normal;
    letter-spacing: 0.224px;
    margin-bottom: 15px !important;
}

.gform_confirmation_message img {
    margin-left: 0;
}

.gform_confirmation_message h3 {
    padding: 10px 0 0;
    font-weight: 600;
    font-size: 30px;
    color: #fff;
}

.gform_confirmation_message p {
    line-height: normal;
    font-size: 18px;
    color: var(--secondary);
}

.gform_confirmation_message {
    margin-top: 10px;
    color: green;
    font-weight: 700;
    font-size: 18px;
    background: #e1ffe1;
    padding: 20px 30px;
    text-align: center;
    border-radius: 5px;
}

.id-wrapper {
    margin-top: -120px;
    padding-top: 120px;
    display: block;
    width: 100%;
    pointer-events: none;
}
.for-mobile{
    display: none;
}


.fixed {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
#header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 888;
    transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    transition-property: all;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    -moz-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    background: var(--white);
    margin: 0 auto;
    padding: 14px 0px;
}

#header::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(32, 12, 46, 0.60);
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.3s;
}
#header .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}


#header .wrapper ul#menu-landing-header-menu {
    display: flex;
    align-items: center;
}

#header .wrapper ul#menu-landing-header-menu > li {
    position: relative;
    margin-right: 40px;
}

#header .wrapper ul#menu-landing-header-menu li a {
    position: relative;
    font-family: "Inter Tight", sans-serif;
    cursor: pointer;
    color: #0A1F1F;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.32px;
}

#header .wrapper ul#menu-landing-header-menu li a:hover,
#header .wrapper ul#menu-landing-header-menu li.active,
#header .wrapper ul#menu-landing-header-menu li.menu-has-children:hover a {
    color: var(--primary);
}

#header .wrapper ul#menu-landing-header-menu li a:hover::before,
#header .wrapper ul#menu-landing-header-menu li.active a::before,
#header .wrapper ul#menu-landing-header-menu li.menu-has-children:hover>a::before {
    opacity: 1;
}

#header .wrapper ul#menu-landing-header-menu li.menu-item-has-children a::before {
    content: none;
}

#header .wrapper ul#menu-landing-header-menu li.menu-has-children:hover>a {
    color: var(--primary);
}

#header .mobile-info-wrap {
    display: none;
}

#header .wrapper ul#menu-landing-header-menu span.submenu-click-arrow {
    background: url("https://www.pure-crypto.com/wp-content/uploads/2026/01/ic-menu-dropdown-arrow-black.svg") no-repeat;
    display: block;
    width: 10px;
    height: 7px;
    position: absolute;
    left: auto;
    right: 0px;
    top: 8px;
    cursor: pointer;
    transition: all ease 0.5s;
    background-size: contain;
    pointer-events: none;
}

#header .wrapper ul#menu-landing-header-menu ul.sub-menu {
    background-color: var(--white);
    width: 240px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 0;
    padding: 10px;
    top: 40px;
    transition: cubic-bezier(0.25, 0.1, 0.32, 0.83) 0.5s;
    -webkit-transition: cubic-bezier(0.25, 0.1, 0.32, 0.83) 0.3s;
    -moz-transition: cubic-bezier(0.25, 0.1, 0.32, 0.83) 0.3s;
    -o-transition: cubic-bezier(0.25, 0.1, 0.32, 0.83) 0.3s;
    box-shadow: 0 0 10px rgba(0 0 0 / 10%);
    transform-origin: top;
    border-radius: 5px;
}

#header .wrapper ul#menu-landing-header-menu ul.sub-menu li {
    width: 100%;
    height: auto;
    margin: 0 0 2px;
    position: relative;
    padding: 0px;
    text-align: left;
}

#header .wrapper ul#menu-landing-header-menu ul.sub-menu li a {
    display: block;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
    transition: none;
    cursor: pointer;
    transition: all 0.5s;
    line-height: 120%;
    border-radius: 5px;
}

#header .wrapper ul#menu-landing-header-menu ul.sub-menu li:last-child a {
    border: 0;
}

#header .wrapper ul#menu-landing-header-menu li.menu-item-has-children {
    padding-right: 20px;
}

#header .wrapper ul#menu-landing-header-menu li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

#header .wrapper ul#menu-landing-header-menu li.menu-item-has-children::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    height: 20px;
    top: auto;
    bottom: -19px;
}

#header .wrapper ul#menu-landing-header-menu > li:hover>a {
    color: var(--primary) !important;
}

body:not(.home) #header .wrapper ul#menu-landing-header-menu > li:hover>a,
#header .wrapper ul#menu-landing-header-menu ul.sub-menu li:hover a {
    color: var(--primary) !important;
}


#header.fixed .wrapper ul#menu-landing-header-menu > li:hover>a {
    color: var(--primary) !important;
}

#header .wrapper ul#menu-landing-header-menu > li:last-child {
    margin-right: 0px;
}

#header .wrapper .right-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
#header .wrapper .middle-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
#header .header-btn-wrap {
    margin-left: 47px;
}
#header .header-logo a {
    display: block;
    max-width: 223px;
    position: relative;
    z-index: 99;
}
#header .header-logo a img {
    width: 100%;
    max-height: unset;
    height: auto;
}
#header .wrapper ul#menu-landing-header-menu ul.sub-menu li a:hover {
    color: var(--white) !important;
    background-color: var(--secondary);
}
/**/

#header .res_navigation {
    cursor: pointer;
    display: none;
}

.res_navigation .nav-toggle {
    display: block;
    position: relative;
    transition: 0.3s ease;
    z-index: 9;
    width: 27px;
    height: 22px;
    top: 2px;
}

.res_navigation .nav-toggle span {
    position: absolute;
    height: 3px;
    border-radius: 10px;
    width: 100%;
    background: #0b5489;
    left: auto;
    right: 0;
    top: 0;
}
/* // html.menu-open #header::before {
//     opacity: 1;
//     visibility: visible;
// } */
.res_navigation .nav-toggle span:first-child,
.res_navigation .nav-toggle span:nth-child(2) {
    transition: 0.2s ease-in-out;
    width: 25px;
}

.res_navigation .nav-toggle span:nth-child(2) {
    top: 8px;
}

.res_navigation .nav-toggle span:last-child {
    top: 16px;
    width: 16px;
    transition: opacity 0.2s ease-in-out;
}

.res_navigation .nav-toggle.active {
    transform: rotate(45deg);
}

.res_navigation .nav-toggle.active span:first-child {
    transform: translateX(-3%) rotate(90deg);
    top: 8px;
}

.res_navigation .nav-toggle.active span:last-child {
    opacity: 0;
}

#header.fixed .header-logo a {
    max-width: 200px;
}


.mobile-list-menu{
    display: none;
}


.container {
    width: 1430px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    float: none;
    padding: 0 15px;
}

:root {
    --primary:#1E88E5;
    --secondary:#0A1F1F;
    --dark: #000000;
    --white: #ffffff;
}

.text-center{
    text-align: center;
}

.btn-main {
    background: var(--primary);
    padding: 15px 66px 15px 30px;
    display: flex;
    border-radius: 100px;
    cursor: pointer;
    font-family: "Inter Tight", sans-serif;
    color: var(--white);
    gap: 10px;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.34px;
    transition: all 0.5s ease;
    outline: 2px solid rgba(30, 136, 229, 0.5) !important;
    position: relative;
}
.btn-main::after, .gform_wrapper .gform_footer::after {
    content: "";
    height: 42px;
    width: 42px;
    border-radius: 100px;
    position: absolute;
    top: 0;
    right: 4px;
    background-color: var(--white);
    background-image: url(https://www.pure-crypto.com/wp-content/uploads/2026/01/btn-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: all 0.5s ease;
    border: 2px dashed transparent;
    box-shadow: inset 0 0 0 2px transparent;
    z-index: 13;
    bottom: 0;
    margin: auto 0;
}
.btn-main:hover::after,.gform_wrapper .gform_footer:hover::after {
    border-color: var(--primary); 
    box-shadow: inset 0 0 0 2px var(--primary);
    transform: rotate(180deg);
}
.btn-main:hover {
    background: var(--secondary);
    color: var(--white);
}
.btn-main.sm {
    padding: 11.5px 50px 11.5px 24px;
    font-size: 14px;
    letter-spacing: 0.28px;
}
.btn-main.sm::after {
    height: 34px;
    width: 34px;
    right: 3px;
}

/* width */
::-webkit-scrollbar {
    height: 4px;
    width: 6px;
}  
/* Track */
::-webkit-scrollbar-track {
    background: rgb(0 0 0 / 20%) !important; 
}   
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary); 
    border-radius: 10px;
}


.mCSB_scrollTools {
    opacity: 1 !important;
}
.mCSB_scrollTools .mCSB_draggerRail {
    background-color: rgb(0 0 0 / 20%) !important;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: var(--primary) !important;
}


.jump-link {
    display: block;
    width: 100%;
    margin-top: -82px;
    padding-top: 82px;
}
.page-not-found {
    padding: 180px 0px 60px;
    position: relative;
}
.page-not-found h1 {
    color: #ee0000;
    margin-bottom: 40px;
    letter-spacing: normal;
    font-size: 40px;
    font-family: "Inter Tight", sans-serif;
    line-height: 120%;
}


/* common-inner-banner-section */

.common-inner-banner-section {
    padding: 70px 0px 70px 0px;
    position: relative;
    background: var(--secondary);
    text-align: center;
}
.common-inner-banner-section h2 {
    color: var(--white);
    margin-bottom: 0px;
}
.common-content-section {
    padding: 70px 0px 70px 0px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.common-content-section .common-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}
.common-content-section .common-content-wrapper h1,.common-content-section .common-content-wrapper h2,.common-content-section .common-content-wrapper h3,.common-content-section .common-content-wrapper h4,.common-content-section .common-content-wrapper h5,.common-content-section .common-content-wrapper h6{
    margin: 10px 0px;
    line-height: 130%;
    text-align: left;
    letter-spacing: 0px;
    text-transform: capitalize;
}
.common-content-section .common-content-wrapper p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 10px;
    line-height: 150%;
}
.common-content-section .common-content-wrapper ol {
    margin: 15px 0px;
    position: relative;
    padding-left: 30px;
}
.common-content-section .common-content-wrapper ol > li {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 15px;
    list-style: decimal !important;
}
.common-content-section .common-content-wrapper ul {
    position: relative;
    margin: 20px 0px;
}
.common-content-section .common-content-wrapper ul > li {
    position: relative;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 15px;
    padding-left: 20px;
}
.common-content-section .common-content-wrapper ul > li::before {
    content: "";
    height: 9px;
    width: 9px;
    display: block;
    position: absolute;
    left: 0px;
    top: 11px;
    border-radius: 50px;
    background: #000;
}
.common-content-section .common-content-wrapper h1{
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
}
.common-content-section .common-content-wrapper h2{
    color: #000;
    font-size: 37px;
    font-style: normal;
    font-weight: 800;
}
.common-content-section .common-content-wrapper h3 {
    color: #000;
    font-size: 34px;
    font-style: normal;
    font-weight: 800;
}
.common-content-section .common-content-wrapper h4 {
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
}
.common-content-section .common-content-wrapper h5 {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}
.common-content-section .common-content-wrapper h6 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
}
.common-content-section .common-content-wrapper a {
    color: var(--primary);
    font-weight: 500;
}
.common-content-section .common-content-wrapper a:hover {
    color: #000;
}
.entry-title {
    display: none;
}



 /* Hide default cursor */
/* // * {
//   cursor: none;
// } */

/* Custom Cursor */
/* // .custom-cursor {
//   width: 25px;
//   height: 25px;
//   border: 2px solid var(--primary);
//   border-radius: 50%;
//   position: fixed;
//   pointer-events: none;
//   transform: translate(-50%, -50%);
//   transition: 
//     width 0.2s ease,
//     height 0.2s ease,
//     background 0.2s ease,
//     transform 0.1s ease;
//   z-index: 9999;
// } */

/* Hover effect on clickable elements */
/* // a:hover ~ .custom-cursor,
// button:hover ~ .custom-cursor {
//   width: 40px;
//   height: 40px;
//   background: hsl(208deg 79% 51% / 30%);
// } */

h1 {
    color: #0A1F1F;
    font-size: 64px;
    font-weight: 800;
    line-height: 109.375%;
    letter-spacing: 0.768px;
    text-transform: uppercase;
}
h1 span{
    font-weight: 400;
}


section.main-banner-section {
    position: relative;
    padding: 0px 15px;
}
section.main-banner-section .top-main-box {
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 30px;
    position: relative;
    background-color: #EBEDF2;
    overflow: hidden;
}
section.main-banner-section .top-main-box::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #1E88E5 1.96%, rgba(30, 136, 229, 0) 39.32%);
    opacity: 0.14;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}
section.main-banner-section .top-main-box .row-wrapper{
    position: relative;
    display: grid;
    grid-template-columns: auto 570px;
    gap: 130px;
}
section.main-banner-section .top-main-box .row-wrapper .left-wrap h1{
    margin-bottom: 40px;
    position: relative;
}

section.main-banner-section .typing {
    position: relative;
    display: inline-block;
}
section.main-banner-section .typing::after {
    content: "|";
    color: var(--primary);
}


.bold{
    font-weight: 800;
}
section.main-banner-section .top-main-box .row-wrapper .left-wrap {
    padding: 114px 0px 27% 100px;
    position: relative;
    display: flex;
    flex-direction: column;
}


ul.icon-list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    grid-gap: 20px 32px;
}
ul.icon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.256px;
}
ul.icon-list li .icon{
    height: 24px;
    width: 24px;
    min-width: 24px;
}
ul.icon-list li .icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
section.main-banner-section .top-main-box .row-wrapper .right-wrap {
    padding: 30px 30px 30px 0px;
    position: relative;
}
section.main-banner-section .top-main-box .row-wrapper .right-wrap .banner-image {
    height: 706px;
    width: 100%;
}
section.main-banner-section .top-main-box .row-wrapper .right-wrap .banner-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    object-position: top;
}
section.main-banner-section .top-main-box .row-wrapper .left-wrap .btn-wrapper {
    margin-top: 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 20px;
}
.blue {
    color: rgb(30 136 229 / 60%);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
}


section.main-banner-section .banner-bottom-wrapper {
    display: grid;
    grid-template-columns: 800px auto;
    gap: 100px;
    align-items: end;
    position: relative;
}
section.main-banner-section .banner-bottom-wrapper .contact-form {
    background-color: #0A1F1F;
    position: relative;
    padding: 40px 55px;
    border-radius: 30px;
    background-image: url(https://www.pure-crypto.com/wp-content/uploads/2026/01/conract-from-bg-image.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 350px;
    margin-top: -205px;
}
section.main-banner-section .banner-bottom-wrapper .contact-form .gform_wrapper .gfield_radio label {
    color: var(--white);
}
/* // .gform_wrapper.gravity-theme form fieldset {
//     margin-top: 14px;
// } */
.logo-listing {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 25px 55px;
}
.logo-listing .image img{ 
    opacity: 0.6;
}
section.main-banner-section .banner-bottom-wrapper .right-wrap {
    padding: 40px 0px;
    position: relative;
}
section.main-banner-section .banner-bottom-wrapper .right-wrap .small-title {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.224px;
    margin-bottom: 24px;
    padding-bottom: 0px;
}
/* // .gform_validation_errors {
//     display: none;
// } */
form .gfield{
    position: relative;
}


section.founder-message-section {
    padding: 144px 0px 140px 0px;
    position: relative;
}
.founder-message-box {
    background: linear-gradient(180deg, #A0C5E5 22.88%, rgba(160, 197, 229, 0.00) 100%);
    position: relative;
    border-radius: 20px 20px 0px 0px;
    padding: 100px 20px 0px 20px;
    margin: 0 auto;
    text-align: center;
}
.founder-message-box h2 {
    font-weight: 800;
}
.founder-message-box::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    pointer-events: none;
    background: linear-gradient(0deg, #ffffff 1.96%, rgba(30, 136, 229, 0) 39.32%);
}
h2 {
    color: var(--secondary);
    font-size: 54px;
    font-weight: 600;
    line-height: 114.815%;
    letter-spacing: 0.648px;
    text-transform: uppercase;
    margin-bottom: 50px;
}
h2 span{
    font-weight: 300;
}



.video-box-two {
    height: 540px;
    width: 960px;
    position: relative;
    margin: 0 auto;
}
.video-box-two .video-thumbnail-image {
    position: absolute;
    inset: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    padding: 5px;
    border-radius: 20px;
    background-color: rgb(10 31 31 / 20%);
}
.video-box-two .video-button-two {
    z-index: 5;
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    border-radius: 100px;
    transition: all 0.5s;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 80px;
    margin: auto;
    width: 80px;
    outline: 8px solid rgba(255, 255, 255, 0.21);
    background-color: #1E88E5;
}
.close-btn {
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 35px;
    width: 40px;
    border-radius: 50px;
    height: 40px;
    display: flex;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    color: var(--primary);
    cursor: pointer;
    z-index: 1100;
    background-color: var(--white);
    transition: all 0.5s;
}
.close-btn:hover {
    transform: rotate(90deg);
}
.video-modal-two{
  display: none;
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 92%);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 10px;
}
.video-modal-two:not(.hidden){
  display: flex;
}
.video-modal-two .video-modal-wrapper {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 700px;
    height: 500px;
    border: 2px solid #fff;
}
.video-modal-two video, .video-modal-two iframe {
    height: 100%;
    width: 100%;
}
.hidden {
  display: none !important;
}
.video-box-two .video-button-two:hover {
    background-color: var(--secondary);
    color: var(--white);
    transition: all 0.5s;
}

section.founder-message-section .founder-bottom-wrapper {
    padding-top: 100px;
    position: relative;
}
section.founder-message-section .founder-bottom-wrapper h2 {
    font-weight: 600;
}
.listing-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    position: relative;
    border-radius: 30px;
    border: 1px solid #EBEBEB;
    background: linear-gradient(90deg, rgba(0, 230, 118, 0.00) 0%, rgba(0, 230, 118, 0.08) 49.52%, rgba(0, 230, 118, 0.00) 100%);
    padding: 10px;
}
.listing-wrapper .list-box {
    padding: 44px 50px 45px 50px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.listing-wrapper .list-box:nth-last-child(2) {
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
.listing-wrapper .list-box .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}
.listing-wrapper .list-box .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
h3 {
    color: var(--secondary);
    font-size: 26px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: 0.312px;
    text-transform: uppercase;
}
h3 span{
    font-weight: 400;
}
.listing-wrapper .list-box h3 {
    margin-bottom: 25px;
}
ul.write-icon-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}
ul.write-icon-list li {
    position: relative;
    padding-left: 30px;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.256px;
    background-image: url(https://www.pure-crypto.com/wp-content/uploads/2026/01/check-icon.svg);
    background-repeat: no-repeat;
    background-size: 20px;
}


section.market-cycles-section {
    padding: 140px 0px;
    position: relative;
    background-color: rgb(30 136 229 / 9%);
}
section.market-cycles-section h2 {
    font-weight: 600;
}
section.market-cycles-section .wrapper {
    display: flex;
    gap: 30px;
    flex-direction: column;
    position: relative;
}
.info-list-main-wrapper {
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    display: grid;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
    grid-template-columns: repeat(4, 1fr);
}
.info-list-main-wrapper .info-list-box {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 35px 35px;
}
.info-list-main-wrapper .info-list-box:before {
    content: "";
    display: block;
    width: 1px;
    height: 75%;
    background-color: rgb(10 31 31 / 10%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.info-list-main-wrapper .info-list-box .number-title {
    color: var(--primary);
    font-size: 26px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: 0.312px;
    text-transform: uppercase;
    padding-bottom: 0px;
    margin-bottom: 20px;
}
.info-list-main-wrapper .info-list-box h3 {
    margin-bottom: 20px;
}
section.market-cycles-section .logo-listing {
    justify-content: center;
    margin: 50px 0px 55px 0px;
    grid-gap: 25px 85px;
}
section.market-cycles-section .btn-wrapper {
    display: flex;
    justify-content: center;
}


section.testimonial-section {
    position: relative;
    padding: 140px 0px;
}
.testimonial-listing {
    position: relative;
}
.testimonial-box {
    border-radius: 20px;
    background-color: rgba(10, 31, 31, 0.03);
    padding: 30px 30px 24px;
    position: relative;
    height: 100%;
    margin: 0 15px;
    display: flex !important;
    flex-direction: column;
}
.testimonial-box .top-wrapper {
    margin-bottom: 25px;
}
.testimonial-box .star {
    margin-bottom: 20px;
}
.testimonial-box .star img {
    display: block;
    margin: 0;
}
.testimonial-box .content p {
    line-height: 150%;
}
.testimonial-box .bottom-wrapper {
    margin-top: auto;
    border-top: 1px solid #D9D9D9;
    padding-top: 17px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.testimonial-box h5 {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 500;
}
.testimonial-box h6 {
    color: rgba(10, 31, 31, 0.4);
    font-weight: 500;
}
section.testimonial-section .bottom-message {
    color: var(--primary);
    margin-top: 50px;
}
.testimonial-listing .slick-list {
    display: flex;
}
.testimonial-listing .slick-list .slick-track {
    display: flex !important;
}


section.main-banner-section .banner-bottom-wrapper .contact-form input {
    border-color: rgba(255, 255, 255, 0.30);
}
section.main-banner-section .banner-bottom-wrapper .contact-form legend.gfield_label {
    color: var(--white);
}
section.main-banner-section .banner-bottom-wrapper .contact-form .gform_wrapper input[type=radio]:before{
    border-color: rgba(255, 255, 255, 0.20) !important;
}
section.main-banner-section .banner-bottom-wrapper .contact-form .gform_wrapper .gform_footer .gform_button{    
    padding: 15px 98px 15px 65px;
}
section.main-banner-section .banner-bottom-wrapper .contact-form .gform_wrapper .gform_footer {
    margin-top: 30px !important;
}


section.contact-us-section {
    padding: 140px 0px;
    position: relative;
    background-color: rgba(30, 136, 229, 0.09);
}
section.contact-us-section .row-wrapper {
    display: grid;
    grid-template-columns: auto 630px;
    gap: 100px;
    position: relative;
}
.main-bg-color-box {
    background: linear-gradient(180deg, #3EFDA0 0.02%, #25975F 100%);
    position: relative;
    padding: 62px 60px 0px 60px;
    border-radius: 30px;
    background-image: url(https://www.pure-crypto.com/wp-content/uploads/2026/01/bg-color-shap-image.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.main-bg-color-box .box-two {
    position: relative;
    padding: 65px 45px 52px 45px;
    background-color: var(--white);
    border-radius: 20px 20px 0px 0px;
}
.main-bg-color-box .box-two h2 {
    margin-bottom: 35px;
}
.main-bg-color-box .box-two ul.write-icon-list {
    gap: 20px;
}
.main-bg-color-box .box-two ul.write-icon-list li{
    background-image: url(https://www.pure-crypto.com/wp-content/uploads/2026/01/write-icon-green.svg);
}
section.contact-us-section .text-wrapper {
    margin-top: 25px;
}
section.contact-us-section .text-wrapper p {
    color: var(--primary);
}



.clip-reveal,
.text-reveal {
  overflow: hidden;
}
.clip-reveal img,
.text-reveal {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  opacity: 0;
  padding-bottom: 6px;
  transform: translateY(20px);
}
.gform_wrapper .gfield_error [aria-invalid=true] {
    border-color: #c02b0a !important;
}

.slick-arrow {
    background-color: var(--primary) !important;
    height: 45px;
    width: 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    z-index: 10;
}
.slick-arrow:hover {
    background-color: var(--dark) !important;
}
.slick-arrow::before {
    opacity: 1;
    font-size: 0px;
    height: 20px;
    width: 20px;
    background-image: url(https://www.pure-crypto.com/wp-content/uploads/2026/01/arrow-right.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}
button.slick-prev.slick-arrow::before {
    transform: rotate(180deg);
}

footer.footer-section {
    position: relative;
    background-color: var(--secondary);
    padding-top: 100px;
}
.footer-top {
    display: grid;
    grid-template-columns: 500px auto;
    gap: 312px;
    position: relative;
}
.footer-section .footer-logo{
    margin-bottom: 32px;
}
.footer-section .footer-logo a {
    width: 260px;
    display: block;
}
.footer-section .footer-logo a img {
    margin: 0;
    width: 100%;
    height: auto;
    min-height: auto;
    display: block;
}
footer.footer-section p {
    color: var(--white);
    line-height: 150%;
}
ul.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
ul.social-links li a {
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.social-links li a img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
ul.social-links li a:hover {
    opacity: 0.3;
}
.footer-top ul.social-links {
    margin-top: 40px;
}
h6.footer-title {
    color: var(--primary);
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.352px;
    margin-bottom: 38px;
}
.footer-top .right-wrap {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 30px 107px;
}
ul.contact-info-listing {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
ul.contact-info-listing li .contact-tilte {
    padding-bottom: 0px;
    margin-bottom: 10px;
    line-height: normal;
    font-weight: 600;
}
ul.contact-info-listing li a {
    color: var(--white);
    line-height: normal;
    letter-spacing: 0.256px;
    font-weight: 400;
}
ul.contact-info-listing li a:hover {
    color: var(--primary);
}
ul.contact-info-listing li .light {
    color: rgb(255 255 255 / 60%);
    font-weight: 400;
}
.footer-bottom {
    margin-top: 80px;
    position: relative;
    padding: 30px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgb(217 217 217 / 10%);
}
.copyrights {
    color: rgb(255 255 255 / 30%) !important;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.224px;
}
ul.links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
ul.links li a {
    color: rgb(255 255 255 / 60%);
    font-size: 16px;
    letter-spacing: 0.256px;
}
ul.links li a:hover {
    color: var(--primary);
}


/* // @media (min-width:1921px) {} */
@media only screen and (min-width:1700px) and (max-width:1899px) {  
    .gform_wrapper .gfield input, .gform_wrapper .gfield select, .gform_wrapper .gfield textarea {
        height: 50px;
        padding: 5px 25px !important;
        font-size: 14px !important;
    }
}

@media only screen and (min-width:1500px) and (max-width:1699px) {
    .container {
        width: 1350px;
    }
    
    .common-content-section {
        padding: 60px 0px 60px 0px;
    }
    .common-content-section .common-content-wrapper ol > li {
        font-size: 18px;
    }
    .common-content-section .common-content-wrapper ul > li {
        font-size: 18px;
    }
    .common-content-section .common-content-wrapper h1{
        font-size: 35px;
    }
    .common-content-section .common-content-wrapper h2{
        font-size: 30px;
    }
    .common-content-section .common-content-wrapper h3 {
        font-size: 26px;
    }
    .common-content-section .common-content-wrapper h4 {
        font-size: 24px;
    }
    .common-content-section .common-content-wrapper h5 {
        font-size: 20px;
    }
    .common-content-section .common-content-wrapper h6 {
        font-size: 18px;
    }

    .gform_wrapper .gfield input, .gform_wrapper .gfield select, .gform_wrapper .gfield textarea {
        height: 50px;
        padding: 5px 20px !important;
        font-size: 13px !important;
    }
    .gform_wrapper.gravity-theme .gform_fields {
        grid-gap: 15px 20px !important;
    }

    
    
}


@media only screen and (min-width:1280px) and (max-width:1499px) {
    .container {
        width: 1250px;
    }
    body p {
        font-size: 16px;
    }
    .common-content-section {
        padding: 60px 0px 60px 0px;
    }
    .common-content-section .common-content-wrapper p {
        font-size: 16px;
    }
    .common-content-section .common-content-wrapper ul > li::before {
        height: 7px;
        width: 7px;
        top: 9px;
    }
    .common-content-section .common-content-wrapper ol > li {
        font-size: 16px;
    }
    .common-content-section .common-content-wrapper ul > li {
        font-size: 16px;
    }
    .common-content-section .common-content-wrapper h1{
        font-size: 35px;
    }
    .common-content-section .common-content-wrapper h2{
        font-size: 30px;
    }
    .common-content-section .common-content-wrapper h3 {
        font-size: 26px;
    }
    .common-content-section .common-content-wrapper h4 {
        font-size: 24px;
    }
    .common-content-section .common-content-wrapper h5 {
        font-size: 20px;
    }
    .common-content-section .common-content-wrapper h6 {
        font-size: 18px;
    }


    section.main-banner-section .top-main-box .row-wrapper .left-wrap {
        padding: 70px 0px 27% 50px;
    }
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 40px;
        margin-bottom: 40px;
    }
    section.main-banner-section .top-main-box .row-wrapper .left-wrap h1 {
        margin-bottom: 25px;
    }
    section.main-banner-section .top-main-box .row-wrapper .left-wrap .btn-wrapper {
        margin-top: 35px;
    }
    section.main-banner-section .top-main-box .row-wrapper {
        grid-template-columns: auto 450px;
        gap: 50px;
    }
    section.main-banner-section .top-main-box .row-wrapper .right-wrap .banner-image {
        height: 520px;
    }
    section.main-banner-section .banner-bottom-wrapper {
        grid-template-columns: 680px auto;
        gap: 70px;
    }
    section.main-banner-section .banner-bottom-wrapper .contact-form {
        padding: 40px 40px;
        margin-top: -180px;
    }
    .logo-listing {
        grid-gap: 25px 40px;
    }
    section.main-banner-section .banner-bottom-wrapper .right-wrap {
        padding: 30px 0px;
    }
    .gform_wrapper .gfield_radio {
        gap: 20px;
    }
    #header .wrapper ul#menu-landing-header-menu > li {
        margin-right: 35px;
    }
    #header .wrapper ul#menu-landing-header-menu li a {
        font-size: 15px;
    }
    section.founder-message-section {
        padding: 80px 0px 80px 0px;
    }
    section.market-cycles-section {
        padding: 80px 0px;
    }
    section.testimonial-section {
        padding: 80px 0px;
    }
    section.contact-us-section {
        padding: 80px 0px;
    }
    .video-box-two .video-button-two {
        height: 70px;
        width: 70px;
    }
    .listing-wrapper .list-box {
        padding: 35px;
    }
    .listing-wrapper .list-box .icon {
        width: 40px;
        height: 40px;
    }
    h3 {
        font-size: 22px;
    }
    .info-list-main-wrapper .info-list-box {
        padding: 28px 30px;
    }
    .info-list-main-wrapper {
        border-radius: 20px;
    }
    .testimonial-box h5 {
        font-size: 18px;
    }
    .testimonial-box {
        padding: 25px 25px 24px;
    }
    .founder-message-box {
        padding: 80px 20px 0px 20px;
    }
    .footer-top {
        gap: 200px;
    }
    .footer-top .right-wrap {
        grid-gap: 30px 87px;
    }
    h6.footer-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .footer-bottom {
        margin-top: 60px;
        padding: 25px 0px;
    }
    .footer-top ul.social-links {
        margin-top: 30px;
    }
    .gform_wrapper .gform_footer {
        margin-top: 40px !important;
    }
    .main-bg-color-box {
        padding: 50px 50px 0px 50px;
        border-radius: 25px;
    }
    .main-bg-color-box .box-two {
        padding: 50px 40px 40px 40px;
    }
    .main-bg-color-box .box-two h2 {
        margin-bottom: 25px;
    }
    footer.footer-section {
        padding-top: 80px;
    }
    ul.contact-info-listing {
        gap: 25px;
    }
    section.founder-message-section .founder-bottom-wrapper {
        padding-top: 70px;
    }


}

@media only screen and (min-width:1121px) and (max-width:1279px) {
    .container {
        width: 1121px;
    }
    body p {
        font-size: 16px;
    }
    .common-content-section {
        padding: 50px 0px 50px 0px;
    }
    .common-content-section .common-content-wrapper p {
        font-size: 16px;
    }
    .common-content-section .common-content-wrapper ul > li::before {
        height: 7px;
        width: 7px;
        top: 9px;
    }
    .common-content-section .common-content-wrapper ol > li {
        font-size: 16px;
    }
    .common-content-section .common-content-wrapper ul > li {
        font-size: 16px;
    }
    .common-content-section .common-content-wrapper h1{
        font-size: 35px;
    }
    .common-content-section .common-content-wrapper h2{
        font-size: 30px;
    }
    .common-content-section .common-content-wrapper h3 {
        font-size: 26px;
    }
    .common-content-section .common-content-wrapper h4 {
        font-size: 24px;
    }
    .common-content-section .common-content-wrapper h5 {
        font-size: 20px;
    }
    .common-content-section .common-content-wrapper h6 {
        font-size: 18px;
    } 

    .gform_wrapper .gfield input, .gform_wrapper .gfield select, .gform_wrapper .gfield textarea {
        height: 45px;
        padding: 5px 20px !important;
        font-size: 13px !important;
    }
    .gform_wrapper.gravity-theme .gform_fields {
        grid-gap: 15px 20px !important;
    } 
    

    section.main-banner-section .top-main-box {
        border-radius: 20px;
    }
    section.main-banner-section .top-main-box .row-wrapper .left-wrap {
        padding: 60px 0px 27% 40px;
    }
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 35px;
        margin-bottom: 35px;
    }
    section.main-banner-section .top-main-box .row-wrapper .right-wrap {
        padding: 20px 20px 20px 0px;
    }
    section.main-banner-section .top-main-box .row-wrapper .left-wrap h1 {
        margin-bottom: 25px;
    }
    section.main-banner-section .top-main-box .row-wrapper .left-wrap .btn-wrapper {
        margin-top: 35px;
    }
    section.main-banner-section .top-main-box .row-wrapper {
        grid-template-columns: auto 400px;
        gap: 40px;
    }
    section.main-banner-section .top-main-box .row-wrapper .right-wrap .banner-image {
        height: 470px;
    }
    section.main-banner-section .banner-bottom-wrapper {
        grid-template-columns: 600px auto;
        gap: 60px;
    }
    section.main-banner-section .banner-bottom-wrapper .contact-form {
        padding: 35px 30px;
        margin-top: -150px;
        min-height: 340px;
    }
    .logo-listing {
        grid-gap: 20px 40px;
    }
    section.main-banner-section .banner-bottom-wrapper .right-wrap {
        padding: 30px 0px;
    }
    .gform_wrapper .gfield_radio {
        gap: 20px;
    }
    #header .wrapper ul#menu-landing-header-menu > li {
        margin-right: 35px;
    }
    #header .wrapper ul#menu-landing-header-menu li a {
        font-size: 15px;
    }
    section.founder-message-section {
        padding: 70px 0px 70px 0px;
    }
    section.market-cycles-section {
        padding: 70px 0px;
    }
    section.testimonial-section {
        padding: 70px 0px;
    }
    section.contact-us-section {
        padding: 70px 0px;
    }
    .video-box-two .video-button-two {
        height: 70px;
        width: 70px;
    }
    .listing-wrapper .list-box {
        padding: 35px;
    }
    .listing-wrapper .list-box .icon {
        width: 40px;
        height: 40px;
    }
    h3 {
        font-size: 22px;
    }
    .info-list-main-wrapper .info-list-box h3 {
        margin-bottom: 10px;
    }
    section.market-cycles-section .logo-listing {
        margin: 50px 0px 40px 0px;
    }
    .info-list-main-wrapper .info-list-box {
        padding: 28px 30px;
    }
    .info-list-main-wrapper {
        border-radius: 20px;
    }
    .testimonial-box h5 {
        font-size: 16px;
    }
    section.contact-us-section .row-wrapper {
        grid-template-columns: repeat(2,1fr);
        gap: 60px;
    }
    .testimonial-box {
        padding: 25px 25px 24px;
        margin: 0 10px;
    }
    .testimonial-box h6 {
        font-size: 12px;
    }
    .founder-message-box {
        padding: 70px 20px 0px 20px;
    }
    .footer-top {
        gap: 150px;
        grid-template-columns: 450px auto;
        justify-content: space-between;
    }
    .footer-section .footer-logo {
        margin-bottom: 25px;
    }
    .footer-top .right-wrap {
        grid-gap: 30px 60px;
    }
    h6.footer-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .footer-bottom {
        margin-top: 50px;
        padding: 25px 0px;
    }
    .footer-top ul.social-links {
        margin-top: 20px;
    }
    .gform_wrapper .gform_footer {
        margin-top: 40px !important;
    }
    .main-bg-color-box {
        padding: 30px 30px 0px 30px;
        border-radius: 20px;
    }
    .main-bg-color-box .box-two {
        padding: 50px 40px 40px 40px;
    }
    .main-bg-color-box .box-two h2 {
        margin-bottom: 25px;
    }
    footer.footer-section {
        padding-top: 70px;
    }
    ul.contact-info-listing {
        gap: 25px;
    }
    section.founder-message-section .founder-bottom-wrapper {
        padding-top: 60px;
    }
    .video-box-two {
        height: 450px;
        width: 850px;
    }
    .testimonial-box .star {
        margin-bottom: 15px;
    }
    section.contact-us-section h2 {
        margin-bottom: 20px;
    }
}

@media (max-width: 1120px) {
    
    #header .mobile{
        display: block !important;
    }
    #header .destop{
        display: none !important;
    }
    #header {
        width: 100%;
        top: 0 !important;
        border-radius: 0;
    }    
    #header .wrapper ul#menu-landing-header-menu {
        margin: 0 !important;
        display: block !important;
    }
    #header .wrapper ul#menu-landing-header-menu li {
        border-bottom: 1px solid rgb(0 0 0 / 20%);
        margin: 0 !important;
    }
    #header .wrapper ul#menu-landing-header-menu li:last-child {
        border: 0;
    }
    #header .wrapper ul#menu-landing-header-menu li a {
        width: 100%;
        padding: 15px 0;
        display: inline-block;
    }
    #header .res_navigation {
        display: block;
        position: relative;
        order: 3;
    }
    #header .wrapper .mobile-menu {
        display: flex !important;
        flex-direction: column;
        transform: translateX(100%);
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        width: 100%;
        max-width: 100%;
        transition: all 0.5s ease 0s;
        position: fixed;
        top: 0px;
        left: 0;
        bottom: 0;
        background-color: var(--white);
        z-index: 9;
        padding: 110px 20px 20px 20px;
        overflow-y: auto;
        float: none;
        margin: 0 !important;
        height: 100vh;
    }
    html.menu-open #header .wrapper .mobile-menu {
        left: 0;
        -webkit-transform: translateX(0) translateY(0);
        -moz-transform: translateX(0) translateY(0);
        -ms-transform: translateX(0) translateY(0);
        -o-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
    #header .wrapper ul#menu-landing-header-menu li a:hover {
        color: var(--primary) !important;
        background-color: transparent;
    } 

    /**/
    #header .wrapper ul#menu-landing-header-menu span.submenu-click-arrow {
        top: 0;
        filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(4713%) hue-rotate(332deg) brightness(93%) contrast(20%);
        height: 50px;
        width: 50px;
        background-position: center;
        background-size: 11px;
        pointer-events: all;
    }
    #header .wrapper ul#menu-landing-header-menu li ul.sub-menu {
        width: 100% !important;
        background: transparent;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        position: static;
        transform-origin: unset;
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        opacity: 1 !important;
        visibility: visible !important;
        padding-left: 15px;
    }
    #header .wrapper ul#menu-landing-header-menu li ul.sub-menu::before {
        content: none;
    }
    #header .wrapper ul#menu-landing-header-menu li ul.sub-menu li a {
        padding: 15px;
        border: 0;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
    }
    #header .wrapper ul#menu-landing-header-menu li.menu-item-has-children::after {
        content: none;
    }
    #header .wrapper ul#menu-landing-header-menu ul.sub-menu li {
        margin: 0 !important;
    }
    #header .wrapper ul#menu-landing-header-menu li:last-child {
        border: 0 !important;
    }
    #header .header-btn-wrap {
        margin-left: 0;
        margin-right: 30px;
    }
    .container {
        width: 100%;
    }
    body p {
        font-size: 15px;
    }  
    .common-content-section {
        padding: 50px 0px 50px 0px;
    }
    .common-content-section .common-content-wrapper p {
        font-size: 16px;
    }
    .common-content-section .common-content-wrapper ul > li::before {
        height: 7px;
        width: 7px;
        top: 9px;
    }
    .common-content-section .common-content-wrapper ol > li {
        font-size: 16px;
    }
    .common-content-section .common-content-wrapper ul > li {
        font-size: 16px;
    }
    .common-content-section .common-content-wrapper h1{
        font-size: 35px;
    }
    .common-content-section .common-content-wrapper h2{
        font-size: 30px;
    }
    .common-content-section .common-content-wrapper h3 {
        font-size: 26px;
    }
    .common-content-section .common-content-wrapper h4 {
        font-size: 24px;
    }
    .common-content-section .common-content-wrapper h5 {
        font-size: 20px;
    }
    .common-content-section .common-content-wrapper h6 {
        font-size: 18px;
    }
    
    .gform_wrapper .gfield input, .gform_wrapper .gfield select, .gform_wrapper .gfield textarea {
        padding: 5px 20px !important;
        font-size: 13px !important;
    }
    .gform_wrapper.gravity-theme .gform_fields {
        grid-gap: 15px 20px !important;
    }
   
    
    


    html body {
        padding: 62px 0px 0px 0px;
    }
    section.main-banner-section .top-main-box {
        border-radius: 20px;
    }
    section.main-banner-section .top-main-box .row-wrapper .left-wrap {
        padding: 60px 0px 32% 40px;
    }
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 33px;
        margin-bottom: 35px;
    }
    section.main-banner-section .top-main-box .row-wrapper .right-wrap {
        padding: 20px 20px 20px 0px;
    }
    section.main-banner-section .top-main-box .row-wrapper .left-wrap h1 {
        margin-bottom: 25px;
    }
    section.main-banner-section .top-main-box .row-wrapper .left-wrap .btn-wrapper {
        margin-top: 35px;
    }
    section.main-banner-section .top-main-box .row-wrapper {
        grid-template-columns: auto 400px;
        gap: 40px;
    }
    section.main-banner-section .top-main-box .row-wrapper .right-wrap .banner-image {
        height: 470px;
    }
    section.main-banner-section .banner-bottom-wrapper {
        grid-template-columns: 600px auto;
        gap: 60px;
    }
    section.main-banner-section .banner-bottom-wrapper .contact-form {
        padding: 35px 30px;
        margin-top: -150px;
        min-height: 340px;
    }
    .logo-listing {
        grid-gap: 20px 40px;
    }
    section.main-banner-section .banner-bottom-wrapper .right-wrap {
        padding: 30px 0px;
    }
    .gform_wrapper .gfield_radio {
        gap: 15px;
    }
    #header .wrapper ul#menu-landing-header-menu > li {
        margin-right: 35px;
    }
    section.founder-message-section {
        padding: 70px 0px 70px 0px;
    }
    section.market-cycles-section {
        padding: 70px 0px;
    }
    section.testimonial-section {
        padding: 70px 0px;
    }
    section.contact-us-section {
        padding: 70px 0px;
    }
    .video-box-two .video-button-two {
        height: 70px;
        width: 70px;
    }
    .listing-wrapper .list-box {
        padding: 35px;
    }
    .listing-wrapper .list-box .icon {
        width: 40px;
        height: 40px;
    }
    h3 {
        font-size: 20px;
    }
    .info-list-main-wrapper .info-list-box h3 {
        margin-bottom: 10px;
    }
    section.market-cycles-section .logo-listing {
        margin: 50px 0px 40px 0px;
    }
    .info-list-main-wrapper .info-list-box {
        padding: 28px 30px;
    }
    .info-list-main-wrapper {
        border-radius: 20px;
    }
    .testimonial-box h5 {
        font-size: 16px;
    }
    section.contact-us-section .row-wrapper {
        grid-template-columns: repeat(2,1fr);
        gap: 40px;
    }
    .testimonial-box {
        padding: 25px 25px 24px;
        margin: 0 10px;
    }
    .testimonial-box h6 {
        font-size: 12px;
    }
    .founder-message-box {
        padding: 70px 20px 0px 20px;
    }
    .footer-top {
        gap: 150px;
        grid-template-columns: repeat(2,1fr);
        justify-content: space-between;
    }
    .footer-section .footer-logo {
        margin-bottom: 25px;
    }
    .footer-top .right-wrap {
        grid-gap: 30px 40px;
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    h6.footer-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .footer-bottom {
        margin-top: 50px;
        padding: 25px 0px;
    }
    .footer-top ul.social-links {
        margin-top: 20px;
    }
    .gform_wrapper .gform_footer {
        margin-top: 40px !important;
    }
    .main-bg-color-box {
        padding: 30px 30px 0px 30px;
        border-radius: 20px;
    }
    .main-bg-color-box .box-two {
        padding: 50px 40px 40px 40px;
    }
    .main-bg-color-box .box-two h2 {
        margin-bottom: 25px;
    }
    footer.footer-section {
        padding-top: 70px;
    }
    ul.contact-info-listing {
        gap: 25px;
    }
    section.founder-message-section .founder-bottom-wrapper {
        padding-top: 60px;
    }
    .video-box-two {
        height: 450px;
        width: 850px;
    }
    .testimonial-box .star {
        margin-bottom: 15px;
    }
    section.contact-us-section h2 {
        margin-bottom: 20px;
    }

    section.main-banner-section .typing::after {
        display: none;
    }
    section.main-banner-section .typing {
        display: unset;
    }
}


@media (max-width: 991px) {
    body p {
        font-size: 15px;
    }
    .page-not-found {
        padding: 130px 0px 50px;
    }
    .page-not-found h1 {
        margin-bottom: 25px;
    }
    .gform_wrapper .gfield_radio {
        grid-template-columns: repeat(2,1fr);
    }

    section.main-banner-section .banner-bottom-wrapper {
        grid-template-columns: 100%;
        gap: 30px;
        margin-top: 20px;
    }
    section.main-banner-section .container {
        padding: 0;
    }
    section.main-banner-section .top-main-box .row-wrapper {
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }
    section.main-banner-section .top-main-box .row-wrapper .left-wrap {
        padding: 40px 0px 40px 30px;
    }
    section.main-banner-section .banner-bottom-wrapper .right-wrap .small-title {
        margin-bottom: 15px;
    }
    section.main-banner-section .banner-bottom-wrapper .contact-form {
        margin-top: 0px;
        min-height: auto;
    }
    section.main-banner-section .banner-bottom-wrapper .right-wrap {
        padding: 0px;
    }
    ul.icon-list {
        grid-gap: 15px 25px;
    }
    h1 {
        font-size: 33px;
    }
    h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .btn-main {
        padding: 13px 58px 13px 20px;
        font-size: 14px;
    }
    .btn-main::after, .gform_wrapper .gform_footer::after {
        height: 35px;
        width: 35px;
        background-size: 15px;
    }
    section.main-banner-section .top-main-box .row-wrapper .right-wrap .banner-image {
        height: 420px;
    }
    section.main-banner-section .banner-bottom-wrapper .contact-form .gform_wrapper .gform_footer .gform_button {
        padding: 13px 58px 13px 35px;
        font-size: 15px;
    }
    .video-box-two {
        height: 400px;
        width: 100%;
    }
    .video-box-two .video-button-two {
        height: 60px;
        width: 60px;
    }
    .listing-wrapper {
        grid-template-columns: repeat(1, 1fr);
        border-radius: 15px;
    }
    .listing-wrapper .list-box {
        padding: 30px 20px;
    }
    .testimonial-box .content p {
        font-size: 15px;
    }
    .testimonial-box .bottom-wrapper {
        padding-top: 15px;
        gap: 10px;
    }
    .testimonial-box .star {
        margin-bottom: 13px;
    }
    section.contact-us-section .row-wrapper {
        grid-template-columns: 100%;
    }
    br{
        display: none;
    }
    .main-bg-color-box .box-two {
        padding: 40px 30px 40px 30px;
    }
    .footer-top {
        gap: 30px;
    }
    .footer-section .footer-logo a {
        width: 230px;
    }
    h6.footer-title {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .footer-top .right-wrap {
        grid-gap: 30px 20px;
    }
    .footer-bottom {
        margin-top: 40px;
        padding: 20px 0px;
    }
    ul.links li a {
        font-size: 14px;
    }
    ul.links {
        gap: 25px;
    }
    section.founder-message-section {
        padding: 60px 0px 60px 0px;
    }
    .founder-message-box {
        padding: 60px 20px 0px 20px;
    }
    section.market-cycles-section {
        padding: 60px 0px;
    }
    section.testimonial-section {
        padding: 60px 0px;
    }
    section.contact-us-section {
        padding: 60px 0px;
    }
    footer.footer-section {
        padding-top: 60px;
    }
    
    .common-inner-banner-section {
        padding: 50px 0px 50px 0px;
    }
    .video-modal-two .video-modal-wrapper {
        width: 90%;
        height: 450px;
    }
    .info-list-main-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-list-main-wrapper .info-list-box:nth-child(2):before, .info-list-main-wrapper .info-list-box:nth-child(4):before{
        display: none;
    }
}


@media only screen and (min-width:768px) and (max-width:800px) {
}

@media (max-width: 767px) {
    #header .wrapper .mobile-menu {
        padding: 80px 20px 20px 20px;
    }

    .gform_wrapper.gravity-theme .gform_fields {
        grid-gap: 10px 10px !important;
    }
    legend.gfield_label {
        font-size: 13px !important;
        letter-spacing: 1px;
        margin-bottom: 5px !important;
    }
    .gform_wrapper .gfield_radio {
        gap: 13px;
    }
    .gform_wrapper .gfield_radio label {
        font-size: 12px !important;
    }
    .ginput_container_consent label.gfield_consent_label {
        font-size: 14px;
    }
    .gform_confirmation_message {
        font-size: 14px;
        padding: 15px 25px;
    }
    .page-not-found {
        padding: 120px 0px 50px;
    }
    .page-not-found h1 {
        margin-bottom: 20px;
        font-size: 25px;
    }
    .gform_wrapper .gfield_radio {
        grid-template-columns: 100%;
    }   
    .common-content-section {
        padding: 40px 0px 40px 0px;
    }    
    .common-content-section .common-content-wrapper p {
        font-size: 15px;
    }
    .common-content-section .common-content-wrapper ul > li::before {
        height: 6px;
        width: 6px;
        top: 7px;
    }
    .common-content-section .common-content-wrapper ol > li {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .common-content-section .common-content-wrapper ul > li {
        font-size: 15px;
        margin-bottom: 10px;
        padding-left: 15px;
    }
    .common-content-section .common-content-wrapper h1{
        font-size: 27px;
    }
    .common-content-section .common-content-wrapper h2{
        font-size: 25px;
    }
    .common-content-section .common-content-wrapper h3 {
        font-size: 23px;
    }
    .common-content-section .common-content-wrapper h4 {
        font-size: 20px;
    }
    .common-content-section .common-content-wrapper h5 {
        font-size: 17px;
    }
    .common-content-section .common-content-wrapper h6 {
        font-size: 15px;
    }
    .common-content-section .common-content-wrapper ol {
        padding-left: 20px;
    }
    .common-content-section .common-content-wrapper ul {
        margin: 10px 0px;
    }
    br{
        display: none;
    }
    .mobile-list-menu{
        display: block;
    }
    section.main-banner-section .top-main-box .row-wrapper {
        grid-template-columns: 100%;
        padding: 20px 20px;
    }
    section.main-banner-section .top-main-box .row-wrapper .left-wrap {
        padding: 0px;
    }
    section.main-banner-section .top-main-box .row-wrapper .left-wrap h1 {
        margin-bottom: 20px;
    }
    h1 {
        font-size: 26px;
    }
    ul.icon-list li {
        font-size: 15px;
    }    
    section.main-banner-section .top-main-box .row-wrapper .left-wrap .btn-wrapper {
        margin-top: 30px;
        margin-bottom: 0px;
    }
    section.main-banner-section .top-main-box .row-wrapper .right-wrap {
        padding: 0;
        order: -1;
    }
    section.main-banner-section .top-main-box .row-wrapper .right-wrap .banner-image {
        height: 350px;
    }
    .btn-main {
        padding: 11px 50px 11px 20px;
        font-size: 13px;
    }
    .btn-main::after, .gform_wrapper .gform_footer::after {
        height: 30px;
        width: 30px;
        background-size: 14px;
    }
    section.main-banner-section .top-main-box {
        border-radius: 10px;
    }
    section.main-banner-section .banner-bottom-wrapper .contact-form {
        padding: 25px 20px;
        border-radius: 10px;
    }
    section.main-banner-section .banner-bottom-wrapper .contact-form .gform_wrapper .gform_footer {
        margin-top: 20px !important;
    }
    section.main-banner-section .banner-bottom-wrapper .contact-form .gform_wrapper .gform_footer .gform_button,.gform_wrapper .gform_footer .gform_button {
        padding: 11px 49px 11px 20px;
        font-size: 13px;
        min-height: auto !important;
        line-height: normal !important;
    }
    section.founder-message-section {
        padding: 50px 0px 50px 0px;
    }
    .founder-message-box {
        padding: 40px 20px 0px 20px;
    }
    h2 {
        font-size: 23px;
        margin-bottom: 20px;
    }
    .video-box-two .video-thumbnail-image {
        border-radius: 10px;
    }
    .video-box-two {
        height: 250px;
    }
    .video-box-two .video-button-two {
        height: 50px;
        width: 50px;
        padding: 15px;
    }
    .video-modal-two .video-modal-wrapper {
        width: 92%;
        height: 250px;
    }
    .close-btn {
        font-size: 32px;
        width: 35px;
        height: 35px;
    }
    section.founder-message-section .founder-bottom-wrapper {
        padding-top: 40px;
    }
    .listing-wrapper .list-box {
        padding: 20px 15px;
        border-radius: 10px;
    }
    .listing-wrapper .list-box h3 {
        margin-bottom: 20px;
    }
    section.market-cycles-section {
        padding: 50px 0px;
    }
    .info-list-main-wrapper .info-list-box {
        padding: 20px 20px;
        border-bottom: 1px solid rgba(10, 31, 31, 0.1);
    }
    .info-list-main-wrapper .info-list-box:last-child {
        border-bottom: 0px;
    }
    .info-list-main-wrapper {
        border-radius: 10px;
        grid-template-columns: 100%;
    }
    .info-list-main-wrapper .info-list-box:before{
        display: none;
    }
    .info-list-main-wrapper .info-list-box .number-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    section.market-cycles-section .logo-listing {
        margin: 35px 0px 30px 0px;
        grid-gap: 25px 40px;
    }
    section.testimonial-section .bottom-message {
        margin-top: 30px;
    }
    .testimonial-box {
        padding: 30px 35px 25px 35px;
        margin: 0 5px;
    }
    .slick-arrow {
        height: 35px;
        width: 35px;
    }
    .slick-next {
        right: -5px;
    }
    .slick-prev {
        left: -5px;
    }
    section.testimonial-section {
        padding: 50px 0px;
    }  
    section.contact-us-section {
        padding: 50px 0px;
    }
    .gform_wrapper .gform_footer {
        margin-top: 25px !important;
    }
    .gfield_validation_message{
        position: unset;
    }
    .founder-message-box::after {
        background: linear-gradient(0deg, #ffffff 1.96%, rgba(30, 136, 229, 0) 19.32%);
    }
    ul.write-icon-list li {
        padding-left: 26px;
        font-size: 14px;
        background-size: 16px;
    }
    #header .header-logo a {
        max-width: 180px;
    }
    #header.fixed .header-logo a {
        max-width: 170px;
    }
    html body {
        padding: 56px 0px 0px 0px;
    }
    .main-bg-color-box .box-two h2 {
        margin-bottom: 20px;
    }
    .main-bg-color-box {
        padding: 10px 10px 0px 10px;
        border-radius: 10px;
    }
    .main-bg-color-box .box-two {
        padding: 30px 25px 30px 25px;
    }
    footer.footer-section {
        padding-top: 50px;
    }
    .footer-top {
        gap: 50px;
        grid-template-columns: 100%;
    }
    .footer-bottom {
        margin-top: 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
