/******** Google Fonts ********/



@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



/******** Color Schemes ********/



:root {

  --c-primary-dark: #242424;

  --c-orange: #235fac;

  --c-white: #ffffff;

  --c-black: #000000;

  --c-shape: #121c22;

  --c-text: #181818;

  --c-grey: #909090;

  --c-bg: #f7f7f7;



  --ff-primary: 'Roboto', sans-serif;

}





/******** CSS Resets ********/

* {

  padding: 0;

  margin: 0 auto;

}



ul {

  margin: 0;

  padding: 0;

}



li {

  list-style: none;

}



a:focus, a:hover {

  outline: none;

}



a {

  -webkit-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;

  text-decoration: none;

}



a:hover {

  text-decoration: none;

}



p {

  margin: 0;

  padding: 0;

  font-size: 15px;

  color: var(--c-grey);

  line-height: 26px;

  font-weight: 400;

}



body {

  font-family: var(--ff-primary);

  font-size: 16px;

  color: var(--c-text);

}



h1, h2, h3, h4, h5, h6 {

  font-family: var(--ff-primary);

  margin-bottom: 0;

}



/******** Utility Classes ********/



.container {

  width: 100%;

  max-width: 1200px;

}



.container-alt {

  width: 100%;

  max-width: 1230px;

}



.custom-pad {

  padding: 110px 0;

}





/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+toggle-nav-css-start=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+*/

.navbar-default .navbar-toggler .icon-bar {

  background-color: #fff;

}



.navbar-toggler .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}



.navbar-default .navbar-toggler .icon-bar {

  background-color: #fff;

}



.navbar-default .navbar-toggler {

  border-color: #5f4b8b;

  background: #5f4b8b;

  outline: none;

}



.navbar-toggler {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}



.navbar-toggler .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}



.navbar-toggler .icon-bar + .icon-bar {

  margin-top: 4px;

}



.navbar-toggler .icon-bar + .icon-bar {

  margin-top: 4px;

}



.navbar-header {

  display: none;

}



/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+toggle-nav-css-end=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+*/



/*Custom-Heading*/

.custom-heading h2 {

  font-size: 50px;

  font-weight: 800;

  line-height: 64px;

  color: var(--c-primary-dark);

  text-transform: capitalize;

}

.custom-heading h5 {

  position: relative;

  color: var(--c-orange);

  font-size: 15px;

  font-weight: 700;

  text-transform: uppercase;

  margin-bottom: 15px;

  text-align: center;

}

.custom-heading h5::after {

  position: absolute;

  content: '';

  background-color: var(--c-orange);

  width: 40px;

  height: 2px;

  top: 8px;

  left: -150px;

  margin: 0 auto;

  text-align: center;

  right: 0;

}

.custom-heading h5::before {

  position: absolute;

  content: '';

  background-color: var(--c-orange);

  width: 40px;

  height: 2px;

  top: 8px;

  left: 0px;

  margin: 0 auto;

  text-align: center;

  right: -150px;

}



/*Custom-button*/

.custom-btn {

  font-size: 14px;

  font-weight: 700;

  text-transform: uppercase;

  color: var(--c-orange);

  position: relative;

}

.custom-btn::after {

  position: absolute;

  content: '';

  background-color: var(--c-orange);

  width: 35px;

  height: 2px;

  bottom: -6px;

  left: 0;

  transition: all 0.3s ease-in-out;

}

.custom-btn:hover::after {

  background-color: var(--c-grey);

}

.custom-btn:hover {

  color: var(--c-grey);

}





/*Custom-innre-banner*/

.custom-inner-banner {

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center center;

  padding: 210px 0 170px;

  background-attachment: fixed;

  position: relative;

}

.custom-inner-banner::after {

  content: '';

  position: absolute;

  left: 0;

  right: 0;

  top: 0;

  bottom: 0;

  height: 100%;

  width: 100%;

  background-color: rgba(18,28,34,.85);

  z-index: 0;

}

.custom-inner-banner .inner-banner-content {

  position: relative;

  text-align: center;

  z-index: 1;

}

.custom-inner-banner .breadcrumb {

  justify-content: center;

  align-items: baseline;

}

.custom-inner-banner .inner-banner-content h1 {

  color: var(--c-white);

  margin-bottom: 5px;

  text-transform: uppercase;

  font-size: 58px;

  font-weight: 700;

  line-height: 70px;

  position: relative;

}


.custom-inner-banner .breadcrumb .breadcrumb-item {

  margin: 0;

}

.custom-inner-banner .breadcrumb-item + .breadcrumb-item::before {

  color: var(--c-bg);

}

.custom-inner-banner .breadcrumb .breadcrumb-item a:hover {

  color: var(--c-orange);

}

.custom-inner-banner .breadcrumb .breadcrumb-item a {

  font-family: var(--ff-primary);

  font-size: 22px;

  color: var(--c-white);

}

.custom-inner-banner .breadcrumb .breadcrumb-item.active {

  font-family: var(--ff-primary);

  font-size: 22px;

  color: var(--c-orange);

}





/*Header*/

.sub-menu {

  position: absolute;

  top: 55px;

  background-color: var(--c-white);

  z-index: 9;

  width: 260px;

  display: none;

}

.menu-item:hover .sub-menu {

  display: block;

}

.sub-menu .nav-link {

  padding-bottom: 15px !important;

}

.sub-menu li {

  padding: 0 !important;

  margin: 0;

}

.custom-header {

  padding: 32px 0 8px 0 !important;

  position: relative;

}

.custom-header .navbar-brand.ms-0.py-0 {

  display: none;

}

.custom-header .nav-item .nav-link {

  font-size: 15px;

  font-weight: 700;

  color: var(--c-text);

  position: relative;

  padding-bottom: 30px;

}

.custom-header .nav-item .nav-link:hover {

  color: var(--c-orange);

}

.custom-header .nav-item {

  padding: 0px 0px 0 24px;

  position: relative;

}

.custom-header .nav-item .nav-link::after {

  position: absolute;

  content: '';

  background-color: var(--c-orange);

  width: 0%;

  height: 2px;

  bottom: 0;

  right: 0;

  transition: all 0.3s ease-in-out;

}

.custom-header .nav-item .nav-link:hover::after {

 left: 0;

 width: 100%;

}

.custom-header .header-logo img {

  height: 100%;

  object-fit: cover;

}

.custom-header .header-logo {

  text-align: center;

}

.header-btn a {

  background-color: var(--c-orange);

  padding: 40px 88px 41px;

  color: var(--c-white);

  font-size: 17px;

  font-weight: 600;

  text-transform: capitalize;

}

.header-btn a:hover {

  background-color: var(--c-primary-dark);

}

.header-btn {

  position: absolute;

  top: 37px;

  right: 0px;

}



/*header-search*/

.custom-header .header-search {

  text-align: right;

}

.custom-header .header-search input[type="checkbox"] {

  width: 600px;

  height: 32px;

  position: relative;

  z-index: 3;

  top: 25px;

  opacity: 0;

}

.custom-header .header-search input[type="checkbox"]:checked + label {

  background-color: red;

  height: 100%;

}

.custom-header .header-search modal {

  min-width: 200px !important;

}

.custom-header .header-search  .modal-header {

  border-bottom: 1px solid transparent;

}

.custom-header .header-search .modal-body {

  margin: 0;

}

.custom-header .header-search .modal-header {

  padding: 0rem;

  position: absolute;

  right: 20px;

  bottom: 25px;

  z-index: 99;

}

.custom-header .header-search .modal-dialog {

  max-width: 640px;

  margin: 130px auto;

}

.custom-header .header-search .btn-primary {

  color:  var(--c-black);

  background-color: transparent;

  border-color: transparent;

}

.custom-header .header-search .btn-primary:hover {

  color:  var(--c-orange);



}

.custom-header .header-search  .btn-check:focus + .btn-primary, .btn-primary:focus {

  box-shadow: 0 0 0 .25rem rgba(255,255,255,0);

}





/*header-search*/









/*Banner*/

.banner .d-block {

  object-fit: cover;

  height: 980px;

}

.banner {

  position: relative;

}

.banner-content {

  text-align: left;

}

.banner .custom-caption {

  left: 0;

  right: 0;

  top: 50%;

  bottom: auto;

  transform: translateY(-50%);

}

.banner-content h1 {

  font-size: 58px;

  font-weight: 700;

  line-height: 70px;

}

.banner-content h1 span {

  position: relative;

}

.banner-content h1 span::after {

  position: absolute;

  content: '';

  background-color: var(--c-orange);

  width: 340px;

  height: 12px;

  bottom: 8px;

  left: 0;

  z-index: -1;

  border-radius: 3px;

}

.banner-content p {

  margin-top: 25px;

  font-size: 18px;

  color: var(--c-white);

}

.banner-btn {

  margin-top: 40px;

}

.banner-btn a {

  background-color: var(--c-orange);

  padding: 22px 55px;

  color: var(--c-white);

  font-size: 14px;

  font-weight: 700;

  display: inline-block;

}

.banner-btn a:hover {

  background-color: var(--c-white);

  color: var(--c-text);

}

/*.banner .carousel-control-prev {

  display: none;

}

.banner .carousel-control-next {

  display: none;

}*/

.banner .banner-contact a {

  font-size: 22px;

  font-weight: 500;

  color: var(--c-white);

}

.banner .banner-contact a:hover {

  color: var(--c-orange);

}

.banner .banner-contact {

  position: absolute;

  bottom: 0;

  right: 0;

  background-color: var(--c-shape);

  padding: 62px 224px 62px 110px;

}

.banner .carousel-indicators {

  margin: 0;

  right: auto;

  transform: rotate(90deg);

  bottom: 40%;

  display: unset;

  z-index: 20;

  left: -25px;

}

/* .banner::after {

  position: absolute;

  content: '';

  background-color: var(--c-white);

  height: 100%;

  width: 100px;

  top: 0;

  left: 0;

  z-index: 0;

} */

.banner .carousel-indicators [data-bs-target] {

  width: 1px;

  height: 50px;

  background-color: var(--c-black);

  transform: rotate(90deg);

  margin-right: 70px;

  margin-left: 0px;

}

.banner .carousel-indicators .active {

  opacity: 1;

  height: 110px !important;

  background-color: var(--c-orange) !important;

}

.banner .carousel-control-prev p {

  font-size: 15px;

  color: var(--c-grey);

  opacity: 1;

  position: absolute;

  left: 40px;

  top: 37%;

  font-family: var(--ff-primary);

}

.banner .carousel-control-next p {

  font-size: 15px;

  color: var(--c-grey);

  opacity: 1;

  font-family: var(--ff-primary);

}

.banner .carousel-control-next {

  position: absolute;

  left: 0;

}

.banner .carousel-control-next-icon {

  background-image: none;

  position: absolute;

  left: 30px;

  top: 60%;

}

.banner .carousel-control-next-icon {

  background-image: none;

}

.banner .carousel-control-prev-icon {

  background-image: none;

}

















/*Home-service*/

.service {

  background-color: var(--c-bg);

}

.service .service-heading {

  text-align: center;

}

.service .service-heading p {

  margin-top: 22px;

  padding: 0 100px;

}

.service-box {

  margin-top: 15px;

}

.service-box-wrap .service-box-img img {

  object-fit: cover;

  height: 200px;

  width: 100%;

  border-radius: 5px;

}

.service-content {

  background-color: var(--c-white);

  padding: 30px 30px;

  margin-top: -20px;

  position: relative;

  width: 94%;

  margin-right: 0;

  border-radius: 5px 0 0px 0px;

}

.service-content h4 {

  font-weight: 700;

  font-size: 17px;

  color: var(--c-text);

  padding-bottom: 20px;

  border-bottom: 1px dashed #d5d5d5;

}

.service-content p {

  padding-right: 30px;

  margin-top: 17px;

  min-height: 105px;

}

.service-content .service-box-btn {

  margin-top: 15px;

}

.service-box-wrap {

  margin-top: 60px;

}











/*Home-discover*/

.discover {

  background-color: var(--c-shape);

}

.discover .custom-heading  h2 {

  font-size: 50px;

  font-weight: 800;

  line-height: 64px;

  color: var(--c-white);

  padding-right: 50px;

}

.right-part p {

  color: var(--c-white);

  padding-left: 60px;

  margin-top: 25px;

}

.discover-btn {

  margin-top: 20px;

}

.discover-btn .custom-btn:hover {

  color: var(--c-white);

}

.discover-btn .custom-btn:hover::after {

  background-color: var(--c-white);

}

.discover-img-box img {

  width: 100%;

  object-fit: cover;

  height: 558px;

}

.discover-img {

  margin-top: 85px;

}

.discover-img-box {

  position: relative;

}

.discover-img-box::after {

  position: absolute;

  content: '';

  background-color: rgba(0,0,0,0.5);

  width: 100%;

  height: 100%;

  top: 0px;

  left: 0;

  z-index: 0;

}

.discover-img-box-heading {

  position: absolute;

  bottom: 60px;

  left: 50px;

  z-index: 2;

}

.discover-img-box-heading a {

  font-weight: 800;

  font-size: 26px;

  color: var(--c-white);

}

.discover-img-box-heading a:hover {

  color: var(--c-orange);

}











/*Footer*/

.footer-wrap {

  padding-top: 110px;

}

.footer-wrap .footer-logo-section .footer-logo {

  height: 100%;

  object-fit: cover;

}

.footer-content .footer-header {

  font-size: 20px;

  font-weight: 700;

  margin-bottom: 25px;

  margin-top: 15px;

}

.footer-logo-section .footer-header {

  margin-top: 60px;

}

.footer-logo-section p {

  margin-top: 25px;

  padding-right: 130px;

}

.footer-content a {

  color: var(--c-grey);

  font-size: 15px;

  font-weight: 400;

}

.footer-content a:hover {

  color: var(--c-orange) !important;

}

.footer-links li {

  padding: 0px 0 18px 0;

}

.footer-links li:last-child {

  padding: 0;

}

.footer-social ul li {

  display: inline-block;

  text-align: center;

  position: relative;

  width: 40px;

}

.footer-social ul li:first-child:before {

  position: absolute;

  content: '';

  background-color: var(--c-orange);

  width: 1px;

  height: 43px;
top: -10px;

  left: 40px;

}

.footer-social ul li:nth-child(2):before {

  position: absolute;

  content: '';

  background-color: var(--c-orange);

  width: 1px;

  height: 43px;
top: -10px;
  left: 40px;

}

.footer-social ul li:nth-child(3):before {

  position: absolute;

  content: '';

  background-color: var(--c-orange);

  width: 1px;

 height: 43px;
top: -10px;

  left: 40px;

}

.footer-social ul li:nth-child(3) {

  padding: 0px;

}

/* .footer-social {

  margin-top: 40px;

} */

.footer-social ul {

  position: relative;
	display:inline-block;

}

.footer-social ul::after {

  position: absolute;

  content: '';

  border: 1px solid var(--c-orange);

  width: 100%;

  height: 45px;

  top: -11px;

  left: 0;

}

.footer-social ul li a {

  color: var(--c-black);

  position: relative;

  z-index: 5;

}

.footer-social ul li a:hover {

  color: var(--c-orange);

}

.footer-wrap .copyright {

  text-align: center;

  padding: 55px 0;

  border-top: 2px solid #e8e8e8;

  margin-top: 80px;

}

.footer-wrap .copyright p {

  font-size: 16px;

  font-weight: 400;

}

.footer-content-4 {

  margin-left: 85px;

}







/*******Inner Page*******/



/*About Us*/

.about-service .service-content p {

  min-height: 140px;

}

.about-service .service-box-wrap {

  margin-top: 0px;

}

.about-service .service-box {

  margin-top: 0px;

}

.about-info-wrap {

  text-align: center;

}

.about-info .demo {

  margin-top: 22px;

  padding: 0 210px;

}

.about-info-content {

  margin-top: 50px;

}

.about-info-content p {

  padding: 0 0 0 0;

}

.about-info-content p {

  padding: 0 0px 30px 0px;

}

.about-info-content p:last-child {

  padding-bottom: 0px;

}

.about-info-content p a {

  color: var(--c-orange);

  font-weight: 500;

}

.about-info-content p a:hover {

  color: var(--c-text);

}

.about-story-img img {

  width: 800px;

  object-fit: cover;

  height: 450px;

  border-radius: 0 5px 0px 5px;

}

.about-story .right-part p {

  padding-left: 0px;

  color: #dedede;

}

.about-cta {

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center center;

  position: relative;

}

.about-cta::after {

  position: absolute;

  content: '';

  background-color: rgba(18,28,34,.9);

  width: 100%;

  height: 100%;

  top: 0px;

  left: 0;

  z-index: 0;

}

.about-cta-content {

  position: relative;

  z-index: 5;

}

.about-cta-img {

  position: relative;

  z-index: 5;

  text-align: center;

  background-color: var(--c-shape);

  border-radius: 0px 40px 0px 40px;

  border: 2px solid var(--c-bg);

}

.about-cta-content .custom-heading h2 {

  color: var(--c-white);

  padding-right: 200px;

}

.about-cta-content p {

  color: #dedede;

  margin-top: 50px;

  padding-right: 70px;

}

.about-story-img {

  position: relative;

  z-index: 3;

}

.about-story-img::after {

  position: absolute;

  content: '';

  background-color: var(--c-orange);

  width: 200px;

  height: 200px;

  bottom: -10px;

  left: -10px;

  z-index: -1;

  border-radius: 5px 0px 5px 5px;

}

.about-story-img::before {

  position: absolute;

  content: '';

  background-color: var(--c-orange);

  width: 200px;

  height: 200px;

  top: -10px;

  right: -10px;

  z-index: -1;

  border-radius: 5px 5px 5px 5px;

}

.about-story .discover-img {

  margin-top: 100px;

}

.about-cta-btn {

  margin-top: 40px;

}







/*Contact Us*/

.contact-inner-info {

  background-color: var(--c-bg);

}

.contact-inner-info-content .custom-heading {

  text-align: center;

}

.contact-inner-info-content p {

  font-size: 18px;

  margin-top: 20px;

}

.contact-inner-info-content p a {

  color: var(--c-orange);

  font-weight: 500;

}

.contact-inner-info-content p a:hover {

  color: var(--c-text);

}

.contact-inner-loctaion {

  margin-top: 60px;

}

.location-box .location-img img {

  width: 100%;

  object-fit: cover;

  height: 390px;

  border-radius: 0px 40px 0px 0px;

}

.location-box-text h3 {

  color: var(--c-text);

  font-size: 20px;

  text-transform: uppercase;

  font-weight: 600;

  min-height: 50px;

}

.location-box-text p {

  margin-top: 10px;

  font-size: 15px;

  min-height: 60px;

}

.location-box-text span {

  color: var(--c-primary-dark);

  font-size: 15px;

  display: inline-block;

  margin-top: 5px;

}

.location-box-text span a {

  color: var(--c-orange);

  font-weight: 500;

}

.location-box-text span a:hover {

  color: var(--c-primary-dark);

}

.location-box-text {

  padding: 25px 30px;

}

.location-box {

  background-color: var(--c-white);

  border-radius: 5px 40px 0 30px;
	width: 60%;
}

.facility {

  background-color: var(--c-orange);

  padding: 20px 10px;

  text-align: center;

  border-radius: 0px 20px 0 20px;

  margin-top: 30px;

}

.facility h4 {

  font-size: 30px;

  text-transform: capitalize;

  font-weight: 600;

  color: var(--c-white);

}

.facility a {

  margin-top: 10px;

  display: inline-block;

  color: var(--c-primary-dark);

  font-weight: 600;

}

.facility a:hover {

  color: var(--c-white);

}

.contact-form {

  background-color: var(--c-shape);

}

.contact-form .custom-heading h2 {

  padding: 0 220px;

  text-align: center;

  color: var(--c-white);

}

.contact-form-box {

  margin-top: 60px;

}

.checkout-categories {

  display: flex;

  padding: 20px 0px 30px;

}

.checkout-categories .form-check .form-check-label {

  font-size: 14px;

  font-weight: 400;

  color: var(--c-bg);

}

.checkout-categories .form-check .form-check-input:checked {

  background-color: var(--c-orange) !important;

  border-color: var(--c-orange) !important;

}

/*.contact-form-box form .col {

  margin-bottom: 15px;

}*/

.contact-form-box form .form-control::placeholder {

  color: var(--c-grey);

  opacity: 0.6;

  font-size: 14px;

}

.contact-form-box form textarea {

  height: 250px;

}

.contact-form-box form .form-control {

  padding: 16px 20px;

  border-radius: 0;

}

.contact-form-box form .demo {

  color: var(--c-bg);

}

.contact-form-box form .validation {

  font-size: 14px;

  font-weight: 400;

  color: var(--c-bg);

  margin-top: 20px;

}

.contact-form-box form .form-check-input:checked {

  background-color: var(--c-orange);

  border-color: var(--c-orange);

}

.form-privacy {

  margin-top: 20px;

}

.form-privacy p {

  color: var(--c-bg);

  padding: 5px 0;

}

.form-privacy p a {

  color: var(--c-orange);

  font-weight: 500;

}

.form-privacy p a:hover {

  color: var(--c-white);

}

.form-btn {

  margin-top: 30px;

}

.form-btn input {

  background-color: var(--c-orange);

  padding: 15px 60px;

  color: var(--c-white);

  font-size: 14px;

  font-weight: 700;

  display: inline-block;

  border: 2px solid transparent;

  transition: all 0.3s ease-in-out;

  text-transform: uppercase;

}

.form-btn input:hover {

  background-color: transparent;

  color: var(--c-orange);

  border: 2px solid var(--c-orange);

}







/*Blogs*/

.blog-boxes .blog-img img {

  width: 100%;

  object-fit: cover;

  border-radius: 0px 40px 0px 0;

}

.blog-inner {

  background-color: var(--c-bg);

}

.blog-boxes {

  background-color: var(--c-white);

  margin-bottom: 30px;

  border-radius: 0px 40px 0 40px;

}

.blog-box-content {

  padding: 30px 30px;

}

.blog-box-content h3 {

  font-size: 26px;

  font-weight: 600;

  color: var(--c-text);

  line-height: 36px;

  text-transform: capitalize;

}

.blog-box-content h5 {

  font-size: 15px;

  font-weight: 500;

  color: var(--c-orange);

  margin: 15px 0 18px 0;

}

.blog-box-content p {

  padding: 5px 0;

}

.blog-box-btn {

  margin-top: 12px;

}

.latest-blog {

  background-color: var(--c-white);

  padding: 0px 0px 30px;

}

.latest-blog h4 {

  font-size: 24px;

  font-weight: 800;

  text-transform: uppercase;

  padding: 20px 30px;

  background-color: var(--c-shape);

  color: var(--c-white);

}

.latest-blog ul {

  margin-top: 15px;  

  padding: 0 30px;

  overflow-y: scroll;

  height: 500px;

}

.latest-blog ul li {

  padding: 15px 0;

  border-bottom: 1px dashed var(--c-grey);

}

.latest-blog ul li:last-child {

  padding: 15px 0 0;

  border-bottom: none;

}

.latest-blog ul li a {

  color: var(--c-primary-dark);

  border-bottom: 1px solid transparent;

  font-size: 15px;

}

.latest-blog ul li a:hover {

  color: var(--c-orange);

  border-bottom: 1px solid var(--c-orange);

}

.blog-topic {

  background-color: var(--c-white);

  padding: 0px 0px 30px;

  margin-top: 40px;

}

.blog-topic h4 {

  font-size: 24px;

  font-weight: 800;

  text-transform: uppercase;

  padding: 20px 30px;

  background-color: var(--c-shape);

  color: var(--c-white);

}

.blog-topic ul {

  margin-top: 20px;

  padding: 0 15px;

}

.blog-topic ul li {

  padding: 15px 0;

  border-bottom: 1px dashed var(--c-grey);

}

.blog-topic ul li:last-child {

  padding: 15px 0 0;

  border-bottom: none;

}

.blog-topic ul li a {

  color: var(--c-primary-dark);

  font-size: 16px;

  font-weight: 500;

}

.blog-topic ul li a:hover {

  color: var(--c-orange);

  letter-spacing: 1.1px;

}

.blog-social ul li {

  display: inline-block;

  padding: 0 10px 0 0;

}

.blog-social {

  margin-top: 20px;

  text-align: right;

}

.blog-social ul li a {

  display: inline-block;

  width: 35px;

  height: 35px;

  border-radius: 50px;

  background-color: var(--c-orange);

  text-align: center;

  line-height: 38px;

  color: var(--c-white);

}

.blog-social ul li a:hover {

  color: var(--c-text);

}







/*Service Inner*/

.inner-service-wrap .inner-service-img img {

  width: 100%;

  object-fit: cover;

}

.inner-service-img {

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  width: 100%;

  height: 400px;
min-height:400px;
}

.inner-service-category .inner-service-wrap {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 30px;
}

.inner-service-wrap > * {

  flex-basis: 50%;

}

/* .inner-service-category .inner-service-wrap:nth-child(2) {

  flex-direction: row-reverse;

} */

.inner-service-category .inner-service-wrap:nth-child(4) {

  flex-direction: row-reverse;

}

.diving-service .custom-heading {

  text-align: center;

  margin-bottom: 50px;

}

.diving-service .custom-heading p {

  padding: 0 240px;

  margin-top: 20px;

}

.inner-service-content .inner-service-content-wrap {

  padding: 0 0px;

/*   overflow-y: scroll !important;

  height: 280px !important; */

}
.inner-service-category .inner-service-wrap:not(:first-child) {
  margin-top: 30px;
}
.inner-service-content .inner-service-content-wrap h4 {

  font-size: 30px;

  font-weight: 800;

  text-transform: capitalize;

  padding-right: 220px;

  line-height: 40px;

  margin-bottom: 16px;

  color: var(--c-primary-dark);

}

/*20.4.2023*/
.footer-wrap .nav-link {
  padding: .5rem 0rem !important;
  color: var(--c-grey) !important;
}
.checkout-categories .wpcf7-form-control-wrap .form-control {
  background-color: transparent;
  border: none !important;
  padding: 0 0;
}
.checkout-categories .wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0 16px 0 0;
}
.checkout-categories .wpcf7-list-item-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-bg);
}
.validation .form-check {
  padding-left: 0;
}
.validation .wpcf7-list-item {
  margin: 0 0 0 0em;
}
.diving-service .custom-heading {
  display: none;
}
.blog-social .heateor_sss_sharing_container {
  display: inline-block;
}
.custom-header .header-search div.asl_w {
  width: 90% !important;
}
.contact-form-box form .validation label {
  display: flex;
  align-items: center;
}
.contact-form-box form .validation label input {
  padding: 5px;
  width: 0%;
  margin-right: 10px;
}
.contact-form .form-check {
  padding-left: 0;
}

.contact-form-box form .validation .wpcf7-list-item-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-bg);
}
#recieve-coomunication {
  width: 14px;
}
.checkout-categories input[type="checkbox"] {
  accent-color: var(--c-orange);
}
.contact-form-box form .validation input[type="checkbox"] {
  accent-color: var(--c-orange);
}
.wpcf7-response-output {
  color: red;
  border: 2px solid var(--c-orange) !important;
  text-align: center;
  padding: 12px 0 !important;
}
.custom-footer-logo {
  margin-top: 30px;
}