/*
Theme Name: Techsys Web
Author: Sortend IT Solutions
Theme URI: https://techsysweb.com/
Author URI: https://www.sortend.com/
Description: 
Version: 1.0.3
*/

@import url('https://fonts.googleapis.com/css2?family=Just+Another+Hand&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --primary: #6bbc3b;
  --secondary: #030155;
  --white: #fff;
  --dark: #444444;
  --heading-color: #1d231f;
}



body {
  margin: 0;
  padding: 0 !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  scroll-behavior: smooth;
  overflow: inherit !important;
  font-size: 15px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
input[type="date"],
textarea, 
select {
  background: none;
  border: solid 1px #eee;
  color: #444;
  font-size: 16px;
  line-height: 1;
  margin: 0 0 12px;
  padding: 13px 15px;
  width: 100%;
  outline: 0;
  border-radius: 6px;
}

input[type="submit"] {
  color: var(--white);
  background: var(--primary);
  text-transform: uppercase;
  padding: 12px 22px;
  border: 0;
  letter-spacing: 0.8px;
  cursor: pointer;
  outline: none;
  font-weight: 600;
  border-radius: 5px;
}

input[type="submit"]:hover {
  background: var(--secondary);
  color: var(--white);
  transition: 0.8s;
}

textarea {
  height: 100px;
  margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--heading-color);
  font-weight: normal;
  text-transform: inherit;
  line-height: 1.1;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  padding: 0;
  margin: 0 0 10px 0;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.5;
}

ul,
li,
a {
  list-style-type: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #303030;
  line-height: 1.4;
  font-size: 15px;
}

a:hover {
  transition: 0.8s;
  text-decoration: none;
}

.heading, .leftheading {
    margin-bottom: 35px;
    font-size: 36px;
    position: relative;
    font-weight: 700;
    line-height: 1.3;
}

.heading {
  text-align: center;
}
img.shortlogo {
    width: 34px;
    margin: 0 5px 0 0;
    transform: translateY(-4px);
}
.subheading {
    margin: 0 auto 15px;
    text-align: center;
    font-size: 15px;
    color: var(--primary);
    padding: 6px 12px;
    background: #6bbc3b1f;
    width: fit-content;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.subdesc {
    font-size: 16px;
    width: 55%;
    margin: 0 auto;
}


.primary {
  color: var(--primary);
}

.secondary {
  color: var(--secondary);
}

.zoomeffect {
  overflow: hidden;
  position: relative;
}

.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}

.zoomeffect:hover img {
  transform: scale(1.1);
}

/* PRIMARY BUTTON CSS */

.btn-primary {
    background: var(--primary);
    border: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .2px;
    border-radius: 50px;
    padding: 16px 52px 16px 20px;
    line-height: 1;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn-primary:before, .btn-primary:after {
  position: absolute;
  content: '';
  height: 50%;
  background: var(--secondary);
  transition: .5s;
  z-index: -1;
}

.btn-primary:before {
  top: 0;
  width: 0;
  left: 0;
}

.btn-primary:after {
  width: 0;
  bottom: 0;
  right: 0;
}

.btn-primary:hover:before {
  right: 0;
  width: 100%;
  left: auto;
}

.btn-primary:hover:after {
  left: 0;
  width: 100%;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn:focus-visible, .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  background: var(--primary);
}

.btn-primary:hover {
  color: var(--white);
}

.btn-primary i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4.5px;
    height: 38px;
    width: 38px;
    background: var(
    --white);
    border-radius: 50%;
    color: var(
    --primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: .5s;
}

/* SECONDARY BUTTON CSS */

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: none;
  outline: 1px solid var(--secondary);
  outline-offset: -1px;
  font-weight: 500;
  letter-spacing: .2px;
  border-radius: 50px;
  padding: 17px 52px 17px 20px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 0;
  font-size: 14px !important;
}

.btn-secondary:before, .btn-secondary:after {
  position: absolute;
  content: '';
  height: 50%;
  background: var(--secondary);
  transition: .5s;
  z-index: -1;
}

.btn-secondary:before {
  top: 0;
  width: 0;
  left: 0;
}

.btn-secondary:after {
  width: 0;
  bottom: 0;
  right: 0;
}

.btn-secondary:hover:before {
  right: 0;
  width: 100%;
  left: auto;
}

.btn-secondary:hover:after {
  left: 0;
  width: 100%;
}

.btn-secondary:focus, .btn-secondary:active, .btn:focus-visible, .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  background: var(--secondary);
}

.btn-secondary:hover {
  color: var(--white);
  background: var(--whtie);
}

.btn-secondary i {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  height: 40px;
  width: 40px;
  background: var(--secondary);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  transition: .5s;
}

.btn-secondary:hover i, .btn-secondary:focus i, .btn-secondary:active i, .btn:focus-visible i, .btn-check:checked+.btn i, .btn.active i, .btn.show i, .btn:first-child:active i, :not(.btn-check)+.btn:active i {
  background: var(--white);
  color: var(--secondary);
}

ul.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 35px;
  gap: 10px;
}

ul.slick-dots li button {
  padding: 0;
  line-height: 1;
  height: 11px;
  width: 11px;
  border: none;
  text-indent: 100px;
  overflow: hidden;
  border-radius: 50px;
  transition: .5s;
}

ul.slick-dots li {
  line-height: 1;
}

ul.slick-dots li.slick-active button {
    width: 20px;
    background: var(--primary);
}

.section-padding {
  padding: 60px 0;
}

.smsection-padding {
  padding: 40px 0;
}


.menucontainer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1;
}

.menutop li {
  display: inline-block;
  position: relative;
}
.menutop li a {
  display: inline-block;
  padding: 38px 15px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  letter-spacing: .2px;
  line-height: 1;
}
.menutop li.menu-item.current-menu-item>a {
    color: #4ca518;
}
/* .menutop li:after{
content:"\f10c";
font-family:'FontAwesome';
font-size:8px;
color:#143184;
} */
.menutop li:last-child:after {
  display: none;
}

.menutop .current-menu-parent:after {
  color: var(--primary);
}
.menutop li.menu-item-has-children:after {
  font-family: "Font Awesome 7 Free";
  font-weight: bold;
  content: "\f107";
  font-size: 11px;
  position: absolute;
  right: 2px;
  top: 40px;
  cursor: pointer;
}
.menutop .sub-menu li.menu-item-has-children:after {
    content: "\f0da";
    color: var(--dark);
    font-size: 14px;
    right: 10px;
    top: 15px;
    line-height: 1;
}
.menutop .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99999;
  width: 270px;
  padding: 0;
  background: var(--white);
}

.menutop .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}
.menutop .sub-menu li {
  width: 100%;
  text-align: left;
}
.menutop .sub-menu li,
.menutop .sub-menu li a {
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
  white-space: normal;
}
.menutop .sub-menu li a {
  position: relative;
  display: block;
  color: #454545;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  padding-left: 25px;
  border-bottom: 1px solid #ededed;
  line-height: 1.3;
}
.menutop .sub-menu li:last-child>a {
  border-bottom: none;
}
.menutop .sub-menu li a:before {
  font-family: "Font Awesome 7 Free";
  font-weight: bold;
  content: "\f105";
  font-size: 12px;
  color: #454545;
  margin-right: 8px;
  position: absolute;
  left: 12px;
  top: 14px;
}
/* .sub-menu>.menu-item-has-children>a:after {
    font-family: "Font Awesome 7 Free";
    font-weight: bold;
    content: "\f105";
    font-size: 12px;
    color: #454545;
    margin-right: 8px;
    position: absolute;
    right: 5px;
    top: 14px;
    transform: rotate(90deg);
} */
.menutop .sub-menu li.menu-item-has-children>a:after {
    color: var(--primary);
}
.menutop .sub-menu li:hover>a:before {
    color: var(--white);
}
.menutop .sub-menu li a:hover {
  color: var(--white);
  background: var(--primary);
}
.menutop .sub-menu li.current-menu-item a, .menutop .sub-menu li.current-menu-item a:before {
  color: var(--white);
  background: var(--primary);
}
.menutop .sub-menu li.current-menu-item .sub-menu a {
  background: none;
}
.menutop .sub-menu li.current-menu-item .sub-menu li a:hover {
  color: var(--white);
  background: var(--primary);
}
.menucontainer .menuicon,
.menucontainer .menutopmob {
  display: none;
}
.menuicon {
  display: block;
  padding: 10px;
  margin-top: 25px;
  border: 1px solid #ddd;
}
.menuicon i {
  float: right;
  font-size: 18px;
}
.menucontainer .menutopmob {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  margin-top: 2px;
  background: var(--primary);
}
.menucontainer .menutopmob li a {
  display: block;
  font-size: 12px;
  color: #eee;
  text-transform: none;
  font-weight: 400;
  line-height: 19px;
  padding: 4px 10px;
  margin: 0;
  border-bottom: 1px solid #ccc;
}
.menutopmob .sub-menu li a {
  padding-left: 20px;
  font-size: 11px;
}
.menutopmob .sub-menu li .sub-menu a {
  padding-left: 30px;
}
article.post {
  background: #f3f8f6;
  border: 1px solid #00000012;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
}
article.post p.posted {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    width: fit-content;
    color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 15px;
}
article.singlepost img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
article.post img {
  height: auto;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 15px;
}

article.post h2 {
  padding: 0 0 15px;
}
article.post h2 a {
  color: #000;
}
article.post h2 a:hover {
  color: var(--primary);
}
.metabars span {
  display: block;
  font-size: 14px;
  padding: 6px 0;
}
.metabars i {
  color: var(--primary);
  font-size: 14px;
  margin-right: 5px;
  width: 20px;
  text-align: center;
}
.metabars .commentcount {
  padding-top: 10px;
}
.singlepost h3 {
  margin-top: 15px;
}
.singlepost h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 22px 0 10px;
}
.singlepost p.posted {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  width: fit-content;
  color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: 15px;
}
.singlepost .postthumb img {
  height: auto;
  width: 100%;
  margin: 5px 0 15px;
}
.singlepost .metabars {
  padding-top: 15px;
  margin-top: 10px;
  border-top: 1px solid #e5e5e5;
}
.comments {
  background: #fdfdfd;
  border: 1px solid #97979721;
  padding: 10px 25px 25px;
  margin-top: 40px;
  border-radius: 15px;
}
.comments h3 {
  margin-top: 0;
  font-weight: 500;
  font-size: 20px;
}
.commentlist {
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
  margin-bottom: 25px;
}
.comments .comment,
.comments .pingback {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none outside none;
}
.secondarypage .comments ul li:before {
  display: none;
}
.comments .children {
  margin-left: 40px;
}
.comment-author {
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
}
.comment-author .avatar {
  display: none;
}
.comment-meta {
  font-size: 12px;
  font-style: italic;
  padding: 0 0 10px;
}
.comment-body .reply a {
  float: right;
  border: 1px solid #ccc;
  padding: 5px 14px;
  font-size: 14px;
  color: var(--primary);
}
.comment-body .reply a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.comment-respond {
  clear: both;
}
.comment-form-cookies-consent label {
  margin: 0 0 0 6px;
  padding: 0;
  font-size: 12px;
  font-style: italic;
}
form#commentform label {
  font-weight: 500;
}
form#commentform textarea,
form#commentform input[type="text"] {
  background: var(--white);
}
.comments_count a {
  font-size: 14px;
  line-height: 22px;
  padding: 4px 10px;
  position: relative;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -icab-border-radius: 3px;
  border-radius: 3px;
  -opera-border-radius: 3px;
  -o-border-radius: 3px;
  -border-radius: 3px;
}
.comments_count a:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-bottom: 0 none;
  border-left: 0 none;
  border-right-color: transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
}
.sidebar .widget {
  margin-bottom: 25px;
  padding: 30px;
  background: #f3f8f6;
  border-radius: 15px;
}
.sidebar .widget label.wp-block-search__label {
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}


.sidebar .screen-reader-text {
  display: none;
}
.sidebar .searchform {
  padding-bottom: 5px;
}
.sidebar .searchform div {
  display: flex;
}
.sidebar form#searchform div input[type="submit"] {
  border-radius: 0 4px 4px 0;
  border: 1px solid #cd9e74;
}
.sidebar form#searchform div input[type="text"] {
  border-radius: 4px 0 0 4px;
}
.sidebar form#searchform div input {
  margin: 0 !important;
  padding: 12px 20px;
  border: 1px solid #e1e1e1;
}
.sidebar .comment-author-link {
  color: var(--primary);
  text-transform: capitalize;
}

.wp-block-latest-posts.wp-block-latest-posts__list a.wp-block-latest-posts__post-title {
  font-size: 17px;
  font-weight: 600;
}
.wp-block-latest-posts.wp-block-latest-posts__list time.wp-block-latest-posts__post-date {
  font-size: 13px;
  margin-top: 10px;
  color: var(--primary);
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
  margin-bottom: 10px;
  padding: 17px;
  border-radius: 15px;
  background: var(--white);
  border: 1px solid #00000014;
}
.wp-block-latest-posts.wp-block-latest-posts__list li img {
  display: block;
  width: 80px;
  height: 75px;
  object-fit: cover;
  border-radius: 7px;
}
.wp-block-latest-posts.wp-block-latest-posts__list li:last-child {
  margin-bottom: 0;
}
.sidebar .widget .wp-block-search__input {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  outline: none;
}

.sidebar button.wp-block-search__button.wp-element-button {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  padding: 8px 16px;
  line-height: 1;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .3px;
  border-radius: 10px;
  font-family: 'Font Awesome 7 Free';
  font-weight: 600;
}


.sidebar .widget p.wp-block-tag-cloud {
  margin: 0;
}

.sidebar .widget a.tag-cloud-link {
  font-size: 15px !important;
  background: var(--primary);
  padding: 12px 24px;
  display: inline-block;
  line-height: 1;
  border-radius: 50px;
  color: var(--white);
  margin: 3px 1px;
  font-weight: 600;
  position: relative;
}

.sidebar .widget a.tag-cloud-link:before, .sidebar .widget a.tag-cloud-link:after {
  position: absolute;
  content: '';
}





.postpagination {
  padding-top: 10px;
}
.postpagination a {
  display: inline-block;
  color: var(--primary);
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 9px 15px;
}
.postpagination a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.postpagination a i {
  font-size: 15px;
  padding-right: 5px;
}
.alignleft {
  float: left;
}
.alignright {
  float: right;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img.alignleft {
  margin: 5px 20px 5px 0;
}
img.alignright {
  margin: 5px 0 5px 20px;
}
img.aligncenter {
  margin: 5px auto;
}
img.alignnone {
  margin: 5px 0;
}
@media only screen and (max-width: 991px) {
  .menutop {
    float: none;
  }
  .menutop li {
    float: none;
    display: inline-block;
  }
  .menutop li a {
    font-size: 18px;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  .menutop li a {
    font-size: 17px;
    padding: 0 18px;
  }
}

@media only screen and (max-width: 667px) {
  .menutop li a {
    font-size: 15px;
    padding: 0 12px;
  }
}
@media only screen and (max-width: 414px) {
  .menucontainer {
    margin-top: 10px;
  }
  .menutop li a {
    font-size: 14px;
    padding: 0 9px;
  }
}
@media only screen and (max-width: 375px) {
  .menucontainer {
    margin-top: 5px;
  }
  .menutop li a {
    font-size: 13px;
    padding: 0 8px;
  }
}
@media only screen and (max-width: 360px) {
  .menutop li a {
    font-size: 12px;
    padding: 0 8px;
  }
}
@media only screen and (max-width: 320px) {
  .menutop li a {
    font-size: 11px;
    padding: 0 6px;
  }
}


.wpcf7 form .wpcf7-response-output {
  margin: 2em 0;
  padding: .5em .8em;
  font-size: 14px;
  border-radius: 15px;
}
form span.wpcf7-spinner {
  position: absolute;
  margin: 0;
}





/* RESPONSIVENESS CODE */

@media only screen and (max-width: 1299px) {

  .mainslider .carousel-caption h1 {
    font-size: 55px;
  }

  .footer-details {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footerdtls-item {
    width: 48%;
    flex: 0 0 48% !important;
    padding-left: 57px;
  }

  .footerdtls-item span.dtlsicons {
    left: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .banner-bookingform {
    position: static;
    transform: none;
    width: calc(100% - 24px);
    box-shadow: 3px 3px 15px #00000015;
    margin: 40px auto;
  }
}

@media only screen and (max-width: 991px) {

  .menubar {
    align-items: center;
  }

  .header-logo a img {
    width: 200px;
}
.mainslider-navbtn button {
    height: 42px;
    width: 42px;
}
  .mainslider .carousel-caption h1, .mainslider .carousel-caption p {
    color: var(--white);
  }

  .mainslider .carousel-caption h1 {
    font-size: 42px;
  }

  .mainslider .carousel-caption p {
    font-size: 15px;
    margin-bottom: 0;
  }

  .mainslider .carousel-caption h4 {
    font-size: 16px;
  }

  .mainslider #carouselExampleCaptions img.mainsldr-img {
    aspect-ratio: 1 / .8;
  }

  .carousel-caption {
    width: 100%;
    left: 15px;
  }

  .banner-bookingform {
    flex-direction: column;
    border-radius: 15px;
  }

  .bannerform-wrapper {
    flex-wrap: wrap;
  }

  .bannerform-wrapper .bannerform-item {
    flex: 0 0 48%;
  }
.subdesc {
    font-size: 14px;
    width: 100%;
    margin: 0 auto;
}

  footer .col-lg-3.footerabout {
    width: calc(100% - 28px);
    margin: 0 auto 25px;
}
.footerabout img {
    width: auto;
    height: 40px;
}

  .breadcrumb {
    padding: 80px 0;
  }

  .breadcrumb h1 p span {
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 10px;
  }


.videoreviews-item video {
    aspect-ratio: 5 / 3.5 !important;
}

}


@media only screen and (max-width: 767px) {
  .section-padding {
    padding: 40px 0;
  }
  .smsection-padding {
    padding: 20px 0;
}

  .btn-primary {
    font-size: 14px;
    padding: 14px 45px 14px 20px;
}
.btn-primary i {
    height: 33px;
    width: 33px;
}
.mainslider-navbtn {
    right: 40px;
    top: auto;
    bottom: 0;
    transform: translateY(0%) rotate(-90deg);
}

  .heading, .leftheading {
    margin-bottom: 35px;
    font-size: 32px !important;
  }


  .marqueeinnerlistitem h4 {
    font-size: 32px;
}
.marqueeinnerlistitem svg {
    width: 36px;
}



  .footer-top {
    padding: 40px 0;
    z-index: 0;
  }
  .footertop-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
.footeraddress-list:after {
    width: 80px;
    height: 80px;
}
.footeraddress-list figure img {
    width: 44px;
    height: 44px;
    right: 15px;
    top: 15px;
}
 .footer-details {
    padding-bottom: 10px;
}


footer .col-lg-3 {
    padding: 0 14px 25px;
}
  .contactus_details i {
    font-size: 36px;
  }

  .contactus_details h3 {
    margin: 15px 0;
    font-size: 20px;
  }

  .contactform-details h2 {
    font-size: 32px;
  }

  .contactform-details>p {
    font-size: 16px;
    margin: 18px 0px 15px;
  }

  .contactus iframe {
    height: 320px;
  }
  .tourgallery-slider .slick-slide {
    margin: 0 8px;
  }
  .singletour-content p, .singletour-content li {
    font-size: 14px;
    line-height: 1.6;
  }
.videoreviews {
    display: block;
}
.videoreviews-item {
    grid-column: none;
    margin-bottom: 8px;
}
.videoreviews-item video {
    margin-bottom: 0;
    aspect-ratio: 5 / 3;
}
	
.partnerlists {
    gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
}	
	
}


@media only screen and (max-width: 667px) {
  .heading, .leftheading {
    margin-bottom: 30px;
    font-size: 28px !important;
  }

  .bannerform-wrapper .bannerform-item {
    flex: 0 0 100%;
  }

  .bannerform-wrapper .bannerform-item span, .bannerform-wrapper .bannerform-item input {
    width: 100%;
  }

.mainslider .carousel-caption h4 {
    font-size: 14px;
    padding-left: 10px;
}
.mainslider .carousel-caption h1 {
    font-size: 26px;
    margin-bottom: 20px;
}

  .about_featureitem h4 {
    font-size: 17px;
  }

  .slider-arrows {
    margin: -60px 0 10px auto;
  }

  .slider-arrows button.slick-arrow {
    height: 38px;
    width: 38px;
    font-size: 14px;
  }

  .homeaboutleft-top {
    padding: 22px;
}
  .homeaboutleft-top ul li {
    width: 100%;
    font-size: 14px;
}
.homeaboutright-info ul li {
    flex: 100%;
    font-size: 16px;
    font-weight: 500;
}
.homeaboutright-info ul li i {
    font-size: 30px;
}

.serviceslist .services-info h4 {
    font-size: 20px;
}

.singleservice-sidebar-item.text-center.service-contact h3 {
    font-size: 26px;
}
}

@media only screen and (max-width: 568px) {
  .footerdtls-item {
    width: 100%;
    flex: 0 0 100% !important;
  }

  .accordion-button {
    padding: 15px;
    font-size: 14px;
  }
  .accordion-body {
    padding: 0px 15px 10px;
  }
  .accordion-body p {
    font-size: 14px;
  }

  .singletour-content h2 {
    font-size: 20px;
  }
  .certification-wrapper {
    gap: 12px;
    flex-wrap: wrap;
}
	
.partnerlists {
    grid-template-columns: 1fr 1fr;
}		
}


@media only screen and (max-width: 480px) {

}