* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 400;
    color: #000000;
    background: #fffcea;
    font-family: "Times New Roman", Times, serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Times New Roman", Times, serif;
    color: #000000;
    line-height: 1.3;
    font-weight: 500;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 3.6rem;
    font-weight: 700;
}
h2 {
    font-size: 3.2rem;
    font-weight: 700;
}
h3 {
    font-size: 2.8rem;
    font-weight: 600;
}
h4 {
    font-size: 2.6rem;
    font-weight: 500;
}
h5 {
    font-size: 2.4rem;
    font-weight: 500;
}
h6 {
    font-size: 2rem;
    font-weight: 400;
}
p, a {
    font-size: 2.2rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
a, .txt-blue {
    color: #037bd1;
}
a:hover{
    color: #037bd1;
    text-decoration: underline;
}
a:focus, button:focus, .btn:focus {
    outline: 0 !important;
    box-shadow: none !important;
}
img{ 
    max-width:100%;
}
section {
    position: relative;
    display: block;
    padding: 50px 0;
    margin: 0;
}
.align-center{
    align-self: center;
}
.align-bottom{
    align-self: flex-end;
}
.btn{
    padding: 12px 30px;
    width: 250px;
    background: #037bd1;
    border-radius: 0;
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0px;
    border: 1px solid #037bd1;
    text-decoration: none;
    transition: all 0.5s ease-in;
    outline: 0;
    box-shadow: none;
}
.btn:hover{
    background: transparent;
    color: #037bd1;
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}
hr {
    opacity: 1;
}

table th, table td {
    border: 1px solid #000;
}
header{
    position: relative;
    display: block;
    background: #000;
    color: #fff;
}
.top-header, .bottom-header{
    position: relative;
    display: block;
    padding: 30px 0;
    margin: 0;
    background: #000;
    color: #fff;
}
.top-header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-header-content .top-left, .top-header-content .top-right{ 
    width: 50%;
}
.top-header-content h1 {
    color: #fff;
}
.top-header-content ul {
    list-style: none;
    margin: 0;
    text-align: right;
    padding: 0;
}
.top-header-content ul li { 
    color: #fff;
    font-size: 2.2rem;
    display: block;   
}
.top-header-content ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.top-header-content ul li a:hover {
    color: #037bd1;
    text-decoration: underline;
}
.mob-menu-btn {
    display: none;
}
.bottom-header {
    background: #fffcea;
    color: #000;
}
.bottom-header .navbar-nav {
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: center;
}
.bottom-header .navbar-nav li {
    width: auto;
    border-right: 1px solid #000;
    margin: 0;
    padding: 0 40px;
}
.bottom-header .navbar-nav li:last-child {
    border-right: none;
}
.bottom-header .navbar-nav li a {
    margin: 0;
    padding: 0 !important;
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 400;
    color: #000000;
    transition: all 0.3s ease;
}
.bottom-header .navbar-nav li a:hover,
.bottom-header .navbar-nav li a.active {
    color: #037bd1;
    text-decoration: underline;
}
footer{
    position: relative;
    display: block;
    background: #131921;
    color: #fff;
    margin: 0;
    padding: 40px 0;
}
.footer-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-content p {
    color: #fff;
}
.footer-content a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.footer-content a:hover {
    color: #037bd1;
    text-decoration: underline;
}
.img-box {
    position: relative;
    display: block;
}
.img-box {
    width: 100%;
    height: auto;
    object-fit: cover;
    text-align: center;
}
.testimonial-section{
  position: relative;
}
.testimonial-container{
  text-align:center; 
  position: relative;
  width:100%;
  margin:0 auto;
}
.testimonial{
  position: relative;
  width:100%;
  margin:0 auto;
  text-align:center;
}
.testimonial-content {
    position: relative;
    width:70%;
    margin:0 auto;
    margin-bottom: 30px;
    padding: 15px 0;
    text-align:center;
}
.testimonial-content::before,
.testimonial-content::after {
    position: absolute;
    content: "";    
    height: 40px;
    width: 60px;
    top: 0;
}
.testimonial-content::before {
    background: url("../images/quote-left.jpg") no-repeat center;
    background-size: contain;
    left: 0;
}
.testimonial-content::after {
    background: url("../images/quote-right.jpg") no-repeat center;
    background-size: contain;
    right: 0;
}
.testimonial-content p{
    margin: 0 auto;
    margin-bottom: 15px;
    align-self: center;
    text-align: center;
    color: #000000;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.5;
    width: 80%;
    padding: 0px;
}
.testimonial-content .details span{
  display:inline-block;
  width:100%;
  margin:0 auto;
  letter-spacing: 1px;	
  line-height: 1.5;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 900;
  font-style: italic;
}
.slick-dots {
    bottom: 0px;
}
.slick-dots li button {
    display: block;
    cursor: pointer;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 0;
    text-indent: 10em;
    overflow: hidden;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
.slick-dots li button {
    background-color: #00000000;
    border-style: solid;
    border-width: 3px 3px 3px 3px;
    border-color: #000000;
}
.slick-dots li button:before {
    display: none;
}
.slick-dots li.slick-active button {
    background-color: #000000;
}
.pdf-box {
    position: relative;
    display: block;
}
.pdf-box a {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: auto;
    color: #000;
    text-decoration: none;
}
.pdf-box img {
    margin-right: 20px;      
    width: 120px;
}
.pdf-box a:hover {
    color: #037bd1;
    text-decoration: underline;
}
/** testimonial page css **/
p.client-name {
    font-weight: 900;
    font-style: italic;
    font-size: 1.9rem;
    margin-top: 2.3rem;
}
.testimonial-item .col-md-7 {
    flex: 0 0 55%;
}
.testimonial-item .col-md-5 {
    flex: 0 0 45%;
}
.testimonial-item {
    margin-bottom: 7rem;
}
.image-left .img-box {
    text-align: left;
}
.image-right .img-box {
    text-align: right;
}
.img-box.testimonial-img-box img {
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}
.image-left .testimonial-text-box {
    padding-left: 4rem;
}
.image-right .testimonial-text-box {
    padding-right: 4rem;
}
/** enquiry page css **/
p.instruction-text {
    margin-bottom: 2rem;
}
.red-text {
    color: #f00;
}
.form-control {
    padding: 1rem;
    font-size: 2rem;
    color: rgba(78, 77, 77, 0.719);
    height: 55px;
}
.form-group {
    margin-bottom: 3rem;
    position: relative;
}
form {
    margin-top: 2rem;
}
.form-wrapper .btn {
    border-radius: 0;
    padding: 1.5rem 4rem;
    text-transform: uppercase;
    margin-top: 1rem;
}
.form-wrapper .btn:hover {
    color: #037bd1;
}
textarea.form-control {
    height: 139px;
}
p.error {
    font-size: 1.5rem;
    position: absolute;
    bottom: -22px;
    color: #f00;
}
.info-block {
    height: 280px;
    border: 1px solid #333;
    padding: 1rem 4rem;
    display: flex;
    align-items: center;
    margin-right: 30px;
}
.info-block-wrapper h3 {
    margin-bottom: 1.3rem;
}
.info-block-wrapper h6 {
    margin: 0.6rem 0;
    font-size: 2.3rem;
}
.info-block-wrapper a {
    color: #027bd0 !important;
    text-decoration: none;
}
img.payment-mode {
    margin-bottom: 1.5rem;
}

/* responsive css start */
@media (min-width: 1500px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px;
    }
}
@media (max-width: 1500px){
    .bottom-header .navbar-nav li {
        padding: 0 30px;
    }
}
@media (max-width: 1400px) {
    html {
        font-size: 60%;
    }
    .bottom-header .navbar-nav li {
        padding: 0 20px;
    }
    .testimonial-content {
        width: 80%;
    }
}
@media (max-width: 1199px) {
    html {
        font-size: 50%;
    }
    footer {
        padding: 30px 0;
    }
    section {
        padding: 30px 0;
    }
}
@media (max-width: 991px) {
    .top-header {
        padding: 20px 0;
    }
    .top-header-content {
        flex-direction: column;        
        align-items: flex-start;
    }
    .top-header-content .top-left, .top-header-content .top-right {
        width: 100%;
    }
    .top-header-content .top-left {
        margin-bottom: 10px;
    }
    .top-header-content ul {
        text-align: left;
    }
    .mob-menu-btn {
        display: block;
    }
    .navbar-toggler {
        position: absolute;
        width: auto;
        height: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin: 0;
        padding: 0;
        right: 0;
        top: 35%;
    }
    .navbar-toggler i {
        color: #fff;
        font-size: 3rem;
    }
    .bottom-header {
        transition: all 0.5s ease-in;
        padding: 0;
    }
    .bottom-header.show {
        padding: 15px;
        box-shadow: 0 0 10px -5px rgb(0 0 0 / 70%);
        transition: all 0.5s ease-in;
    }
    .bottom-header .navbar-nav {
        align-items: flex-start;
        text-align: left;
    }
    .bottom-header .navbar-nav li {
        border: 0;
        margin: 0;
    }
    .bottom-header .navbar-nav li a {
        margin: 10px 0;
    }
    .footer-content {
        flex-direction: column;
    }
    .gallery .img-box {
        margin-bottom: 30px;
    }
    .footer-left {
        text-align: center;
        margin-bottom: 15px;
    }
    .testimonial-content {
        width: 100%;
    }
    .testimonial-item .col-md-7,
    .testimonial-item .col-md-5 {
      flex: 0 0 50%;
    }
}
@media (max-width: 767px) {
    h1 {
        font-size: 3rem;
    }
    .top-header {
        padding: 15px 0;
    }
    .top-header-content ul li, .top-header-content ul li a {
        font-size: 2rem;
    }
    footer {
        padding: 20px 0;
    }
    .bottom-header.show {
        padding: 10px;
    }
    .bottom-header .navbar-nav li a {
        margin: 5px 0;
    }
    .w-80 {
        width: 80%;
    }
    section {
        padding: 20px 0;
    }
    .pdf-box a {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }
    .pdf-box img {
        margin-bottom: 10px;        
        width: 90px;
    }
    .testimonial-item .col-md-7,
    .testimonial-item .col-md-5 {
      flex: 0 0 100%;
    }
    .image-left .testimonial-text-box,
    .image-right .testimonial-text-box {
      padding-left: 0;
      padding-right: 0;
    }
    .img-box.testimonial-img-box img {
      width: auto;
      object-fit: initial;
      max-height: initial;
      margin: 2rem 0;
    }
    .testimonial-item {
      margin-bottom: 4rem;
      border-bottom: 1px solid #ccc;
      padding-bottom: 2rem;
    }
    .image-left .img-box,
    .image-right .img-box {
      text-align: center;
    }
    .testimonial-item:last-child {
      border: 0;
      margin-bottom: 0;
    }
    .info-block {
      margin: 10px 0;
      height: auto;
      padding: 3rem 2rem;
    }
}
@media (max-width: 575px) {
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        width: 95%;
    }
}
div#mail-status .error{background-color: #FF6600;border:#AA4502 1px solid;padding: 5px 10px;color: #FFFFFF;border-radius:4px;}
div#mail-status .success{background-color: #12CC1A;border:#0FA015 1px solid;padding: 5px 10px;color: #FFFFFF;border-radius:4px;}