@charset "UTF-8";

html {
    box-sizing: border-box;
}
// <uniquifier>: Use a uniquifier for the class name
// <weight>: Use a value from 300 to 800

.open-sans-<uniquifier> {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
a:link, a:visited {
  color: #fff;
  text-decoration: none;
  cursor: auto;
}
a:hover {
    color: #8e9c9c;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    background-color: #fff;
}
main {
    margin: 0 auto;
    width: 100%;
}
.bldnm {
    font-weight: 700;
    color: #D2451E;
}
.upprcase {
    text-transform: uppercase;
    top: 6px;
    position: absolute;
}
.topmenubar {
    padding: 0em .5em;
    background-color: #AA182C;
    width: 100%;
    height: 30px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
.bannerimg {
    background-color: #8E9C9C;
    width: 100%;
    height: 350px;
    background-image: url(../img/bannerimg.jpg);   
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bannerimg div {
    width: 400px;
    height: auto;
    margin-left: 20px;
}
.bannerimg img {
    width: 100%;
    height: 100%;
}
.infocontainer {
    margin: 0 auto;
    width: 100%;
    height: auto;
    background-color: white;
}
.infop {
    padding: 3em 9em;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    font-size: 16px;
    font-weight: 400;
}
.services {
    margin: 0 auto;
    max-width: 1320px;
    width: 100%; 
}
.services div {
    margin: 0 auto;
    width: 75%;
    display: flex;
    flex-wrap: nowrap;
}
.oticons {
    margin-right: 130px;
    width: 300px;
    height: 300px;
}
.oticons img {
    width: 100%;
    border: solid .75px #d1d1d1;
}
.srvcslist {
    line-height: 2;
    font-size: 18px;
    font-weight: 600;
}
.srvcslist h1 {
    line-height: 0;
    font-size: 21px;
    font-weight: 600;
    color: #D2451E;
}
.about {
    margin: 44px auto;
    max-width: 1320px;
    width: 100%; 
}
.aboutimgtxtcontainer {
    display: flex;
    flex-wrap: nowrap;
    padding: 1em;
}
.left {
    width: 20%;
    height: 200px;
    margin-right: 14px;
}
.left img {
    width: 100%;
    border: solid .75px #d1d1d1;
}
.right {
    width: 80%;
    height: auto;
    background-color: #BBC6C3;
}
.right p {
    padding: 2em;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    text-align: justify;
    text-justify: inter-word;
}

/* Responsive */

@media screen and (max-width: 1024px) {
    main {
        width: 100%; 
    }
    .infop p {
        text-align: left;
    }
    .infop {
        padding: 1em 3em;
    }
    .oticons {
        max-width: 400px;
        max-height: 400px;
        width: 100%;
        height: auto;
    }
    .srvcslist {
        font-size: 16px;
        line-height: 1.8;
    }
    .right p {
        text-align: left;
    }
}

@media screen and (max-width: 960px) {
    .oticons {
        max-width: 600px;
        max-height: 600px;
    }
    .oticons img {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .bannerimg {
        height: 200px;
        background-image: url(../img/bannerimg2.jpg);
    }
     .bannerimg div {
        width: 200px;
        height: auto;
        margin: 0 auto;
    }
    .services div {
        flex-direction: column;
        margin: 0 auto;
        max-width: 600px;
        width: 85%;
    }
    .oticons {
        margin: auto;
        max-width: 600px;
        max-height: 600px;
        width: 100%;
        height: auto;
    }
    .oticons img {
        width: 100%;
    }
    .srvcslist {
        margin-top: 24px;
    }
    .aboutimgtxtcontainer {
        flex-direction: column;
    }
    .left {
        margin: 0 auto;
        width: 256px;
    }
    .right {
        width: 100%;
        margin-top: 14px;
    }
}

@media screen and (max-width: 600px) {
    .bannerimg div {
        width: 300px;
        height: auto;
        margin: 0 auto;
    }
}