

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/


@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta {
  padding: 0;
  margin-bottom: 60px;
}

.cta .container {
  padding: 80px;
  background: rgba(var(--color-secondary-rgb), 0.1);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .cta .container {
    padding: 60px;
  }
}

.cta .content h3 {
  color: var(--color-secondary);
  font-size: 48px;
  font-weight: 700;
}

.cta .content h3 em {
  font-style: normal;
  position: relative;
}

.cta .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: rgba(var(--color-primary-rgb), 0.5);
  z-index: -1;
}

.cta .content p {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 18px;
}

.cta .content .cta-btn {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: rgba(var(--color-primary-dark-rgb), 0.9);
}

.cta .content .cta-btn:hover {
  background: var(--color-primary);
}

.cta .img {
  position: relative;
}

.cta .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.5);
  border-radius: 15px;
  transform: rotate(12deg);
}

.cta .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.9);
  border-radius: 15px;
  transform: rotate(6deg);
}

.cta .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
}

.footer .footer-content {
  /*background: var(--color-secondary);*/
  background:#242022;
  padding: 60px 0 0px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
 /* font-family: var(--font-primary);*/
   font-family: 'Open Sans';
  color: var(--color-white);
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
 /* background: var(--color-primary);*/
 background:#0370AE;
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

.footer .footer-legal {
  padding: 5px 0;
 /* background: var(--color-secondary-dark);*/
  background:#a7011f;
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  /*background: var(--color-primary);*/
   background: #0370ae;
  text-decoration: none;
}

.announcement-holder{
    background-color: #A7001E;
    height: 250px;
    overflow: hidden;
    padding: 10px;
    /*font-family: "Montserrat", sans-serif;*/
    font-family: 'Open Sans';
}
.announcement-holder ul li a{
    text-decoration: none; 
}

.notice-holder{
    background-color: #0370AE;
    height: 250px;
    overflow: hidden;
    padding: 10px;
   /* font-family: "Montserrat", sans-serif;*/
     font-family: 'Open Sans';
}
.notice-holder ul li a{
   
    color: #fff;
    text-decoration: none;
}

/*.logo-text-first {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: -4%;
  margin-left: 6%;
  margin-right: -79%;
  color: #0370ae;
}*/

/*.logo-text-second {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: -1%;
  margin-left: 53.2%;
  margin-right: -79%;
  color: #0370ae;
}*/

/*.logo-text-thrid {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 2%;
  margin-left: 51%;
  margin-right: -79%;
  color: #0370ae;
}*/


/*.logo-text-forth {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 5%;
  margin-left: 49.9%;
  margin-right: -79%;
  color: #0370ae;
}*/

.whatsapp-link-btn {
  position: fixed;
  display: none;
  left: 15px;
  bottom: 75px;
  z-index: 99999;
}

.whatsapp-link-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #25d366;
  color: #fff;
  transition: all 0.4s;
}

.whatsapp-link-btn i:hover {
  background: #25d366;
  color: #fff;
}
.floating-btn {
    width: 170px;
    height: 2.5em;
    background-color: #0370AE;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 25%);
    position: fixed;
    right: -4.5em;
    top: 310px;
    -webkit-transform: rotate(
-90deg
);
    -ms-transform: rotate(-90deg);
    transform: rotate(
-90deg
);
    -o-ransform: rotate(-90deg);
    -moz-ransform: rotate(-90deg);
    bottom: 20px;
    transition: background 0.25s;
}
.floating-btn:active, .floating-btn:hover {
    color: #ffffff !important;
    background-color:  #0370AE;
} 
@media (max-width: 992px) {
    .floating-btn {
        width:100%;
        top:auto;
        bottom:0px;
        right:0.5em;
        -webkit-transform: rotate(
0deg
);
    -ms-transform: rotate(0deg);
    transform: rotate(
0deg
);
    -o-ransform: rotate(0deg);
    -moz-ransform: rotate(0deg);
    }
}


@media(max-width: 992px){
.slider-img-hight {
    height: auto;
}
.logo-text-first {
  /*font-size: small;
  float: left;
  font-weight: bold;
  margin-top: -4%;
  margin-left: 6%;
  margin-right: -79%;
  color: #0370ae;*/
  
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: -4%;
  margin-left: 6%;
  margin-right: -79%;
  color: #0370ae;
}

.logo-text-second {
  /*font-size: small;
  float: left;
  font-weight: bold;
  margin-top: -1%;
  margin-left: 53.2%;
  margin-right: -79%;
  color: #0370ae;*/
  
  
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 2%;
  margin-left: 22.2%;
  margin-right: -79%;
  color: #0370ae;
}

.logo-text-thrid {
  /*font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 2%;
  margin-left: 51%;
  margin-right: -79%;
  color: #0370ae;*/
  
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 8%;
  margin-left: 19%;
  margin-right: -79%;
  color: #0370ae;
}

.logo-text-forth {
  /*font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 5%;
  margin-left: 49.9%;
  margin-right: -79%;
  color: #0370ae;*/
  
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 15%;
  margin-left: 14.9%;
  margin-right: -79%;
  color: #0370ae;
}
}
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: #0370AE;
  font-size: 36px;
  transition: 0.3s;
}
.featured-services .service-item .icon:hover {
     color: #a7001e;
}
.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.featured-services .service-item h4 a {
  color: #0370AE;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 #a7001e;
}

.featured-services .service-item:hover h4 a {
  color:#a7001e;
}
.title-color{
     color: #a7001e;
}
p, a{
  /* font-family: "Montserrat", sans-serif;*/
    font-family: 'Open Sans';
   text-align: justify;
    font-size: 15px;
}
body{
    /* font-family: "Montserrat", sans-serif;*/
      font-family: 'Open Sans';
    color: #444444;
}
.logo_text_name{
     border-left: 0.5px solid #4d72b8;
}
/*.logo-text-first{
   
    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: 7%;
    margin-left: -4%;
    margin-right: -79%;
    color: #0370ae;

}*/
/*.logo-text-first {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 1%;
  margin-left: 6%;
  margin-right: -79%;
  color: #0370ae;
 
}
.logo-text-second {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 6%;
  margin-left: 36%;
  margin-right: -79%;
  color: #0370ae;
}*/
/*.logo-text-first {
    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: -10%;
    margin-left: 6%;
    margin-right: -79%;
    color: #0370ae;
}

.logo-text-second {
    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: -6%;
    margin-left: 48%;
    margin-right: -79%;
    color: #0370ae;
}

.logo-text-thrid{
	    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: -2%;
    margin-left: 45.7%;
    margin-right: -79%;
    color: #0370ae;
}
.logo-text-forth{
	font-size: small;
    float: left;
    font-weight: bold;
    margin-top: 5%;
    margin-left: 44.5%;
    margin-right: -79%;
    color: #0370ae;

}*/
/*.logo-text-first {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: -4%;
  margin-left: 6%;
  margin-right: -79%;
  color: #0370ae;
}

.logo-text-second {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: -1%;
  margin-left: 53.2%;
  margin-right: -79%;
  color: #0370ae;
}

.logo-text-thrid {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 2%;
  margin-left: 51%;
  margin-right: -79%;
  color: #0370ae;
}

.logo-text-forth {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 5%;
  margin-left: 49.9%;
  margin-right: -79%;
  color: #0370ae;
}*/



.main-landing{
    padding-top:10%;
}
@media (max-width: 1024px) {
    .logo-text-first{
      margin-right: -129%;
  }
  .main-landing{
    padding-top:0;
}
.logo-text-first {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: -4%;
  margin-left: 6%;
  margin-right: -79%;
  color: #0370ae;
}

.logo-text-second {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: -1%;
  margin-left: 53.2%;
  margin-right: -79%;
  color: #0370ae;
}

.logo-text-thrid {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 2%;
  margin-left: 51%;
  margin-right: -79%;
  color: #0370ae;
}

.logo-text-forth {
  font-size: small;
  float: left;
  font-weight: bold;
  margin-top: 5%;
  margin-left: 49.9%;
  margin-right: -79%;
  color: #0370ae;
}
}
@media (max-width: 768px) {
 /*.logo-text-first{
     font-size:x-small;
   margin-left:-59%;
   padding-top:15%;
  }*/
  .logo-text-first {
    font-size: xx-small;
    margin-right: -59%;
    padding-top: 0;
        margin-top: -4%;
        margin-left: 6%;
}

/*.logo-text-second {
    font-size: xx-small;
    float: left;
    font-weight: bold;
    margin-top: 6%;
    margin-left: -65%;
    margin-right: -79%;
    color: #0370ae;
}

.logo-text-third{
	
	    font-size: x-small;
    float: left;
    font-weight: bold;
    margin-top: 15%;
    margin-left: -8%;
    margin-right: -79%;
    color: #0370ae;
}
.logo-text-forth{
	  
    font-size: x-small;
    float: left;
    font-weight: bold;
    margin-top: 25%;
    margin-left: 90%;
    margin-right: -90%;
    color: #0370ae;
}*/

/*.logo-text-second {
        font-size: xx-small;
        float: left;
        font-weight: bold;
        margin-top: -1.5%;
        margin-left: 6%;
        margin-right: -79%;
        color: #0370ae;
    }
.logo-text-thrid {
    font-size: xx-small;
    float: left;
    font-weight: bold;
    margin-top: 8%;
    margin-left: 22%;
    margin-right: -79%;
    color: #0370ae;
}

.logo-text-forth {
        padding-left: 0.5rem;
        font-size: xx-small;
        float: left;
        font-weight: bold;
        margin-top: 18%;
        margin-left: 19.5%;
        margin-right: -9%;
        color: #0370ae;
    }*/
    
        .logo-text-second {
        font-size: xx-small;
        float: left;
        font-weight: bold;
        margin-top: 6%;
        margin-left: 1%;
        margin-right: -79%;
        color: #0370ae;
    }
    .logo-text-thrid {
        font-size: xx-small;
        float: left;
        font-weight: bold;
        margin-top: 15%;
        margin-left: 15%;
        margin-right: -79%;
        color: #0370ae;
    }
        .logo-text-forth {
        padding-left: 0.5rem;
        font-size: xx-small;
        float: left;
        font-weight: bold;
        margin-top: 24%;
        margin-left: 12.5%;
        margin-right: -9%;
        color: #0370ae;
    }
.header .logo img {
    max-height: 3rem !important;
}
  .main-landing{
    padding-top:25%;
}
}

.nata_blink{
    color: #ffffff;
    background-color: #0033a7;
    border-radius: 6px;
    display: inline-block;
    animation: blinker 1.5s linear infinite;
}
.new_blink{
color: #ffffff;
    background-color: #a7001e;
    border-radius: 6px;
    display: inline-block;
     animation: blinker 1.5s linear infinite;
}
.nata_blink a{
    color: #ffffff;
    background-color: #0033a7;
}
.pt-8{
     padding-top: 8.2rem!important;
}

@media (max-width: 1360px) {
.logo-text-first {
    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: -4%;
    margin-left: 6%;
    margin-right: -79%;
    color: #0370ae;
}
.logo-text-second {
    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: 2%;
    margin-left: 23.2%;
    margin-right: -79%;
    color: #0370ae;
}
.logo-text-thrid {
    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: 9%;
    margin-left: 18%;
    margin-right: -79%;
    color: #0370ae;
}
.logo-text-forth {
    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: 17%;
    margin-left: 15.9%;
    margin-right: -79%;
    color: #0370ae;
}
}

@media (min-width: 1361px) {
 .logo-text-first {
    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: -4%;
    margin-left: 3%;
    margin-right: -79%;
    color: #0370ae;
}
.logo-text-second {
    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: 3%;
    margin-left: 12%;
    margin-right: -79%;
    color: #0370ae;
}

.logo-text-thrid {
    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: 9%;
    margin-left: 6.7%;
    margin-right: -90%;
    color: #0370ae;
}
.logo-text-forth {
    font-size: small;
    float: left;
    font-weight: bold;
    margin-top: 17%;
    margin-left: 14.5%;
    margin-right: -79%;
    color: #0370ae;
}
}
header .logo img {
  max-height: 6rem !important;
  margin-right: 6px;
}
#topbar {
  background: #106eea;
  background: #ffc41a;
  background: #a7001e;
  height: 40px;
  margin-left: -7.5%;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  position: sticky;
}