.body {
    font-family: verdana;
    text-decoration: none;
}

.html {
    font-family: verdana;
    text-decoration: none;
}

.nav-bt {
    display: inline-block;
    text-decoration: none;
}

.nav-bt::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #c00000;
    transition: width .3s;
}

.nav-bt:hover::after {
    width: 100%;
    /* //transition: width .3s; */
}

.content {
    padding: 16px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky+.content {
    padding-top: 60px;
}

.imgpad {
    padding: 70px 70px 70px 70px;
}

.imgmargin {
    margin: 70px 0px 70px 0px;
}

.graybg {
    background-image: linear-gradient(68.1deg, rgba(41, 55, 71, 1) 5.8%, rgba(86, 101, 117, 1) 98.1%);
}

.idpadd {
    padding-top: 100px;
}

.topmargin {
    margin-top: 60px;
}

.topimgdiv {
    padding: 0px;
}

.topbgdiv {
    background-image: linear-gradient(68.1deg, rgba(192, 0, 0, 1) 5.8%, rgba(107, 32, 32, 1) 98.1%);
    font-size: 35px;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 0px 5px 0px;
}

.topbgdivsrs {
    background-image: linear-gradient(68.1deg, rgba(41, 55, 71, 1) 5.8%, rgba(96, 104, 113, 1) 98.1%);
    font-size: 35px;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    padding: 70px 0px 40px 0px;
}

.topbgdivss {
    background-image: linear-gradient(68.1deg, rgba(255, 235, 156, 1) 5.8%, rgba(175, 154, 71, 1) 98.1%);
    font-size: 35px;
    text-align: center;
    color: #000000;
    font-weight: bold;
    padding: 10px 0px 5px 0px;
}

/*---------------------fa icons -------------------------*/
.faicon {
    color: #5c748e;
}

.fas {
    color: #FFEB9C;
    background-color: #26060b;
    padding: 4px 7px;
    border-radius: 100px;
}

/*---------------------fa icons -------------------------*/
/**
 * See: http://www.css-101.org/articles/ken-burns_effect/css-transition.php
 */

/**
 * Styling the container (the wrapper)
 * 
 * position is used to make this box a containing block (it becomes a reference for its absolutely positioned children). overflow will hide part of the images moving outside of the box.
 */
#hero-circles {
    width: 355px;
    height: 320px;
    margin-top: -170px;
    margin-left: 50px;
}

.hero-banner .hero-circles {
    position: absolute;
    left: 5%;
    bottom: -7em;
}

svg:not(:root) {
    overflow: hidden;
}

#slideshow {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    border: 0px solid #fff;
}

.boxmargn {
    margin-top: -40px;
    background-color: #293747;
    color: #ffffff;
    padding: 20px;
    z-index: 100;
    border-radius: 5px;
}

.boxin {
    color: #ffffff;
    text-align: center;
    padding: 20px;
    z-index: 100;
    border-right: 1px solid #495c73;
}

.containbg {
    background-image: url(images/map.png);
}

/**
 * Styling the images
 *
 * position:absolute is to put all images in a stack. Dimensions are set to increase the size of these images so their edges do not appear in the parent box when we move them inside the said box.
 * Because the images are now larger than their parent container, we use top, left and margin values to align them in the center of the box.
 * Finally, we set the transition (property and duration). Note that duration values are different for opacity and transform as we want the "fade-in" effect to be faster than the "panning" effect.
 */
.globalbg {
    background-image: linear-gradient(68.1deg, rgba(61, 114, 180, 1) 5.8%, rgba(82, 82, 82, 1) 98.1%);
}

#slideshow img {
    position: absolute;
    width: 110%;
    height: 800px;
    top: 50%;
    left: 50%;
    margin-left: -950px;
    margin-top: -390px;
    opacity: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    -webkit-transition-duration: 3s, 10s;
    -moz-transition-property: opacity, -moz-transform;
    -moz-transition-duration: 3s, 10s;
    -ms-transition-property: opacity, -ms-transform;
    -ms-transition-duration: 3s, 10s;
    -o-transition-property: opacity, -o-transform;
    -o-transition-duration: 3s, 10s;
    transition-property: opacity, transform;
    transition-duration: 3s, 10s;
}

/**
 * We change the point of origin using four corners so images do not move in the same direction. 
 * This technique allows us to create various paths while applying the same translate() values to all images (see the 'fx' class further below).
 */

#slideshow img {
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
}

#slideshow :nth-child(2n+1) {
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    -ms-transform-origin: top right;
    -o-transform-origin: top right;
    transform-origin: top right;
}

#slideshow :nth-child(3n+1) {
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
}

#slideshow :nth-child(4n+1) {
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
}

/*#slideshow img  {
    -webkit-transform-origin: bottom left;
       -moz-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
         -o-transform-origin: bottom left;
            transform-origin: bottom left;
}

#slideshow :nth-child(2n+1) {
    -webkit-transform-origin: top right;
       -moz-transform-origin: top right;
        -ms-transform-origin: top right;
         -o-transform-origin: top right;
            transform-origin: top right;
}

#slideshow :nth-child(3n+1) {
    -webkit-transform-origin: top left;
       -moz-transform-origin: top left;
        -ms-transform-origin: top left;
         -o-transform-origin: top left;
            transform-origin: top left;
}
#slideshow :nth-child(4n+1) {
  -webkit-transform-origin: bottom right;
     -moz-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
       -o-transform-origin: bottom right;
          transform-origin: bottom right;
}*/

/**
 * Because of the stacking context, we need to make sure that the first image (in source) is not hidden by the last one. 
 * The rule below moves all images past the second one down the stack. 
 * This is because the second image needs to show on top of the first one when it transitions in.
 */

#slideshow .fx:first-child+img~img {
    z-index: -1;
}

/**
 * Because images are styled with a different point of origin, the following rule will create different panning effects.
 */

#slideshow .fx {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/*------------------overlapp panal --------------------*/
.redfntbig {
    color: #7b001f;
    font-size: 18px;
}

.leftfntbig {
    color: 293747;
    font-size: 25px;
    text-align: left;
    font-weight: bold;
    font-family: roboto, sans-serif;
}

.leftfntsm {
    color: 293747;
    font-size: 17px;
    text-align: left;
    font-weight: bold;
    font-family: roboto, sans-serif;
}

.overlappnltop {
    margin-left: 25%;
    margin-top: -30px;
    width: 150px;
    height: 40px;
    background-color: #ffffff;
    font-size: 17px;
    color: #7b001f;
    /*color:#bf392b;*/
    font-weight: bold;
    padding: 5px;
    z-index: 7;
    position: absolute;
    text-align: center;
    border: 1px solid #7b001f;
}

.overlappnl {
    padding: 0px;
    font-size: 25px;
    color: red;
    z-index: 5;
    margin-top: -80px;
    position: absolute;
}

.overlapsectn {
    padding: 10px;
    background-image: url(../images/bgimgtranprt.png);
    border: 1px solid #7b001f;
}

.overlapsectnimg {
    width: 350px;
    height: 200px;
}

.redfnt {
    color: #C00000;
    font-family: 'roboto', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
}

.titlemdl {
    font-size: 28px;
    color: #C00000;
    text-align: center;

}

.titlelft {
    font-size: 24px;
    color: #C00000;
    text-align: left;
}

.smalltitlelft {
    font-size: 22px;
    color: #7b001f;
    text-align: left;
}

.sectionpadone {
    padding: 100px 90px 100px 90px;
}

.sqrshp a {
    text-decoration: none;
}

.sqrshp a:hover {
    color: #900;
}

#shapesqr {
    width: 0;
    height: 0;
    border: 50px solid transparent;
    background-image: url(../images/build5.png);
    border-bottom-color: red;
    position: relative;
    top: -50px;
}

#shapesqr:after {
    content: '';
    position: absolute;
    left: -50px;
    top: 50px;
    width: 0;
    height: 0;
    border: 50px solid transparent;
    border-top-color: red;
}


.subtitle {
    font-size: 18px;
    color: #293747;
    text-align: center;
    line-height: 35px;
    font-weight: 600;
}

.subtitleright {
    font-size: 18px;
    color: #293747;
    text-align: right;
    line-height: 35px;
    font-weight: 600;
}

.subtitlejustpadd {
    font-size: 18px;
    color: #293747;
    text-align: justify;
    line-height: 35px;
    font-weight: 600;
    padding-left: 40px;
}

.subtitlebig {
    font-size: 22px;
    color: #293747;
    text-align: center;
    line-height: 35px;
    font-weight: 600;
}

.subtitlecntr {
    font-family: roboto, sans-serif;
    font-size: 16px;
    color: #293747;
    text-align: center;
    line-height: 27px;
    line-height: 1.5;
}

.subtitlesplcntr {
    font-size: 15px;
    color: #293747;
    text-align: justify;
    line-height: 27px;
    font-family: "Playfair Display";
}

.subtitleleft {
    font-size: 20px;
    color: #293747;
    text-align: justify;
    line-height: 35px;
    font-weight: 600;
}

.subparajust {
    font-family: roboto, sans-serif;
    font-size: 16px;
    color: #293747;
    text-align: justify;
    line-height: 27px;
    line-height: 1.5;
}

.solvright {
    font-size: 30px;
    color: #ee663b;
    text-align: right;
    line-height: 1;
    font-weight: 600;
}


.overlappnlbottom {
    margin-left: 24%;
    margin-bottom: 300px;
    background-color: #7b001f;
    padding: 5px 8px 15px 8px;
    z-index: 7;
    position: absolute;
    text-align: center;
}

.onebutton {
    border: 2px solid #6c6c64;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.onebutton:hover {
    background-color: #6c6c64;
    color: white;
}



/* button style*/
.btnwrap {}

.btnmn {
    border: 0px solid black;
    border-radius: 0px;
    width: 200px;
    height: 40px;
    display: block;
    background: linear-gradient(to right, #293747 50%, #ffeba5 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .5s ease-out;
    padding: 5px 0px;
    box-shadow: 0px 8px 25px #b5b4af;
}

.btnmn:hover {
    background-position: left bottom;
}

.btntxt {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: .875rem;
    text-height: 40%;
    line-height: 30px;
    color: #293747;
    transition: all .3s ease-out;
    display: block;
}

.btntxt:hover {
    color: #ffeba5;
}

.btnmn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btnmn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.btnmn:hover span {
    padding-right: 25px;
}

.btnmn:hover span:after {
    opacity: 1;
    right: 0;
}

.booknwbtn {
    border-radius: 4px;
    background-image: linear-gradient(68.1deg, rgba(255, 235, 165, 1) 5.8%, rgba(123, 109, 51, 1) 98.1%);
    border: none;
    color: #000000;
    text-align: center;
    font-size: 17px;
    padding: 10px;
    width: 150px;
    transition: all 0.5s;
    cursor: pointer;
    box-shadow: 1px 5px 10px #4b411b;
    /*background-image: linear-gradient(to right, #cc5a90 , #4b1fad);
    background-image: linear-gradient( 72.5deg,  rgba(0,175,255,1) 27.9%, rgba(0,224,254,1) 84.2% );*/
}

.booknwbtn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.booknwbtn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.booknwbtn:hover span {
    padding-right: 25px;
}

.booknwbtn:hover span:after {
    opacity: 1;
    right: 0;
}

#gotopbtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #7b001f;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#gotopbtn:hover {
    background-color: #555;
}

.reservbtn {
    margin-left: 80%;
    margin-top: 110px;
    padding: 10px;
    position: absolute;
    position: fixed;
    z-index: 1600;
    background-image: url(../images/bgimgtranprt.png);
    float: right;
    border-radius: 0px 0px 10px 10px;
    text-align: center;
}

.phnfnt {
    font-family: "verdana";
    font-size: 20px;
    color: #7b001f;
}

.socialstl {
    border-radius: 105px;
    width: 30px;
}

.custom-h1 {
    font-weight: bold;
    margin: 0.67em 0;
    font-size: 2em;
}

.iframe {
    display: none;
    visibility: hidden
}

.title18 {
    font-size: 18px;
}

.navlink {
    text-decoration: none;
}

.solutionBg {
    background-color: #ece6e1;
    background-image: url(1images/contain_gr.png);
}

.bgTransparent {
    background-color: transparent;
}

.border0 {
    border: none;
}

.veoScreen {
    max-width: 400px;
    max-height: 350px
}

.footerTron {
    margin-bottom: 0;
    border-radius: 0px;
}

.text-left {
    text-align: left;
}

.copyrightContent {
    color: #ffffff;
    font-size: 14px;
}

.bigtext {
    /*font-family:"Playfair Display";*/
    font-family: "verdana";
    font-size: 46px;
    color: #293747;
    font-weight: bold;
}

.bigtextmdl {
    font-family: "verdana";
    font-size: 46px;
    color: #293747;
    font-weight: bold;
    text-align: center;
}

.smalltextmdl {
    font-family: "verdana";
    font-size: 30px;
    color: #293747;

    text-align: center;
}

.bigtextright {
    font-family: "verdana";
    font-size: 46px;
    color: #293747;
    font-weight: bold;
    text-align: right;
    line-height: 1;
}

.bigtextdark {
    font-family: "verdana";
    font-size: 46px;
    color: #C00000;
    font-weight: bold;
}

.btextdark {
    font-family: "verdana";
    font-size: 36px;
    color: #7b001f;
    font-weight: bold;
}


.bigtextwht {
    font-family: "verdana";
    font-size: 46px;
    color: #ffffff;
    font-weight: bold;
}

.bigtextblk {
    font-family: "verdana";
    font-size: 56px;
    color: #000000;
    font-weight: bold;
}

.smalltextwht {
    letter-spacing: 2px;
    text-align: justify;
    font-family: roboto, sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 27px;
    line-height: 1.5;
}


.mdtextwht {
    font-family: "verdana";
    font-size: 20px;
    color: #ffffff;
    letter-spacing: 2px;
}

.sectionpad {
    padding: 70px 70px 70px 0px;
}

.marginsectn {
    margin: 100px 0px 100px 0px;
}

.paddinectn {
    padding: 100px 0px 100px 0px;
}

.paddinectnall {
    padding: 50px 50px 50px 50px;
}

.imgpadd {
    padding: 70px 0px 0px 0px;
}

.padone {
    padding: 25px 0px 5px 0px;
}

.bookpannl {
    padding: 35px 30px 30px 30px;
}

.paddingsection {
    padding: 100px 0px 50px 0px;
}

.testpanl {
    background-image: url(../images/build20.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 50px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/*  margin: 30px;
  background-color: #ffffff;
  border: 1px solid black;
  opacity: 0.6;
  filter: alpha(opacity=60); /* For IE8 and earlier */
.booknowpannl {
    background-image: linear-gradient(to right, #26060b, #f3ca68);
    /*	background-color:#f4af0a;
            background-image:url(../images/bgimgtranprt.png);*/
    border: #e2a30c 2px solid;
    margin-left: 30%;
    margin-top: -50px;
    position: absolute;
    z-index: 100;
    border-radius: 25px 0px 25px 0px;
}

.gradientbg {
    background-image: linear-gradient(to right, #ffffff, #ffffff, #ece1e2);
}

.imganimtn {
    width: 300px;
    height: 200px;
    background: red;
    -webkit-transition: width 2s, height 4s;
    /* For Safari 3.1 to 6.0 */
    transition: width 2s, height 4s;
    margin: 100px 0px 100px 0px;
}

.imganimtn:hover {
    width: 600px;
    height: 400px;
}


.footerpadd {
    padding: 50px 50px;
    background-color: #7b001f;
}


#footbar {
    overflow: hidden;
    background-image: linear-gradient(68.1deg, rgba(41, 55, 71, 1) 5.8%, rgba(86, 101, 117, 1) 98.1%);
    /*background-image: linear-gradient(to right, #cc5a90 , #4b1fad);
    background-image: linear-gradient( 72.5deg,  rgba(0,175,255,1) 27.9%, rgba(0,224,254,1) 84.2% );*/
    /* //background-image: linear-gradient(to right, #de1e41, #bf1f3c , #7b001f, #8a0d24); */
    /*                    background-color: #7b001f #918b8b;#2d2d2d;##22caad*/
}

#footbar a {
    line-height: 35px;
    color: #f2f2f2;
    text-align: center;

    text-decoration: none;
    font-size: 15px;
}

#footbar a:hover {
    color: black;
}

#footbar a.active {
    background-color: #127662;
    /*                  background-color: #bf392b;*/
    color: #ffffff;
    font-weight: bold;
}

.sqrshp {
    width: 400px;
    height: 500px;
}

/*
.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background-color: rgba(75,75,75,0.7);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hovereffect:hover .overlay {
  background-color: rgba(48, 152, 157, 0.4);
}

.hovereffect img {
  display: block;
  position: relative;
}

.hovereffect h2 {
	font-family:"Playfair Display";
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hovereffect:hover h2 {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.hovereffect a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: normal;
  margin: -52px 0 0 0;
  padding: 62px 62px;
}

.hovereffect:hover a.info {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hovereffect a.info:hover {
  box-shadow: 0 0 5px #fff;
}
*/

.hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}

.hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hovereffect:hover .overlay {
    background-color: rgba(170, 170, 170, 0.4);
}

.hovereffect h2,
.hovereffect img {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hovereffect img {
    display: block;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.hovereffect:hover img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hovereffect h2 {
    font-family: "Playfair Display";
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 17px;
    padding: 10px;
    background-color: #293747;
}

.hovereffect a.info {
    display: inline-block;
    font-size: 25px;
    font-weight: bold;
    padding: 7px 14px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    margin: 100px 0 0 0;
    background-color: transparent;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-weight: normal;
    height: 85%;
    width: 85%;
    position: absolute;
    top: -20%;
    left: 8%;
    padding: 50px 40px;
}

.hovereffect:hover a.info {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-color: rgba(0, 0, 0, 0.4);
}

.pageimg {
    margin-top: -190px;
    margin-bottom: 10px;
    width: 100%;
    height: 400px;
}

@media (min-width: 0px) and (max-width: 320px) {
    .navbar-brand {
        width: 130px;
    }

    .navbar-toggler {
        padding: 0px;
        font-size: 0.25
    }

    .nav-bt::after {
        height: 1px;
    }

    .subtitlecntr {
        font-size: 16px;
        text-align: justify;
    }

    .sectionpadone {
        padding: 8px;
    }

    .paddingsection {
        padding: 10px 0px 10px 0px;
    }

    .imgmargin {
        margin: 10px 0px 10px 0px;
    }

    .idpadd {
        padding-top: 10px;
    }

    .topmargin {
        margin-top: 10px;
    }

    .topimgdiv {
        padding: 2px;
    }

    .bigtextwht {
        font-size: 30px;
    }

    .bigtext {
        font-size: 30px;
    }

    .smalltextwht {
        text-align: justify;
    }

    .smalltextmdl {
        font-size: 20px;
    }

    .bigtextmdl {
        font-size: 26px;
    }

    .titlemdl {
        font-size: 18px;
    }

    .pageimg {
        margin-top: -20px;
        margin-bottom: 0px;
        width: 100%;
        height: 70px;
    }

    .topbgdivsrs {
        font-size: 20px;
        padding: 50px 0px 10px 0px;
    }

    #hero-circles {
        width: 155px;
        height: 120px;
        opacity: 20%;
        margin-top: -130px;
        margin-left: 5px;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .navbar-brand {
        width: 130px;
    }

    .navbar-toggler {
        padding: 0px;
        font-size: 0.25
    }

    .subtitlecntr {
        font-size: 16px;
        text-align: justify;
    }

    .sectionpadone {
        padding: 8px;
    }

    .paddingsection {
        padding: 10px 0px 10px 0px;
    }

    .imgmargin {
        margin: 10px 0px 10px 0px;
    }

    .idpadd {
        padding-top: 10px;
    }

    .topmargin {
        margin-top: 10px;
    }

    .topimgdiv {
        padding: 2px;
    }

    .bigtextwht {
        font-size: 30px;
    }

    .bigtext {
        font-size: 30px;
    }

    .smalltextwht {
        text-align: justify;
    }

    .smalltextmdl {
        font-size: 20px;
    }

    .bigtextmdl {
        font-size: 26px;
    }

    .titlemdl {
        font-size: 18px;
    }

    .pageimg {
        margin-top: -20px;
        margin-bottom: 0px;
        width: 100%;
        height: 70px;
    }

    .topbgdivsrs {
        font-size: 20px;
        padding: 60px 0px 10px 0px;
    }

    #hero-circles {
        width: 155px;
        height: 120px;
        opacity: 20%;
        margin-top: -130px;
        margin-left: 5px;
    }
}

@media (min-width: 481px) and (max-width: 640px) {
    .subtitlecntr {
        font-size: 16px;
        text-align: justify;
    }

    .sectionpadone {
        padding: 8px;
    }

    .paddingsection {
        padding: 10px 0px 10px 0px;
    }

    .imgmargin {
        margin: 10px 0px 10px 0px;
    }

    .idpadd {
        padding-top: 20px;
    }

    .topmargin {
        margin-top: 10px;
    }

    .topimgdiv {
        padding: 2px;
    }

    .bigtextwht {
        font-size: 36px;
    }

    .bigtext {
        font-size: 30px;
    }

    .bigtextmdl {
        font-size: 36px;
    }

    .titlemdl {
        font-size: 20px;
    }

    .pageimg {
        margin-top: -320px;
        margin-bottom: 40px;
        width: 100%;
        height: 100px;
    }

    .topbgdivsrs {
        font-size: 30px;
        padding: 100px 0px 10px 0px;
    }

    #hero-circles {
        width: 5px;
        height: 20px;
        opacity: 20%;
        display: none;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .subtitlecntr {
        font-size: 16px;
        text-align: justify;
    }

    .sectionpadone {
        padding: 0px;
    }

    .paddingsection {
        padding: 10px 0px 10px 0px;
    }

    .imgmargin {
        margin: 10px 0px 10px 0px;
    }

    .idpadd {
        padding-top: 10px;
    }

    .topmargin {
        margin-top: 10px;
    }

    .topimgdiv {
        padding: 2px;
    }

    .bigtextmdl {
        font-size: 36px;
    }

    .titlemdl {
        font-size: 20px;
    }

    .pageimg {
        margin-top: -20px;
        margin-bottom: 10px;
        width: 100%;
        height: 100px;
    }

    .topbgdivsrs {
        font-size: 30px;
        padding: 70px 0px 10px 0px;
    }

    #hero-circles {
        width: 5px;
        height: 20px;
        opacity: 20%;
        display: none;
    }

}

@media (min-width: 769px) and (max-width: 800px) {
    .sectionpadone {
        padding: 100px 90px 100px 90px;
    }

    .paddingsection {
        padding: 10px 0px 10px 0px;
    }

    .imgmargin {
        margin: 10px 0px 10px 0px;
    }

    .idpadd {
        padding-top: 10px;
    }

    .topmargin {
        margin-top: 20px;
    }

    .topimgdiv {
        padding: 2px;
    }
}

@media (min-width: 801px) and (max-width: 980px) {
    .sectionpadone {
        padding: 100px 90px 100px 90px;
    }

    .paddingsection {
        padding: 10px 0px 10px 0px;
    }
}

@media (min-width: 981px) and (max-width: 1280px) {
    .sectionpadone {
        padding: 100px 90px 100px 90px;
    }

    .paddingsection {
        padding: 10px 0px 10px 0px;
    }
}