@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 500;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
  background: #b61333;
  font-family: 'Poppins';
  font-weight: 500;
  text-transform: capitalize;
  border: unset;
}

.theme-btn:hover {
  background-color: #263866;
  color: #fff;
  border-color: unset;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 22px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 10px 27px;
    font-size: 17px;
    font-family: 'Poppins';
    font-weight: 400;
}

.menuSec ul li a:after {
  /* content: ''; */
  /* position: absolute; */
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #af0036;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */




.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}
.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}
.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.carousel-control.right {
  right: 0px;
}
.carousel-control.left {
  left: 0px;
}
.carousel-indicators {}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}
.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}
.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}
.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}
/*banner css end*/

.blog_sec {
  padding: 5% 0;
}
/*slick slider in tabs css start*/


/* Style the tab */




.tab_sec .tab {
  overflow: hidden;
  border: 0;
  background-color: #ffffff;
}
/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab_sec .tab button.active {
  background-color: #ccc;
}
/* Style the tab content */

.tab_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}
.tabcontent.active {
  display: block;
}
/*slick slider in tabs css start*/

.nav-item {padding: 10px;}





.top-bar-left-info a {
    font-family: 'Poppins';
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.top-bar-left-info a span i {
    color: #fab967;
}

.topSec {
    background: #202b59;
    padding: 10px 0px;
}
.top-bar-left-info.rt-bar-info a {
    justify-content: end;
}
.header-rt-btn {
    float: inline-end;
}
.header-rt-btn a.theme-btn {
    margin: unset;
}
.menuSec .row {
    align-items: center;
}


/*banner Start*/

.banner_text h1 {
    font-family: 'Poppins';
    font-size: 45px;
    font-weight: 600;
}

.banner_text p {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 300;
}

.banner_text ul li {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner_text ul li img {
    width: 25px;
}


.banner_text ul {
    margin: 20px 0px 34px;
}

.banner-main-form h4 {
    font-family: 'Poppins';
    font-size: 27px;
    font-weight: 500;
    color: #fff;
    background: #1d2b5a;
    text-align: center;
    padding: 19px 0px;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 0px;
}

.banner-main-form input {
    width: 100%;
    border: 1px solid #0000005c;
    padding: 10px 10px;
    border-radius: 5px;
    margin-bottom: 16px;
    background: #f9f9f9;
}

img.banner-img {
    width: 100%;
}
section.main_slider .row {
    justify-content: space-between;
}

.banner-main-form {
    background: #fff;
    border-radius: 10px;
    margin-left: 50px;
    margin-bottom: -100px;
    z-index: 2;
    position: relative;
}

.banner-main-form select {
    width: 100%;
    border: 1px solid #0000005c;
    padding: 10px 10px;
    border-radius: 5px;
    background: #f9f9f9;
    margin-bottom: 16px;
    appearance: auto;
    color: #555553;
}

.banner-main-form textarea {
    width: 100%;
    border: 1px solid #0000005c;
    padding: 10px 10px;
    border-radius: 5px;
    height: 190px;
    background: #f9f9f9;
    margin-bottom: 13px;
}

.banner-main-form form {
    padding: 40px 33px;
}

button.theme-btn {
    margin: unset;
    width: 100%;
}

.call-banner-txt p {
    font-family: 'Poppins';
    font-size: 27px;
    font-weight: 600;
    color: #1d2b5a;
    margin-bottom: 0px;
    padding: 0px 170px;
}

.call-banner-txt {
    background: #f9c660;
    padding: 22px 10px;
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0;
}

.call-banner-txt p a {
    color: #1d2b5a;
}
/*Banner End*/


/*Section Availabel Start*/
.availabel-text ul li {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.availabel-text ul {
    display: flex;
    align-items: center;
    gap: 14px;
}
.availabel-main-sec {
    padding: 34px 0px;
    background: #fcf7f7;
}


/*Sectin Availabel End*/


/*Section Services Start*/


.services-main-sec .container-fluid {
    padding-left: 170px;
}

.services-heading h2 {
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 37px;
    margin-bottom: 6px;
    color: #1d2b5a;
}

.services-heading p {
    font-family: 'Poppins';
    font-weight: 400;
    color: #000;
    font-size: 17px;
}

.service-main-box ul li {
    font-family: 'Poppins';
    font-size: 25px;
    font-weight: 600;
    color: #000;
    line-height: 31px;
}

.service-main-box ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.service-main-box ul li img {
    width: 40px;
}

.service-main-box {
    box-shadow: -0.07px 1.999px 18.96px 5.04px rgba(0, 0, 0, 0.08);
    padding: 28px 20px 38px;
    border-radius: 10px;
    margin-bottom: 28px;
}
.service-main-box p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 30px;
}

.service-main-box a.theme-btn {
    background-image: -webkit-linear-gradient( 90deg, rgb(31,51,97) 0%, rgb(49,68,123) 100%);
    border-radius: 10px;
}
/*Sectiopn Services End*/

/*Section Choose Us Start*/

.text-chooseus ul li {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}

.text-chooseus ul li img {
    width: 25px;
}

.text-chooseus h2 {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 37px;
    margin-bottom: 12px;
    color: #1d2b5a;
}
.img-choosus img {
    width: 100%;
    border-radius: 10px 0px 0px 10px;
    height: 400px;
    object-fit: cover;
}

.text-chooseus ul {
    margin-bottom: 37px;
}

.img-choosus {
    margin-bottom: 11px;
}
.choose-main-box {
    padding-left: 20px;
}
.services-main-sec {
    padding: 90px 0px;
}
/*Section Choose Us End*/


/*Section Customer Start*/


.text-customer ul li img {
    border-radius: 40px;
}

.text-customer ul li i {
    color: #09b285;
    font-size: 16px;
    margin-bottom: 5px;
}

.text-customer ul li {
    font-size: 21px;
    font-family: 'Poppins';
    font-weight: 500;
    color: #000;
}

.text-customer ul li span {
    font-size: 15px;
    font-weight: 400;
    color: #595959;
}

.text-customer p {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}

.text-customer ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-customer {box-shadow: -0.07px 1.999px 18.96px 5.04px rgba(0, 0, 0, 0.08);background: #fff;padding: 30px 34px;border-radius: 14px;width: 86%;}

.customer-main-sec .row {
    justify-content: end;
}
.heading-customer h2 {
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 37px;
    margin-bottom: 26px;
    color: #1d2b5a;
    line-height: 40px;
}
.customer-main-sec .row {
    position: relative;
}

.customer-main-sec {
    padding: 0px 0px 90px;
}

.customer-back-img img {
    position: absolute;
    bottom: 0;
    top: 0;
    z-index: -1;
}

.heading-customer {
    margin-top: 70px;
}

.customerslid .slick-slide {
    margin: 13px 0px;
}

.customerslid .slick-dots li button:before {
    font-size: 14px;
}

.customerslid .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #253764;
}

.customerslid .slick-active {
    opacity: 1.5;
}

.customerslid .slick-dots {
    left: -40px;
}
/*Section Customer End*/


/*Section home Contact Start*/
.hm-contact-sec .row {
    justify-content: center;
}


.hm-contac-field input {
    width: 100%;
    border: 1px solid #0000002b;
    padding: 14px 10px;
    border-radius: 5px;
    margin-bottom: 16px;
    background: #f6f6f6;
}

.hm-contac-field textarea {
    width: 100%;
    border: 1px solid #0000002b;
    padding: 10px 10px;
    border-radius: 5px;
    height: 190px;
    background: #f6f6f6;
    margin-bottom: 13px;
}
.hm-contac-field {
    box-shadow: -4.994px 9.801px 36.72px 17.28px rgba(0, 0, 0, 0.05);
    padding: 70px 50px 30px;
    border-radius: 20px;
    margin: 0px 40px;
    background: #fff;
}

.hm-contac-field button.theme-btn {
    width: fit-content;
}


.hm-contac-field input::placeholder {
    text-transform: uppercase;
}

.hm-contac-field textarea::placeholder {
    text-transform: uppercase;
}
.heading-contact h2 {
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 44px;
    margin-bottom: 25px;
    color: #1d2b5a;
    text-align: center;
}

.hm-contact-sec {
    position: relative;
    padding: 50px 0px 100px;
    margin-top: 50px;
}

.hm-contact-sec:before {
    position: absolute;
    content: '';
    background: #fcf8f5;
    width: 100%;
    height: 400px;
    z-index: -1;
    top: 0;
}
 a.theme-btn:focus {
    color: #fff !important;
}
/*Section home Contact End*/


/*Footer Start*/


.footerSec {
    background: #1d2b5a;
    padding: 80px 0px 0px;
}

.footer-link-ss h3 {
    color: #fff;
    font-size: 36px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.footer-link-ss h5 {
    color: #fff;
    font-size: 33px;
    font-weight: 500;
    margin-bottom: 40px;
    font-family: 'Poppins';
}

.footer-link-ss p {
    color: #a3a3a3;
    width: 63%;
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
    margin: 0 auto;
    font-family: 'Poppins';
    padding-bottom: 10px;
}

.footer-link-ss ul {
    column-count: 2;
    width: 89%;
}

.footer-link-ss ul li {
    margin-bottom: 14px;
    width: 180px;
}

.footer-link-ss ul li a {
    color: #d2d2d2;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Poppins';
}

.footer-link-ss {
    position: relative;
}


.footer-link-ss.vhnpo:before {
    content: unset;
}

.footer-btn-tesxt p {
    color: #fff;
}

ul.list-inline.pull-right {
    display: flex;
    gap: 13px;
    margin: 0;
    justify-content: center;
    width: 100%;
}

ul.list-inline.pull-right li {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    border: 1px solid #ffffff87;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    font-size: 17px;
}

.footer-link-ss.vhnpo p {
    width: 100%;
}

ul.list-inline.pull-right li:hover {
    border: none;
    background: #bd202e;
    transition: 0.5s;
    transform: rotate(360deg) scale(1.3);
}

.footer-link-ss ul li a i {
    font-family: 'FontAwesome';
}

.contact-link-ft h5 {
    color: #fff;
    font-size: 33px;
    font-weight: 500;
    font-family: 'Poppins';
    margin-bottom: 40px;
    text-transform: capitalize;
}

ul.contactinfo-ft ul li {
    display: flex;
    gap: 10px;
}

ul.contactinfo-ft li {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
}

ul.contactinfo-ft li a {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

ul.list-inline.pull-right li a i {
    font-family: 'Font Awesome 5 Brands';
}

ul.list-inline.pull-right li a {
    font-size: 15px;
    color: #ffffffe8;
}

.footer-bottom .row {
    align-items: center;
}

.footer-bottom p {
    color: #fff;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0px;
    text-align: center;
}

.footer-bottom {
    margin-top: 50px;
    background: #1f2c59;
    padding: 10px 20px;
    border-top: 1px solid #ffffff69;
    padding: 17px 0px;
}

.quicklinks {
    margin-left: 0px;
}



.footer-link-ss a img {
    margin-bottom: 18px;
}

.footer-link-ss ul li:hover a {
    color: #fff;
    transition: 0.9s;
}

.theme-btn:hover {
    border-color: #000;
    background: #000;
    color: #fff;
    box-shadow: 1px 1px 20px #1f2c59;
}
.footer-link-ss.ft-logo-main {
    text-align: center;
    position: relative;
}

.contact-link-ft {
    float: inline-end;
}

.footer-link-ss.ft-logo-main::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 180px;
    background: #ffffff57;
    left: 40px;
}

.footer-link-ss.ft-logo-main::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 180px;
    background: #ffffff57;
    right: 10px;
    top: 0;
}
ul.contactinfo-ft li a span {
    font-size: 14px !important;
    display: block;
    color: #ffffff94;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/*Footer End*/