@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --theme-color: #000000;
  --theme-color-second:#79c043;
  --theme-color-third: #273996;

  --heading-font:  "Inter Tight", sans-serif;
  --paragraph-font:  "Inter Tight", sans-serif;
  --span-font: 'spanist';



  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x:  "Inter Tight", sans-serif;
  font-family: "Urbanist", sans-serif;
  /* color: var(--theme-color) !important; */
}


a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
    font-size: 68px;
    line-height: normal;
    margin-bottom: 0;
}
h2 {
  font-size: 50px;
}

h3 {}

h4{}

h5{}

h6{}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}
.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop > div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
    width: 138px;
}
.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 13rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

a.btn-2{
  background-color: var(--theme-color-third);
}

a.comon-btn:hover {
  background: var(--theme-color);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: capitalize;
  padding: 29px 19px;
  display: inline-block;
  font-weight: 500;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}



#main_header a.call {
  color: var(--theme-color);
  font-size: 16px;
}

#main_header a.call b{
  color: var(--theme-color-third);
  font-weight: 800;
}
#main_header li.second-drop {
    position: relative;
}

#main_header li.second-drop  ul.second-drop-menu {
    position: absolute;
    top: 0;
    background: #fff;
    left: 200px;
    width: 348px;
    opacity: 0;
    visibility: hidden;
    height: 355px;
    overflow-y: scroll;
}

#main_header li.second-drop:hover ul.second-drop-menu {
   
    opacity: 1;
    visibility: visible;
}

#main_header li.second-drop .width-custom {
    width: 260px!important;
    min-height:260px!important;
}
.banner{
  height: 90vh;
}
.banner h1{
  font-weight: 800;
  text-transform: uppercase;
}

.banner h1 span{
  font-size: 85px;
}

.banner p{
  font-size: 22px;
}

.about_sec h2{
  text-transform: uppercase;
  font-weight: 700;
  color: var(--theme-color-third);
}

.what_we_do h2 {
  text-transform: uppercase;
  font-weight: 800;
  color: var(--theme-color-third);
}

.what_we_do .serv-box{
  position: relative;
  height: 100%;
}
.what_we_do .serv-box .fit-object{
  height: 100%;
  object-fit: cover;
}
.what_we_do .over-lay {
  position: absolute;
  padding: 4% 6%;
  bottom: 0;
  width: 100%;
}
.what_we_do .over-lay  h4{
  margin-bottom: 0;
  font-size: 35px;
}

.home_sec_6 p b{
  color: var(--theme-color-third);
}

.home_sec_6 h2{
  text-transform: uppercase;
  font-weight: 600;
  color: var(--theme-color-third);
  margin: 0;
}

.home_sec_6 h4 {
    font-size: 18px;
}

.home_sec_6 .trading-box p{
  font-size: 14px;
  line-height: normal;
  margin-bottom: 0;
}
.home_sec_6{
  padding-bottom: 125px;
}

.home_sec_7 li {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-direction: row-reverse;
}
.home_sec_7 li i{
  color: #79c043;
}

.home_sec_7 h2{
   text-transform: uppercase;
  font-weight: 700;
  color: var(--theme-color-third);
}

.video_sec .video-box .img-box{
  position: relative;
}

.video_sec .video-box i{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  font-size: 45px;
  color: #000;
  border: 5px soldi #fff;
}


.faq .heading{
  margin-right: 60px;
}

.faq h2 span{
  font-weight: 300;
  text-align: end;
  
}
.faq .heading{
  position: relative;
}
.faq .heading img {
  position: absolute;
  width: 170px;
  top: -42px;
  left: -70px;
}
.faq .accordion-button {
  
  background-color: #e7e7e7;
  border: 0;
  border-radius: 0;
 
  font-weight: 600;
  letter-spacing: 1px;
}

.faq .accordion-body {
 background: var(--theme-color-third);
 color: #fff;
}
button:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

.faq .accordion-body p{
  font-size: 15px;
}
.faq .accordion-item {
  margin-bottom: 15px;
  border: 1px solid #bcbcbc!important;
  /* background-color: #bcbcbc!important; */
}
.faq .accordion-button:not(.collapsed) {
  color: #fff;
  background-color:var(--theme-color-third);
  box-shadow:none;
}

.faq .accordion-button:not(.collapsed)::after {
  background-image: url(../image/down.png);
 
}


.contact_us .map{
  line-height: 0;
  border: 5px solid var(--theme-color-second);
  height: 100%;
}
.contact_us .map iframe{
  height: 100%;

}
.map{
  line-height: 0;
}

.map iframe{
  width: 100%;

}

.contact_us h2 {
   text-transform: uppercase;
  font-weight: 700;
  color: var(--theme-color-third);
  margin: 0;
}
.contact_us  form input{
  padding: 12px 10px;
  width: 100%;
  border: none;
  border: 1px solid #ddd;
}

.contact_us  form textarea{
  padding: 12px 10px;
  width: 100%;
  border: none;
  border: 1px solid #ddd;
  height: 150px;
}
.contact_us  form button{
  padding: 12px 10px;
  width: 100%;
  border: none;
  
  background-color: var(--theme-color-third);
  color: #fff;
  text-transform: uppercase;
}


.footer {
  background-color: var(--theme-color-third);
  color: #fff;
  padding: 50px 0;
}

.footer select{
  width: 100px;
  height: 40px;
  padding: 2px 6px;
  background-color: transparent;
  color: #fff;
  border: none;
  margin-bottom: 10px;

}

.footer ul.ft-list li {
    margin-bottom: 11px;
}

.footer ul.ft-list li a{
  color: #fff;
  font-size: 15px;
}

.footer ul.contact-list li {
    display: flex;
    align-items: start;
    gap: 14px;
    text-align: justify;
    margin-bottom: 18px;
}

.footer ul.contact-list li i{
  height: 40px;
  min-width: 40px;
  background-color: #fff;
  display: flex;
  border-radius: 600px;
  align-items: center;
  justify-content: center;
  color: #000;
}

.footer ul.contact-list li a p , .footer ul.contact-list li a h6{
  color: #fff;
}

.footer ul.social {
    display: flex;
    gap: 10px;
    font-size: 39px;
}
.footer ul.social li a{
  color: #fff;
}

.footer .social-2 {
  display: flex;
  gap: 5px;
}
.footer ul.social-2 li a{
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 600px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* our-blog */

.our-blog .img-box{
  position: relative;
}


.our-blog .img-box .head-date {
  position: absolute;
  width: 120px;
  height: 120px;
  text-align: center;
  box-shadow: var(--shadow-large);
  background-color: #FFF;
  border-radius: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

 .our-blog .img-box .head-date p{
  font-size: 14px;
}
.our-blog .img-box .head-date p span{
  font-size: 17px;
  letter-spacing: 2px;
}

.our-blog .img-box {
  margin-bottom: 15px;
}
.our-blog .blog-box p{
  font-weight: 600;
}
.our-blog .blog-box a{
  color: #1e1e1e;
  font-weight: 600;
}

.blog .date-box {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.our-blog  ul.pagination {
  justify-content: center;
}
.our-blog .active > .page-link, .our-blog  .page-link.active {
  z-index: 3;
  color: #000000;
  background-color: #f9e8ce;
  border-color: #f9e8ce;
}

.our-blog  .page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid
  var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
  border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-weight: 800;
  color: #000000;
}


.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 15px 19px 35px;
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
  /* font-size: 29px; */
}

.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}


/* inner-blog-right-sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.inner-blog-right-sec .blog-search form button {
  /* position: absolute;
top: 0;
right: 0;
width: 50px;
height: 100%; */
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}


.contact-info .contact-box i{
  font-size: 35px;
  color: var(--theme-color-third);
}

.contact-info .contact-box  p{
  opacity: 0.5;
  margin: 0;
}

.contact-info .contact-box-2 h5{
  font-size: 18px;
}
.contact-info .contact-box-2  p{
  font-size: 15px;
  line-height: normal;
}
.contact-info .contact-box-2 i{
  font-size: 25px;
}

.oil_farm_1 h2 , .oil_farm_1 h4{
  font-weight: 700;
  text-transform: uppercase;
}
.our_office .location li {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.our_office .location li p a{
  color: #000;
  font-weight: 600;
}
.our_office .location li p {
    margin-bottom: 1px;
}
.our_office .location li h6{
  margin-bottom: 10px;
}

.company_profile ul li a{
  display: flex;
  gap: 10px;
}

.company_profile ul li a i {
  font-size: 19px;
  color: var(--theme-color-third);
}

.company_profile ul li a {
  color: #000;
}


input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-submit {
    padding: 12px 10px !important;
    width: 100%;
    border: none;
    background-color: #273996 !important;
    color: #fff !important;
    text-transform: uppercase !important;
}

.form-home p {
  margin-bottom: 0px !important;
}
.form-contact p {
  margin-bottom: 0px !important;
}



a.prev.page-numbers {
    position: relative;
    padding: .375rem .75rem;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
a.page-numbers {
    position: relative;
    padding: .375rem .75rem;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

span.page-numbers.current {
    position: relative;
    padding: .375rem .75rem;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	z-index: 3;
color: #fff !important;
background-color: #0d6efd !important;
border-color: #0d6efd !important;
}

a.prev.page-numbers {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
a.next.page-numbers {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
input#submit {
    color: #ffffff;
    background-color: #000;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #000;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 400;
    transition: 0.5s;
}