@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-primary: #00C2FE;
    --color-input: #031624;
    --color-input2: #FFF;
    --background-color: #FFF;
    --background-color2: #031624;
    --background-color3: #EEE;
    --background-color4: #010b12;
    --background-header1: rgba(255, 255, 255, 0.9);
    --background-header2: rgba(255, 255, 255, 1);
    --background-opacity: rgba(255, 255, 255, 0.7);
    --font-color: #031624;
    --font-color2: #FFF;
    --font-panel-color: #FFF;
    --linear-to-bottom: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    --linear-circle: radial-gradient(circle, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 100%);
    --linear-home: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    --margin-primary: 10px;
    --margin-primary2: 20px;
    --height-primary: 50px;
    --padding-top-primary: 20px;
    --grid-columns: 3;
    --grid-column-size: 1fr;
    --grid-rows: 2;
    --grid-row-size: auto;
    --grid-gap: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: normal;
}

body {
    background-color: var(--background-color);
    font-family: "Montserrat", sans-serif;
    color: var(--color-input);
    -webkit-transition: color .4s linear;
    -moz-transition: color .4s linear;
    -o-transition: color .4s linear;
    transition: color .4s linear;
}

body.dark {
    color: var(--color-input2);
}

main {
    background-color: var(--background-color);
}

body.dark main {
    background-color: var(--background-color2);
}

html,
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a.page {
    color: var(--color-primary);
    font-weight: 500;
}

a.link {
    color: var(--font-color);
    transition: color .4s ease-in-out;
}

body.dark a.link {
    color: var(--font-color2);

}



.image-fade-bottom {
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}


@media screen and (max-width:991.98px) {

    a.link {
        transition: none;
    }

    a.link:hover {
        color: var(--font-color) !important;
    }

}

span.active {
    color: var(--color-primary);
    font-weight: 600;
}

.hidden {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

i.rotating {
    display: inline-block;
    animation: rotateIcon 1s linear infinite;
    transform-origin: center center;
    vertical-align: middle; /* pokud je uvnitř textu */
    
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}



/*#region PULSE */
@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale(0.8);
    }

    to {
        -webkit-transform: scale(1.2);
    }
}

@-moz-keyframes pulse {


    from {
        -moz-transform: scale(0.8);
    }

    to {
        -moz-transform: scale(1.2);
    }
}

@-o-keyframes pulse {
    from {
        -o-transform: scale(0.8);
    }

    to {
        -o-transform: scale(1.2);
    }
}


@keyframes pulse {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1.2);
    }
}

.pulse {
    -webkit-animation: pulse .4s infinite ease-in-out alternate;
    /* Safari & Chrome */
    -moz-animation: pulse .4s infinite ease-in-out alternate;
    /* Firefox */
    -o-animation: pulse .4s infinite ease-in-out alternate;
    /* Opera */
    animation: pulse .4s infinite ease-in-out alternate;
    /* W3C */
}



/*#endregion*/


.preloader {
    position: fixed;
    z-index: 9999;
    height: 100vh;
    width: 100vw;
    -webkit-transition: opacity .4s linear, visibility 0s linear .4s;
    -moz-transition: opacity .4s linear, visibility 0s linear .4s;
    -o-transition: opacity .4s linear, visibility 0s linear .4s;
    transition: opacity .4s linear, visibility 0s linear .4s;
    opacity: 1;
    visibility: visible;
    top: 0;
    background-color: var(--background-color);
}

body.dark .preloader {
    background-color: var(--background-color2);
}


.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader img {
    height: 70px;
}

@media screen and (max-width:575.98px) {
    .preloader img {
        height: 50px;
    }
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 0px;
}

.c-primary {
    color: var(--color-primary) !important;
}

.c-success {
    color: #22bb33 !important;
}

.c-danger {
    color: #FF0000 !important;
}

.c-warning {
    color: #FFAC1C !important;
}

.bg-primary {
    background-color: var(--color0) !important;
}

.bg-second-primary {
    background-color: #c1e8f7 !important;
}

.bg-success {
    background-color: #22bb33 !important;
}

.bg-second-success {
    background-color: #c1f4c7 !important;
}

.bg-danger {
    background-color: #FF0000 !important;
}

.bg-second-danger {
    background-color: #ffc4c4 !important;
}

.bg-warning {
    background-color: #FFAC1C !important;
}

.bg-second-warning {
    background-color: #ffe5b9 !important;
}

.fw-700 {
    font-weight: 700;
}


.div-row {
    height: 100%;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    display: flex;
    align-content: flex-start;
}

.div-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.div-center.top {
    align-items: start;
}

.div-center.bottom {
    align-items: end;
}

.div-center.bg {
    flex-direction: column;
}

.div-start {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 10px;
    height: 100%;
    width: 100%;
    position: relative;
}

.div-start.section {
    padding-left: 50px;
}

@media screen and (max-width:1199.98px) {
    .div-start.section {
        padding-left: 25px;
    }
}

@media screen and (max-width:991.98px) {
    .div-start.section {
        padding-left: 20px;
    }
}

.div-start.p-0 {
    padding-left: 0px !important;
}

.div-start.np {
    padding-left: 0px;
}

.div-start.top {
    align-items: start;
}

.div-start.bottom {
    align-items: end;
}

.div-end {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 10px;
    height: 100%;
    width: 100%;
    position: relative;
}

.div-end.top {
    align-items: start;
}

.div-end.bottom {
    align-items: end;
}

.div-end.p-0 {
    padding-right: 0px !important;
}

.ul-basic {
    list-style-type: none;
    margin: 0;
    padding: 0;
    z-index: 1;
}

img.dots {
    z-index: 0;
}

.ul-basic.flex {
    display: flex;
    position: relative;
}

.ul-basic.flex.h {
    height: 100%;
    width: 100%;
}


li.li-hw1 {
    height: 100%;
    width: 50%;
    position: relative;
}


li.li-half {
    width: 50%;
    height: 50%;
}

.ul-basic.flex.ha {
    height: auto;
    width: 100%;
}

.ul-basic.center {
    text-align: center;
}

.ul-basic.right {
    text-align: right;
}

.ul-basic.left {
    text-align: left;
}


input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    /* font-family: "EB Garamond", serif;
           font-family: "Poppins", sans-serif;
           font-family: "Nunito Sans", sans-serif; */
}

a {
    padding: 0;
    margin: 0;
    text-decoration: none;
}

body.body-primary.night a {
    color: var(--color4);
}

body.body-primary.day a {
    color: var(--color6);
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

input[type="text"] {
    max-width: 100%;
    box-sizing: border-box;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--color-input);
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px var(--background-color);
}



/*#region INPUTS*/


.div-tb {
    position: relative;
    height: 100px;
}

.div-tb.multiline {
    height: 290px;
}

@media screen and (max-width:1600.98px) {

    .div-tb {
        position: relative;
        height: 90px;
    }

    .div-tb.multiline {
        height: 320px;
    }

}

@media screen and (max-width:1199.98px) {
    .div-tb {
        position: relative;
        height: 80px;
    }
}




input,
textarea {
    background: #000;
    resize: none !important;
}


input::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

input::-webkit-scrollbar-thumb {
   display:none;
}

textarea::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

textarea::-webkit-scrollbar-thumb {
   display:none;
}


.input-box.active-grey .input-1 {
    border: 1px solid #dadce0;
}

.input-box.active-grey .input-label {
    color: #80868b;
    top: -8px;
    background: #fff;
    font-size: 11px;
    /*transition: 250ms;*/
}

.input-box.active-grey .input-label svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    /* transition: 250ms;*/
}

.input-box {
    position: relative;
    margin: 20px 0;
    width: 100%;
}

.input-box.mr {
    margin-right: 20px;
    width: calc(100% - 20px);
}

.input-box.medium.mr {
    margin-right: 10px;
    width: calc(100% - 10px);
}

.input-box.ml {
    margin-left: 20px;
    width: calc(100% - 20px);
}

.input-box.medium.ml {
    margin-left: 10px;
    width: calc(100% - 10px);
}

@media screen and (max-width:1600.98px) {
    .input-box {
        margin: 10px 0;
    }

    .input-box.mr {
        margin-right: 10px;
        width: calc(100% - 10px);
    }

    .input-box.ml {
        margin-left: 10px;
        width: calc(100% - 10px);
    }

}



@media screen and (max-width:575.98px) {
    .input-box.mr {
        margin-right: 0px;
        width: 100%;
    }

     .input-box.medium.mr {
     margin-right: 0px;
        width: 100%;
}

    .input-box.ml {
        margin-left: 0px;
        width: 100%;
    }

    .input-box.medium.ml {
    margin-left: 0px;
    width: 100%;
}

}





.input-box .input-label {
    position: absolute;
    color: var(--font-color);
    font-size: 14pt;
    font-weight: 600;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 40px;
    top: 35%;
    padding: 0 8px;
    /* transition: 250ms;*/
    user-select: none;
    pointer-events: none;

}

.input-box.medium .input-label {
    font-size: 12pt;
    left: 30px;
}

body.dark .input-box .input-label {
    color: var(--font-color2);
}


@media screen and (max-width:1600.98px) {
    .input-box .input-label {
        font-size: 12pt;
    }
}

@media screen and (max-width:1199.98px) {
    .input-box .input-label {
        font-size: 11pt;
        left: 20px;
    }
}

.input-box.multiline .input-label {
    top: 7%;
}

.input-box.danger .input-label {

    color: red !important;

}

.input-box .input-label svg {
    position: relative;
    width: 15px;
    height: 15px;
    top: 2px;
}

.input-box .input-1 {
    box-sizing: border-box;
    height: 80px;
    width: 100%;
    border-radius: 20px;
    color: var(--font-color);
    font-size: 14pt;
    border: 2px solid #EEE;
    padding: 13px 40px;
    font-weight: 600;
    background-color: #FFF;
}

.input-box.medium .input-1 {
    height: 60px;
    border-radius: 15px;
    font-size: 12pt;
    padding: 13px 30px;
}

body.dark .input-box .input-1 {
    color: #FFF;
    border: 2px solid #FFF;
    background-color: var(--background-color2);
}



@media screen and (max-width:1600.98px) {

    .input-box .input-1 {
        height: 65px;
        font-size: 12pt;
    }

}


@media screen and (max-width:1199.98px) {
    .input-box .input-1 {
        height: 55px;
        font-size: 11pt;
        padding: 13px 25px;
    }
}


.input-box.danger .input-1 {
    border: 2px solid red;
}

.input-box .input-1.multiline {
    box-sizing: border-box;
    height: 270px;
    width: 100%;
    border-radius: 20px;
    color: var(--color-input);
    font-size: 14pt;
    padding: 20px 40px;
    font-weight: 600;
    resize: vertical;
    overflow-y: auto;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
}

body.dark .input-box .input-1.multiline {
    color: var(--color-input2);
}

.input-box.medium .input-1.multiline {
    border-radius: 15px;
    color: var(--color-input);
    font-size: 12pt;
    padding: 20px 30px;
}

body.dark .input-box.medium .input-1.multiline {
   
    color: var(--color-input2);
  
}



@media screen and (max-width:1600.98px) {

    .input-box .input-1.multiline {
        font-size: 12pt;
    }

}

@media screen and (max-width:1199.98px) {
    .input-box .input-1.multiline {
        font-size: 11pt;
        padding: 20px 25px;
    }
}

@media screen and (max-width:1199.98px) {
    .input-box .input-1.multiline {
        height: 300px;
    }
}


.input-box.focus .input-1 {
    border: 2px solid var(--color-primary) !important;
}

.input-box.focus .input-label {
    color: var(--color-primary) !important;
}

.input-box .input-1:focus {
    outline: none;
    border: 2px solid var(--color-primary) !important;
    /*  transition: 250ms;*/
}



.input-box.focus .input-label,
.input-box.active .input-label {
    color: var(--color-primary);
    top: -7px;
    background: var(--background-color);
    font-size: 9pt;
    /* transition: 250ms;*/
    width: fit-content;
    font-weight: 600;
}


body.dark .input-box.focus .input-label,
body.dark .input-box.active .input-label {
    background: var(--background-color2);
}




.input-box.focus .input-label svg,
.input-box.active .input-label svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    /*transition: 250ms;*/
}

.input-box.active .input-1 {
    border: 2px solid var(--color-primary);
}

.input-box.error .input-label {
    color: #f44336 !important;
}

.input-box.error .input-1 {
    border: 2px solid #f44336 !important;
}

.div-gdpr-check {
    width: 100%;
}

.div-gdpr-text {
    margin-top: 10px;
}

.div-gdpr-text ul {
    text-align: center;
}


.div-gdpr-text p {
    font-size: 10pt;
}


.div-gdpr-check input[type="checkbox"] {
    width: 30px;
    height: 30px;
    appearance: none;
    background-color: var(--background-color);
    border: 2px solid var(--color-primary);
    cursor: pointer;
}

body.dark .div-gdpr-check input[type="checkbox"] {

    background-color: var(--background-color2);

}

.div-gdpr-check.error input[type="checkbox"] {

    border: 2px solid #f44336;

}

.div-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    appearance: none;
    background-color: var(--background-color) !important;
    border: 1.5px solid var(--color-primary);
    cursor: pointer;
}

input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: white;
}

.div-gdpr-check input[type="checkbox"]:checked,
.div-check input[type="checkbox"]:checked {
    background-color: var(--color-primary) !important;
}







.select-with-icon {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-with-icon select {
    appearance: none;
    /* Skryje výchozí šipku */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    font-size: 16px;
    padding: 10px 40px 10px 10px;
    /* Rezerva pro ikonu */
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    outline: none;
    cursor: pointer;
}

.select-with-icon::after {
    content: "\f0d7";
    /* Font Awesome Unicode pro šipku dolů */
    font-family: "Font Awesome 6 Pro";
    /* Font rodina pro Pro verzi */
    font-weight: 300;
    /* Váha ikon */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* Klikatelnost zůstane na <select> */
    color: #031624;
    transition: transform 0.3s ease, content 0.3s ease;
}

body.dark .select-with-icon::after {
    color: #FFF;
}



.select-with-icon.open::after {
    transform: translateY(-50%) rotate(180deg);
    /* Otočení */
    color: var(--color-primary);
}


/*#endregion */


.p-r {
    position: relative;
}



.f-prim {
    margin-left: var(--margin-primary);
    margin-right: var(--margin-primary);
    height: auto;
    position: relative;
}

.c-prim {
    margin: var(--margin-primary);
    height: var(--height-primary);
    padding-top: var(--padding-top-primary);
    position: relative;
}

.d-prim {
    margin: var(--margin-primary) var(--margin-primary) 0px var(--margin-primary);
    height: auto;
    position: relative;
}

.mt-100 {
    margin-top: 100px;
}

.mt-40 {
    margin-top: 40px;
}




.mt-50 {
    margin-top: 50px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-20 {
    margin-top: 20px;
}


.mt-5 {
    margin-top: 5px;
}

.mt--5 {
    margin-top: -5px;
}

.mt--7 {
    margin-top: -7px;
}



.doc {
    height: auto;
    margin-left: 10px;
    margin-top: 10px;
    position: relative;
}

.h-55 {
    height: 55px;
}

.h-65 {
    height: 65px;
}

.h-110 {
    height: 110px;
}

.h-150 {
    height: 150px;
}

.col-row {
    display: flex;
    align-items: center;
    position: relative;
    text-align: left;
}

.col-pr-50 {
    padding: 0px 50px 0px 0px;
}

.col-pl-50 {
    padding: 0px 0px 0px 50px;
}

.col-pr-30 {
    padding: 0px 30px 0px 0px;
}

.col-pl-30 {
    padding: 0px 0px 0px 30px;
}

.col-pr-0 {
    padding: 0px 0px 0px 0px;
}

.col-pl-0 {
    padding: 0px 0px 0px 0px;
}

.h-400 {
    height: 400px;
}



.col-row.rb {
    height: 45px;
}

.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}



.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}



.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}



.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-3.nw {
    width: 25%;
    height: 100%;
}

.col-3.nw-h {
    width: 25%;
    height: 400px;
}



.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}


.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}


.col-5.nw {
    width: 41.66666667%;
    height: 100%;
    overflow-y: auto;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}


.col-6.nw {
    width: 50%;
    height: 100%;
    overflow-y: auto;
}


.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-7.nw {
    width: 58.33333333%;
    height: 100%;
    overflow-y: auto;
}


.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}


.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}


.col-12 {
    flex: 0 0 auto;
    width: 100%;
}




.col-12.nw {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}



@media screen and (max-width:1800.98px) {


    .mt-xxl-100 {
        margin-top: 100px;
    }

    .mt-xxl-70 {
        margin-top: 70px;
    }


    .mt-xxl-50 {
        margin-top: 50px;
    }

    .mt-xxl-30 {
        margin-top: 30px;
    }

    .mt-xxl-20 {
        margin-top: 20px;
    }

    .mt-xxl-10 {
        margin-top: 10px;
    }

.mt-xxl--7 {
    margin-top: -7px
}



    .mt-xxl-0 {
        margin-top: 0px;
    }



    .col-xxl-dn {
        display: none;
    }

    .col-xxl {
        flex: 1 0 0%;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media screen and (max-width:1600.98px) {

    .col-xl-dn {
        display: none;
    }


    .col-xl {
        flex: 1 0 0%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media screen and (max-width:1439.98px) {

.mt-lg-30 {
    margin-top: 30px
}



.mt-lg--10 {
    margin-top: -10px
}


    .col-lg-dn {
        display: none;
    }

    .col-lg {
        flex: 1 0 0%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media screen and (max-width: 1199.98px) {


.col-ld-pr-30 {
    padding: 0px 30px 0px 0px;
}


    .col-ld-dn {
        display: none;
    }

    .mt-ld-100 {
        margin-top: 100px
    }

    .mt-ld-50 {
        margin-top: 50px
    }

    .mt-ld-30 {
        margin-top: 30px
    }

    .mt-ld-20 {
        margin-top: 20px
    }

    .mt-ld-10 {
        margin-top: 10px
    }

    .mt-ld-0 {
        margin-top: 0px
    }



    .col-ld {
        flex: 1 0 0%;
    }

    .col-ld-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-ld-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-ld-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-ld-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-ld-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-ld-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-ld-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-ld-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-ld-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-ld-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-ld-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-ld-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-ld-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media only screen and (max-width: 991.98px) {



.col-md-pr-0 {
    padding: 0px;
}

.div-start.md-p-10 {
    padding-left: 10px;
}



    .col-md-dn {
        display: none;
    }


    .mt-md-100 {
        margin-top: 100px
    }

    .mt-md-50 {
        margin-top: 50px
    }

    .mt-md-30 {
        margin-top: 30px
    }

    .mt-md-20 {
        margin-top: 20px
    }

    .mt-md-10 {
        margin-top: 10px
    }

    .mt-md-0 {
        margin-top: 0px
    }


    .col-md {
        flex: 1 0 0%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media only screen and (max-width: 767.98px) {

    .col-ml-dn {
        display: none;
    }


    .mt-ml-100 {
        margin-top: 100px
    }

.mt-ml-70 {
        margin-top: 70px
    }


    .mt-ml-50 {
        margin-top: 50px
    }

    .mt-ml-30 {
        margin-top: 30px
    }

    .mt-ml-20 {
        margin-top: 20px
    }

    .mt-ml-10 {
        margin-top: 10px
    }

    .mt-ml-0 {
        margin-top: 0px
    }


    .col-ml {
        flex: 1 0 0%;
    }

    .col-ml-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-ml-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-ml-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-ml-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-ml-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-ml-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-ml-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-ml-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-ml-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-ml-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-ml-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-ml-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-ml-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media screen and (max-width: 575.98px) {

 
   

    .col-sl-dn {
        display: none;
    }

    .mt-sl-100 {
        margin-top: 100px
    }

    .mt-sl-50 {
        margin-top: 50px
    }

    .mt-sl-30 {
        margin-top: 30px
    }

    .mt-sl-20 {
        margin-top: 20px
    }

    .mt-sl-10 {
        margin-top: 10px
    }

    .mt-sl-0 {
        margin-top: 0px
    }

    .h-sl-200 {
        height: 200px;
    }


    .col-sl {
        flex: 1 0 0%;
    }

    .col-sl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media screen and (max-width:473px) {

 .div-center-sm {
        justify-content: center;
        padding-left:0px;
    }

.div-center-sm-left {
     justify-content: start;
     right:-25%;
}


.mt-sm--10 {
    margin-top: -10px
}



    .col-sm-dn {
        display: none;
    }


    .mt-sm-100 {
        margin-top: 100px
    }

    .mt-sm-50 {
        margin-top: 50px
    }

    .mt-sm-30 {
        margin-top: 30px
    }

    .mt-sm-20 {
        margin-top: 20px
    }

    .mt-sm-10 {
        margin-top: 10px
    }

    .mt-sm-0 {
        margin-top: 0px
    }


    .col-sm {
        flex: 1 0 0%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media screen and (max-width: 375.98px) {


.mt-ss--13 {
    margin-top: -13px
}

.mt-ss--3 {
    margin-top: -3px
}

    .col-ss-dn {
        display: none;
    }


    .col-ss {
        flex: 1 0 0%;
    }

    .col-ss-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-ss-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-ss-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-ss-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-ss-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-ss-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-ss-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-ss-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-ss-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-ss-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-ss-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-ss-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-ss-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}