body {
  background-color: #ffffff;
  color: #24252a;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
  border: none !important;
  padding: 1px 6px;
  margin-right: 15px;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

a, a:hover {
  text-decoration: none;
}

.form-control:focus {
  background-color: initial;
  -webkit-box-shadow: none;
          box-shadow: none;
}

b {
  font-weight: 700;
}

p {
  font-size: 17px;
  color: #24252a;
  font-weight: 400;
}

h3.common-head {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 25px;
  text-transform: uppercase;
}

a.toggle-form {
  position: fixed;
  right: 0;
  top: 105px;
  z-index: 2;
}

.floating-form.main {
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 0 !important;
}

.floating-form.main a.quick-form {
  width: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  left: auto;
}


.floating-form {
  width: 350px;
  position: fixed;
  right: 0;
  top: 150px;
  z-index: 3;
  -webkit-transition: all .3s;
  transition: all .3s;
}
/*.floating-form {
  width: 350px;
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 3;
  /* -webkit-transition: all .3s;
  transition: all .3s; */
  /*display: none;
}
@media(max-width: 480px){
  .floating-form {
    width: 95% !important;
  }
}*/

.floating-form form {
  background-color: rgb(0, 0, 0);
  padding: 35px 30px 20px 30px;
  width: 350px;
  position: relative;
}

.floating-form form #upload-file {
  display: none;
}

.floating-form form #fileupload {
  text-align: right;
  color: #cccccc;
  text-decoration: underline;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
}

.floating-form form .form-control {
  margin-bottom: 20px;
}
.floating-form form select{
  background: black;
    border: none;
    color: #fff !important;
    font-size: 15px;
    border-bottom: 1px solid #a1a1a1;
    border-radius: 0;
    padding-left: 0;
    outline: none;
    font-weight: 500;
}


.customDropDown2 .customDropDownHead .customDropDownHeadInput{
    color: #495057 !important;
    font-weight: 600;
}
.customDropDown2 .customDropDownPopup ul li::after{
    display: none !important;
}
.customDropDown2 .customDropDownPopup ul li{
    padding :8px 15px !important;
}
.customDropDown2 .customDropDownPopup ul li p{
    margin: 0 !important;
}


.customDropDown3 .customDropDownHead {
    border-bottom: 2px solid black !important;
}
.customDropDown3 .customDropDownHead .customDropDownHeadInput{
    color: #495057 !important;
}
.customDropDown3 .customDropDownPopup ul li{
    padding :8px 15px !important;
}
.customDropDown3 .customDropDownPopup ul li p{
    margin: 0 !important;
}



.customDropDown {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.customDropDown .customDropDownHead {
  width: 100%;
  position: relative;
  height: 40px;
  border-bottom: 1px solid #a1a1a1;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.customDropDown .customDropDownHead label {
  position: absolute;
  background: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 5px;
  top: -10px;
  left: 12px;
  color: #8F8F8F;
  font-size: 16px;
}
.customDropDown .customDropDownHead .customDropDownHeadInput {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #cccccc;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.customDropDown .customDropDownHead .customDropDownHeadInput:disabled {
  cursor: pointer;
  background: white;
}
.customDropDown .customDropDownHead .customDropDownHeadIcon {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.customDropDown .customDropDownHead .customDropDownHeadIcon i {
  line-height: 0.5;
}
.customDropDown .customDropDownPopup {
  position: absolute;
  top: calc(100% - 3px);
  width: 100%;
  background: black;
  z-index: 10;
  border: 1px solid #343434;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}
.customDropDown .customDropDownPopup ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.customDropDown .customDropDownPopup ul li {
  list-style: none;
  padding: 8px 15px;
  cursor: pointer;
  transition: 0.3s;
}
.customDropDown .customDropDownPopup ul li:hover {
  transition: 0.3s;
  background: #222121;
}
.customDropDown .customDropDownPopup ul li p {
  overflow: hidden;
  color: white;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 14px;
}
.customDropDown .customDropDownPopup ul .selected {
  background: #222121;
}
.customDropDown .customDropDownPopupUp {
  top: calc(100% - 3px);
  bottom: inherit;
}
.customDropDown .customDropDownPopupDown {
  bottom: calc(100% - 3px);
  top: inherit;
}





.floating-form form a.quick-form {
  background: url(../../assets/img/form-badge.png) no-repeat center center/cover;
  position: absolute;
  top: -45px;
  right: auto;
  left: -25px;
  width: 375px;
  height: 79px;
  padding-top: 15px;
  padding-right: 15px;
  padding-left: 55px;
  z-index: 99;
  color: #231f20 !important;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.floating-form form a.quick-form .fa {
  padding-left: 10px;
  padding-top: 3px;
  float: right;
}

.floating-form form ::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}

.floating-form form ::-moz-placeholder {
  color: #cccccc;
  font-size: 14px;
}

.floating-form form :-ms-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}

.floating-form form :-moz-placeholder {
  font-size: 14px;
  color: #cccccc;
}

.floating-form form p {
  margin-bottom: 0;
}

.floating-form form input {
  background: transparent;
  border: none;
  color: #cccccc !important;
  font-size: 15px;
  border-bottom: 1px solid #a1a1a1;
  border-radius: 0;
  padding-left: 0;
  font-weight: 500;
  height: 25px;
}

.floating-form form input:focus {
  border-color: #a1a1a1;
}

.floating-form form input[type="submit"] {
  background-color: #f0ff00;
  color: #231f20 !important;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  margin: 0 auto;
  width: 160px;
  height: 40px;
}






.floating-form2.main {
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 0 !important;
}

.floating-form2.main a.quick-form {
  width: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  left: auto;
}

.shimmer{
  position: fixed;
  z-index: 20;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: #000000af;
  display: none;
}
/* .floating-form2 {
  width: 350px;
  position: fixed;
  right: 0;
  top: 150px;
  z-index: 3;
  -webkit-transition: all .3s;
  transition: all .3s;
} */
.floating-form2 {
  width: 350px;
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 30;
  /* -webkit-transition: all .3s;
  transition: all .3s; */
  display: none;
}
@media(max-width: 480px){
  .floating-form2 {
    width: 95% !important;
  }
}

.floating-form2 form {
  background-color: rgb(0, 0, 0);
  padding: 35px 30px 20px 30px;
  width: 350px;
  position: relative;
}

.floating-form2 form #upload-file {
  display: none;
}

.floating-form2 form #fileupload {
  text-align: right;
  color: #cccccc;
  text-decoration: underline;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
}

.floating-form2 form .form-control {
  margin-bottom: 20px;
}
.floating-form2 form select{
  background: transparent;
    border: none;
    color: #cccccc !important;
    font-size: 15px;
    border-bottom: 1px solid #a1a1a1;
    border-radius: 0;
    padding-left: 0;
    outline: none;
    font-weight: 500;
}

.floating-form2 form a.quick-form {
  background: url(../../assets/img/form-badge.png) no-repeat center center/cover;
  position: absolute;
  top: -45px;
  right: auto;
  left: -25px;
  width: 375px;
  height: 79px;
  padding-top: 15px;
  padding-right: 15px;
  padding-left: 55px;
  z-index: 99;
  color: #231f20 !important;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.floating-form2 form a.quick-form .fa {
  padding-left: 10px;
  padding-top: 3px;
  float: right;
}

.floating-form2 form ::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}

.floating-form2 form ::-moz-placeholder {
  color: #cccccc;
  font-size: 14px;
}

.floating-form2 form :-ms-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}

.floating-form2 form :-moz-placeholder {
  font-size: 14px;
  color: #cccccc;
}

.floating-form2 form p {
  margin-bottom: 0;
}

.floating-form2 form input {
  background: transparent;
  border: none;
  color: #cccccc !important;
  font-size: 15px;
  border-bottom: 1px solid #a1a1a1;
  border-radius: 0;
  padding-left: 0;
  font-weight: 500;
  height: 25px;
}

.floating-form2 form input:focus {
  border-color: #a1a1a1;
}

.floating-form2 form input[type="submit"] {
  background-color: #f0ff00;
  color: #231f20 !important;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  margin: 0 auto;
  width: 160px;
  height: 40px;
  margin-top: 30px;
}





section.top-menu ul {
  margin: 10px 0;
}

section.top-menu ul li:not(:last-child) {
  margin-right: 15px;
}

section.top-menu ul li.malayalam a {
  font-family: 'Roboto', sans-serif !important;
}

section.top-menu ul li a {
  color: #24252a;
  font-size: 13px;
  font-weight: 500;
}

section.top-menu ul li a img {
  max-width: 18px;
  margin-right: 5px;
}

.container-fluid.menu {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  min-height: 54px;
  position: relative;
  z-index: 2;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.container-fluid.menu a.language-switcher {
  color: #ffffff;
  font-size: 15px;
  border: 1px solid #fff;
  padding: 0px 7px;
  display: none;
}

.container-fluid.menu .navbar {
  background-color: #004999;
  padding: 0;
  -webkit-box-shadow: 1px 1px 5px 0px #eeeeee30;
          box-shadow: 1px 1px 5px 0px #eeeeee30;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.container-fluid.menu .navbar-brand {
  padding: 0;
}

.container-fluid.menu .navbar-brand img {
  max-width: 80%;
}

.container-fluid.menu #collapsibleNavbar ul.navbar-nav li {
  margin: 0 20px;
}

.container-fluid.menu #collapsibleNavbar ul.navbar-nav li:last-child {
  margin-right: 0;
}

.container-fluid.menu #collapsibleNavbar ul.navbar-nav li.active a {
  border-bottom: 2px solid #ffffff;
}

.container-fluid.menu #collapsibleNavbar ul.navbar-nav li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 2px;
  text-transform: uppercase;
}

footer {
  padding: 100px 0 90px 0;
  background-color: #24252a;
}

footer h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

footer .top-footer {
  padding-bottom: 15px;
  border-bottom: 1px solid #ececec;
}

footer .address {
  padding: 30px 0 0 0;
  position: relative;
  border-bottom: 1px solid #ececec;
}

footer .address a {
  color: #ffffff;
}

footer .address a:hover {
  color: #f0ff00;
  text-decoration: underline;
}

footer .address a#back-to-top {
  position: absolute;
  right: 0;
  bottom: 15px;
}

footer .address a#back-to-top:hover {
  text-decoration: none;
}

footer .address a#back-to-top img {
  padding-bottom: 5px;
}

footer .address a#back-to-top span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

footer .address ul li {
  padding: 0 5px 0 0;
}

footer .address img {
  padding-bottom: 10px;
}

footer .address p {
  color: #ffffff;
  font-size: 15px;
}

footer .copy-right {
  padding-top: 10px;
}

footer .copy-right ul li a {
  font-size: 13px;
}

footer .copy-right ul li a:hover {
  color: #f0ff00;
}

footer .copy-right span {
  color: #ffffff;
  font-size: 13px;
}

footer .copy-right span a {
  color: #ffffff;
}

footer .copy-right span a img {
  padding-right: 5px;
  vertical-align: sub;
}

footer ul.footer-services li a:hover {
  color: #f0ff00;
  text-decoration: underline;
}

footer ul li {
  color: #ffffff;
  font-size: 15px;
}

footer ul li span a {
  color: #f0ff00;
  padding-left: 5px;
  text-decoration: underline;
}

footer ul li a {
  color: #ffffff;
}

footer ul li a:hover {
  color: inherit;
}

footer ul.share li a {
  display: inline-block;
  padding: 5px 2px;
}

footer ul.share li a:hover .fa {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transform: scale(1.5) rotate(360deg);
  transform: scale(1.5) rotate(360deg);
}

footer ul.share li a .fa {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.index .banner {
  height: 710px; 
  /* background: url(../../assets/img/tm-banner.jpg) no-repeat; */
  position: relative;
  overflow: visible;
  background-size: cover;
  background-position: center top;
}
.index .banner .bannerImg{
  width: 100%;
  height: 100%;
  position: absolute;
  top: -2px;
  left: 0;
  object-fit: cover;
  z-index: -1;
}

.index .banner .banner-caption {
  padding-top: 150px;
}

.index .banner .banner-caption h1, .index .banner .banner-caption h2, .index .banner .banner-caption h3 {
  color: #ffffff;
}

.index .banner .banner-caption h3 {
  font-size: 30px;
  font-weight: 500;
}

.index .banner .banner-caption h2 {
  font-size: 50px;
  color: #f0ff00;
  font-weight: 700;
}

.index .banner .banner-caption h2 span {
  font-size: 22px;
  font-weight: 500;
}

.index .banner .banner-caption h1 {
  font-weight: 500;
  font-size: 50px;
}

.index .banner .banner-caption h1 b {
  font-weight: 700;
}

.index .banner .points {
  background: url(../../assets/img/bg-blue.png) no-repeat;
  /*background-size: cover;*/
   height: 150px; 
  background-position: center center;
   position: absolute;
  bottom: 1px;
  left: 0; 
  width: 100%;
  padding-top: 55px;
}
@media(max-width:480px){
    .index .banner .points{
        bottom: -10px;
    }
}
/*@media(max-width:1300px){*/
/*  .index .banner .points{*/
/*    background-position: center center;*/
/*  }*/
/*}*/
/*.index .banner .points .row{*/
/*  row-gap: 40px;*/
/*}*/
/*@media(max-width:768px){*/
/*    .index .banner .points .row .col-sm-4{*/
/*      max-width: 48%;*/
/*      flex: 0 0 48%;*/
/*    }*/
/*}*/
/*@media(max-width:480px){*/
/*    .index .banner .points .row .col-sm-4{*/
/*      max-width: 100%;*/
/*      flex: 100%;*/
/*    }*/
/*}*/

/*@media(max-width:1024px){*/
/*  .index .banner .points .row .col-sm-2{*/
/*    max-width: 48%;*/
/*    flex: 0 0 48%;*/
/*  }*/
/*}*/
/*@media(max-width:480px){*/
/*  .index .banner .points .row .col-sm-2{*/
/*    max-width: 100%;*/
/*    flex: 100%;*/
/*  }*/
/*}*/

/*@media(max-width:1024px){*/
/*  .index .banner .points .row .col-sm-3{*/
/*    max-width: 48%;*/
/*    flex: 0 0 48%;*/
/*  }*/
/*}*/
/*@media(max-width:480px){*/
/*  .index .banner .points .row .col-sm-3{*/
/*    max-width: 100%;*/
/*    flex: 100%;*/
/*  }*/
/*}*/

.index .banner .points .point {
  display: initial;
}

.index .banner .points .point:not(:last-child) {
  margin-right: 25px;
}

.index .banner .points .point .point-img {
  width: 45px;
}

.index .banner .points .point .point-detail {
  width: calc(100% - 45px);
  float: right;
}

.index .banner .points .point .point-img, .index .banner .points .point .point-detail {
  display: inline-block;
  vertical-align: top;
}

.index .banner .points .point .point-img p, .index .banner .points .point .point-detail p {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  padding-left: 15px;
}

.index .banner .points .point .point-img p img, .index .banner .points .point .point-detail p img {
  margin-right: 0;
}

.index .banner .points .point .point-img p b, .index .banner .points .point .point-detail p b {
  font-weight: 700;
}

.index .banner .points .point .point-img img, .index .banner .points .point .point-detail img {
  margin-right: 5px;
  max-width: 45px;
}

.index .about {
  padding: 75px 0 65px 0;
}

.index .about p {
  text-align: justify;
}

.index .about .tm-badge {
  background: #004999;
  padding: 20px 40px 20px 120px;
  margin: 50px 0 0 0;
  position: relative;
}

.index .about .tm-badge:after {
  content: url(../../assets/img/about-badge.png);
  position: absolute;
  left: 0px;
  top: -21px;
}

.index .about .tm-badge h4 {
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

.index .about .tm-badge h5 {
  color: #ffffff;
  font-size: 15px;
  line-height: 26px;
  font-weight: 700;
  text-align: justify;
}

.index .process {
  background: #f5f5f5;
  padding: 50px 0 100px 0;
}

.index .process .blocks {
  background: #004999;
  overflow: hidden;
}

.index .process .blocks .block {
  position: relative;
}

.index .process .blocks .block:after {
  position: absolute;
  bottom: -0.5px;
  content: " ";
  height: 1px;
  width: 100%;
  background-color: #044c9a;
}

.index .process .blocks .block .block-details {
  position: relative;
  color: #ffffff;
  padding: 65px 65px 0 65px;
  z-index: 0;
}

.index .process .blocks .block .block-details p {
  color: #ffffff;
  font-size: 16px;
}

.index .process .blocks .block .block-details ul {
  list-style-image: url(../../assets/img/pin.png);
  position: relative;
  padding-left: 25px;
  margin-bottom: 0;
}

.index .process .blocks .block .block-details ul:after {
  height: 80%;
  content: " ";
  background: #f0ff00;
  position: absolute;
  left: 10px;
  top: 15px;
  width: 1px;
  display: block;
  z-index: 999;
}

.index .process .blocks .block .block-details ul a {
  color: #f0ff00;
  text-decoration: underline;
  font-weight: 700;
}

.index .process .blocks .block .block-details ul li {
  font-size: 16px;
}

.index .process .blocks .block .block-details ul li p {
  margin-bottom: 0;
}

.index .process .blocks .block .block-details h4 {
  font-size: 26px;
  font-weight: 700;
}

.index .process .blocks .block .block-details p {
  z-index: 1;
  text-align: justify;
}

.index .process .blocks .block .block-details h3.bg-text {
  position: absolute;
  left: -50px;
  color: #004289;
  z-index: -1;
  font-weight: 700;
  font-size: 150px;
}

.index .process .blocks .block .block-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.index .process .blocks .block .block-image img {
  z-index: 1;
}

.index .process .blocks .block .block-image h3 {
  position: absolute;
  top: 50%;
  right: 0 !important;
  z-index: 1;
  font-size: 150px;
  color: #f0ff00;
  font-weight: 700;
  -webkit-transform: translate(-33%, -50%);
          transform: translate(-33%, -50%);
}

.index .process .blocks .block:nth-child(even) .block-details {
  padding-top: 90px;
}

.index .process .blocks .block:nth-child(even) .block-details h3.bg-text {
  left: -80px;
}

.index .doubts {
  padding: 50px 0 0 0;
  position: relative;
}

.index .doubts h3.common-head {
  margin-bottom: 50px;
}

.index .doubts .clear-image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  max-height: 145px;
}

.index .doubts .accordion .card {
  border: none;
  margin-top: 2px;
  border-radius: 0;
}

.index .doubts .accordion .card:first-child {
  margin-top: 0;
}

.index .doubts .accordion .card .card-header {
  background-color: #004999;
  min-height: 55px;
  margin-bottom: 0;
  border: none;
  position: relative;
  padding: 15px 55px 15px 20px;
}

.index .doubts .accordion .card .card-header button {
  color: #ffffff;
  display: inline-block;
  width: 100%;
  text-align: left;
  padding: 0;
  border: none;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.index .doubts .accordion .card .card-header button img {
  max-height: 20px;
}

.index .doubts .accordion .card .card-header button i {
  font-size: 22px;
  float: right;
  display: inline-block;
  background-color: #f0ff00;
  color: #000;
  height: 100%;
  width: 55px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 25px;
}

.index .doubts .accordion .card .card-body {
  background-color: #f5f5f5;
}

.index .doubts .accordion .card .card-body img {
  height: 25px;
}
.index .doubts .accordion .card .card-body h3{
  font-size: 24px;
  font-weight: 500;
}
.index .doubts .accordion .card .card-body .bankDetails{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
@media(max-width:480px){
  .index .doubts .accordion .card .card-body .bankDetails{
    background: white;
    gap: 0;
  }
}
.index .doubts .accordion .card .card-body .bankDetails .bankDetailsBox{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media(max-width:480px){
  .index .doubts .accordion .card .card-body .bankDetails .bankDetailsBox{
    flex-direction: column;
    gap: 0;
    border-top: 2px solid #eee;
    padding: 10px;
  }
  .index .doubts .accordion .card .card-body .bankDetails .bankDetailsBox:nth-of-type(1){
    border-top: none;
  }
}
.index .doubts .accordion .card .card-body .bankDetails .bankDetailsBox .bankDetailsCol1{
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}
@media(max-width:480px){
  .index .doubts .accordion .card .card-body .bankDetails .bankDetailsBox .bankDetailsCol1{
    width: 100%;
    font-size: 14px;
  }
}
.index .doubts .accordion .card .card-body .bankDetails .bankDetailsBox .bankDetailsCol1 p{
  font-size: 16px;
  margin-bottom: 0;
}
@media(max-width:480px){
  .index .doubts .accordion .card .card-body .bankDetails .bankDetailsBox .bankDetailsCol1 p{
    font-size: 14px;
  }
}
.index .doubts .accordion .card .card-body .bankDetails .bankDetailsBox .bankDetailsCol2{
  width: calc(100% - 240px);
  font-size: 16px;
}
@media(max-width:480px){
  .index .doubts .accordion .card .card-body .bankDetails .bankDetailsBox .bankDetailsCol2{
    width: 100%;
  }
}
.index .doubts .accordion .card .card-body .bankDetails .bankDetailsBox .bankDetailsCol2 p{
  font-size: 16px;
  margin-bottom: 0;
}
@media(max-width:480px){
  .index .doubts .accordion .card .card-body .bankDetails .bankDetailsBox .bankDetailsCol2 p{
    font-size: 18px;
  }
}

.index .doubts .bg-color {
  position: absolute;
  background-color: #f5f5f5;
  height: 250px;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.index .call-now {
  background-color: #f5f5f5;
  padding: 30px 0 0 0;
}

.index .call-now img {
  max-height: 300px;
}

.index .call-now h2 {
  font-size: 30px;
  padding-top: 40px;
  color: #24252a;
  margin-top: 30px;
}

.index .call-now h2 span {
  font-size: 60px;
  line-height: 70px;
  font-weight: 800;
  color: #004999;
}

.index .call-now .call-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.index .call-now .call-links a {
  display: inline-block;
  background-color: #004999;
  color: #ffffff;
  height: 55px;
  padding: 13px 33px 15px 90px;
  position: relative;
  max-width: 317px;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
}

.index .call-now .call-links a img {
  background-color: #f0ff00;
  height: 55px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 15px;
}

.index .plan-price {
  padding: 50px 0;
}

.index .plan-price table {
  -webkit-box-shadow: 0px 0px 10px 4px #e2e0e0;
          box-shadow: 0px 0px 10px 4px #e2e0e0;
  margin-top: 40px;
  overflow: initial;
}

.index .plan-price table thead tr th {
  border-bottom: 1px solid #f0f0f0;
  width: 25%;
  margin: 15px;
  color: #24252a;
  font-size: 31px;
  font-weight: 700;
  min-height: 105px;
  position: relative;
  padding-left: 35px;
}

.index .plan-price table thead tr th:nth-child(2) {
  background-color: #004999;
  color: #f0ff00;
  border-bottom: 1px solid #3167a3;
}

.index .plan-price table thead tr th:nth-child(2):after {
  content: url(../../assets/img/like-badge.png);
  display: block;
  position: absolute;
  top: -15px;
  right: 15px;
}

.index .plan-price table thead tr th:nth-child(4) {
  background-color: #f0ff00;
  border-bottom: 1px solid #e4f031;
}

.index .plan-price table tbody tr.buy-now td {
  padding-top: 30px;
  padding-bottom: 30px;
}

.index .plan-price table tbody tr td {
  color: #24252a;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.index .plan-price table tbody tr td h4 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 0;
}
.index .plan-price table tbody tr td span{
  font-size: 14px;
  text-align: center;
  color: #ff5b01;
}

.index .plan-price table tbody tr td a {
  color: #24252a;
  text-decoration: underline;
}

.index .plan-price table tbody tr td a.buy-now {
  display: block;
  max-width: 160px;
  width: 100%;
  margin: 0 auto;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  height: 54px;
  background-color: #004999;
  padding-top: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 25px !important;
}

.index .plan-price table tbody tr td p {
  font-size: 13px;
}

.index .plan-price table tbody tr td:first-child {
  padding-left: 35px;
  text-align: left;
}

.index .plan-price table tbody tr td:nth-child(2) {
  background-color: #004999;
  color: #f0ff00;
  border-bottom: 1px solid #3167a3;
}

.index .plan-price table tbody tr td:nth-child(2) p {
  color: #f0ff00;
}

.index .plan-price table tbody tr td:nth-child(2) a {
  color: #f0ff00;
}

.index .plan-price table tbody tr td:nth-child(2) a.buy-now {
  background-color: #f0ff00;
  color: #231f20;
}

.index .plan-price table tbody tr td:nth-child(4) {
  background-color: #f0ff00;
  border-bottom: 1px solid #e4f031;
}

.index .plan-price .tb-responsive {
  display: none;
}

.index .plan-price .tb-responsive .price-block {
  -webkit-box-shadow: 0px 0px 5px 1px #e2e0e0;
          box-shadow: 0px 0px 5px 1px #e2e0e0;
}

.index .plan-price .tb-responsive .price-block ul {
  margin-bottom: 30px;
}

.index .plan-price .tb-responsive .price-block ul li {
  border-bottom: 1px solid #f0f0f0;
  padding: 15px;
  font-size: 14px;
  font-weight: 600;
}

.index .plan-price .tb-responsive .price-block ul li.head {
  font-weight: 700;
  font-size: 30px;
  padding: 15px;
}

.index .plan-price .tb-responsive .price-block ul li p {
  font-size: 13px;
  text-align: center;
}

.index .plan-price .tb-responsive .price-block ul li h4 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
.index .plan-price .tb-responsive .price-block ul li span{
  text-align: center;
  font-size: 14px;
  color: #ff5b01;
  display: block;
}

.index .plan-price .tb-responsive .price-block ul li a {
  text-align: center;
  display: block;
  text-decoration: underline;
  color: #24252a;
}

.index .plan-price .tb-responsive .price-block ul li a.buy-now {
  display: block;
  max-width: 165px;
  width: 100%;
  margin: 0 auto;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  height: 40px;
  background-color: #004999;
  padding-top: 10px;
  text-align: center;
  color: #ffffff;
  margin-top: 25px !important;
}

.index .plan-price .tb-responsive .basic {
  background-color: #004999;
  position: relative;
}

.index .plan-price .tb-responsive .basic:after {
  content: url(../../assets/img/like-badge.png);
  display: block;
  position: absolute;
  top: -15px;
  right: 15px;
}

.index .plan-price .tb-responsive .basic ul li {
  color: #f0ff00;
  border-bottom: 1px solid #3167a3;
}

.index .plan-price .tb-responsive .basic ul li a {
  color: #f0ff00;
}

.index .plan-price .tb-responsive .basic ul li a.buy-now {
  background-color: #f0ff00;
  color: #231f20;
}

.index .plan-price .tb-responsive .basic ul li p {
  color: #f0ff00;
}

.index .plan-price .tb-responsive .premium, 
.index .plan-price .method .left-content{
  background-color: #f0ff00;
}

.index .plan-price .tb-responsive .premium ul li {
  border-bottom: 1px solid #e4f031;
}

.index .plan-price .method {
  padding-top: 125px;
}

.index .plan-price .method .left-content {
  background-color: #004999;
  padding: 55px 35px 35px 35px;
  position: relative;
  width :100%;
 
}

.index .plan-price .method .left-content:after {
  content: url(../../assets/img/hai.png);
  position: absolute;
  top: -101px;
  left: 12px;
  right: 0;
}

.index .plan-price .method .left-content a {
  display: block;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  height: 54px;
  background-color: #f0ff00;
  padding-top: 16px;
  text-align: center;
  color: #231f20;
  max-width: 166px;
  margin-top: 25px !important;
}

.index .plan-price .method .left-content h2 {
  color: #f0ff00;
  font-size: 60px;
  font-weight: 800;
}

.index .plan-price .method .left-content p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.index .plan-price .method .left-content p span {
  color: #f0ff00;
}

.index .plan-price .method .left-content p span.cost {
  font-size: 20px;
}

.index .plan-price .method .right-content {
  background-color: #004999;
  padding: 55px 35px 35px 35px;
}

.index .plan-price .method .right-content:after {
  content: url(../../assets/img/rupee-badge.png);
  position: absolute;
  top: -15px;
  right: 105px;
}

.index .plan-price .method .right-content h3 {
  color: #f0ff00;
  font-size: 31px;
  margin-bottom: 20px;
  font-weight: 700;
}

.index .plan-price .method .right-content p {
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 300;
  font-size: 14px;
}

.index .plan-price .method .right-content .rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ffffff;
}

.index .plan-price .method .right-content .rate h4 {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  line-height: 27px;
  font-weight: 700;
  width: 75%;
  margin-bottom: 0;
}

.index .plan-price .method .right-content .rate span {
  color: #f0ff00;
  width: 25%;
  padding-top: 5px;
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
  float: right;
  text-align: right;
}

.index .enquire {
  padding: 50px 0 100px 0;
  background-color: #f4f4f4;
}

.index .enquire h3 {
  font-size: 36px;
}

.index .enquire form .form-group {
  margin-top: 30px;
}

.index .enquire form .form-group input {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #24252a;
  border-radius: 0;
  padding-left: 0;
}
.index .enquire form .form-group select {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #24252a;
  border-radius: 0;
  padding-left: 0;
}

.index .enquire form .form-group textarea {
  margin-top: 60px;
  background-color: transparent;
  border: 2px solid #24252a;
  border-radius: 0;
  padding: 15px;
  height: 107px;
}

.index .enquire form input[type="submit"] {
  background-color: #004999;
  color: #ffffff;
  display: block;
  border-radius: 0;
  width: 143px;
  height: 54px;
  font-size: 16px;
  font-weight: 700;
  margin-right: 0;
  margin-left: auto;
}

.index .map .mapouter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.alert .alert-danger ul {
  margin-bottom: 0;
}

.thank-you {
  min-height: 50vh;
  vertical-align: middle;
}

.thank-you .thanks .center-content {
  text-align: center;
  margin: 0 auto;
  padding: 150px 0;
}

.thank-you .thanks .center-content h1 {
  font-size: 60px;
  font-weight: 700;
}

.thank-you .thanks .center-content a {
  display: block;
  max-width: 175px;
  width: 100%;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 700;
  height: 54px;
  background-color: #004999;
  padding-top: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 25px !important;
}

.booking-page {
  padding: 50px 0;
}

.booking-page .book-now .booking-head {
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 30px;
}

.booking-page .book-now .booking-head h2 {
  font-size: 31px;
  font-weight: 700;
  color: #24252a;
  margin-bottom: 15px;
}

.booking-page .book-now .booking-head h2 span {
  float: right;
}

.booking-page .book-now ul {
  padding-left: 0;
  max-width: 314px;
}

.booking-page .book-now ul li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  padding: 5px 0 5px 29px;
}

.booking-page .book-now ul li:after {
  content: url("../img/list-style.png");
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
}

.booking-page .book-now form .form {
  padding: 40px 65px;
  background: #f4f4f4;
}

.booking-page .book-now form .form ::-webkit-input-placeholder {
  color: #24252a !important;
  font-size: 15px;
  font-weight: 600 !important;
}

.booking-page .book-now form .form ::-moz-placeholder {
  color: #24252a !important;
  font-size: 15px;
  font-weight: 600 !important;
}

.booking-page .book-now form .form :-ms-input-placeholder {
  color: #24252a !important;
  font-size: 15px;
  font-weight: 600 !important;
}

.booking-page .book-now form .form :-moz-placeholder {
  font-size: 15px;
  font-weight: 600 !important;
  color: #24252a !important;
}

.booking-page .book-now form .form input, .booking-page .book-now form .form select {
  font-size: 15px;
  font-weight: 600 !important;
  border: none;
  border-bottom: 1px solid #a1a1a1;
  background: transparent;
  border-radius: 0;
  padding-left: 0;
}

.booking-page .book-now form .form #upload-file-book {
  display: none;
}

.booking-page .book-now form .form #fileupload-book {
  text-align: right;
  color: #24252a !important;
  text-decoration: underline;
  display: block;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600 !important;
}

.booking-page .book-now form .form #upload-file-doc {
  display: none;
}

.booking-page .book-now form .form #fileupload-doc {
  text-align: right;
  color: #24252a !important;
  text-decoration: underline;
  display: block;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600 !important;
}

.booking-page .book-now form .amount {
  padding: 25px 65px;
  background: #fafafa;
}

.booking-page .book-now form .amount h3 {
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid #a1a1a1;
  padding-bottom: 10px;
}

.booking-page .book-now form .amount h3 span {
  float: right;
}

.booking-page .book-now form .amount h2 {
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #a1a1a1;
  padding-bottom: 10px;
  color: #9e0b0f;
}

.booking-page .book-now form .amount h2 span {
  float: right;
}

.booking-page .book-now form .amount h4 {
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #a1a1a1;
  padding-bottom: 10px;
}

.booking-page .book-now form .amount h4 span {
  float: right;
}

.booking-page .book-now form .amount input[type="submit"] {
  margin-top: 20px;
  background-color: #004999;
  color: #ffffff;
  display: block;
  border-radius: 0;
  width: 166px;
  height: 54px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  float: right;
}

.terms {
  padding: 50px 0;
}

.terms h1 {
  font-weight: 700;
  font-size: 50px;
}

.terms h2 {
  font-size: 33px;
  font-weight: 600;
}

@media (max-width: 767px) {
  a.language-switcher {
    display: block !important;
  }
  .thank-you .thanks .center-content h1 {
    font-size: 44px;
  }
  .thank-you .thanks .center-content a {
    max-width: 150px;
    font-weight: 600;
    height: 48px;
    padding-top: 12px;
    font-size: 14px;
  }
  a.toggle-form {
    top: 86px;
  }
  a.toggle-form img {
    max-height: 40px;
  }
  /* .floating-form {
    width: 100%;
    max-width: 300px;
    top: 125px;
    -webkit-transition: all .3s;
    transition: all .3s;
  } */
  .floating-form form {
    width: 100%;
    padding: 25px 15px;
  }
  .floating-form form .form-control {
    margin-bottom: 15px;
  }
  .floating-form form a.quick-form {
    width: 320px;
    left: auto;
    right: 0;
    font-size: 16px;
    padding: 15px;
    background-size: contain;
    text-align: center;
  }
  .floating-form form a.quick-form .fa {
    float: right;
    padding-top: 4px;
  }
  .floating-form form input[type="submit"] {
    height: 40px;
    width: 125px;
    font-size: 15px;
  }
  p {
    font-size: 15px;
  }
  .common-head {
    font-size: 25px !important;
  }
  section.top-menu {
    display: none;
  }
  .container-fluid.menu {
    max-width: 100%;
    min-height: initial;
  }
  .container-fluid.menu .navbar {
    margin: 0 !important;
    padding: 10px 0;
  }
  .container-fluid.menu .navbar .navbar-toggler {
    outline: none;
  }
  .container-fluid.menu .navbar .navbar-brand {
    margin-left: 15px;
  }
  .container-fluid.menu #collapsibleNavbar {
    padding-top: 15px;
    text-align: right;
    padding-right: 15px;
  }
  .container-fluid.menu #collapsibleNavbar ul.navbar-nav li {
    margin: 0 10px;
  }
  .container-fluid.menu #collapsibleNavbar ul.navbar-nav li a {
    font-size: 13px;
    display: inline-block;
    padding: 10px 2px;
    border-bottom: 2px solid #004999;
  }
  footer {
    padding: 25px 0;
  }
  footer ul li {
    font-size: 15px;
  }
  .index .banner {
     height: 500px; 
    background-position: center top;
    background-size: cover;
  }
  .index .banner .banner-caption {
    padding-top: 50px;
  }
  .index .banner .banner-caption h1 {
    font-size: 30px;
  }
  .index .banner .banner-caption h2 {
    font-size: 33px;
  }
  .index .banner .banner-caption h2 span {
    font-size: 14px;
  }
  .index .banner .points {
    padding: 30px 0px 10px 0px;
    min-height: 140px;
    height: auto;
    background-size: cover;
    text-align: initial;
    padding-left: 15px;
  }
  .index .banner .points .col-sm-3:last-child .point {
    margin-top: 10px;
  }
  .index .banner .points .point {
    display: inline-block;
  }
  .index .banner .points .point .point-img img {
    max-width: 40px;
  }
  .index .banner .points .point .point-detail p {
    font-size: 14px;
    text-align: left !important;
  }
  .index .call-now h2 {
    padding-top: 15px;
    font-size: 30px;
  }
  .index .call-now h2 span {
    font-size: 40px;
  }
  .index .call-now .call-links {
    display: block;
  }
  .index .call-now .call-links a {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .index .call-now img {
    display: block;
    margin: 0 auto;
  }
  .index .about {
    padding: 50px 0;
  }
  .index .about .tm-badge {
    padding: 75px 15px 15px 15px;
    margin-bottom: 0;
  }
  .index .about .tm-badge h4 {
    font-size: 18px;
  }
  .index .process {
    padding: 50px 0;
  }
  .index .process .blocks .block .block-details {
    padding: 15px 15px 20px 15px;
  }
  .index .process .blocks .block .block-details h4 {
    font-size: 20px;
    margin: 15px 0;
  }
  .index .process .blocks .block .block-details P {
    font-size: 15px;
  }
  .index .doubts .accordion .card .card-header {
    padding-right: 55px;
    padding-left: 15px;
  }
  .index .doubts .accordion .card .card-header h2 button {
    font-size: 16px;
  }
  .index .doubts .clear-image {
    position: initial;
  }
  .index .plan-price .tb-responsive {
    display: block;
  }
  .index .plan-price table {
    display: none;
  }
  .index .plan-price .method .left-content {
    padding: 35px 15px;
    margin-bottom: 30px;
  }
  .index .plan-price .method .right-content {
    padding: 60px 15px 35px 15px;
  }
  .index .plan-price .method .right-content:after {
    right: 30px;
  }
  .index .plan-price .method .right-content h3 {
    font-size: 28px;
  }
  .index .plan-price .method .right-content .rate h4 {
    font-size: 18px;
    line-height: 23px;
  }
  .index .plan-price .method .right-content .rate span {
    font-size: 20px;
  }
  .booking-page {
    padding: 25px 0;
  }
  .booking-page .book-now .booking-head {
    margin-bottom: 15px;
  }
  .booking-page .book-now .booking-head h2 span {
    display: block;
    float: initial;
  }
  .booking-page .book-now .form form {
    padding: 15px 25px;
  }
  .booking-page .book-now .amount {
    padding: 15px 25px;
  }
  .terms {
    padding: 25px 0;
  }
  .terms h1 {
    font-weight: 700;
    font-size: 28px;
  }
  .terms h2 {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
  .common-head {
    font-size: 24px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  a.language-switcher {
    display: block !important;
  }
  section.top-menu ul {
    margin: 10px 0;
  }
  section.top-menu ul li:not(:last-child) {
    margin-right: 10px;
  }
  section.top-menu ul li a {
    font-size: 14px;
  }
  section.top-menu ul li a img {
    max-width: 25px;
  }
  .container-fluid.menu {
    max-width: 100%;
    min-height: initial;
  }
  .container-fluid.menu .navbar {
    margin: 0 !important;
    padding: 10px 0;
  }
  .container-fluid.menu #collapsibleNavbar {
    padding-right: 15px;
    padding-top: 15px;
    text-align: right;
  }
  .container-fluid.menu #collapsibleNavbar ul.navbar-nav li {
    margin: 0 10px;
  }
  .container-fluid.menu #collapsibleNavbar ul.navbar-nav li a {
    font-size: 13px;
    display: inline-block;
  }
   .index .banner {
    height: 600px;
  } 
  .index .banner .banner-caption {
    padding-top: 100px;
  }
   .index .banner .points {
    padding-top: 30px;
    min-height: 140px;
  } 
  .index .banner .points .point {
    display: inline-block;
  }
  .index .banner .points .point:not(:last-child) {
    margin-right: 15px;
  }
  .index .banner .points .point .point-img img {
    max-width: 40px;
  }
  .index .banner .points .point .point-detail p {
    font-size: 14px;
  }
  .index .call-now h2 span {
    font-size: 62px;
  }
  .index .call-now .call-links a {
    font-size: 18px;
    margin-bottom: 15px;
    padding: 15px 10px 15px 64px;
  }
  .index .process .blocks .block:nth-child(even) .block-details {
    padding-top: 20px;
  }
  .index .process .blocks .block .block-details {
    padding: 15px;
  }
  .index .process .blocks .block .block-details h4 {
    font-size: 18px;
  }
  .index .process .blocks .block .block-details p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .index .about .tm-badge {
    margin-bottom: 0 !important;
  }
  .index .about .tm-badge h4 {
    font-size: 19px !important;
    font-weight: 700 !important;
  }
  .index .plan-price table tr th {
    padding-top: 55px;
    font-size: 29px !important;
    padding-left: 15px !important;
  }
  .index .plan-price table tr td {
    padding-left: 15px !important;
  }
  .index .plan-price table tr td h4 {
    font-size: 33px !important;
  }
  .index .plan-price .method .left-content {
    padding-top: 60px;
  }
  .index .plan-price .method .right-content {
    padding: 60px 35px 35px 35px;
  }
  .index .plan-price .method .right-content:after {
    right: 35px;
  }
  .index .plan-price .method .right-content .rate h4 {
    width: 66%;
  }
  .index .plan-price .method .right-content .rate span {
    width: 34%;
    font-size: 26px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  section.top-menu ul {
    margin: 15px 0;
  }
  section.top-menu ul li a {
    font-size: 15px;
  }
  .container-fluid.menu .navbar {
    margin: 0;
  }
  .container-fluid.menu .collapse ul.navbar-nav li {
    margin: 0 10px !important;
  }
  .container-fluid.menu .collapse ul.navbar-nav li a {
    font-size: 13px;
  }
   .index .banner {
    height: 600px;
  } 
   .index .banner .points {
    padding-top: 30px;
    height: 140px;
  } 
  .index .banner .points .point:not(:last-child) {
    margin-right: 15px;
  }
  .index .banner .points .point .point-img img {
    max-width: 40px;
  }
  .index .banner .points .point .point-detail p {
    font-size: 14px;
  }
  .index .call-now .call-links a {
    font-size: 18px;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
   .index .banner {
    height: 600px;
  } 
   .index .banner .points {
    padding-top: 30px;
    height: 140px;
  } 
  .index .banner .points .point:not(:last-child) {
    margin-right: 15px;
  }
  .index .banner .points .point .point-img img {
    max-width: 40px;
  }
  .index .banner .points .point .point-detail p {
    font-size: 16px;
  }
  .index .call-now .call-links a {
    font-size: 18px;
  }
}

.recent_trademark {
  padding: 5% 0;
}

.recent_trademark .call-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.recent_trademark .call-links a {
  display: inline-block;
  background-color: #004999;
  color: #ffffff;
  height: 55px;
  padding: 13px 33px 15px 90px;
  position: relative;
  max-width: 317px;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
}

.recent_trademark .call-links a img {
  background-color: #f0ff00;
  height: 55px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 15px;
}

.t_rit{
    text-align: right;
}
/*# sourceMappingURL=style.css.map */

/* address card starts */
.address-main
{
  background-color: #f5f5f5;
    padding: 60px 0 50px 0;
}
.page-section .address-card
{
  padding: 26px 55px 10px 20px;
  background: #004999;
  color: #fff;
  margin-bottom: 10px;
}
.page-section .address-card img
{
  background-color: #f0ff00;
  height: 50px;
  padding: 9px;
  position:absolute;
}
.page-section .address-card .address-lines
{
  margin: 0 0 10px 0;
}
.page-section .address-card p
{
    padding: 0 26px 0 0;
    color: #ffffff;
    width: 100%;
    text-align: left;
    border: none;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    margin-left: 10px;
    width: 100%;
    margin-left: 65px;
    line-height: 47px;
} 
.announcement-p
{
  font-size:19px;
}
.address-para
{
  position: relative;
  bottom: 4px;
}
@media (max-width: 768px) {
.page-section .address-card p {
    padding: 0 20px 0 0;
    color: #ffffff;
    width: 100%;
    text-align: left;
    border: none;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    margin-left: 10px;
    width: 100%;
    margin-left: 65px;
    line-height: 47px;
    height: 40px;
}
.page-section .address-card
{
  padding: 20px 55px 36px 20px;
}
.announcement-p
{
  font-size:12px;
}
.address-para
{
  position: relative;
  bottom: 0px;
}
}



.navLoaction{
  display: flex;
  align-items: center;
}
.navLoaction .navLocationIcon{
  font-size: 16px;
  margin-right: 10px;
  line-height: .5;
}
.navLoaction p{
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
}


.bannerHeading{
  width: 100%;
  padding: 80px 0px 30px 0px;
}
.bannerHeading h1{
  font-size: 3em;
}

.howWeDoList{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  margin-top: 40px;
  padding: 0;
}
.howWeDoList li{
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.howWeDoList li .col1{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #004999;
  color: white;
  font-size: 16px;
}
.howWeDoList li .col2{
  width: calc(100% - 55px);
  font-size: 18px;
  line-height: 1.5;
}

.districtProcess .blocks {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px;
}
@media(max-width: 480px){
  .districtProcess .blocks {
    padding: 20px;
  }
  .districtProcess .blocks .block .block-details{
    padding: 0 !important;
  }
}
.districtProcess .blocks .block .block-image{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
}
.districtProcess .blocks .block .block-image h3{
  position: inherit !important;
  transform: inherit !important;
  font-size: 5em !important;
  top: inherit !important;
  right: inherit !important;
  margin: 0;
  line-height: 1;
}
.districtProcess .blocks .block .block-details{
  padding: 0 !important;
  margin-top: 5px;
}
.districtProcess .blocks .block:after{
  display: none;
}
.fiftY{
    display: flex;
    justify-content: flex-end;
}
@media(max-width:500px){
    .fiftY{
        display: flex;
        justify-content: flex-start;
    }
}
/* address card ends */