/* reset css*/

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,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
img {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* end reset css*/


/* variables*/

:root {
    --main-bg-color: #ebebeb;
    --main-font-size: 14px;
    --theme-color: rgb(44 62 80);
}


/* end variables*/

button::-moz-focus-inner {
    border: 0;
}

a:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: var(--main-font-size);
}

body {
    background-color: var(--main-bg-color);
    font-family: "Montserrat", serif;
    font-weight: 400;
    color: #071C1F;
    scroll-behavior: smooth;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #071C1F;
    line-height: 1.5;
    font-weight:bold;
}

p {
    line-height: 1.5;
}

h2 {

    font-size: 2rem;
}

h3 {
    font-size: 36px;
    font-weight: bold;
    color: #071C1F;

}

h4 {
    font-size: 1rem;
    font-weight: normal;
}

h5 {
    font-size: 1.1rem;
    color: #071C1F;
}

a {
    outline: none;
    text-decoration: none;
}

.pb10 {
    padding-bottom: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.pt10 {
    padding-top: 10px
}

.pt20 {
    padding-top: 20px
}

.pt30 {
    padding-top: 30px
}
.mt10{
    margin-top:10px;
}
.pl10 {
    padding-left: 10px;
}

.pl20 {
    padding-left: 20px;
}

.nm-plr10 {
    padding-left: 10px;
    padding-right: 10px;
}

.mt20 {
    margin-top: 20px;
}



.resetpm {
    padding: 0;
    margin: 0
}

.f700 {
    font-weight: 700;
}


/* end base */


/* Hide Show */

.show {
    display: block !important;
}

.hidepc {
    visibility: hidden;
}

.nopc {
    display: none;
}


/*button */

.btn,
button {
    position: relative;
    border: none;
    border-radius: 6px;
    color: inherit;
    background-color: inherit;
    font-size: 1rem;
    line-height: 1.5;
    padding: 12px 4px;
    display: inline-block;
    text-align: center;
    -webkit-transition-duration: 0.4s;
    /* Safari */
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    white-space: normal
}

.outline-blue {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: white;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
}

.outline-blue:hover {
    background-color: var(--theme-color);
}

element.style {}

.scroll-down {
    position: absolute;
    background-color: var(--theme-color);
    /*
    background: #0F2027;
    background: -webkit-linear-gradient(to bottom, #2C5364, #203A43, #0F2027);
    background: linear-gradient(to bottom, #2C5364, #203A43, #0F2027);

     */
    bottom: 5vh;
    left: 50%;
    margin-left: -16px;
    display: block;
    width: 42px;
    height: 42px;
    border: 3px solid #FFF;
    background-size: 14px auto;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0px 3px 9px -9px rgba(0, 0, 0, 1);
}


/* navigation start*/

.sidenav {
    font-family: 'Roboto', sans-serif;
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 11000;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    left: 0;
    box-shadow: 0px 3px 9px -7px rgba(0, 0, 0, 111);
    background-color: #f4f7f6;
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: all .15s;
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: ease;
    transition-delay: 0s;
    /* 0.5 second transition effect to slide in the sidenav */
}


/* The navigation menu links */

.sidenav a {
    padding: 15px 12px 12px 32px;
    text-decoration: none;
    font-size: 13px;
    width: 280px;
    color: #202121;
    display: block;
    border-bottom: 1px solid #E6EAEA;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.2s;
}


/* When you mouse over the navigation links, change their color */

.sidenav a:hover {
    color: #49c5b6;
    background-color: white;
}


/* Position and style the close button (top right corner) */

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    color: black;
    font-size: 24px;
    margin-left: 50px;
}

.sidenav .closebtn a:hover {
    background-color: transparent;
}

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

nav {
    position: fixed;
    display: block;
    width: 100%;
    background: white;
    z-index: 9999;
    /*
    color:#0C121C;

     */
    color: black;
    transition: 0.3s;
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
#bottomnav {
    position: fixed;
    bottom:0;
    display: block;
    width: 100%;
    background: white;
    z-index: 9999;

    color: black;

}
.navwhite {
    position: fixed;
    background-color: white;
    display: block;
    width: 100%;
    z-index: 9999;
    transition: 0.3s;
    color: #34495e;
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}

nav a {
    margin: 1rem;
    display: block;
    text-decoration: none;
    font-weight: normal;
}

.navlink {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    color: inherit;
    font-size: 1rem;
    font-weight: 500;
}

.mnavlink {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    color: #FFF;
    font-size: 2rem;
    font-weight: 700;
}


/* navigation end */


/* hero start */

#hero {
    display: inline-block;
    position: relative;
    width: 100%;
    background: #F2F6F7;

    background-image: url("/img/room.jpg");

    background-repeat: no-repeat;
    background-size: cover;
    /*
    min-height: 660px;
    */

    height: 100%;

}

.hero-title {
    margin-top: 20vh;
}

.hero-slogans-inner {

    /*
    background: linear-gradient(90deg,
    #2193b0 -50px,
    #6dd5ed 500px);
*/
    /*
    background: linear-gradient(180deg, rgba(213, 51, 60, 1) 0%, rgba(213, 51, 58, 1) 100%);

     */
    /*
    background: rgba(0, 0, 0, 0.6);

     */

/*
    background:linear-gradient(to left, rgba(50, 100, 245, 0.90), rgba(74, 84, 232, 0.88), rgba(91, 66, 219, 0.85), rgba(104, 44, 203, 0.88), rgba(114, 2, 187, 0.90));

*/
    font-weight: 700;
    display: inline;
    line-height: 1.6;
    font-size: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    color:inherit
}


/* sections */

#services {
    background-color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
#calc {
    background: #F2F6F7;;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
#about {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
#calculator{
    padding-top: 3rem;
    padding-bottom: 3rem;

}
#adv {
    background-color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

#gallery {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

#system {
    background-color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

#footer {
    background-color: white;
    font-size: 0.8rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#contact {
    background: #F2F6F7;
    padding-top: 3rem;
    padding-bottom: 3rem;
    color:#071C1F;

}

.footlink {
    display: block;

    color:#071C1F;
}
.footlink a {
    color:#071C1F;
}

/* accordion */

.accordion {
    background-color: white;
    color: #203A43;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: 1px solid #eaeaea;
    text-align: left;
    outline: none;
    font-size: 1rem;
    font-weight: 700;
    transition: 0.4s;
}

.active,
.accordion:hover {
    background-color: var(--theme-color);
    color:white;
}
.accordion:hover:after {

    color:white;
}
.accordion:after {
    font-family: "Font Awesome\ 5 Free";
    content: '\f078';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
    color:white;
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    padding-top: 15px;
}

.scroll-up {
    position: fixed;
    background-color: var(--theme-color);
    bottom: 20px;
    right: 20px;
    margin-left: -16px;
    display: block;
    width: 32px;
    height: 32px;
    border: 2px solid #FFF;
    background-size: 14px auto;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0px 3px 9px -9px rgba(0, 0, 0, 1);
}

select,
input,
textarea,
.form-control,
textarea.form-control {

    background-color: #fafafa;

    font-size: 16px;
    color: black;
    line-height: 42px;
    height: 42px;
    margin-bottom: 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    padding: 0 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea !important;
}



.text-right-m-center {
    text-align: left;
}

.circle-icon {
    /*
    background: var(--theme-color);

     */
    background-position: center center;
    background-repeat: no-repeat;
    /*
    border: 1px solid rgba(0, 0, 0, .12);

 */
    color: #38761D;
    border: 2px solid #38761D;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    text-align: center;
    line-height: 50px;
    margin-bottom: 20px;
    padding: 20px;
}

.hr {
    border-bottom: solid 3px #7444FD;
    width: 55px;
}

.ud {
    font-size: 20px;
    color: darkgreen;
    padding-right: 15px;
    padding-left: 15px;
}
.ud1 {
    font-size: 30px;
    color: var(--theme-color);
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
    padding-left: 15px;
    width:30px;
    height:30px;
}
.udred {
    font-size: 28px;
    color: #c5003b;
    padding-right: 15px;
    padding-left: 15px;
}
.bigicontop{
    font-size: 20px;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 50%;
    background-color: rgb(241 84 85);
    width:20px;
    /*
    height:50px;

     */
}
.banner{
    background-color: #EAF7F4;
}
.gallery {
    margin: 10px;
    display: flex;
    flex-wrap: wrap;
}

.gallery img {
    transition: all .5s ease-in-out;
    max-width: 200px;
    display: block;
    margin: 2px;
    width: auto;
    height: 220px;
    object-fit: cover;
}

.gallery img:hover {
    cursor: pointer;
    opacity: .75;
}
/* The snackbar - position it at the bottom and in the middle of the screen */

#snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 11111;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
}


/* Show the snackbar when clicking on a button (class added with JavaScript) */

#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* mobile layout */

@media only screen and (max-width: 48rem) {
    .nomobile {
        display: none
    }
    .onmobile {
        display: block !important;
        visibility: visible;
    }
    .card {
        flex: 0 1 100%;
    }
    .hero-slogans-inner {
        font-size: 6vw;
    }
    .gallery {
        overflow-x: scroll;
        flex-wrap: nowrap;
        max-width: none;
        justify-content: flex-start;
    }
    .hero-title {
        margin-top: 10vh;
    }
}


/* Style the Image Used to Trigger the Modal */

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 10000;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */

    /* Fallback color */
    background-color: white;
    /* Black w/ opacity */
    animation-name: zoom;
    animation-duration: 0.3s;
}


/* Modal Content (Image) */

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}


/* Caption of Modal Image (Image Text) - Same Width as the Image */

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}


/* Add Animation - Zoom in the Modal */

.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}


/* The Close Button */

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: black;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/* 100% Image Width on Smaller Screens */

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
    .mmt10{
        margin-top:10px;
    }
    .mmt20{
        margin-top:20px;
    }
    .hero-title {
        margin-top: 5vh;
    }
    .mobilepadtop{
        padding-top:80px;
    }
}