﻿.slide span {
    line-height: 1.5;
}

.sendenquiry {
    margin-bottom: 150px;
    display: none;
    margin-top: -20px;
}

    .sendenquiry h3 {
        font-size: 20px;
        font-weight: 700;
        color: #265976;
    }

    .sendenquiry h5 {
        font-size: 18px;
        font-weight: 500;
        color: #265976;
    }

.requestcall {
    display: none;
    margin-top: -20px;
    margin-bottom: 100px;
}

    .requestcall h3 {
        font-size: 20px;
        font-weight: 700;
        color: #265976;
    }

.requestcall h5 {
    font-size: 18px;
    font-weight: 500;
    color: #0C173A;
}


/* form starting stylings ------------------------------- */

.group {
    position: relative;
    margin-bottom: 28px;
}

.matinput {
    font-size: 14px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #757575;
    background-color: transparent;
}

.matinput:focus {
    outline: none;
}


/* LABEL ======================================= */

.matlabel {
    color: #999;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}


/* active state */

.matinput:focus~.matlabel,
.matinput:valid~.matlabel {
    top: -20px;
    font-size: 10px;
    color: #000000;
}


/* BOTTOM BARS ================================= */

.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 1px;
    width: 0;
    bottom: .7px;
    position: absolute;
    background: #000000;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}


/* active state */

.matinput:focus~.bar:before,
.matinput:focus~.bar:after {
    width: 50%;
}


/* HIGHLIGHTER ================================== */

.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* active state */

.matinput:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}


/* ANIMATIONS ================ */

@-webkit-keyframes inputHighlighter {
    from {
        background: #000000;
    }
    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #000000;
    }
    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #000000;
    }
    to {
        width: 0;
        background: transparent;
    }
}

.pure-material-checkbox {
    z-index: 0;
    position: relative;
    display: inline-block;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 16px;
    line-height: 1.5;
}


/* Input */

.pure-material-checkbox>input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -8px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}


/* Span */

.pure-material-checkbox>span {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    font-size: 12px;
}


/* Box */

.pure-material-checkbox>span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 0px 11px 3px 1px;
    border: solid 2px;
    /* Safari */
    border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    border-radius: 2px;
    width: 18px;
    height: 18px;
    vertical-align: top;
    transition: border-color 0.2s, background-color 0.2s;
}


/* Checkmark */

.pure-material-checkbox>span::after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 1px;
    width: 10px;
    height: 5px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}


/* Checked, Indeterminate */

.pure-material-checkbox>input:checked,
.pure-material-checkbox>input:indeterminate {
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox>input:checked+span::before,
.pure-material-checkbox>input:indeterminate+span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox>input:checked+span::after,
.pure-material-checkbox>input:indeterminate+span::after {
    border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
}

.pure-material-checkbox>input:indeterminate+span::after {
    border-left: none;
    transform: translate(4px, 3px);
}


/* Hover, Focus */

.pure-material-checkbox:hover>input {
    opacity: 0.04;
}

.pure-material-checkbox>input:focus {
    opacity: 0.12;
}

.pure-material-checkbox:hover>input:focus {
    opacity: 0.16;
}


/* Active */

.pure-material-checkbox>input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.pure-material-checkbox>input:active+span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox>input:checked:active+span::before {
    border-color: transparent;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}


/* Disabled */

.pure-material-checkbox>input:disabled {
    opacity: 0;
}

.pure-material-checkbox>input:disabled+span {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    cursor: initial;
}

.pure-material-checkbox>input:disabled+span::before {
    border-color: currentColor;
}

.pure-material-checkbox>input:checked:disabled+span::before,
.pure-material-checkbox>input:indeterminate:disabled+span::before {
    border-color: transparent;
    background-color: currentColor;
}

.button {
    border: none!important;
    float: right;
    color: #255f79;
    outline: none!important;
    font-weight: bold;
}

.button:after {
    border: none !important;
    outline: none!important;
}

.button:active:after {
    border: none !important;
    outline: none!important;
}

.select {
    font-family: 'Segoe UI';
    position: relative;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    box-sizing: content-box;
    padding: 5px 0;
}

#ddlcountry option {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 20px;
}

.matlabel span {
    color: #ed0404;
}

.select-label span {
    color: #ed0404;
}

.select-text {
    position: relative;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    padding: 10px 10px 10px 0;
    font-size: 14px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #757575;
}


/* Remove focus */

.select-text:focus {
    outline: none;
    border-bottom: 1px solid #000000;
}


/* Use custom arrow */

.select .select-text {
    appearance: none;
    -webkit-appearance: none
}

.select:after {
    position: absolute;
    top: 18px;
    right: 10px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
}


/* LABEL ======================================= */

.select-label {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 10px;
    transition: 0.2s ease all;
}


/* active state */

.select-text:focus~.select-label,
.select-text:valid~.select-label {
    color: #000000;
    top: -20px;
    transition: 0.2s ease all;
    font-size: 10px;
}


/* BOTTOM BARS ================================= */

.select-bar {
    position: relative;
    display: block;
    width: 100%;
}

.select-bar:before,
.select-bar:after {
    content: '';
    height: .7px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #000000;
    transition: 0.2s ease all;
}

.select-bar:before {
    left: 50%;
}

.select-bar:after {
    right: 50%;
}


/* active state */

.select-text:focus~.select-bar:before,
.select-text:focus~.select-bar:after {
    width: 50%;
}


/* HIGHLIGHTER ================================== */

.select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

textarea {
    height: auto;
    height: 100px;
}


.productMenu
{
    margin-top:300px;
}

@media (max-width: 576px) {
    /*#helping-section{
        margin-top:57%;
    }
    #productMenu {
        margin-top: 69%;
    }*/
    /*#ContactUs {
        margin-top: 69%;
    }
    #services {
        margin-top: 69%;
    }
    #coming-soon {
        margin-top: 69%;
    }*/
}


@media (min-width: 768px) {
    /*#helping-section {
        margin-top: 44.5%;
    }
    #productMenu {
        margin-top: 40%;
    }*/
    /*#ContactUs {
        margin-top: 40%;
    }
    #services {
        margin-top: 40%;
    }
    #coming-soon {
        margin-top: 40%;
    }*/
}


@media (min-width: 992px) {
    /*#helping-section {
        margin-top: 32.8%;
    }
    #productMenu {
        margin-top: 32.8%;
    }*/
    /*#ContactUs {
        margin-top: 32.8%;
    }
    #services {
        margin-top: 32.8%;
    }
    #coming-soon {
        margin-top: 32.8%;
    }*/
}


@media (min-width: 1200px) {
    /*#helping-section {
        margin-top: 25%;
    }*/
    /*#productMenu {
        margin-top: 25%;
    }*/
    /*#ContactUs {
        margin-top: 25%;
    }
    #coming-soon {
        margin-top: 25%;
    }
    #services {
        margin-top: 25%;
    }*/
}

@media (min-width: 1600px) {
    /*#helping-section {
        margin-top: 28.3%;
    }*/

    /*#productMenu {
        margin-top: 28.3%;
    }*/

    /*#ContactUs {
        margin-top: 28.3%;
    }

    #coming-soon {
        margin-top: 28.3%;
    }

    #services {
        margin-top: 28.3%;
    }*/
}