@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;
    line-height: 1.2;
}


/***** 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
}

@font-face {
    font-family: 'anton';
    src: url(../fonts/anton.ttf);
  
    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;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #242889;
    position: relative;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #72d219;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}
.header_btn a {
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    background: #cbff54;
    align-items: center;
    border-radius: 50px;
    color: #101407;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}
.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.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: 'anton';
    font-size: 81px;
    line-height: 83px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
    text-transform: uppercase;
}

h2 {
    font-family: 'anton';
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'anton';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'anton';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'anton';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'anton';
    font-size: 18px;
    line-height: 1.2;
    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 .row {
    align-items: center;
}
.menuSec {
    padding: 20px 0;
}
.menuSec.wow.fadeInLeft .row {
    align-items: center;
}
.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    justify-content: start;
    gap: 42px;
}

.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: #fff;
    /* padding: 10px 23px; */
    font-size: 14px;
}

/*.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: #28b16d;
}

.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 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;
}


header {
    position: absolute;
    width: 100%;
    margin:  0 auto;
    z-index: 99;
}
/*banner css start */

.banner {
    background-image: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    
}
.banner .row {
    align-items: center;
}
.banner_img img {
    height: 87vh;
}

.banner {
    padding: 115px 0 91px;
    position: relative;
    z-index: 0;
}
.banner-box-1.\32 {
    background: #fff;
    border-radius: 0;
}

.banner-boxes {
    position: absolute;
    bottom: -20px;
    width: 76%;
    right: 100px;
}

.banner-box-1 h4 {
    color: #000;
    font-size: 30px;
    text-transform: uppercase;
}

.banner-box-1 p {
    font-weight: 500;
}
.banner-boxes ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0;
}
.banner-box-1.\33 {
    border-radius: 0 18px 0 0;
}
.banner-box-1 {
    background: #cbff54;
    /* padding: 34px; */
    height: 170px;
    width: 100%;
    display: block;
    align-items: center;
    padding-left: 17px;
    padding-top: 39px;
    border-radius: 18px 0 0 0;
}
.banner_img {
    text-align: center;
}
.banner-text p {
    color: #ffffff59;
    text-align: justify;
    width: 95%;
}



.banner-text a {
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    background: #cbff54;
    align-items: center;
    border-radius: 50px;
    color: #101407;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}




/* Footer Sec Css Starts */

.footer-sec {
  position: relative;
  background-color: #f5f5f5;
}

.footer-top-sec {
  /* position: relative; */
  padding: 60px 0 0;
  z-index: 1;
  background: #031610;
}

.footer-contact-main {
  /* padding: 10px 0 0; */
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.footer-contact-heading {
  /* margin-bottom: 36px; */
}

.footer-contact-heading h3 {
  font-size: 58px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-contact-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 52px;
  min-width: 52px;
  border-radius: 100px;
  background: #cbff54;
}

.footer-contact-icon i {
  font-size: 20px;
  line-height: 1;
  color: #000;
}

.footer-contact-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-txt span {
  font-size: 15px;
  line-height: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #ffffff;
}

.footer-contact-txt a {
  font-size: 18px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #ffffff;
}

.footer-contact-txt a:hover {
  color: var(--ct1);
}

.footer-form-card {
  background-color: #fff;
  /* border-radius: 5px; */
  padding: 42px 36px 34px;
  box-shadow: 0 0 20px 0 #00000017;
  position: relative;
  z-index: 9999;
  margin-bottom: -22px;
}
.footer-form-heading h3 {
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 400;
}
.footer-form-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-form-heading p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  color: #8a8a8a;
  opacity: 1;
  max-width: 520px;
}

.footer-form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-field input,
.footer-field textarea {
  width: 100%;
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  background-color: transparent;
  padding: 0 22px;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
}

.footer-field input {
  height: 62px;
}

.footer-field textarea {
  height: 140px;
  padding-top: 18px;
  resize: none;
}

.footer-field input::placeholder,
.footer-field textarea::placeholder {
  color: #8a8a8a;
  opacity: 1;
}

.footer-form-btn {
  margin-top: 6px;
}
button.theme1.theme-btn:hover {
    color: #fff;
}
.footer-form-btn .theme1 {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  border: 0;
  background: #cbff54;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

.footer-main-sec {
  /* background: linear-gradient(90deg, #241f1f 0%, #2a2323 100%); */
  margin-top: -340px;
  padding: 53px 0 0;
  position: relative;
  background-image: url(../images/footer-back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 461px;
  z-index: 4;
}

.footer-main-wrap {
  width: 55%;
  display: flex;
  align-items: stretch;
  justify-content: start;
  gap: 40px;
  position: relative;
  z-index: 9;
  padding-bottom: 30px;
}

.footer-brand-main {
  width: 52%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-logo h3 {
  font-size: 62px;
  line-height: 0.9;
  font-weight: 700;
  color: var(--wt);
}

.footer-logo h4 {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: var(--wt);
}

.footer-brand-txt p {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
  opacity: 1;
  max-width: 320px;
}

.footer-social-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 15px;
}

.footer-social-main h4 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  color: #fff;
}

.footer-social-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.5s ease;
}

.footer-social-icon i {
  font-size: 18px;
  line-height: 1;
}

.footer-social-icon:hover {
  background: #cbff54;
  border-color: transparent;
  color: var(--wt);
}

.footer-main-divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.18);
}

.footer-links-main {
  width: 28%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-links-main h4 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.footer-links-main ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links-main ul li a {
  font-size: 15px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
  transition: all 0.5s ease;
}

.footer-links-main ul li a:hover {
  color: var(--wt);
  padding-left: 4px;
}

.footer-bottom-sec {
  width: 100%;
  position: relative;
  z-index: 4;
}

.footer-bottom-sec::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 49%;
  background-color: #22262a;
  z-index: -4;
}

.footer-bottom-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 51%;
  padding: 50px 0 30px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 103px;
}

.footer-bottom-main p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #2b2b2b;
  opacity: 1;
  text-align: center;
  padding-left: 21%;
}

/* Footer Sec Css Ends */
.about_sec {
    padding: 100px 0;
    background: #031610;
}

.about_img img {
    height: 530px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
}

.about_text h2 {
    color: #fff;
    text-transform: uppercase;
}

.about_sec .row {
    align-items: center;
}

.about_img p {
    color: #fff;
}

.about_text p {
    color: #737e7b;
    line-height: 24px;
}

.about_btn {
    display: flex;
    align-items: center;
    gap: 16px;
}

.headphones {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about_btn a {
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    background: #cbff54;
    align-items: center;
    border-radius: 50px;
    color: #101407;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

.headphones p {
    margin: 0;
    color: #737e7b;
}

.headphones a {
    background: unset;
    color: #fff;
    height: unset;
    width: unset;
    display: block;
    font-family: 'anton';
    font-size: 23px;
}
.services_sec {
    background: #031610;
    padding: 0 0 100px 0;
}

.serives_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.serives_content h2 {
    text-transform: uppercase;
    color: #fff;
    width: 70%;
    margin-bottom: 11px;
}

.serives_content p {
    width: 70%;
    color: #737e6d;
}

.serives_content {
    margin-bottom: 32px;
}

.serives_content a {
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    background: #cbff54;
    align-items: center;
    border-radius: 50px;
    color: #101407;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

.serives_box img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.serives_box_text {
    padding: 30px;
    border: 1px solid;
    border-radius: 0 0 15px 15px;
}
.serives_box_text:hover {
    background: #cbff54;
    border: 0;
}
.serives_box_text:hover h4 {
    color: #000;
}

.serives_box_text:hover p {
    color: #000;
}
.serives_box_text:hover h6 {
    display: flex;
}

.serives_box_text:hover a {
    display: flex;
}
.serives_box_text h4 {
    color: #fff;
    text-transform: uppercase;
}

.serives_box_text p {
    width: 99%;
    color: #737e6d;
    line-height: 27px;
}
.serives_box_text h6 span i {
    padding-left: 12px;
}
.serives_box_text h6 i {
    padding-right: 6px;
}
.serives_box_text h6 {
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins';
    color: #1d250c;
    font-size: 15px;
    font-weight: 300;
    display: none;
}

.serives_box_text a {
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    background: #ffffff;
    align-items: center;
    border-radius: 50px;
    color: #101407;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: none;
}

.why_sec {
    background-image: url(../images/why-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 750px;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.why_box.bottoms {
    margin-top: -27px;
}

.why_box.bottoms img {
    margin-bottom: 15px;
}

.why_sec .container::before {
    position: absolute;
    content: '';
    width: 85%;
    height: 1px;
    background: #7b8484;
    top: 54.50%;
    z-index: -2;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.why_content {
    text-align: center;
    width: 60%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.why_content h2 {
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 10px;
}

.why_content p {
    color: #818b88;
}

.why_box h4 {
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
}

.why_box p {
    color: #818b88;
    font-size: 13px;
    width: 84%;
    line-height: 21px;
}
.why_box img {
    margin-bottom: 10px;
}

.why_main img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 20px;
}
.booking_sec {
    background: #031610;
    padding: 350px 0 100px;
}

.booking_img img {
    height: 540px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.booking_text h2 {
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    padding-bottom: 13px;
}

.booking_text p {
    color: #e1e3e2;
}

.booking_text_list h4 {
    text-transform: uppercase;
    color: #354540;
}

.booking_text_list p {
    color: #354540;
}

.booking_text_list {
    padding-left: 22px;
    position: relative;
    z-index: 1;
}
.booking_text_list:hover h4 {
    color: #fff;
}

.booking_text_list:hover p {
    color: #9aa29f;
}
.booking_text_list:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #ffffff26;
    left: 0;
}

.booking_text_list h4:before {
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    background: aliceblue;
    left: -3px;
    border-radius: 50px;
}


.testimonial-section {
  background: #031610;
}
p#testimonialText {
    font-weight: 400;
    padding-top: 14px;
    line-height: 20px;
}

.thumbs img::last-child  {
    display:none;
}
.thumbs img {
  width: 139px;
  height: 138px;
  object-fit: cover;
  border-radius: 10px;
  margin: 5px;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s;
}

.thumbs img.active {
  opacity: 1;
  /* border: 2px solid #9cff00; */
}

.main-img {
  width: 100%;
  border-radius: 14px;
  height: 502px;
  object-fit: cover;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: 0;
}

.prev {right: -65px;top: 34px;}
.next {right: -126px;top: 34px;}
button.nav-btn i {
    color: #fff;
}

button.nav-btn:hover {
    background: #cbff54;
    border: 0;
}

button.nav-btn:hover i {
    color: #000;
}
.quote-box {
  color: #cfcfcf;
}

.quote-icon {
  font-size: 40px;
  color: #9cff00;
}
.text-light {
    color: #f8f9fa !important;
    width: 55%;
    margin: 0 auto;
}

h5#clientName {
    /* text-align: end; */
    margin-bottom: 0;
    font-size: 28px;
}

small.text-light {
    /* text-align: end; */
    /* width: 100%; */
    /* display: flex; */
    /* justify-content: end; */
}

.stars.text-warning.mt-2 {
    /* text-align: end; */
    margin: 0 !important;
    font-size: 12px;
    margin-top: -4px !important;
}


.theme-btn {
    position: relative;
    z-index: 2;
    border: 0;
}

.theme-btn::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    background: #000;
    border-radius: 50px;
    z-index: -1;
    transition: .5s all;
}

.theme-btn:hover::before {
    width: 100%;
    height: 100%;
}
a.theme-btn:hover {
    color: #fff;
}
.thumbs {
    position: relative;
    top: -71px;
}
.thumbs_text {text-align: start;width: 50%;margin-left: 50%;margin-top: 130px;}
/* Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}