﻿/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*

CSS STRUCTURE:

1. VARIABLES
2. GENERAL TYPOGRAPHY

--------------------------------------------------------------*/

/*  General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  --heading-font: 'Roboto Condensed', sans-serif;
  --heading-font-weight: 700;
  --heading-color: #313131;
  --heading-line-height: 1.24;

  --accent-color: #4f6a8b;
  --linear-gradient: linear-gradient(90deg, #042957 0%, #4f6a8b 100%);


  /* bootstrap */
  --bs-body-font-family: 'Roboto', sans-serif;
  --bs-body-font-size: 18px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.6875rem;
  --bs-body-color: #777777;
  --bs-body-color-rgb: 143, 143, 143;

  --bs-primary: #8C907E;
  --bs-secondary: #6c757d;
  --bs-black: #313131;
  --bs-light: #FFFFFF;
  --bs-dark: #212529;
  --bs-gray: #D9D9D9;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 140, 144, 126;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-black-rgb: 17, 17, 17;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: #111;
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #111;
  --bs-link-hover-color-rgb: 17, 17, 17;

}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
  letter-spacing: 0.065rem;
  text-transform: uppercase;
}

h6 {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.19rem;
}

.heading-color {
  color: var(--accent-color);
}

a {
  text-decoration: none;
}


/* bootstrap button style  */

.btn {
  --bs-btn-padding-x: 1.88em;
  --bs-btn-padding-y: 0.75rem;
  --bs-btn-font-family: var(--heading-font);
  --bs-btn-font-size: 1.1875rem;
  --bs-btn-font-weight: 700;
  border-radius: 0;
  text-transform: uppercase;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #fff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #fff;
  --bs-btn-disabled-border-color: #fff;
}

.btn-primary {
  background-image: linear-gradient(to right, #042957 0%, #4f6a8b 51%, #042957 100%);
  background-size: 200% auto;
  border: none;
  transition: 0.7s all;
  -webkit-transition: 0.7s all;
}

.btn-primary:hover {
  background-position: right center;
}


/*---- navigation section style start ----*/

.navbar {
  font-family: var(--heading-font);
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: var(--bs-black);
  --bs-navbar-hover-color: var(--accent-color);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: var(--accent-color);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
}

.nav-link {
  font-size: 1rem;
  font-weight: 700;
}

nav.navbar {
  z-index: 999;
}


/* dropdown style  */

.dropdown-menu {
  --bs-dropdown-border-radius: 0px;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--bs-gray);
  color: var(--bs-black);
}

.dropdown-item {
  font-weight: 600;
  color: var(--bs-black);
}

@media only screen and (max-width: 1200px) {
  a.phone-no {
    display: none;
  }
}

@media only screen and (max-width: 1800px) {
  .pattern-overlay {
    display: none;
  }
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: var(--accent-color) !important;
}



/*---- hero section style start ----*/

.pattern-overlay.pattern-right {
  top: 30%;
  right: 0px;
}

form.hero-form {
  background: rgba(255, 255, 255, 0.90);
}

.form-label {
  font-size: 0.875rem;
  color: var(--bs-black);
  text-transform: uppercase;
}

.form-control {
  /* border: none; */
  border-radius: 0;
}

/*---- partner section style start ----*/

img.logo-image {
  filter: saturate(0);
  opacity: 50%;
  transition: ease-in 0.2s;
}

img.logo-image:hover {
  filter: saturate(100%);
  opacity: 1;
}



/*---- testimonial section style start ----*/

section#testimonial {
  background: linear-gradient(90deg, #042957 0%, #4f6a8b 100%);
}

.testimonial-pattern-overlay.pattern-right {
  top: 35%;
  right: 0px;
}

.testimonial-pattern-overlay.pattern-left {
  top: 20%;
  left: 0px;
}

.testimonial-content {
  background: #F9E9E9;
}

iconify-icon.rate {
  color: #F2B821;
}

/* swiper overide 
--------------------------------------------------------------*/

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, var(--bs-light));
}


/*---- services section style start ----*/

.services-components {
  border: 1px solid var(--accent-color);
  transition: all 0.5s ease-in;
}

iconify-icon.services-icon {
  font-size: 80px;
  color: var(--accent-color);
  transition: all 0.5s ease-in;
}

.services-heading {
  transition: all 0.5s ease-in;
}

.service-btn {
  transition: all 0.5s ease-in;

}

/* .services-components:hover {
  background: var(--accent-color);
  color: var(--bs-light);
}

.services-components:hover .services-heading,
.services-components:hover iconify-icon.services-icon {
  color: var(--bs-light);
}

.services-components:hover .service-btn {
  background: var(--bs-light);
  color: var(--bs-black);
  transition: all 0.5s ease-in;
} */


/*---- projects section style start ----*/

section#projects {
  background: var(--accent-color);
}

button.filter-button {
  font-family: var(--heading-font);
  border: 1px solid #FFF;
  background: transparent;
  color: var(--bs-light);
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease-in;
}

button.filter-button.active {
  color: var(--bs-dark);
  background: var(--bs-light);
}

button.filter-button:hover {
  color: var(--bs-dark);
  background: var(--bs-light);
}


.item .description {
  width: 90%;
  height: 90%;
  position: absolute;
  bottom: 20px;
  left: 15px;
  z-index: 5;
  opacity: 0;
  background: rgba(255, 255, 255, 0.90);
  transition: all 0.5s ease-in;
}

.item:hover .description {
  opacity: 1;
}

@media only screen and (min-width:770px) and (max-width: 1400px) {
  .item .description {
    text-align: start;
  }

  .project-date,
  .project-heading {
    display: none;
  }
}

@media only screen and (min-width:770px) and (max-width: 1200px) {
  .item .description {
    left: -5px;
    background: none;
  }
}



/*---- process section style start ----*/

.process-components {
  border-bottom: 2px dotted var(--accent-color);
  /* border-top: 2px solid var(--accent-color); */
  transition: ease-in 0.3s;
}

img.arrow {
  opacity: 0;
}

iconify-icon.process-icon {
  color: var(--accent-color);
  font-size: 110px;
}



/*---- faq section style start ----*/

/* accordian style override  */

.accordion {
  --bs-accordion-border-color: var(--accent-color);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-btn-icon: url('../ion/caret-down.svg');
  --bs-accordion-btn-active-icon: url('../ion/caret-down.svg');
  --bs-accordion-border-radius: 0px;
}

.accordion-header {
  margin-bottom: 0;
  border-top: 1px solid var(--accent-color);
}

.accordion-button {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
  letter-spacing: 0.065rem;
  text-transform: uppercase;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--heading-color);
  background-color: var(--bs-light);
  box-shadow: none;
}


/*---- cta section style start ----*/

section#cta {
  background: var(--linear-gradient);
}

.cta-button {
  background: var(--bs-light);
  color: var(--bs-black);
}

.cta-button:hover,
.cta-button:active,
.cta-button:focus {
  background: var(--bs-light);
  color: var(--bs-black);
}

@media only screen and (max-width: 770px) {
  .cta-pattern-overlay {
    display: none;
  }
}


/*---- footer section style start ----*/

iconify-icon.contact-icon {
  color: var(--bs-black);
  font-size: 24px;
}

iconify-icon.social-link-icon {
  color: rgba(208, 96, 81, 0.60);
  font-size: 24px;
}

iconify-icon.social-link-icon.active,
iconify-icon.social-link-icon:hover {
  color: #4f6a8b;
}


/*--------------------------------------------------------------
About page style
--------------------------------------------------------------*/

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
}


/*--------------------------------------------------------------
  Blog page style
  --------------------------------------------------------------*/

.active>.page-link,
.page-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}


.form-control:focus {
  border-color: var(--bs-black);
  box-shadow: none;
}


/*--------------------------------------------------------------
  Price page style
  --------------------------------------------------------------*/


.plan-post {
  border: 1px solid var(--accent-color);
}

span.price-tick {
  color: var(--accent-color);
}

.price-option {
  height: 320px;
}

.recommend-price {
  background: #4f6a8b;
}

/*--------------------------------------------------------------
  Project page style
  --------------------------------------------------------------*/

button.filter-button.gallery-btn {
  letter-spacing: 0.075rem;
  border: 1px solid var(--bs-border-color);
  background: transparent;
  color: var(--bs-black);
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease-in;
}

button.filter-button.gallery-btn.active {
  color: var(--bs-light);
  background: var(--accent-color);
}

button.filter-button.gallery-btn:hover {
  color: var(--bs-light);
  background: var(--accent-color);
}



/*--------------------------------------------------------------
reviews section style start
--------------------------------------------------------------*/

.reviews-components {
  border: 2px solid #FAFAFA;
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
  border-radius: 9px;
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--accent-color);
}

.rate {
  color: var(--accent-color);
}

.navbar-brand img {
  width: 60% !important;
  filter: brightness(0) saturate(100%) invert(14%) sepia(96%) saturate(997%) hue-rotate(182deg) brightness(89%) contrast(101%);
}

.nav-link {
  color: #fff;
}

.nav-link:focus,
.nav-link:hover {
  color: #ddd;
}

nav.navbar.navbar-expand-lg {
  background: #ffffff;
  border-bottom: 1px solid #042f54;
}

.banne-img {
  /* background: linear-gradient(rgb(12, 48, 93, 0.5), rgb(12, 48, 93, 0.5)), url(images/product-banner.png) center / cover no-repeat !important; */
  background: linear-gradient(rgb(12, 48, 93, 0.5), rgb(12, 48, 93, 0.5)), url(images/product-banner.png) left / contain !important;
  background-position: center;
  background-repeat: no-repeat !important;
  background-color: #000 !important;
}

.banner-text {
  background: #e7e9eb26;
  padding: 30px;
  backdrop-filter: blur(5px);
}

.banner-text h2 {
  text-transform: capitalize;
}

#cta p {
  color: #fff !important;
}

.cta-pattern-overlay img,
.testimonial-pattern-overlay img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(105deg) brightness(107%) contrast(101%);
}

@media (max-width: 767px) {
  .banne-img {
    background: linear-gradient(rgb(12, 48, 93, 0.5), rgb(12, 48, 93, 0.5)), url(images/product-banner.png) center / cover !important;
  }
}

p {
  font-size: 15px;
}

.cstm-card h1 {
  font-size: 32px;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.cstm-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 0px 20px;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
  height: 180px;
  /* Ensuring the boxes are of equal height */
  box-sizing: border-box;
}

.cstm-card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  font-size: 32px;
  color: #333;
  width: 150px;
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* border-right: 1px solid #0a2e5b; */
  min-width: 150px;
}

.cstm-card-content {
  flex-grow: 1;
  margin-left: 20px;
  font-size: 15px;
  line-height: 20px;
  color: #092e5b;
  font-weight: 500;
  border-left: 1px solid #0b2f5c;
  padding-left: 30px;
  height: 70%;
  align-items: center;
  vertical-align: middle;
  display: flex;
}

.cstm-card-content h3 {
  margin: 0;
  font-size: 20px;
}

.cstm-card-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.cstm-card-content ul li {
  margin-bottom: 5px;
}

.cstm-card-content a {
  color: #092e5b;
}

.cstm-card h3 {
  margin: 10px 0px 0px 0px;
  font-size: 17px;
  color: #0b2f5c;
  font-weight: 600;
  /* background: #000; */
}

.icon-wrapper img {
    width: 50%;
    filter: brightness(0) saturate(100%) invert(14%) sepia(96%) saturate(997%) hue-rotate(182deg) brightness(89%) contrast(101%);
}

/* Responsive layout adjustments */
@media (max-width: 767px) {
  .icon-wrapper {
    width: 110px;
    min-width: 110px;
  }

  .cstm-card {
    z-index: 11;
  }
}


/*--------------------------------------------------------------
#0.5	footer
--------------------------------------------------------------*/
.site-footer {
  background-color: #fff;
  position: relative;
  /*** about-widget ***/
  /*** link-widget ***/
  /*** service-link-widget ***/
  /*** newsletter-widget ***/
  /*** lower-footer ***/
}

.site-footer ul {
  list-style: none;
}

.site-footer p,
.site-footer li {
  color: #042957;
}

.site-footer .upper-footer {
  padding: 90px 0 40px 0;
}

@media (max-width: 991px) {
  .site-footer .upper-footer {
    padding: 90px 0 20px;
  }
}

@media (max-width: 767px) {
  .site-footer .upper-footer {
    padding: 80px 0 10px;
  }
}

@media (max-width: 991px) {
  .site-footer .upper-footer .col {
    min-height: 235px;
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .site-footer .upper-footer .col {
    min-height: auto;
    margin-bottom: 60px;
  }
}

.site-footer .widget-title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .site-footer .widget-title {
    margin-bottom: 20px;
  }
}

.site-footer .widget-title h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: blod;
  color: #042957;
  margin: 0;
  padding-bottom: 0.4em;
  text-transform: capitalize;
  position: relative;
}

@media (max-width: 767px) {
  .site-footer .widget-title h3 {
    font-size: 22px;
    font-size: 1.375rem;
    margin-top: 15px;
  }
}

@media screen and (min-width: 1200px) {
  .site-footer .about-widget {
    padding-right: 45px;
    position: relative;
  }
}

.site-footer .about-widget .logo {
  max-width: 100%;
}

.site-footer .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}

.site-footer .about-widget p:last-child {
  margin-bottom: 0;
  text-align: justify;
  font-size: 14px;
  color: #042957;
}

@media (max-width: 1199px) {
  .site-footer .link-widget {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .site-footer .link-widget {
    padding-left: 0;
  }
}

.site-footer .link-widget ul li {
  position: relative;
  padding-left: 20px;
}

.site-footer .link-widget ul li:hover:before {
  color: #042957;
}

.site-footer .link-widget ul a {
  color: #042957;
}

.site-footer .link-widget ul a:hover,
.site-footer .link-widget ul li:hover:before {
  color: #141d27;
}

.site-footer .link-widget ul > li + li {
  margin-top: 17px;
}

@media screen and (min-width: 1200px) {
  .site-footer .service-link-widget {
    padding-left: 25px;
  }
}

.site-footer .newsletter-widget form {
  margin-top: 25px;
  position: relative;
}

.site-footer .newsletter-widget form input {
  background-color: #373b48;
  height: 50px;
  color: #fff;
  padding: 6px 25px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.site-footer .newsletter-widget form .submit {
  position: absolute;
  right: 20px;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.site-footer .newsletter-widget form .submit button {
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 20px;
  color: #fff;
}

.site-footer .newsletter-widget .social-icons ul {
  overflow: hidden;
  padding-top: 35px;
}

@media (max-width: 767px) {
  .site-footer .newsletter-widget .social-icons ul {
    padding-top: 30px;
  }
}

.site-footer .newsletter-widget .social-icons ul li {
  float: left;
}

.site-footer .newsletter-widget .social-icons ul > li + li {
  margin-left: 15px;
}

.site-footer .newsletter-widget .social-icons ul a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
}

.site-footer .newsletter-widget .social-icons ul a:hover {
  color: #042957;
}

.site-footer .lower-footer {
  text-align: center;
}

.site-footer .lower-footer .row {
  padding: 20px 0;
  position: relative;
}

.site-footer .lower-footer .row .separator {
  background: #042957;
  width: calc(100% - 30px);
  height: 1px;
  position: absolute;
  left: 15px;
  top: 0;
}

.site-footer .lower-footer .copyright {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 7px 0 0;
}

.site-footer .logo img {
    width: 80%;
    filter: brightness(0) saturate(100%) invert(14%) sepia(96%) saturate(997%) hue-rotate(182deg) brightness(89%) contrast(101%);
}

.widget.link-widget ul li i {
    font-size: 15px;
    padding-right: 15px;
}

.widget.link-widget ul {
  padding-left: 0px !important;
}

.site-footer .link-widget ul li {
  padding-left: 0px !important;
}

@media (max-width: 991px) {
  .site-footer .lower-footer .copyright {
    float: none;
    margin: 7px 0 20px;
  }
}

.rightBtnStickey {
    position: fixed;
    right: 10px;
    top: 50%;
    margin-top: -142px;
    z-index: 1;
}

.rightBtnStickey ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    /* overflow: hidden; */
    /* border: 1px solid #00000012; */
    box-shadow: 1px 1px 8px 3px #00000012;
}

.rightBtnStickey ul li a {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: unset;
    padding: 10px 6px;
    border-bottom: 1px solid #f4f4f4;
    transition: 0.8s all;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 15px;
    text-decoration: unset;
    font-weight: 600;
    color: #fff;
    border: 1px solid #f4f4f473;
}

.rightBtnStickey ul li a span.rightText {
    font-size: 13px;
    font-family: 'OPPOSans';
    font-weight: 500;
}


.rightBtnStickey ul li a:hover,
.rightBtnStickey ul li a.active {
    background: #082d5a;
}

.rightBtnStickey ul li a span {
    color: #082d5a;

}

.rightBtnStickey ul li a:hover span,
.rightBtnStickey ul li a.active span {
    color: #fff;
}

.rightBtnStickey li:hover {
    overflow: unset;
}

.rightBtnStickey li {
    min-width: 66px;
    position: relative;
    overflow: hidden;
}

span.flotingText {
    position: absolute;
    top: 0;
    white-space: pre;
    right: 0;
    min-height: 64px;
    background: #082d5a;
    display: flex;
    align-items: center;
    transform: translate(100%, 0px);
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 30px 0px 0px 30px;
    transition: 0.8s all;
    border: 1px solid #f4f4f473;
    border-right: 0px;
}

span.flotingText a {
    border: 0px !important;
    height: 100%;
    padding: 0px !important;
    border-radius: 0px !important;
}

.rightBtnStickey li:hover span.flotingText {
    transform: translate(-65px, 0px);
}

.rightBtnStickey li:hover a {
    border-radius: 0px 10px 0px 0px;
}

.rightBtnStickey li a {
    border-radius: 10px 10px 0px 0px;
}

.rightBtnStickey ul li:last-child:hover a {
    border-radius: 0px 10px 10px 0px !important;
}

.rightBtnStickey li:nth-child(2):hover a,
.rightBtnStickey li:nth-child(3):hover a {
    border-radius: 0;
}

.rightBtnStickey li:last-child:hover a {
    border-radius: 0px;
}

.floatingBtn {
    position: fixed;
    bottom: 20px;
    max-width: 60px;
    right: 20px;
    background: #25d366;
    border-radius: 100px;
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.floatingBtn img {
    max-width: 50px;
}

.rightBtnStickey li:last-child a {
    border-radius: 0px 0px 10px 10px;
}

.InquiryModel .modal-content {border-radius: 40px;padding: 30px;}.modal-content {}

.InquiryModel .modal-dialog {
    max-width: 540px;
}

.InquiryModel .modal-content .modal-header {
    padding: 0px;
    padding-bottom: 15px;
}

.InquiryModel .modal-content .modal-header h1 {
    font-size: 25px !important;
    font-weight: 800;
    color: #082d5a;
}

.InquiryModel .modal-body .modelForm form {
    padding: 0px;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

.InquiryModel .modal-body {
    padding: 0px;
}

.InquiryModel .modal-body .modelForm form input {
    padding: 10px;
    border-radius: 8px;
    font-family: 'Montserrat';
    font-weight: 500;
    color: #082d5a;
    font-size: 13px !important;
}

.InquiryModel .modal-body .modelForm form input::placeholder, .InquiryModel .modal-body .modelForm form textarea::placeholder     {
    color: #082d5ac7;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 16px;
}

.InquiryModel .modal-body .modelForm form textarea {
    min-height: 100px;
    padding: 10px;
    border-radius: 8px;
    font-family: 'Montserrat';
    font-weight: 500;
    color: #082d5a;
    font-size: 15px;
}

.InquiryModel .modal-body .modelForm form .submitbutton {
    width: 100%;
    border-radius: 100px;
    border: 0px;
    background: #082d5a;
    color: #fff;
    margin-top: 10px;
}

button.btn-close {
    width: 30px;
    height: 30px;
    opacity: 1;
    border-radius: 100px;
    color: #082d5a;
    border: 2px solid #f4f4f4;
    border-radius: 10px;
}

.InquiryModel label {
    display: inline-block;
    color: red;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .rightBtnStickey {
        display: none;
    }
}

.whatsapp-info,
.pulse {
    font-family: 'Lato', sans-serif;
    display: inline-block;
    color: #fff;
    background: #1ab744;
    position: fixed;
    bottom: 50px;
    right: 50px;
    font-size: 38px;
    text-align: center;
    z-index: 99;
    border-radius: 90%;
    height: 60px;
    width: 60px;
    line-height: 62px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

.whatsapp-button a {
    color: #fff !important;
}

@media screen and (max-width: 767px) {
  .whatsapp-info,
  .pulse {
      font-family: 'Lato', sans-serif;
      display: inline-block;
      color: #fff;
      background: #1ab744;
      position: fixed;
      bottom: 40px;
      right: 30px;
      font-size: 33px;
      text-align: center;
      z-index: 99;
      border-radius: 90%;
      height: 55px;
      width: 55px;
      line-height: 58px;
      cursor: pointer;
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      transition: all 0.2s;
  }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: .3
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: .3
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

.pulse:nth-child(1) {
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite
}

.pulse:nth-child(2) {
    -webkit-animation: pulse 2s infinite .3s;
    animation: pulse 2s infinite .3s
}

.pulse:nth-child(3) {
    -webkit-animation: pulse 2s infinite .6s;
    animation: pulse 2s infinite .6s
}

.modal-backdrop.show {
    opacity: 0.8;
}

.cstm-banner-img {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .cstm-banner-img {
    margin-top: 70px;
  }
}

.thankyouDiv {
    padding: 20px 0px;
    border-bottom: 1px solid #042f54;
}

.thankyouDiv .thnak2 {
  color: #1ab744;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.thankyouDiv h4.thnak4 {
    font-size: 25px;
    text-transform: capitalize;
}

.captchCode input#captcha_code {
    display: inline-block;
}

@media screen and (max-width: 767px) {
  .thankyouDiv h4.thnak4 {
    font-size: 18px;
  }
}