:root{
    --black: #222222;
    --primaryColor: #3B666C;
    --primaryTextColor: #3B666C;
    --secondaryColor: #ffffff;
    --auxillaryColor: #FCCEC2;
    --secondaryPeach: #FEF0ED;
    --lightPeach: #fcf4f3;
    --transparentBackground : rgba(0,0,0,0);
    --darkGreyColor: #d9d9d9;
    --secondaryGreen:#475958;
    --green400: #9CAEAD;
    --primaryPeach: #fab4a2;
}

body {
    margin: 0px;
    padding: 0px;
    color: var(--primaryColor);
    font-family: 'Avenir LT Pro', sans-serif;
}

.row > * {
    padding: 0;
}

a,
.nav-list li:hover {
    cursor: pointer
}

a {
    text-decoration: none !important;
    color: inherit;
}

* {
    box-sizing: border-box;
}

[class*="col-"] {
    float: left;
}

.row {
    padding: 0px;
    margin: 0px !important;
}


/* styling of headers */
h1{
    font-family: 'Poppins', sans-serif;
}
.xxl-header {
    font-size: 70px;
    font-weight: 600;
}

.xl-header {
    font-size: 60px;
    font-weight: 600;
}

.header {
    font-size: 52px;
    font-weight: 400
}

.sub-header {
    font-size: 40px;
    font-weight: 300
}

.caption-header {
    /* font-style: italic; */
    font-weight: 300;
    font-size: 28px;
}

.font-32{
    font-size: 32px !important;
}

p,
.paragraph {
    font-size: 20px;
    font-weight: normal;
    color: var(--primaryTextColor);
    margin-bottom: 0.5em
}

.link-text:hover {
    text-decoration: underline !important;
    cursor: pointer;
}
.relative-position{
    position: relative !important;
}

/* Styling of texts */

.text-purple {
    color: #6610f2;
}

.text-peach {
    color: #f56a6a !important;
}

.text-grey {
    color: #828282;
}

.text-underlined {
    text-decoration: underline;
}

.text-red {
    color: red
}

.text-green {
    color: green
}

.text-white {
    color: #fff;
}

.text-primary{
    color: var(--primaryColor) !important
}

.text-secondary{
    color: var(--black) !important
}

.text-auxillary{
    color: var(--auxillaryColor) !important
}

.text-black{
    color: var(--primaryTextColor)
}

/* alignment styling */

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: bold;
}

.text-italic{
    font-style: italic;
}

.text-sm{
    font-size: 16px
}

.text-bg{
    font-size: 18px !important
}

.bg-light-red {
    background-color: rgb(255, 197, 197) !important;
}

.bg-light-grey {
    background-color: #e8e8e8;
}

.bg-dark{
    background-color: #000 !important;
}

.bg-black{
    background-color: var(--black);
}

.bg-primary{
    background-color: var(--primaryColor) !important;
}

.bg-secondary{
    background-color: var(--black) !important;
}

.bg-auxillary{
    background-color: var(--auxillaryColor) !important;
}

/* Styling of buttons */

.btn {
    padding: 15px 40px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    border-radius: 0px;
}
.btn-bg {
    font-size: 20px
}
.btn-primary {
    color: #fff;
    background-color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
}
.btn-primary:hover {
    color: var(--primaryColor);
    background-color: var(--transparentBackground);
}

.btn-white-bd {
    border: 1px solid var(--secondaryColor);
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
}
.btn-white-bd:hover {
    background-color: var(--secondaryColor);
    color: var(--black);
}

.btn-orange-bd:hover {
    background-color: #e8e8e8;
    border: 1px solid #e6e6e6;
}

.btn-danger-bd {
    border: 1px solid red;
    background-color: rgba(0, 0, 0, 0);
}
.btn-danger-bd:hover {
    background-color: rgba(253, 205, 205, 1);
}
.btn-danger-bg {
    border: 1px solid rgb(184, 3, 3);
    background-color: rgb(184, 3, 3);
    color: #fff;
}
.btn-danger-bg:hover {
    background-color: rgb(87, 2, 2);
    border-color: rgb(87, 2, 2);
    color: #fff;
}
.btn-purple-bd {
    border: 1px solid var(--primaryColor);
    background-color: rgba(0, 0, 0, 0);
    color: var(--primaryColor);
}
.btn-purple-bd:hover {
    background-color: #e1d0fd;
}
.btn-purple-bg {
    background-color: var(--primaryColor);
    color: #fff;
    border-color: var(--primaryColor);
}
.btn-purple-bg:hover {
    background-color: rgba(0, 0, 0, 0);
    color: var(--primaryColor);
}
.btn-light-blue-bg {
    background-color: #E1EBFF;
    color: #343B4A;
    border-color: #E1EBFF;
}
.btn-light-blue-bg:hover {
    background-color: #343B4A;
    border-color: #343B4A;
    color: #fff;
}

.btn-alert-modal {
    padding: 5px 15px;
    font-size: 14px;
}

.line-height-15 {
    line-height: 2em;
}


/* Border colors */

.grey-bd {
    border-color: #828282 !important;
}

.purple-bd {
    border-color: #9e37e7 !important;
}

.peach-bd {
    border-color: #f56a6a !important;
}


/* Styling of form input field */

.form-control {
    margin-top: 0.5em;
    margin-bottom: 1.4em
}

#alertModal {
    z-index: 1000000000;
}


/* Styling of flexbox with horizontal scrolling */

.flexbox-container {
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 0em;
    padding: 10px 0px;
    margin-bottom: 2em;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    scroll-behavior: smooth;
}

.flexbox-container::-webkit-scrollbar {
    display: none;
}

.flexbox-item {
    padding: 0px 15px;
    align-self: stretch;
    display: flex;
    /* padding-bottom: 2em */
}

.flexbox-item>div.card {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.review-content {
    flex: 1 0 auto;
}

.flex-scroll-left-btn+div {
    padding-left: 0px !important;
    margin-left: -30px !important;
}

.flex-direction-btn {
    /* margin-top: 15%; */
    padding: 5px 15px;
    background-color: #e6e6e6;
    color: #000;
    font-size: 20px;
    height: 40px;
    width: 40px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    position: sticky;
    z-index: 2;
}

.flex-direction-btn:hover {
    background-color: #b4b4b4;
    cursor: pointer;
}

.flex-scroll-left-btn {
    left: 0;
}

.flex-scroll-right-btn {
    padding-left: 17px;
    padding-right: 13px;
    right: 0;
}


/* Different color backgrounds */

.bg-grey {
    background-color: #f2f2f2
}

.bg-dark-grey{
    background-color: #E1E7E6 !important;
}

/* Styling for svg icons/clip arts */

.clip-icon {
    text-align: center;
}

.clip-icon>svg {
    height: 300px
}

.icon-cap,
.icon-cap a {
    font-size: 14px !important;
    color: #d9d9d9 !important
}


.opening-page-div, .sub-div {
    background-color: #fff;
    position: static;
    overflow: auto;
    width: 100%;
    /* height: 100%; */
}
.opening-page-div{
    padding: 10em 8em 5em 8em;
}
.sub-div {
    padding: 6em 8em;
}

.double-strike {
    text-decoration: line-through;
}

.call-to-action > div{
    padding: 2em;
    color: #fff;
    text-align: center;
}

.margin-auto {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.no-display {
    display: none;
}


/* Margin stylings */

.mt-1 {
    margin-top: 1em !important;
}

.mt-2 {
    margin-top: 2em !important;
}

.mt-3 {
    margin-top: 3em !important;
}

.mt-4 {
    margin-top: 4em !important;
}

.mt-5 {
    margin-top: 5em !important;
}

.mb-1 {
    margin-bottom: 1em !important;
}

.mb-2 {
    margin-bottom: 2em !important;
}

.mb-3 {
    margin-bottom: 3em !important;
}

.mb-4 {
    margin-bottom: 4em !important;
}

.mb-5 {
    margin-bottom: 5em !important;
}

.about-sub-block {
    margin-top: 2em
}

.about-sub-block hr {
    margin-top: -10px;
}


/* Styling for image cropper */

#cropImageModal img {
    display: block;
    max-width: 100%;
}

#cropImageModal .preview {
    overflow: hidden;
    width: 160px;
    height: 160px;
    margin: 10px;
    border: 1px solid red;
}

#cropImageModal .modal-lg {
    max-width: 800px !important;
}

.modal{
    background: rgba(89, 111, 110, 0.05) !important;
    mix-blend-mode: normal;
    backdrop-filter: blur(9px);
    z-index: 10000;
}
.alert-msg{
    font-size: 21px;
}


.card-box-shadow{
    box-shadow: 0.5px 0.5px 30px 10px #42424212;
}

.card-glass{
    background-color: #eef0f7 !important;
}

/* End of styling */

@media only screen and (max-width: 585px) {
    .xl-header {
        font-size: 40px;
        font-weight: 600;
    }
    .header {
        font-size: 30px;
        font-weight: 400
    }
    .sub-header {
        font-size: 24px;
        font-weight: 200
    }
    .caption-header {
        font-weight: 200;
        font-size: 20px;
    }
    p {
        font-size: 16px;
        font-weight: 200
    }
    form .btn {
        width: 100%;
    }
}

@media only screen and (min-width: 586px) and (max-width: 767px) {
    /* styling of headers */
    .xl-header {
        font-size: 48px;
        font-weight: 600;
    }
    .header {
        font-size: 36px;
        font-weight: 400
    }
    .sub-header {
        font-size: 28px;
        font-weight: 200
    }
    .caption-header {
        font-weight: 200;
        font-size: 22px;
    }
    p {
        font-size: 18px;
        font-weight: 200
    }
}

@media only screen and (max-width: 767px) {
    .sub-div {
        padding: 3em 1.2em;
    }
    .opening-page-div {
        padding: 2em;
        padding-top: 6em;
    }
    .form-group {
        margin-bottom: 1.2em;
    }
    .float-left-sm{
        float:left;
    }
    .mt1-sm{
        margin-top: 1em;
    }
}

@media only screen and (min-width: 767px) {
    .float-right-md{
        float:right;
    }
}


@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 992px) and (max-width: 1200px) {}