@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
  background: #292929;
}

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-family: 'Inter';
  color: #ffffffcf;
  font-size: 16px;
  font-weight: 400;
}


/***** 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 23px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid #fff;
  text-transform: capitalize;
  font-size: 20px;
  font-family: 'Geologica';
  font-weight: 600;
}

.theme-btn:hover {
  border-color: #2a80c9;
  background: #292929;
  color: #fff;
}

.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: 10px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.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: 0px 0px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Lato", sans-serif;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #0a7ecb;
}

.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: #0000008c;
}

.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);
  background-color: transparent;
  --background-overlay: '';
  background-image: linear-gradient(180deg, #0C7DC8 0%, #035286D1 100%);
}
.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;}



/*Header Css Start*/
.main-banner-img img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.menuSec .row {
    align-items: center;
}

.head-rt-btn a {
    border: 1px solid #fff;
    padding: 16px 27px;
    width: fit-content;
    background: #0a7ecb;
    color: #fff;
    border-radius: 7px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

.menuSec ul li:hover a:after {
    width: 100%;
    transition: 0.8s;
}
.header-logo a img {
    width: 77%;
}
header {
    background: #fff;
}
.menuSec ul li a.active:after {
    width: 100%;
}
.head-rt-btn {
    text-align: center;
}
.menuSec ul li:last-child a.active:before{
  width: 100%;
}
.menuSec ul li:last-child a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #0a7ecb;
}

.menuSec ul li:last-child:hover a:before {
    width: 100%;
    transition: 0.9s;
}
/*header Css End*/


/*Banner Css Start*/

.banner_text.wow.fadeInLeft h3 {
    font-family: "Geologica", sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
}

.banner_text h1 {
    font-family: 'Geologica';
    font-size: 80px;
    font-weight: 700;
    line-height: 70px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.banner_text p {
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

section.main_slider .container-fluid {
    padding-left: 180px !important;
}

.banner-rt-img img {
    margin-bottom: -230px;
}
.carousel-inner {
    overflow: visible;
}
.theme-btn span {
    font-size: 28px;
    margin-left: 5px;
}

.theme-btn span i {
    transform: rotate(325deg);
}

/*Banner Css End*/


/*Section About us Start*/


.about-main-sec {
    padding: 140px 0px 100px;
}

.text-about h2 {
    font-family: 'Geologica';
    font-size: 39px;
    color: #fff;
    font-weight: 700;
    line-height: 47px;
    margin-bottom: 20px;
}

.text-about {
    margin-left: 60px;
    padding-top: 50px;
}

.about-main-sec .row {
    /* align-items: center; */
}
.experience-text h3 {
    font-family: 'Geologica';
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    width: fit-content;
    padding: 69px 38px;
    background: #2a80c9;
    border-radius: 50%;
    text-align: center;
    line-height: 43px;
}

.experience-text h3 span {
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.experience-text {
    position: relative;
    margin-top: -170px;
}

/*Section ABout Us End*/


/*Section Mission Vision Start*/
.vision-txt h2 {
    font-family: 'Geologica';
    font-size: 25px;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.vision-box {
    background: #292929;
    border: 1px solid #fff;
    padding: 20px 40px 30px;
}

.vision-txt p {margin-bottom: 0px;}
.msiison-vision-sec .row {
    background-image: url(../images/mission-vision-back.jpg);
    width: 100%;
    height: 490px;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    position: relative;
    z-index: 1;
}

.msiison-vision-sec .row::before {
    position: absolute;
    content: '';
    background: #0a7ecbc4;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/*Section Mission Vision End*/

/*Section category Start*/


.text-category h2 {
    font-family: 'Geologica';
    font-size: 25px;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.text-category ul li {
    font-family: 'Inter';
    font-size: 14px;
    color: #fff;
}

.text-category ul {
    display: flex;
    justify-content: center;
    gap: 50px;
    color: #ffffff99;
    border-top: 1px solid #ffffff91;
    border-bottom: 1px solid #ffffff91;
    padding: 16px 0px;
}

.price-category h3 span {
    font-family: 'Geologica';
    font-size: 15px;
    color: #0a7ecb;
    display: block;
    font-weight: 400;
}

.price-category h3 {
    font-family: 'Geologica';
    font-size: 25px;
    color: #fff;
    font-weight: 500;
}

.price-category p {
    font-family: 'Inter';
    font-size: 15px;
    margin-bottom: 0px;
}

.price-category {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0px 20px;
}
.btn-caegory a {
    font-family: 'Geologica';
    font-size: 21px;
    font-weight: 600;
    color: #292929;
}

.btn-caegory {
    text-align: center;
    background: #0a7ecb;
    padding: 15px 0px;
}
.main-category-box {
    position: relative;
    z-index: 1;
    background: #454342;
    margin-bottom: 40px;
}

.category-shape {
    position: absolute;
    top: 0;
    z-index: -1;
}

.img-catrgory img {
    width: 100%;
    height: 370px;
    object-fit: contain;
}

.text-category {
    margin-top: 30px;
}

.main-category-box::before {
    position: absolute;
    content: '';
    background-image: url(../images/category-box-shape.png);
    width: 150px;
    height: 90px;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
}
.category-sec {
    padding: 100px 0px;
}
.btn-caegory a:hover {
    color: #fff;
}
.heading-category h3 {
    font-family: 'Geologica';
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-bottom: 3px;
    color: #2a80c9;
    text-transform: uppercase;
}

.heading-category h2 {
    font-size: 39px;
    font-family: 'Geologica';
    color: #fff;
    text-align: center;
    font-weight: 600;
}

/*Section category End*/


/*Section Inventory Start*/
.inventory-img {
    background: #454342;
    padding: 36px 30px;
}

.main-inven-row {border-top: 1px solid #ffffff6e;padding-top: 90px;}

.inventory-sec {
    padding-bottom: 100px;
}
.inventory-img img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}
/*Section Inventory Start*/


/*Section Choose Us Start*/

.text-box-choose h2 {
    font-family: 'Geologica';
    font-size: 25px;
    line-height: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.text-box-choose p {
    margin-bottom: 0px;
    width: 80%;
    margin: 0 auto;
}

.text-box-choose {
    background: #454342;
    padding: 100px 30px 50px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.text-box-choose::before {
    position: absolute;
    content: '';
    background-image: url(../images/category-box-shape.png);
    width: 150px;
    height: 90px;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
}
.choose-us-img img {
    width: 100%;
    height: 644px;
    object-fit: cover;
}

.choose-us-img .text-box-choose {
    background: unset;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.choose-us-img {
    position: relative;
}

.choose-us-img .text-box-choose::before {
    display: none;
}

.choose-us-img::before {
    position: absolute;
    content: '';
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(180deg, #222120 0%, #22212000 100%);
    width: 100%;
    height: 100%;
}
.chhose-main-conetnt {
    background-image: url(../images/chooseus-back.jpg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 20px 60px;
    position: relative;
    z-index: 1;
    border-top: 1px solid #ffffff63;
}

.chhose-main-conetnt::before {
    position: absolute;
    content: '';
    background: #22212091;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    top: 0;
}


.chooseus-sec .heading-category h3 {
    font-size: 20px;
}
/*Section Choose Us ENd*/


/*Section Offer STart*/

.offer-text h2 {
    font-size: 39px;
    font-weight: 700;
    font-family: 'Geologica';
    color: #fff;
    margin-bottom: 10px;
}

.offer-text ul li {
    font-family: 'Geologica';
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #454342;
    text-align: center;
    padding: 20px 10px;
    margin-bottom: 20px;
}

.offer-text ul {
    column-count: 2;
    margin-top: 30px;
}

.offer-text {
    padding-right: 80px;
}

.offer-img {
    margin-left: 70px;
    position: relative;
}

.offer-img img {
    width: 100%;
    height: 710px;
    object-fit: cover;
    object-position: center center;
    filter: brightness(90%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

.offer-main-sec {
    padding: 100px 0px;
}

.offer-main-sec .row {
    align-items: center;
}

.offer-img h3 {
    font-size: 25px;
    font-family: 'Geologica';
    background: #2a80c9;
    width: 240px;
    padding: 40px 40px;
    line-height: 30px;
    position: absolute;
    top: -27px;
    left: -42px;
    font-weight: 500;
    color: #292929;
}


/*Counter css Start*/
.counter span {
    font-family: 'Geologica';
    color: ##292929;
    font-weight: bold;
    font-size: 61px;
    font-weight: 700;
}
.counter {
    text-align: center;
    margin-bottom: 26px;
    font-family: 'Geologica';
    color: #292929;
    font-weight: bold;
    font-size: 61px;
    font-weight: 700;
}

.counter-box h4 {
    font-family: 'Geologica';
    font-size: 16px;
    font-weight: 500;
    color: #292929;
    text-align: center;
    margin-bottom: 0px;
}
.counter-sec .row {
    background: #297fc8;
    padding: 45px 0px 38px;
    border-radius: 0px;
}
.copunter-row {
    /* margin-bottom: -230px; */
}
.counter-box:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 121px;
    /* background: #292929; */
    right: -22px;
    top: -20px;
    border: 1px dotted #292929;
}
.counter-box {
    position: relative;
}
.forth-counter.award-win .counter-box:before {
    display: none;
}
.counter-sec {
    margin-top: 60px;
}
/*Counter csss End*/

/*Section offer End*/



/*Section Faqs Start*/

.custom-accordion .accordion-item {
  background: #2a2a2a;
  border: none;
  margin-bottom: 12px;
}

.custom-accordion .accordion-button {
  background: #454342;
  color: #fff;
  font-weight: 600;
  padding: 0px 20px;
  box-shadow: none;
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 600;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #2a80c9;
  color: #000;
}

.custom-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.custom-accordion .accordion-body {
  background: #242424;
  color: #ddd;
  line-height: 1.6;
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 500;
}
section.faq-section {
    padding-bottom: 100px;
}


/*Section faqs End*/


/* Footer css Starts*/

    .footerSec {
        background: #fff;
        padding: 55px 0 0 0;
    }

    .foot-links h5, .news-letter h5 {
        font-family: 'Geologica';
        font-size: 28px;
        line-height: 40px;
        color: #000;
        margin: 0 0 20px 0;
        font-weight: 600;
    }
.btm-arrow a {
    background: #000;
    padding: 14px 14px;
    border-radius: 50%;
    font-size: 20px;
    color: #ffffffb3;
    position: fixed;
    right: 20px;
    z-index: 2;
    bottom: 20px;
}
    .foot-links ul li {
        margin: 0 0 20px 0;
    }

    .foot-links ul li a {
        font-size: 18px;
        line-height: 20px;
        color: #000;
        font-family: 'Inter';
        font-weight: 400;
    }

    .news-letter form input[type="text"] {
        padding: 10px 20px;
        width: 100%;
        margin: 0 0 20px 0;
        background-color: #fff;
        border: none;
    }

    .news-letter form button.theme3 {
        width: 100%;
    }

    .footerSec-social ul {
        display: flex;
        align-items: center;
        justify-content: left;
        gap: 6px;
        margin: 20px 0px 0px 10px;
    }

    .footerSec-logo {
        text-align: left;
    }

    .footerSec-logo a img {
        width: 67%;
    }

    .footerSec-social ul li a i {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        border-radius: 100px;
        color: #fff;
        font-size: 23px;
    }

    .footerSec-social ul li a.face i {
        background: #3b5998;
    }
    

    .footerSec-social ul li a.in i {
        background: #262626;
    }
    

    .footerSec-social ul li a.twi i {
        background: #2296f9;
    }
    

    .footerSec-social ul li a.pin i {
        background: #cd1f29;
    }

    .footer-btm {
        padding: 20px 0;
        border-top: 2px solid #000;
        margin: 30px 0 0 0;
        background: #2a80c9;
    }

    .copy-main {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .copy-txt p {
        color: #fff;
        font-size: 16px;
        line-height: 20px;
        margin: 0;
        font-family: 'Inter';
        font-weight: 500;
    }
    
.news-letter ul li a {
    display: flex;
    align-items: center;
    color: #000;
    gap: 12px;
    margin-bottom: 23px;
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 500;
}
.news-letter ul li a p{
    color: #000;
    margin: 0;
}
.foot-links {
    margin-left: 80px;
}

.news-letter {
    margin-left: 40px;
}
.news-letter ul li a {
    font-size: 24px;
    color: #3a82c7;
}
/* Footer css Ends*/


/*inner Banner Start*/

.inner-banner-sec {
    background-image: url(../images/inner-banner.jpg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0px;
    background-position: center;
}

.inner-banner-text h2 {
    font-family: 'Geologica';
    font-size: 68px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.inner-banner-text ul li {
    font-family: 'Inter';
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

.inner-banner-text ul li a {
    font-weight: 400;
    color: #ffffff7a;
}

.inner-banner-text ul {
    display: flex;
    gap: 10px;
    color: #fff;
    justify-content: center;
}

.inner-banner-text {
    text-align: center;
}

.inner-banner-text ul li a:hover {
    color: #2a80c9;
}
section.about-pg-sec .text-about {
    margin-left: 0px;
    padding-right: 40px;
}

/*Inner Banner End*/


/*inventory Page Start*/

ul.inventory-list-text li {
    list-style: disc;
    color: #fff;
    margin-left: 20px;
}

.text-about p a {
    color: #ffffffcf;
}

.inventory-pg-sec .img-aboutus img {
    width: 100%;
}

.inventory-pg-sec .img-aboutus {
    padding-left: 50px;
}

section.about-pg-sec.inventory-pg-sec .row {
    align-items: center;
}
/*inventory Page End*/


/* Contact page Starts  */

.contact-sec .contact-sec {
  background: white;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 1200px;
  overflow: hidden;
}


.contact-sec .contact-left h2 {
  font-weight: 500;
  margin-bottom: 25px;
  color: #fff;
  font-family: 'Geologica';
  font-size: 39px;
  font-weight: 700;
}
.contact-sec .contact-left p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  width: 100%;
}
.contact-sec .contact-info {
  margin-bottom: 40px;
}
.contact-sec .contact-info i {
  font-size: 43px;
  margin-right: 15px;
  color: #2a80ca;
  /* width: 60px; */
  /* height: 60px; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.contact-sec .contact-info small {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter';
  font-size: 22px;
}

.contact-sec .contact-right h3 {
  font-weight: bold;
  margin-bottom: 30px;
}

.contact-sec .form-control {
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
  background-color: unset;
  height: 50px;
  margin: 0 0 18px 0;
  border: 1px solid #454342;
  color: #fff;
  background: #454342;
  border-radius: unset;
  font-family: 'Inter';
  font-size: 14px;
}

.contact-sec textarea.form-control {
  resize: none;
  height: 191px;
  margin: 0px 0 0 0;
  padding: 20px 14px;
  color: #fff;
}

section.contact-sec {
  padding: 60px 0 100px;
  position: relative;
  z-index: 2;
}
.contact-right {
  border-radius: 0 10px 10px 0;
}
.col-md-6.contact-right h2 {
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 0;
  margin-bottom: 10px;
  font-family: 'Geologica';
  font-size: 39px;
  font-weight: 700;
}
section.contact-sec .row {
  align-items: start;
}

.sbmt-btn {
  margin-top: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  text-align: center;
}
.contact-map iframe {
    width: 100%;
}

.contact-map {
    margin-top: 40px;
}
.contact-sec .form-control::placeholder {
    color: #fffffff2;
}
.contact-info a {
    font-size: 22px;
    font-family: 'Inter';
}

.sbmt-btn button {
    border: unset;
    padding: 12px 19px;
    width: fit-content;
    background: #0a7ecb;
    color: #fff;
    border-radius: 1px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}
/* Contact us page Ends */