@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

:root {
  --baseFont: 'Poppins', sans-serif;
  --primaryColor: #326CA4;
  --blackColor: #000000;
  --darkColor: #131212;
  --lightDarkColor: #342018;
  --grayColor: #828282;
  --primaryBg: #326CA4;
  --white: #fff;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--darkColor);
  font-family: var(--baseFont);
}
ul, li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a, .btn {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  -ms-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
a, a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
:focus {
  outline: none;
}

/***********/


.btnPrimary {
  background-color: transparent;
  color: var(--blackColor);
  position: relative;
  font-size: 16px;
  font-weight: 600;
  padding: 9px 22px;
}
.btnPrimary:hover {
  color: var(--whiteColor);
}
.btnPrimary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  z-index: 1;
  background-color: #A8C5E0;
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
.btnPrimary:hover::before {
  width: 100%;
  background-color: #A8C5E0;
}
.btnPrimary > span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 2;
}
.btnPrimary > span > img {
  -moz-transform: translate(5px, 0);
  -webkit-transform: translate(1px, 0);
  transform: translate(10px, 0px);
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
  width: 36px;
  display: block;
}
.btnPrimary:hover > span > img {
  -moz-transform: translate(6px, 0);
  -webkit-transform: translate(6px, 0);
  transform: translate(6px, 0);
}
.btnPrimary:checked+.btnPrimary, .btnPrimary.active, .btnPrimary.show, .btnPrimary:first-child:active, :not(.btnPrimary)+.btnPrimary:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: transparent;
}
.darkBtn {
  background-color: var(--darkColor);
  color: var(--white);
  border-radius: 50px;
  padding: 20px 45px;
  border: 0;
  font-size: 20px;
}
.darkBtn:hover {
  background-color: var(--darkColor);
  opacity: 0.8;
}
.darkBtn:checked+.btn, .darkBtn.active, .darkBtn.show, .darkBtn:first-child:active, :not(.darkBtn)+.darkBtn:active {
  color: var(--bs-btn-active-color);
  background-color: var(--darkColor);
  border-color: transparent;
}
.darkBtn > span {
  display: inline-block;
  vertical-align: middle;
}
.darkBtn > span + span {
  margin-left: 6px;
}
.darkBtn > span > img {
  display: block;
  width: 18px;
}
.btnSecondary {
  background-color: var(--primaryColor);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border: 0;
  border-radius: 8px;
  padding: 18px 20px;
}
.lgBtn {
  min-width: 206px;
}
.btnSecondary:hover, .btnSecondary:focus {
  background-color: var(--primaryColor);
  color: var(--white);
  opacity: 0.9;
}
.btnSecondary:checked+.btnSecondary, .btnSecondary.active, .btnSecondary.show, .btnSecondary:first-child:active, :not(.btnSecondary)+.btnSecondary:active {
   background-color: var(--primaryColor);
  color: var(--white);
  border-color: transparent;
}

/*************/


.bannerSection {
  position: relative;
}
.logo {
  position: fixed;
  left: 0;
  right: 0;
  top: 32px;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
  z-index: 9;
  background-color: transparent;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.logo.stickyHeader {
  top: 0;
  background-color: var(--white);
  box-shadow: 0 4px 7px rgba(0,0,0,0.06);
  padding: 6px 20px;
}
.logo > a {
  display: inline-block;
  max-width: 255px;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.logo.stickyHeader > a {
  max-width: 180px;
}
.bannerContent {
  position: relative;
}
.bannerImg {
  width: 100%;
  height: 900px;
  position: relative;
}
.bannerImg::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 32px;
  bottom: 32px;
  background-color: rgba(0,0,0,0.40);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.40);
}
.bannerImg > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.bannerContent > h2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin: 0;
  text-align: center;
  padding: 30px;
  color: var(--white);
  font-size: 65px;
  font-weight: 600;
}

/*************/

.mdTitle {
  font-size: 48px;
}

/***********/

.pageContent {
  margin-top: 50px;
  padding: 340px 0 300px;
  background-image: url(../img/bg-img.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center
}
.innerContent > h3 {
  font-weight: 600;
  color: var(--primaryColor);
  padding-bottom: 20px;
}
.innerContent > p {
  font-size: 20px;
}
.infoContent {
  padding-top: 55px;
}
.infoCol > h4 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 30px;
  margin-bottom: 0;
}
.fLinkCol > li {
  display: block;
  padding-left: 40px;
  position: relative;
  font-size: 16px;
}
.fLinkCol > li + li  {
  margin-top: 20px;
}
.infoIcon {
  position: absolute;
  left: 0;
  top: 0;
}
.socialLnks > li {
  display: inline-block;
  vertical-align: middle;
}
.socialLnks > li + li {
  margin-left: 10px;
}
.socialLnks > li > a {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
}
.footer2 {
  background-color: var(--primaryBg);
  padding: 38px 0;
  text-align: right;
}

/*******************************/


.modalStyle .modal-dialog {
  max-width: 1132px;
}
.modalStyle .modal-content {
  border: 0;
  border-radius: 8px;
}
.modalStyle .modal-header {
  background-color: var(--primaryBg);
  padding: 20px 70px 20px 40px;
  position: relative;
}
.modalStyle .modal-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}
.modalStyle button.btn-close {
  opacity: 1;
  filter: invert(1);
  padding: 0;
  position: absolute;
  right: 40px;
  top: 50%;
  margin: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.modalStyle button.btn-close:focus {
  box-shadow: none;
}
.modalStyle .modal-body {
  padding: 50px 40px;
}
.modalInfo > h2 {
  color: var(--lightDarkColor);
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 20px;
}
.modalInfo > p {
  font-size: 20px;
  padding-bottom: 15px;
}


/************* home page start **********/


.serviceSection {
  padding-top: 138px;
}
.cardSection {
  padding-top: 25px;
}
.pageContent.cardMainCol {
  padding: 280px 0;
}
.cardStyle {
  text-align: center;
}
.cardImg {
  background-color: #D9D9D9;
  border-radius: 10px;
  width: 100%;
  height: 350px;
  margin-bottom: 20px;
}
.cardImg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.cardStyle > h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 84px;
}
.cardBtn {
  margin-top: 30px;
}
.testimonialSec {
  padding-bottom: 135px;
}
.testimonialContent {
  padding-top: 60px;
}
.testimonialUser {
  background-color: #D9D9D9;
  border-radius: 10px;
  height: 560px;
  margin-right: 60px;
}
.testimonialUser > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.testimonialText {
  position: relative;
  padding: 60px 0;
}
.quoteLeft {
  position: absolute;
  top: 0;
  left: 12px;
}
.quoteRight {
  position: absolute;
  right: 12px;
  bottom: 0;
}
.quoteLeft img, .quoteRight img {
  width: 32px;
  display: block;
}
.testimonialText > p {
  color: var(--grayColor);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
.userText > h4 {
  font-size: 24px;
  font-weight: 600;
}
.userText > span {
  color: var(--grayColor);
  display: block;
  font-size: 14px;
}
.footerSection {
  padding: 95px 0 60px;
  position: relative;
  color: var(--white);
  background-color: var(--primaryBg);
}
.footerSection::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url(../img/footer-bg.svg);
  background-repeat: repeat;
  background-size: cover;
  opacity: 0.2;
}
.footerInner {
  position: relative;
}
.footerLeft {
  margin-right: 80px;
}
.footerLeft > p {
  margin: 0;
  font-size: 18px;
  padding-top: 24px;
}
.footerCol > h4 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 20px;
}
.footerLinks > li {
  display: block;
}
.footerLinks > li + li {
  margin-top: 20px;
}
.footerLinks > li > a {
  font-size: 20px;
}
.footerLinks > li > a:hover {
  opacity: 0.8;
}
.footerBtn {
  margin-bottom: 40px;
}
.footerLinkStyle > ul > li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.footerLinkStyle > ul > li > a {
  color: var(--white);
  font-size: 16px;
  margin: 0;
}
.footerLinkStyle > ul > li > a:hover, .footerLinkStyle > ul > li > a:focus {
  color: var(--white);
}
.footerBottom {
  border-top: 1px solid #6A9DCE;
  margin-top: 80px;
  padding-top: 50px;
  position: relative;
}
.footerLinkStyle > ul > li + li {
  margin-left: 10px;
  padding-left: 10px;
}
.footerLinkStyle > ul > li + li::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background-color: var(--white);
}
.sidebarIcon {
  position: fixed;
  right: 16px;
  bottom: 100px;
}
.sidebarIcon > ul > li {
  display: block;
}
.sidebarIcon > ul > li + li {
  margin-top: 15px;
}
.sidebarIcon > ul > li > a {
  background-color: var(--darkColor);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 5px;
}
.sidebarIcon > ul > li > a > img {
  width: 20px;
}
.serviceModlImg {
  border-radius: 10px;
  height: 520px;
  margin-right: 30px;
}
.serviceModlImg > img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.mdlBtn {
  margin-top: 25px;
}
.mdBtn {
  min-width: 165px;
}

/************* home page end **********/

.formCol {
  margin-bottom: 30px;
}
.formCol .form-label {
  color: var(--lightDarkColor);
  font-size: 16px;
  font-weight: 500;
}
.formCol .form-control {
  border-color: #BDBDBD;
  border-radius: 8px;
  padding: 20px 20px;
  color: var(--lightDarkColor);
  font-size: 16px;
  resize: none;
}
.formCol .form-control:focus {
  box-shadow: none;
}
.formCol textarea.form-control {
  min-height: 190px;
}
.checkStyle {
  display: block;
  margin-bottom: 15px;
}
.checkStyle input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkStyle label {
  position: relative;
  padding-left: 42px;
  color: var(--lightDarkColor);
  font-size: 16px;
}
.checkStyle label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #BDBDBD;
  padding: 3px;
  cursor: pointer;
  border-radius: 5px;
  width: 26px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 0;
}
.checkStyle input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 10px;
  width: 6px;
  height: 14px;
  border: solid var(--lightDarkColor);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkStyle label > a {
  color: var(--primaryColor);
}


/*********************************
  *** media-quary start ***
*********************************/


@media (max-width:1599px) {
  .bannerContent > h2 {
    font-size: 55px;
  }
  .pageContent {
    margin-top: 0;
    padding: 300px 0 260px;
  }
  .bannerImg {
    height: 800px;
  }
}
@media (max-width:1399px) {
  .bannerContent > h2 {
    font-size: 45px;
  }
  .pageContent {
    padding: 260px 0 220px;
  }
  .bannerImg {
    height: 750px;
  }
  .mdTitle {
    font-size: 40px;
  }
  .innerContent > p {
    font-size: 18px;
  }
  .pageContent.cardMainCol {
    padding: 220px 0;
  }
  .modalStyle .modal-body {
    padding: 40px 30px;
  }
  .modalInfo > h2 {
    font-size: 28px;
  }
  .modalInfo > p {
    font-size: 16px;
    padding-bottom: 0;
  }
  .modalStyle .modal-header {
    padding: 15px 50px 15px 20px;
  }
  .modalStyle .modal-dialog {
    max-width: 880px;
  }
  .serviceModlImg {
    height: 400px;
    margin-right: 15px;
  }
  .lgBtn {
    min-width: 145px;
  }
  .btnSecondary {
    padding: 12px 15px;
  }
  .modalStyle button.btn-close {
    right: 20px;
  }
  .formCol .form-control {
    padding: 12px 15px;
    font-size: 14px;
  }
  .footerLinks > li > a {
    font-size: 18px;
  }
  .darkBtn {
    padding: 14px 35px;
    font-size: 16px;
  }
  .socialLnks > li > a {
    width: 35px;
    height: 35px;
  }
  .footerLeft > p {
    font-size: 16px;
  }
  .footerLogo > a > img {
    max-width: 200px;
  }
  .checkStyle label {
    padding-left: 30px;
    font-size: 14px;
  }
  .checkStyle label:before {
    width: 20px;
    height: 20px;
  }
  .checkStyle input:checked + label:after {
    top: 2px;
    left: 8px;
    width: 5px;
    height: 12px;
    border-width: 0 1px 1px 0;
  }
  .formCol textarea.form-control {
    min-height: 120px;
  }
  .formCol {
    margin-bottom: 20px;
  }
}
@media (max-width:1199px) {
  .bannerContent > h2 {
    font-size: 40px;
  }
  .pageContent {
    padding: 200px 0 160px;
  }
  .bannerImg {
    height: 660px;
  }
  .mdTitle {
    font-size: 34px;
  }
  .innerContent > p {
    font-size: 16px;
  }
  .logo {
    top: 24px;
    padding: 0 24px;
  }
  .logo > a {
    max-width: 224px;
  }
  .bannerImg::before {
    left: 24px;
    right: 24px;
    top: 24px;
    bottom: 24px;
  }
  .footer2 {
    padding: 30px 0;
  }
  .fLinkCol > li + li {
    margin-top: 15px;
  }
  .serviceSection {
    padding-top: 100px;
  }
  .cardImg {
    height: 280px;
  }
  .cardStyle > h3 {
    font-size: 24px;
    min-height: 70px;
  }
  .cardBtn {
    margin-top: 20px;
  }
  .pageContent.cardMainCol {
    padding: 120px 0;
  }
  .testimonialContent {
    padding-top: 30px;
  }
  .testimonialUser {
    height: 460px;
    margin-right: 30px;
  }
  .testimonialText > p {
    font-size: 15px;
  }
  .testimonialText {
    padding: 40px 0;
  }
  .testimonialSec {
    padding-bottom: 100px;
  }
  .footerLeft > p {
    font-size: 14px;
  }
  .darkBtn {
    padding: 10px 24px;
    font-size: 14px;
  }
  .darkBtn > span > img {
    width: 15px;
  }
  .footerLogo > a > img {
    max-width: 180px;
  }
  .footerBtn {
    margin-bottom: 30px;
  }
  .footerLinks > li + li {
    margin-top: 15px;
  }
  .footerLinks > li > a {
    font-size: 16px;
  }
  .sidebarIcon {
    right: 10px;
  }
  .sidebarIcon > ul > li + li {
    margin-top: 8px;
  }
  .sidebarIcon > ul > li > a {
    width: 34px;
    height: 34px;
  }
  .footerSection {
    padding: 65px 0 40px;
  }
  .footerBottom {
    margin-top: 60px;
    padding-top: 30px;
  }
  .modalStyle .modal-body {
    padding: 20px;
  }
  .modalInfo > h2 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .formCol .form-label {
    font-size: 14px;
  }
  .formCol {
    margin-bottom: 15px;
  }
  .sidebarIcon > ul > li > a > img {
    width: 16px;
  }
}
@media (max-width:991px) {
  .logo {
    top: 20px;
    padding: 0 20px;
  }
  .logo > a {
    max-width: 140px;
  }
  .logo.stickyHeader > a {
    max-width: 120px;
  }
  .bannerContent > h2 {
    font-size: 30px;
  }
  .bannerImg::before {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
  }
  .bannerImg {
    height: 520px;
  }
  .pageContent {
    padding: 160px 0 120px;
  }
  .mdTitle {
    font-size: 38px;
  }
  .infoCol > h4 {
    font-size: 18px;
    padding-bottom: 25px;
  }
  .fLinkCol > li {
    padding-left: 30px;
    font-size: 14px;
  }
  .infoIcon > img {
    max-width: 18px;
  }
  .socialLnks > li > a {
    width: 34px;
    height: 34px;
  }
  .infoContent {
    padding-top: 35px;
  }
  .footer2 {
    padding: 20px 0;
  }
  .serviceSection {
    padding-top: 80px;
  }
  .cardImg {
    height: 200px;
  }
  .cardStyle > h3 {
    font-size: 20px;
    min-height: 52px;
    line-height: 1.3;
  }
  .btnPrimary {
    font-size: 14px;
    padding: 9px 20px;
  }
  .testimonialContent {
    padding-top: 20px;
  }
  .testimonialText > p {
    font-size: 14px;
  }
  .quoteLeft img, .quoteRight img {
    width: 26px;
  }
  .testimonialText {
    padding: 30px 0;
  }
  .userText > h4 {
    font-size: 20px;
  }
  .footerLeft > p {
    font-size: 14px;
  }
  .footerLogo > a > img {
    max-width: 180px;
  }
  .footerLinks > li > a {
    font-size: 16px;
  }
  .footerCol > h4 {
    font-size: 20px;
    padding-bottom: 15px;
  }
  .footerCol .socialLnks > li > a {
    width: 26px;
    height: 26px;
  }
  .socialLnks > li + li {
    margin-left: 5px;
  }
  .darkBtn {
    padding: 10px 18px;
    font-size: 14px;
  }
  .darkBtn > span + span {
    margin-left: 5px;
  }
  .darkBtn > span > img {
    width: 12px;
  }
  .footerBtn {
    margin-bottom: 20px;
  }
  .footerBottom {
    margin-top: 40px;
    padding-top: 20px;
  }
  .footerText > p {
    font-size: 14px;
  }
  .footerLinkStyle > ul > li > a {
    font-size: 14px;
  }
  .footerLinkStyle > ul > li + li::before {
    top: 6px;
    bottom: 6px;
  }
  .serviceModlImg {
    margin-right: 0;
  }
  .formCol {
    margin-bottom: 15px;
  }
  .formCol .form-control {
    padding: 10px 15px;
  }
  .footerLeft {
    margin-right: 30px;
  }
  .modalStyle .modal-dialog {
    max-width: 720px;
  }
  .modalStyle .modal-title {
    font-size: 18px;
  }
  .modalInfo > p {
    font-size: 14px;
  }
  .btnSecondary {
    padding: 10px 15px;
  }
  .lgBtn {
    min-width: 120px;
  }
  .serviceModlImg {
    height: 320px;
    margin-right: 0;
  }
  .mdBtn {
    min-width: 135px;
  }
}
@media (max-width:767px) {
  .logo > a {
    max-width: 120px;
  }
 .logo {
    top: 0;
    padding: 6px 15px;
  }
  .bannerImg::before {
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
  }
  .bannerContent > h2 {
    font-size: 22px;
    padding: 15px 30px;
  }
  .bannerImg {
    height: 440px;
  }
  .mdTitle {
    font-size: 32px;
  }
  .innerContent > p {
    font-size: 14px;
  }
  .infoContent {
    padding-top: 0;
  }
  .infoCol {
    padding-top: 30px;
  }
  .modalStyle .modal-title {
    font-size: 16px;
  }
  .sidebarIcon > ul > li > a > img {
    width: 16px;
  }
  .cardStyle > h3 {
    font-size: 18px;
    min-height: auto;
    display: block;
    -webkit-line-clamp: inherit;
    -webkit-box-orient: inherit;
    overflow: auto;
    text-overflow: inherit;
  }
  .cardStyle {
    margin-bottom: 20px;
  }
  .serviceSection {
    padding-top: 60px;
  }
  .cardImg {
    height: 280px;
  }
  .pageContent.cardMainCol {
    padding: 100px 0;
  }
  .testimonialCol {
    padding-top: 20px;
  }
  .footerLeft {
    margin-right: 0;
  }
  .footerCol {
    padding-top: 30px;
  }
  .footerCol > h4 {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .footerLinks > li + li {
    margin-top: 10px;
  }
  .footerLinks > li > a {
    font-size: 14px;
  }
  .testimonialUser {
    height: 340px;
  }
  .testimonialSec {
    padding-bottom: 60px;
  }
  .modalInfo {
    margin-top: 20px;
  }
  .serviceModlImg {
    height: 420px;
  }
  .btnSecondary {
    font-size: 14px;
    padding: 12px 15px;
  }
  .lgBtn {
    min-width: 140px;
  }
  .mdBtn {
    min-width: 130px;
  }
  .formModal .mdlBtn {
    margin-top: 0;
  }
  .formModal .modalInfo {
    margin-top: 0;
  }
  .testimonialContent {
    padding-top: 15px;
  }
  .modalStyle .modal-dialog {
    max-width: 100%;
    margin: 15px;
  }
}
@media (max-width:575px) {
 .bannerSection {
    padding-top: 72px;
  }
  .logo.stickyHeader > a {
    max-width: 100px;
  }
  .bannerImg {
    height: 400px;
  }
  .pageContent {
    padding: 120px 0 80px;
  }
  .innerContent > h3 {
    padding-bottom: 15px;
  }
  .mdTitle {
    font-size: 30px;
  }
  .fLinkCol > li + li {
    margin-top: 10px;
  }
  .infoCol > h4 {
    font-size: 16px;
    padding-bottom: 20px;
  }
  .footer2 {
    padding: 15px 0;
    text-align: center;
  }
  .modalInfo > h2 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .modalInfo > p {
    font-size: 14px;
  }
  .modalStyle .modal-dialog {
    margin: 15px;
  }
  .footerBottom {
    text-align: center;
  }
  .serviceModlImg {
    height: 320px;
  }
  .mdlBtn {
    margin-top: 20px;
  }
  .formCol textarea.form-control {
    min-height: 100px;
  }
  .quoteLeft {
    left: 0;
  }
  .quoteRight {
    right: 0;
  }
  .formCol {
    margin-bottom: 10px;
  }
}
@media (max-width:475px) {
  .bannerImg {
    height: 350px;
  }
  .pageContent {
    padding: 80px 0 50px;
  }
  .modalStyle .modal-header {
    padding: 10px 40px 10px 15px;
  }
  .modalStyle .modal-title {
    font-size: 16px;
  }
  .modalStyle button.btn-close {
    right: 15px;
  }
  .modalStyle .modal-body {
    padding: 15px;
  }
  .modalInfo > h2 {
    font-size: 18px;
  }
  .footerSection {
    padding: 50px 0 30px;
  }
  .footerLogo > a > img {
    max-width: 160px;
  }
  .mdTitle {
    font-size: 26px;
  }
  .serviceSection {
    padding-top: 40px;
  }
  .cardImg {
    height: 230px;
  }
  .pageContent.cardMainCol {
    padding: 60px 0;
  }
  .testimonialUser {
    height: 280px;
  }
  .serviceModlImg {
    height: 220px;
  }
  .sidebarIcon {
    bottom: 50px;
  }
}