:root {
    --white-color: #f6f5fa;
    --primary-color: #0169ca;
    --secondary-color: #012c9c;
    --section-bg-color: #f2f8ff;
    --footer-bg-color: #fff;
    --btn-bg: #0169ca;
    --btn-bg-hover: transparent;
    --btn-text: #fff;
    --btn-text-hover: #0169ca;
    --dark-color: #010101;
    --text-color: #121212;
    --navbar-bg-color: #fff;
    --p-color: #2c2c2c;
    --highlight-icon-color: #ff0100;
    --body-font-family: 'Karla', sans-serif;
    --h1-font-size: 56px;
    --h2-font-size: 40px;
    --h3-font-size: 32px;
    --h4-font-size: 22px;
    --h5-font-size: 20px;
    --h6-font-size: 20px;
    --p-font-size: 18px;
    --menu-font-size: 18px;
    --copyright-text-font-size: 18px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
}

body {

    font-family: var(--body-font-family);
    color: var(--p-color);
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5 {
    color: var(--dark-color);
}

h6 {
    color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: var(--font-weight-bold);

}

h1 {
    font-size: var(--h1-font-size);

}

h2 {
    font-size: var(--h2-font-size);

}

h2.mb-2 {
    margin-bottom: 30px !important;
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
    line-height: normal;
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
    margin-bottom: 0px;
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

a,
button {
    touch-action: manipulation;
    transition: all 0.3s;
}

a {
    color: var(--p-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}

::selection {
    background: var(--primary-color);
    color: var(--white-color);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
}

.section-padding {
    padding-top: calc(40vmax / 8);
    padding-bottom: calc(40vmax / 8);
}

.section-padding-top {
    padding-top: calc(40vmax / 8);
}

.section-padding-bottom {
    padding-bottom: calc(40vmax / 8);
}

.drak-bg {
    background-color: #012c9c;
    padding-top: calc(40vmax / 4);
    margin-top: -80px;
}

.drak-bg2 {
    background-color: #101c44;
}

.drak-bg p {
    color: #ffcd00;
}

.drak-bg2 p {
    color: #fff;
}

.drak-bg2 h2 {
    color: #fff;
}


.section-cta {
    background-image: url(../images/blurbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-radius: 15px;
}

.custom-border-radius {
    border-radius: 20px;
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

.small-title {
    text-transform: uppercase;
}

/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.text-white {
    color: var(--btn-text);
}

.bg-text {
    color: var(--btn-bg);
}

.bg-text-white {
    color: var(--btn-text);
}

.bluebg {
    background-color: var(--primary-color);
}


.custom-icon {
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border: 2px solid var(--white-color);
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    position: relative;
}

.custom-icon::before,
.custom-icon::after {
    box-sizing: inherit;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
}

.custom-icon::before {
    border: 2px solid transparent;
}

.custom-icon::after {
    border: 0 solid transparent;
}

.custom-icon:hover {
    border-color: transparent;
}

.custom-icon:hover::before {
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    transition: border-top-color .15s linear, border-right-color .15s linear .1s, border-bottom-color .15s linear .2s;
}

.custom-icon:hover::after {
    border-top: 2px solid var(--primary-color);
    border-left-width: 2px;
    border-right-width: 2px;
    transform: rotate(270deg);
    transition: transform .4s linear 0s, border-left-width 0s linear .35s;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/


.custom-btn,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
    background: var(--btn-bg);
    color: var(--btn-text);
    font-size: var(--copyright-text-font-size);
    font-weight: var(--font-weight-bold);
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
    background: var(--secondary-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
    margin-left: 20px;
}

.custom-border-btn {
    background: var(--btn-bg);
    border: 2px solid var(--btn-bg);
    color: var(--btn-text);
}

.custom-btn:hover,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.navbar-nav .nav-link.custom-btn:hover {
    background: var(--btn-bg-hover);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    color: var(--btn-text-hover);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/

.sticky-wrapper {
    background: var(--navbar-bg-color);
}

.navbar {
    background: var(--navbar-bg-color);
    z-index: 9;
    right: 0;
    left: 0;
    transition: all 0.3s;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    /* box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175); */
}

.navbar-brand {
    font-size: 20px;
    line-height: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    text-transform: uppercase;
}

.brand-logo {
    font-size: 38px;
}

.brand-text {
    display: inline-block;
    vertical-align: top;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 20px;
    padding-left: 20px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 35px;
    outline: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
    background: var(--dark-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--dark-color);
    width: 30px;
    height: 2px;
    content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
}



.referrals {
    background-color: #012c9c;
}

.referrals h1 {
    color: #f1f1f1;
}

.referrals p {
    color: #f1f1f1;
}

.referrals img {
    width: 300px;
    margin: 0 auto;
}

.referalcard {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.referalcard p {
    min-height: 108px;
}

.refimg {
    padding-top: 25px;
    text-align: center;
}

.referalcard img {
    width: 300px;
    margin: 0 auto;
}

.rewardstable th {
    border: 1px solid #ddd;
    background-color: #c3f1c9;
}

.rewardstable td {
    border: 1px solid #ddd;
}

.refblock {
    padding: 15px;
    padding-left: 0px;
}




/*---------------------------------------
  HIGHLIGHT              
-----------------------------------------*/

.highlight {
    background: var(--navbar-bg-color);
    padding-bottom: 16px;
}

.highlight-thumb {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    margin-bottom: 24px;
}

.highlight-thumb::after {
    content: "";
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.highlight-thumb:hover .highlight-title {
    opacity: 0;
    visibility: hidden;
}

.highlight-thumb:hover .highlight-icon {
    opacity: 1;
    visibility: visible;
}

.highlight-thumb:hover .highlight-image {
    transform: scale(1.2);
}

.highlight-info {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.highlight-image {
    display: block;
    width: 100%;
    transition: transform 2s;
}

.highlight-title {
    color: var(--white-color);
    transition: opacity 1s;
    margin-bottom: 0;
}

.highlight-icon {
    color: var(--highlight-icon-color);
    font-size: var(--h1-font-size);
    opacity: 0;
    transition: transform 1s;
    visibility: hidden;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.highlight-icon:hover {
    color: var(--white-color);
}


/*---------------------------------------
  HERO              
-----------------------------------------*/



.bannerimage img {
    width: 100%;
}


.hero-text {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 80vh;
}

.hero .arrow-icon {
    position: relative;
    top: 50px;
}

.video-wrap {
    z-index: -100;
}

.custom-video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.date-text,
.location-text {
    border: 1px solid var(--white-color);
    color: var(--white-color);
    display: inline-block;
    padding: 10px 20px;
}

.date-text {
    border-right: 0;
}

.arrow-icon {
    background: var(--btn-bg);
    border-radius: 100px;
    color: var(--btn-text);
    font-size: var(--h5-font-size);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    margin: auto;
    border: 1px solid #0064c3;
}

.arrow-icon:hover {
    background: var(--btn-bg-hover);
    color: var(--btn-text-hover);
}

.points {
    width: 100%;
    padding: 5px;
    display: table;
}

.points .icons {
    width: 25%;
    float: left;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease-in;
}

.points:hover .icons {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.points .icons img {
    width: 100%;
    min-width: 80px;
    max-width: 100px;
}

.points .details {
    width: 75%;
    float: left;
    padding: 8px;
}

.points p {
    margin-bottom: 0px;
}

h4.purple {
    color: #7d3fe4;
}

h4.red {
    color: #ff086d
}

h4.green {
    color: #76a425;
}

h4.lime {
    color: #00c496
}

/*---------------------------------------
 Cards              
-----------------------------------------*/

.flex-text {
    display: flex;
    height: 100%;
    align-items: center;
}

.col-md-9.pl-3 {
    padding-left: 30px;
}

.cardbox {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    margin: 0px 20px;
    height: 100%;
}

.cardboxgray {
    padding: 25px;
    background: #f6f6f6;
    border-radius: 15px;
    min-height: 305px;
    position: relative;
    padding-left: 100px;
}

.cardboxgray img {
    width: 60px;
    position: absolute;
    left: 20px;
}

.cardshadow {
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    min-height: 305px;
    box-shadow: 1px 1px 12px -5px rgba(0, 0, 0, 0.5);
}

.cardbox img {
    max-height: 85px;
    margin-bottom: 30px;
}

.cardboxgray img {
    max-height: 85px;
    margin-bottom: 30px;
}

.iconset img {
    max-height: 75px;
    margin-bottom: 30px;
}

.bponts {
    width: 100%;
    display: block;
    margin-top: 30px;
}

.bponts .img {
    width: 50px;
    float: left;
}

.bponts .img img {
    width: 100%;
}

.bponts .btext {
    display: flex;
    height: 50px;
    align-items: center;
    float: left;
    width: calc(100% - 50px);
    padding-left: 10px;
}

.btext h4 {
    margin: 0px;
}

.card-gray {
    background-color: #f9f9f9;
    margin-top: 30px;
    border: 1px solid #8c8c8c;
    border-radius: 20px;
    overflow: hidden;
}

.card-gray .block:nth-child(1) {
    border-top: 0px;
}

.block {
    padding: 15px;
    border-top: 1px solid #8c8c8c;
}

.text-2x li {
    margin-bottom: 10px;
    font-size: 20px !important;
}

.no-padding {
    padding-left: 15px;
    margin-top: 20px;
}

.no-padding .col-md-6 {
    padding: 0px;
    border: 1px solid #8c8c8c;
}

.no-padding .col-md-6 p {
    padding: 8px;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/

.site-footer {
    padding-top: calc(60vmax / 10);
    padding-bottom: calc(50vmax / 10);
}

.site-footer .navbar-brand {
    color: var(--primary-color);
}

.site-footer .social-icon-link {
    font-size: var(--h6-font-size);
    width: 50px;
    height: 50px;
    line-height: 50px;
}

.site-footer .copyright-text {
    font-size: var(--copyright-text-font-size);
}

.footer-menu {
    margin: 0;
    padding: 0;
}

.footer-menu-item {
    list-style: none;
    color: var(--white-color);
    width: 100%;
}

.footer-menu-link {
    font-size: var(--copyright-text-font-size);
    color: var(--white-color);
    display: inline-block;
    margin-right: 5px;
    width: 100%;
}

.footer-menu-link:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.site-footer h5 {
    color: var(--white-color);
}

li.footer-menu-item img {
    background: #fff;
    width: 120px;
    padding: 5px;
    border-radius: 5px;
}



.flex-box {
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 30px;
}

.flex-box p {
    margin-bottom: 0;
    padding: 7px;
}

.flex-box svg {
    width: 25px !important;
    height: 25px !important;
    background: transparent;
    padding: 1px;
}

form.submitting {
    pointer-events: none;
    opacity: 0.5;
    position: relative;
}




@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

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


form.submitting::after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    position: absolute;
    top: 50%;
    left: 42%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 6.4px solid currentColor;
    border-color: currentColor transparent currentColor transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

form#contactForm {
    position: relative;
}

form .message {
    display: none !important;
    position: absolute;
    background: #ddd;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
}

form.submited .message {
    display: none;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/

.social-icon {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-icon li {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    padding: 5px;
    font-weight: 700;
}

.social-icon li small {
    font-weight: 300 !important;
}

.social-icon-link {
    background: var(--white-color);
    border-radius: 100px;
    font-size: var(--p-font-size);
    color: var(--navbar-bg-color);
    display: inline-block;
    vertical-align: top;
    margin: 2px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.social-icon-link:hover {
    background: var(--footer-bg-color);
    color: var(--white-color);
}

.whitetext {
    color: var(--white-color);
}


/*---------------------------------------
  Rubix STYLES               
-----------------------------------------*/

.sectionimage img {
    max-width: 100%;
    max-height: 500px;
}

.sectionflex {
    display: flex;
    height: 100%;
    align-items: center;
    padding-right: 50px;
}

.sectionimage {
    padding-left: 50px;
    display: flex;
    height: 100%;
    align-items: center;
}

.navbar-brand img {
    width: 120px;
}

.footerbg .navbar-brand img {
    width: 120px;
}

.newsitem {
    position: relative;
    border: 1px solid var(--primary-color);
    padding: 15px;
    transition: all 0.3s ease-in-out;
    min-height: 228px;
}

.newsitem:hover {
    border-color: var(--white-color);
}

.newsitem .date {
    /* color: var(--primary-color); */
    font-size: 14px;
    font-weight: 300;
}

.newsitem a {
    font-weight: 700;
}

.newsitem .date i {
    padding-right: 5px;
}

.padlr-40 {
    padding: 0 40px;
}

.owl-nav {
    position: absolute;
    width: 100%;
    top: 33%;
    display: flex;
    justify-content: space-between;
    z-index: -1;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    font-size: 35px;
    background: var(--primary-color);
    padding: 0px 15px !important;
    color: var(--white-color);
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: -42px
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -42px
}

.footerbg {
    /* background: var(--footer-bg-color);
    background-image: url(../images/az-subtle.png);
    background-position: center; */
    /* background-repeat: repeat; */
}

.sectionbg {
    background: var(--section-bg-color);
}

.sectiongrey {
    background: #f6f6f6
}


.media-nocenter {
    text-align: center;
}

.rightpad {
    padding-right: 7%;
}

.leftpad {
    padding-left: 7%;
}

ul.flow {
    list-style: none;
    padding: 0;
}

ul.flow li img {
    width: 22px;
    margin-right: 5px;
}



p.small {
    margin-bottom: 0;
}

.leadership img {
    width: 100%;
    margin-bottom: 10px;
}

.leadership h4 {
    margin-bottom: 0px;
}

.leadership h6 {
    margin-bottom: 10px;
}

.leadership p {
    margin-bottom: 10px;
}

.leadership {
    margin-bottom: 30px;
}

.pad20 {
    padding: 0px 20px;
}

.commonflexbox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}

.leaditem {
    max-width: 300px
}

.modal-content {
    background-color: #dfe2f0 !important;
}

.modal div.col-md-12 p:last-child {
    margin-bottom: 0px;
}

button.btn-close {
    position: absolute;
    right: 20px;
}

.modal-body {
    padding: 1.6rem 1rem !important;
}

.modal-backdrop {
    background-color: var(--navbar-bg-color);
}

.modal-backdrop.show {
    opacity: 0.8;
}

.mr-2 {
    margin-right: 20px;
}


/*---------------------------------------
  Partners STYLES               
-----------------------------------------*/

.PartnerLogos .col-md-3 {
    margin-bottom: 30px;
}

.PartnerLogos .item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--footer-bg-color);
    transition: all 0.3s ease-in-out;
    padding: 20px;
}

.PartnerLogos .item p {
    margin-bottom: 0px;
}

.PartnerLogos .item img {
    width: 60%;
    transition: all 0.3s ease-in-out;
    margin-bottom: 10px;
}

.PartnerLogos .item:hover img {
    transform: scale(1.05);
}

.PartnerLogos .item:hover {
    border: 1px solid var(--navbar-bg-color);
}

.partnerspadd {
    padding: 50px;
}

.partnersbgimage {
    background-image: url(../images/partner/partnersbg.png);
    background-size: cover;
    height: 100%;
    min-height: 70vh;
    background-position: center;
}

table.table.carrier td {
    background: transparent !important;
    border: 1px solid rgb(38 35 102 / 50%);
    vertical-align: middle;
}

table.table.carrier td p {
    margin-bottom: 0;
}

.image {
    width: 100%;
    padding: 20px;
}

.image img {
    width: 100%;
}

.static-card ul {
    list-style: none;
    padding: 0px;
}

.static-card .card {
    padding: 25px;
    position: fixed;
}

.static-card {
    position: relative;
}

.mobilebanner {
    display: none
}

.desktopbanner {
    display: block
}



.referrals h1 {
    color: #f1f1f1;
}

.referrals p {
    color: #f1f1f1;
}

.referrals img {
    width: 300px;
    margin: 0 auto;
}

.referalcard {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;

    p {
        min-height: 108px;
    }

}

.refimg {
    padding-top: 25px;
    text-align: center;
}

.referalcard img {
    width: 300px;
    margin: 0 auto;
}

.rewardstable th {
    border: 1px solid #ddd;
    background-color: #c3f1c9;
}

.rewardstable td {
    border: 1px solid #ddd;
}

.refblock {
    padding: 15px;
    padding-left: 0px;
}

.platformcard {
    padding: 15px;
    text-align: center;
    border: 1px solid #91b5e5;
    border-radius: 25px;
    height: 100%;
    margin: 0 20px;
}

.platformcard img {
    max-height: 85px;
    margin: 15px 0px;
}

.communitycard {
    padding: 15px;
    text-align: center;
    border: 1px solid #91b5e5;
    border-radius: 25px;
}

.communitycard img {
    max-height: 45px;
    margin: 15px 0px;
    max-width: 60%;
}

.platformcard2 {
    overflow: hidden;
    text-align: center;
    border: 1px solid #91b5e5;
    border-radius: 25px;
    min-height: 290px;
    padding-bottom: 15px;
}

.platformcard2 img {
    max-height: 85px;
    margin: 15px 0px;
}


.blue {
    background-color: #234cce;
    border: 1px solid #234cce;
}

.yellow {
    background-color: #ffba26;
    border: 1px solid #ffba26;
}

.ice {
    background-color: #5ac1cf;
    border: 1px solid #5ac1cf;
}

.imagebox7 {
    background: #387aeb;
    margin-bottom: 15px;
}

.imagebox8 {
    background: #3fb4c9;
    margin-bottom: 15px;
}

.imagebox9 {
    background: #febb45;
    margin-bottom: 15px;
}

.textcard {
    margin-bottom: 0px;
}

.flexx {
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    height: 100%;
}

.resourcecard {
    border: 1px solid #f7faff;
    margin-bottom: 25px;
}

.resourcecard iframe {
    margin-bottom: 0px !important;
}

.h3highlight {
    background-color: #f7faff;
    padding: 15px;
    margin-bottom: 0px !important;
    text-align: center;
    font-size: 22px !important;
}

.subscribe {
    width: 65%;
    margin-left: auto;
    margin-top: 50px;
}

.subscribe .card {
    padding: 25px;
    background-color: var(--dark-color);
    color: #fff;
    border-radius: 20px;
}

.subscribe .card h3 {
    margin-bottom: 50px;
    color: #fff !important;
}

.subscribe input {
    padding: 10px;
    border-radius: 25px;
    overflow: hidden;
    padding-left: 20px;
    border: 1px solid #fff;
}

.input-group-text {
    border-radius: 25px;
    background: #fff;
    border: 1px solid #fff !important;
}

.form-control:focus {
    border-color: #fff !important;
    box-shadow: none !important
}

.footerborder {
    padding: 50px 0px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.footeflex {
    display: flex;
    justify-content: space-between;
}

.footeflex ul {
    list-style: none;
    padding: 0;
}

.footeflex ul li {
    float: left;
    margin-right: 35px;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/

@media screen and (max-width: 1500px) {
    .speakers-text-info {
        padding: 50px;
    }
}

@media screen and (max-width: 1350px) and (min-width:991px) {
    .partnerspadd {
        padding: 15px;
    }
}

@media screen and (max-width: 991px) {
    .sectionflex {
        padding-right: 0px;
    }

    .sectionimage {
        padding-left: 0px;
    }

    h1 {

        font-size: 44px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }

    .custom-btn {
        font-size: var(--copyright-text-font-size);
        padding: 8px 16px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0;
    }

    .navbar-nav .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .mt-5 {
        margin-top: 1rem !important;
    }

    .col-md-9.pl-3 {
        padding-left: 12px;
    }
}

@media screen and (max-width: 580px) {

    .cardboxgray {
        padding-left: 25px;
    }

    .cardboxgray img {
        width: auto;
        position: relative;
        left: auto;
    }

    .iconset,
    .cardboxgray {
        margin-bottom: 20px;

    }

    .referrals img {
        width: 100%;
    }

    .referalcard img {
        width: 100%;
    }

    .cardimg {
        width: 100%;
        text-align: center;
        padding-right: 0px;
        padding-bottom: 20px;
    }

    .card img {
        max-width: 250px;
    }

    .mobilebanner {
        display: block
    }

    .desktopbanner {
        display: none
    }

    .points {
        margin-bottom: 20px;
    }

    .points .icons {
        width: 100%;
        float: none;
        text-align: center;
    }

    .points .icons img {
        min-width: 70px;
        max-width: 70px;
    }

    .points .details {
        width: 100%;
        float: none;
        text-align: center;
    }

    .static-card {
        display: none
    }

    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .text-2x p {
        margin-bottom: 7px;
        font-size: 18px;
    }

    .flex-box {
        flex-wrap: wrap;
    }

    .no-padding {
        padding-right: 15px;
    }

    section.speakers.section-padding {
        border-top: 1px solid #ddd;
    }

    .text-center-media {
        text-align: center;
    }

    section.cards.section-padding {
        padding-bottom: 0px;
    }

    h1 {
        font-size: 3rem
    }

    h2 {
        font-size: 3rem
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 21px;
    }

    h5 {
        font-size: 18px;
    }

    .navbar-brand {
        font-size: 16px;
        padding-right: 20px;
    }

    .nav-tabs .nav-link {
        margin-right: 0;
        margin-left: 0;
        padding: 15px;
    }

    .hero-text {
        width: 100%;
        padding: calc(40vmax / 12);
    }

    .site-footer .social-icon-link {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .footer-menu-link {
        margin-right: 0px;
        text-align: center;
    }

    .site-footer h5 {
        text-align: center;
    }

    .footer-menu,
    .copyright-text-wrap {
        justify-content: center;
    }



    .footerbg .ms-auto {
        margin: auto !important;
        display: flex;
    }

    .footerbg .navbar-brand {
        margin: 20px auto;
    }

    .sectionimage img {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
    }

    .mediamt-5 {
        margin-top: 25px;
    }

    li.footer-menu-item.small.mt-5 {
        text-align: center;
    }

    .rightpad {
        padding-right: 15px;
    }

    .leftpad {
        padding-left: 15px;
    }

    .partnersbgimage {
        min-height: 40vh !important;
    }

    .partnerspadd {
        padding: 20px;
    }

    .cardbox {
        margin-bottom: 20px;
        height: auto;
    }

    .platformcard,
    .platformcard2,
    .communitycard {
        margin-bottom: 20px;
        height: auto;
    }

    .textcard {
        margin-bottom: 25px;
    }

    .social-icon {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        min-width: 50%;
    }

    .subscribe {
        width: 100%;
        margin-left: auto;
        margin-top: 0px;
    }

    .footeflex {
        display: flex;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
    }

    .footeflex ul li {
        float: left;
        margin-right: 15px;
        width: 100%;
        text-align: center;
        padding: 5px 0px;
    }

    footer .flex-box {
        padding-top: 30px;
    }
}