/*@charset "utf-8";
/*..............embedded fonts..............*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*====font-family: 'Outfit', sans-serif;====*/

/*..............embedded fonts..............*/

/*..............custom fonts..............*/

/*..............common styles..............*/
html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

html {
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(17px, 2vw, 18px);
  font-weight: 400;
  color: #2e2e2e;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0 0 25px;
  padding: 0;
  color: #092234;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 1.6rem + 3.205vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 1.4rem + 2.051vw, 3.75rem);
}

h3 {
  font-size: clamp(1.8rem, 1.35rem + 0.513vw, 1.875rem);
}

h4 {
  font-size: clamp(1.6rem, 1.25rem + 0.256vw, 1.5rem);
}

h5 {
  font-size: clamp(1.5rem, 1.2rem + 0.256vw, 1.375rem);
}

h6 {
  font-size: clamp(1.4rem, 1.15rem + 0.128vw, 1.25rem);
}

p {
  margin: 0 0 25px;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a,
img {
  border: 0;
  text-decoration: none;
  outline: none;
  user-select: none; 
  -webkit-user-drag: none;
}

a,
a:link,
a:visited,
a:focus,
a:hover {
  color: #194768;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

a:hover {
  text-decoration: none;
}

input,
textarea,
select {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  outline: none;
}

input[type="submit"] {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  transition: all 0.3s ease 0s;
  outline: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  height: 60px !important;
  padding-right: 40px !important;
  background-image: url(../images/select-arw.png);
  background-repeat: no-repeat;
  background-position: 96% center;
}

input:not([type="submit"]) {
  height: 60px !important;
}

input.form-control,
textarea.form-control {
  border: 1px solid #c3cad4 !important;
  box-shadow: none !important;
}

textarea.form-control {
  height: 170px !important;
  resize: none;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p {
  color: #fff;
}

::-moz-selection {
  /* Code for Firefox */
  color: white;
  background: #194768;
}

::selection {
  color: white;
  background: #194768;
}

/* --- common background color --- */
.light-blue-bg {
  background-color: #f1f5f9;
}

.dark-blue-bg {
  background-color: #265374;
}

.dark-blue-bg-two {
  background-color: #194768;
}

.home-latest-greatest-sec .image-box img,
.home-contributors-wraper ul li .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- common background color --- */

/*------swiper-----*/
.swiper-container {
  overflow: hidden;
}

.swiper-button-next {
  box-shadow: 0 0 15px #0000001f !important;
  overflow: hidden;
  border-radius: 0 50px 50px 0 !important;
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid #ffffff !important;
  background-image: url('../images/arrow-r.svg') !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  top: 50%;
  right: 0px;
  background-color: #fff !important;
}

.swiper-button-next::after {
  color: transparent;
  width: 100%;
  height: 100%;
  background-color: #E8C100;
  position: absolute;
  background-image: url('../images/arrow-r-w.svg') !important;
  background-repeat: no-repeat;
  background-position: center center;
  transform: scale(0);
  border-radius: 0 50px 50px 0 !important;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.swiper-button-next:hover::after {
  transform: scale(1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.swiper-button-prev {
  box-shadow: 0 0 15px #0000001f !important;
  overflow: hidden;
  border-radius: 50px 0 0 50px !important;
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid #ffffff !important;
  background-image: url('../images/arrow-l.svg') !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  top: 50%;
  left: 0px;
  background-color: #fff !important;
}

.swiper-button-prev::after {
  color: transparent;
}

.swiper-button-prev::after {
  color: transparent;
  width: 100%;
  height: 100%;
  background-color: #E8C100;
  position: absolute;
  background-image: url('../images/arrow-l-w.svg') !important;
  background-repeat: no-repeat;
  background-position: center center;
  transform: scale(0);
  border-radius: 50px 0px 0px 50px !important;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.swiper-button-prev:hover::after {
  transform: scale(1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.swiper-notification {
  display: none;
}

.swiper-wrapper,
.swiper-container {
  background-color: transparent !important;
  opacity: 1 !important;
}

/*------swiper-----*/



/*------owl nav--------*/
.owl-nav button.owl-prev {
  border-radius: 50px 0 0 50px !important;
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid #ffffff !important;
  background-image: url("../images/arrow-l.svg") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  top: 40%;
  left: -80px;
  background-color: #fff !important;
}

.owl-nav button.owl-next {
  border-radius: 0 50px 50px 0 !important;
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid #ffffff !important;
  background-image: url("../images/arrow-r.svg") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  top: 40%;
  right: -80px;
  background-color: #fff !important;
}

.owl-nav button span {
  color: transparent !important;
}

.owl-nav button:hover::before {
  transform: scale(1) !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: transparent !important;
}

.owl-nav button.owl-prev:hover {
  background-image: url("../images/arrow-l-w.svg") !important;
}

.owl-nav button.owl-next:hover {
  background-image: url("../images/arrow-r-w.svg") !important;
}

.owl-nav button.owl-next::before {
  content: "";
  transform: scale(0);
  width: 50px;
  height: 50px;
  position: absolute;
  top: -2px;
  left: -2px;
  background-color: #e8c100;
  border-radius: 5px 100px 100px 5px;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.owl-nav button.owl-prev::before {
  content: "";
  transform: scale(0);
  width: 50px;
  height: 50px;
  position: absolute;
  top: -2px;
  left: -2px;
  background-color: #e8c100;
  border-radius: 100px 5px 5px 100px;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  border: 2px solid #e8c100 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.owl-dots {
  display: none;
}

/*------owl nav--------*/


/* --- for placeholder color --- */
.form-control::-moz-placeholder {
  color: #9f9f9f;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #9f9f9f;
}

.form-control::-webkit-input-placeholder {
  color: #9f9f9f;
}

/* --- for placeholder color --- */

/* ============= Suggest Form placeholder ===========  */
.suggest-form-box .form-control::-moz-placeholder {
  color: #9f9f9f;
  opacity: 1;
}

.suggest-form-box .form-control::-ms-input-placeholder {
  color: #9f9f9f;
  opacity: 1;
}

.suggest-form-box .form-control::-webkit-input-placeholder {
  color: #9f9f9f;
  opacity: 1;
}

/* ============= Login Page placeholder ===========  */
.login-page .form-control::-moz-placeholder {
  color: #9f9f9f;
  opacity: 1;
}

.login-page .form-control::-ms-input-placeholder {
  color: #9f9f9f;
  opacity: 1;
}

.login-page .form-control::-webkit-input-placeholder {
  color: #9f9f9f;
  opacity: 1;
}


/* --- only use for wordpress (Image alignment) --- */
.alignleft,
.alignnone {
  float: left;
  margin: 0 15px 10px 0;
}

.alignright {
  float: right;
  margin: 0 0 10px 15px;
}

.aligncenter {
  margin: 10px auto;
  display: block;
}

/* --- only use for wordpress (Image alignment) --- */


/* --- Button Styles --- */
.btn {
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  border: 1px solid #2e2e2e;
  letter-spacing: 1px;
  font-family: "Outfit", sans-serif;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  background: #194768;
  color: #fff !important;
  padding: 12px 35px;
  font-size: clamp(1.125rem, 1.096rem + 0.128vw, 0.9rem);
  line-height: 1;
  text-transform: capitalize;
  border-radius: 60px;
  font-weight: 600;
}

.btn:hover {
  transform: translate(0px, 0px);
  border: 1px solid #194666;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  box-shadow: 0 12px 10px #0000;
  color: #000 !important;
}

.btn::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #194566;
  z-index: -1;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
}

.btn:hover::before {
  background-color: #194566;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
}

.btn span {
  z-index: -1;
  display: inline-block;
  position: relative;
  top: 0px;
  margin-left: 10px;
  width: 35px;
  height: 35px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
}

.btn:hover span {
  transform: translate(0px, 0px);
}

.btn span::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  background-color: #fff;
  border-radius: 50px;
  z-index: -1;
  top: 5px;
  left: 5px;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transform: scale(0);
}

.btn:hover span::before {
  width: 100%;
  height: 100%;
  left: 1px;
  transform: scale(100);
  transition: all 2.5s ease;
  -webkit-transition: all 2.5s ease;
  -moz-transition: all 2.5s ease;
  -ms-transition: all 2.5s ease;
  -o-transition: all 2.5s ease;
}

.btn span img {
  transform: rotate(0deg);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.btn:hover span img {
  transform: rotate(45deg);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.btn.white-btn::before {
  background-color: #ffffff;
}

.btn.white-btn {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #194768 !important;
}

.btn.white-btn span::before {
  background-color: #1a4364;
}

.btn.white-btn:hover {
  color: #fff !important;
}

.btn.border-btn {
  background: #0000;
  color: #1a4364 !important;
  border: 1px solid #1a4364;
}

.btn.border-btn:hover {
  color: #fff !important;
}

.btn.border-btn::before {
  background-color: #0000;
}

.btn.border-btn span::before {
  background-color: #1a4364;
}

.btn:first-child:active,
.btn:focus-visible {
  background-color: #194566 !important;
  color: #fff !important;
}

.btn:disabled {
  background-color: #194768 !important;
  opacity: 1 !important;
  color: #fff !important;
}

/*=======button for form======*/

.submit-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
}

input.btn {
  font-size: clamp(1.125rem, 1.096rem + 0.128vw, 1.25rem);
  text-transform: capitalize;
  font-weight: 600;
  padding-right: 75px;
  height: 60px;
}

.submit-btn span {
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: -1;
  transform: translateY(-50%);
}

.submit-btn .btn.white-btn {
  background: transparent;
  color: #194768 !important;
}

.submit-btn::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  z-index: -1;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
}

.submit-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.submit-btn:hover .btn.white-btn {
  color: #fff !important;
}

.submit-btn span::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  background-color: #1a4364;
  border-radius: 50px;
  z-index: -1;
  top: 5px;
  left: 5px;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transform: scale(0);
}

.submit-btn:hover span::before {
  transform: scale(100);
  transition: all 2.5s ease;
  -webkit-transition: all 2.5s ease;
  -moz-transition: all 2.5s ease;
  -ms-transition: all 2.5s ease;
  -o-transition: all 2.5s ease;
}

.submit-btn:hover span img {
  transform: rotate(45deg);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.submit-btn span img {
  transform: rotate(0deg);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.submit-btn.dark::before {
  background-color: #1a4364;
}

.submit-btn.dark .btn {
  background: transparent;
  color: #fff !important;
}

.submit-btn.dark:hover .btn {
  color: #1a4364 !important;
}

.submit-btn.dark span::before {
  background-color: #ffffff;
}

/*=======button for form======*/



/* --- Button Styles --- */

/*row with equal height column*/
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* ======================== autofill ====================== */
input:placeholder-shown {
  background-color: transparent !important;
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  color: #fff !important;
}

input:-internal-autofill-selected {
  background-color: transparent;
}

input:-webkit-autofill {
  -webkit-text-fill-color: #7aa6c6;
}

input:-webkit-autofill:focus {
  -webkit-text-fill-color: #7aa6c6;
}

/* --- checkbox and radio button Styles --- */
.builder_radiobox ul li label {
  font-weight: normal;
}

.builder_radiobox ul li input[type="radio"] {
  opacity: 0;
}

.builder_radiobox ul li input[type="radio"]:empty~label {
  position: relative;
  float: left;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 0 0 22px;
}

.builder_radiobox ul li input[type="radio"]:empty~label:before {
  position: absolute;
  display: block;
  top: 2px;
  bottom: 0;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/radiobutton.png) left top no-repeat;
}

.builder_radiobox ul li input[type="radio"]:checked~label:before {
  background: url(../images/radiobutton.png) left bottom no-repeat;
}

/* --- checkbox and radio button Styles --- */

/* ================= common padding =================== */
.common-padd {
  padding-top: 100px;
  padding-bottom: 100px;
}

.common-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.form-control {
  height: 50px;
  padding: 12px 15px;
}

.top-largr-padding {
  padding-top: 210px;
  padding-bottom: 100px;
}

.header-with-line h2::before {
  content: "";
  width: 155px;
  height: 20px;
  background-image: url("../images/yellow-line.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -26px;
}

.header-with-line h2 {
  position: relative;
  margin-bottom: 50px;
}

/* ======================= common heading ===================== */
.common-header-lft h2 {
  font-weight: 600;
}

.common-header-center {
  text-align: center;
  margin-bottom: 50px !important;
}

.common-header-center h2 {
  font-weight: 600;
}

.common-header-center p {
  font-size: clamp(1rem, 0.798rem + 0.897vw, 1.875rem);
}

/*..............common styles..............*/


/*-----scroll-bar-design----------*/
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #d2e1eb;
}

::-webkit-scrollbar-thumb {
  background: #194768;
  border-radius: 0px;
}

/*-----scroll-bar-design----------*/


/*for header css*/
.main-header {
  padding: 20px 0px;
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
  position: fixed;
  border-bottom: 1px solid #ffffff40;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.call-portal {
  padding: 0 0 18px;
  margin-right: -20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.call-portal a.call-link {
  color: #ce222b;
  font-weight: 900;
  font-style: italic;
  margin-right: 10px;
}

.call-portal a.call-link svg {
  color: #686868;
}

.call-portal a.portal-btn {
  background: #ce222b;
  color: #fff;
  padding: 9px;
  line-height: 1;
  display: block;
  font-size: 14px;
}

.manu-part {
  display: flex;
  align-items: center;
}

.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.main-menu ul li {
  list-style: none;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
}

.main-menu ul li:not(:last-child) {
  margin-right: 40px;
}

.main-menu ul li a::before {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #E8C100;
  position: absolute;
  bottom: 7px;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main-menu ul li a:hover::before,
.main-menu ul li.current-menu-item a {
  content: "";
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main-menu ul li ul.submenu li a::before,
.main-menu ul li.current-menu-item ul.submenu li a::before {
  background-color: #000;
}

.main-menu ul li a:hover,
.main-menu ul li.current-menu-item a {
  color: #194566;
}

.main-menu ul li.talk-btn a {
  background: #d95b2e;
  color: #fff !important;
  padding: 14px 35px !important;
  line-height: 1;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 30px;
}

.main-menu ul li a,
.main-menu ul li {
  cursor: pointer;
  display: block;
  color: #2e2e2e;
  padding: 8px 0;
  position: relative;
  font-size: 22px;
  font-weight: 400;
}

.main-menu li:hover ul.submenu {
  opacity: 1;
  visibility: unset;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main-menu ul.submenu {
  position: absolute;
  width: 250px;
  display: block;
  background-color: #fff;
  margin-top: 4px;
  padding: 6px 20px;
  border-radius: 10px;
  box-shadow: 0 15px 12px #0000005e;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main-menu ul.submenu li {
  margin: 0 !important;
  padding: 0;
}

.main-menu ul.submenu li a {
  color: #000;
}

.main-menu ul li.current-menu-item a:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #E8C100;
  position: absolute;
  bottom: 7px;
  right: 0;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

header .user-sec ul {
  margin: 0;
}

header .user-sec ul li {
  list-style: none;
}

.main-header.fixed .logo {
  max-width: 150px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main-header .logo {
  max-width: 220px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.nav_btn {
  color: #fff;
  font-size: 22px;
  text-align: right;
  display: none;
}

.nav_close {
  display: none;
  color: #fff;
}

.main-header.fixed {
  background: #ffffffc9;
  padding: 10px 0px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  transition: all 0.4s;
  -ms-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/*==========mobile menu=========*/
.main-header .hdr-rt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-header .user-sec {
  margin-left: 40px;
  display: flex;
  align-items: center;
}

/* ~~~~~~~~~~ hamburger menu styling ~~~~~~~~~~ */
.hamburger-nav {
  display: none;
  vertical-align: top;
  width: 42px;
  height: 42px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  margin: 10px 0 10px 0;
}

.hamburger-nav span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.hamburger-nav span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.hamburger-nav span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  width: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.hamburger-nav span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

/*when turns close icon*/
.mobile-menu-open .hamburger-nav span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -1px;
  left: 3px;
}

.mobile-menu-open .hamburger-nav span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.mobile-menu-open .hamburger-nav span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
  left: 3px;
}

/*when turns close icon*/
/* ~~~~~~~~~~ hamburger menu styling ~~~~~~~~~~ */

/* ~~~~~~~~~~ mobile menu styling ~~~~~~~~~~ */
.mobile-menu-container {
  position: fixed;
  z-index: 1;
  top: -100vh;
  right: 0;
  left: 0;
  background: #fff;
  height: 100vh;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  display: none;
  z-index: -1;
}

.mobile-menu-open .mobile-menu-container {
  top: 0;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-container .inner-container {
  padding-top: 130px;
  height: 100vh;
  overflow-y: auto;
  position: relative;
}

.mobile-menu {
  max-width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 20px;
  margin: 0 auto;
  text-align: center;
}

.mobile-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu ul li {
  display: block;
  margin: 10px 0;
}

.mobile-menu ul li a {
  display: block;
  font-size: clamp(1.563rem, 1.49rem + 0.321vw, 1.875rem);
  color: #fff;
  padding: 4px 0;
}

.mobile-menu ul li.menu-item-has-children>a {
  padding-right: 15px;
}

.mobile-menu ul li.menu-item-has-children>a:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 47%;
  box-sizing: border-box;
  height: 8px;
  width: 8px;
  border-style: solid;
  border-color: #292939;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg) translateY(-47%);
  transition: border-width 150ms ease-in-out;
}

/* ===== mobile menu animation ===== */
.mobile-menu ul li {
  opacity: 0;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
}

.mobile-menu-open .mobile-menu ul li {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mobile-menu-open .mobile-menu ul li:nth-child(1) {
  -webkit-transition-delay: 0.16s;
  transition-delay: 0.16s;
}

.mobile-menu-open .mobile-menu ul li:nth-child(2) {
  -webkit-transition-delay: 0.32s;
  transition-delay: 0.32s;
}

.mobile-menu-open .mobile-menu ul li:nth-child(3) {
  -webkit-transition-delay: 0.48s;
  transition-delay: 0.48s;
}

.mobile-menu-open .mobile-menu ul li:nth-child(4) {
  -webkit-transition-delay: 0.64s;
  transition-delay: 0.64s;
}

.mobile-menu-open .mobile-menu ul li:nth-child(5) {
  -webkit-transition-delay: 0.80s;
  transition-delay: 0.80s;
}

.mobile-menu-open .mobile-menu ul li:nth-child(6) {
  -webkit-transition-delay: 0.96s;
  transition-delay: 0.96s;
}

/* ===== mobile menu animation ===== */
.mobile-menu-open .mobile-menu ul li.btn {
  margin: 0 auto;
  padding: 5px 5px;
  max-width: 150px;
}

.mobile-menu-open .mobile-menu ul li.btn a {
  color: #fff;
}

/*=========mobile menu===========*/

/*for header css*/

/*=====home page====*/
.user-sec .btn span {
  margin-left: 0;
  margin-right: 10px;
}

.user-sec .btn {
  padding-left: 12px;
}

.user-sec .btn:hover span img {
  transform: rotate(360deg);
}

/* ================= home banner ====================== */
.banner-sec {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.banner-sec>img {
  min-height: 100vh;
  min-height: 100svh;
}

.banner-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-sec>img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner-sec .banner-content {
  position: relative;
  top: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.banner-sec .banner-text {
  margin-top: 80px;
}

.banner-sec .banner-text h1 {
  font-weight: 600;
  position: relative;
  margin-bottom: 50px;
}

.banner-sec .banner-text h1 span {
  display: block;
}

.banner-sec .banner-text p {
  font-size: clamp(16px, 4vw, 30px);
  margin-bottom: 35px;
}

.banner-sec .right-img {
  width: calc(100vw - 50vw);
}

.banner-sec .banner-partical {
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner-sec .banner-text h1::before {
  content: "";
  width: 155px;
  height: 20px;
  background-image: url("../images/yellow-line.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -26px;
}

.home-maintain-sec .common-header-lft {
  max-width: 410px;
}

.home-maintain-sec .sec-logo-box {
  box-shadow: 0 0px 27px #00000042;
  max-width: 480px;
  text-align: center;
  height: 380px;
  background-color: #194768;
  border: 10px solid #fff;
  border-bottom: 0;
  border-radius: 380px 380px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.home-maintain-sec .tag-text h3 {
  margin: 0;
  background-color: #f1f5f9;
  border-radius: 15px;
  padding: 12px 30px;
}

.home-maintain-sec .tag-text {
  position: absolute;
  width: 510px;
  box-shadow: 0 0 16px #00000047;
  border-radius: 20px;
  padding: 10px;
  right: 0;
  bottom: 30px;
  background-color: #fff;
  z-index: 3;
}

.home-maintain-sec {
  background-image: url("../images/second-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 65%;
  background-color: #f1f5f9;
}

.home-maintain-sec .partical-img {
  position: absolute;
  bottom: 5%;
  left: 0;
}

.home .home-maintain-sec {
  background-color: #fff;
}

.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.banner-sec:not(.inner-banner),
.banner-sec .banner-content:not(.banner.inner-banner .banner-content) {
  transition: min-height 0.5s linear;
}


/* ==================== Greatest Section ================================ */
.home-latest-greatest-sec .common-header-center {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.home-latest-greatest-sec {
  background-image: url("../images/map.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-latest-greatest-sec .image-box {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.home-latest-greatest-sec .single-box {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.home-latest-greatest-sec .content-box {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-right: 70px;
  justify-content: flex-end;
}

.home-latest-greatest-sec .content-box h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.home-latest-greatest-sec .content-box h3 span {
  display: block;
  font-weight: 300;
  font-size: 20px;
  margin-top: 10px;
}

.home-latest-greatest-sec .content-box ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #e8c100;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 7px;
}

.home-latest-greatest-sec .content-box ul li {
  list-style: none;
  color: #fff;
  position: relative;
  padding-left: 17px;
}

.home-latest-greatest-sec .content-box ul {
  padding: 0;
  margin: 0;
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.home-latest-greatest-sec .single-box:hover .content-box ul {
  max-height: 150px;
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
}

.home-latest-greatest-sec .single-box:hover .content-box ul::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}

.home-latest-greatest-sec .single-box .card-arrow {
  z-index: 5;
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.home-latest-greatest-sec .single-box:hover .card-arrow {
  transform: translate(10px, -15px);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* .home-latest-greatest-sec .single-box:hover .content-box {  background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 78%, rgba(0, 0, 0, 0.7) 100%); } */


/* .single-box a { display: block; width: 100%; height: 100%; position: absolute; top: 0; left: 0; right: 0; bottom: 0;z-index: 3; } */
.home-latest-greatest-sec .home-latest-greatest-wraper {
  padding: 0 70px;
}

.home-latest-greatest-sec .partical-two {
  position: absolute;
  bottom: 0;
  right: 0;
}

.home-latest-greatest-sec .partical-one {
  position: absolute;
  top: 25%;
  left: 3%;
  max-width: 810px;
}

/* ==================== Greatest Section end ================================ */

/* ======================== contributors section ================================== */
.home-contributors-sec {
  background-image: url("../images/map3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.home-contributors-wraper ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.home-contributors-wraper ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  list-style: none;
  padding: 10px;
}

.home-contributors-wraper ul li .card-wraper {
  height: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  box-shadow: 0 10px 7px #19476800;
  display: flex;
  align-items: center;
  padding: 30px;
  border: 1px solid #b2cde0;
  border-radius: 20px;
  background-color: #fff;
}

.home-contributors-wraper ul li .image-box {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 80px;
  margin-right: 10px;
}

.home-contributors-wraper ul li .text-box h6 {
  color: #2e2e2e;
  margin-bottom: 7px;
  font-weight: 600;
}

.home-contributors-wraper ul li .text-box p {
  margin: 0;
  color: #8c8c8c;
}

.home-contributors-wraper ul li .card-wraper:hover,
.additional-information ul li .additional-list-wrap:hover {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #e1eef7;
  box-shadow: 0 10px 7px #19476821;
}


/* ======================== contributors section end ================================== */


/* ============================= Date Spot =========================== */
.home-date-spot-sec {
  position: relative;
  background-attachment: fixed;
  overflow: hidden;
}

.home-date-spot-sec:before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(9, 34, 64, 0.8);
  position: absolute;
  content: "";
  z-index: 0;
}

.date-spotL {
  max-width: 700px;
}

.date-spotR {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.date-spotPicL {
  max-width: 350px;
  border: 10px solid #fff;
  border-radius: 10px;
  transform: rotate(-10deg);
  height: 360px;
  overflow: hidden;
  position: relative;
  z-index: 9;
  margin-top: 35px;
  right: -45px;
}

.date-spotPicR {
  max-width: 320px;
  border: 10px solid #fff;
  border-radius: 10px;
  transform: rotate(15deg);
  height: 310px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.home-date-spot-sec .row {
  position: relative;
}

.circle-pic {
  position: absolute;
  top: -44px;
  left: -44px;
  z-index: 9;
  animation: circleRotate 25s linear infinite;
}

@keyframes circleRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ============================= Date Spot end =========================== */


/* ============================ featur section ============================== */
.yellow-curve-line {
  position: absolute;
  bottom: -21px;
  right: 65px;
  z-index: 0;
}

.home-featur-sec .owl-stage .owl-item {
  max-width: 380px;
  border-radius: 180px;
  border: 10px solid #fff;
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 5px;
  background: #f6f6f6;
  transition: all 0.4s ease;
}

.home-featur-sec .featured-image {
  height: 300px;
  overflow: hidden;
}

.home-featur-sec .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-featur-sec .featured-box {
  background-color: #F6F6F6;
  border: 10px solid #fff;
  border-radius: 300px;
  overflow: hidden;
  height: 100%;
}

.home-featur-sec .swiper-button-prev {
  left: -37%;
  bottom: 30px;
  top: unset;
}

.home-featur-sec .swiper-button-next {
  left: -31%;
  bottom: 30px;
  top: unset;
}

.home-featur-sec .swiper-button-next:focus,
.home-featur-sec .swiper-button-prev:focus {
  outline: none;
  background-color: transparent !important;
  box-shadow: none;
}

.home-featur-sec .swiper-pagination {
  display: none;
}

.home-featuredR .owl-carousel .owl-item .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.home-featur-sec .swiper-slide {
  height: auto !important;
}

.home-featuredR .owl-carousel .owl-item .featured-content a {
  width: 35px;
  margin: 0 auto;
  display: inline-block;
}

.home-featuredR .owl-carousel .owl-item .featured-content a img {
  width: auto;
}

.featured-content h3 {
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.4s ease;
}

.featured-content h3 a {
  color: #2E2E2E;
}

.featured-content p {
  font-size: 20px;
  margin-bottom: 8px;
}

.featured-content {
  padding: 20px;
}

.recent-blog-img {
  overflow: hidden;
}

.featured-box .featured-image img,
.recent-blog-img img {
  transform: scale(1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.featured-box:hover .featured-image img,
.recent-blog-img:hover img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.home-featuredR {
  width: calc(100vw - 33vw);
  margin-left: -50px;
}

.home-featur-sec .home-eaturedL p {
  font-size: clamp(16px, 4vw, 30px);
}

.home-eaturedL {
  max-width: 380px;
}

.home-pull-form-sec .home-pullR p {
  font-size: clamp(1.563rem, 1.49rem + 0.321vw, 1.875rem);
  font-weight: 300;
}

.home-featur-sec {
  overflow: hidden;
}

.home-featur-sec .owl-stage .owl-item:hover {
  background-color: #fff;
}

.featured-box:hover .featured-content a {
  transform: translate(8px, -8px);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.featured-box:hover .featured-content h3 {
  color: #e8c100;
}

.home-featuredR .owl-nav {
  position: absolute;
  left: 0px;
  bottom: 6%;
}

.home-featuredR .owl-nav button.owl-next {
  right: -45px;
}

.yellow-curve-line-featured {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.dots-tryangle-featured {
  position: absolute;
  bottom: 72px;
  left: 34px;
  width: 146px;
}

.home-featuredR .partical-img {
  position: absolute;
  top: -15px;
  left: 0;
}

.home-featur-sec .container {
  position: relative;
  z-index: 1;
}

.home-featur-sec .owl-stage {
  display: flex;
}

.home-featur-sec .container .owl-carousel {
  position: static;
}

.home-featur-sec .container .owl-carousel .owl-nav {
  width: 100%;
}

.home-featur-sec .container .owl-carousel .owl-nav button.owl-prev {
  left: 0;
}

.home-featur-sec .container .owl-carousel .owl-nav button.owl-next {
  right: inherit;
  left: 5%;
}


/* ======================== Pull Through for the Boys section ====================== */
.home-pullL {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}

.home-pull-roundedPic {
  max-width: 380px;
  border-radius: 180px;
  border: 10px solid #fff;
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 5px;
  background: #f6f6f6;
  margin-right: 30px;
  position: relative;
  z-index: 2;
}

.home-pull-twoPics {
  width: calc(100% - 521px);
  position: relative;
  z-index: 2;
}

.home-pull-twoPics-squre {
  border-radius: 30px;
  border: 10px solid #fff;
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  height: 48%;
  margin-bottom: 30px;
}

.home-pull-twoPics-circle {
  width: 270px;
  height: 270px;
  border-radius: 100%;
  border: 10px solid #fff;
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.home-pullR h2 {
  max-width: 520px;
}

.yellow-curve-pull {
  position: absolute;
  top: -76px;
  left: 220px;
}

.home-pullR .form-control {
  border-radius: 50px;
  border: 1px solid #4d7795 !important;
  background-color: #265374 !important;
  color: #ffffff;
}

.home-pullR textarea.form-control {
  border-radius: 30px;
  height: auto;
}

.home-pullR .form-control:focus {
  outline: none;
}

.home-pullR .form-control::-ms-input-placeholder {
  color: #7aa6c6;
}

.home-pullR .form-control::placeholder {
  color: #7aa6c6;
  opacity: 1;
}

.dots-tryangle-pull-twoPics {
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  right: -60px;
    width: 146px;
	z-index:-1;
}

.dots-square-home-pull-left {
  position: absolute;
  bottom: 170px;
  left: 45px;
}

.dots-square-home-pull-right {
  position: absolute;
  bottom: -50px;
  right: 55px;
}

.home-pull-form-sec {
  overflow-y: hidden;
}

.input-group {
  border-radius: 50px;
  border: 1px solid #4d7795 !important;
  overflow: hidden;
}

.input-group .form-control {
  border: none !important;
}

.home-pullR .input-group .input-group-text {
  background-color: #265374;
  color: #7aa6c6;
  border: none;
  height: 60px;
}

.home-pullR .input-group .input-group-text a {
  color: #7aa6c6;
}


/* ======================= Follow us ============================= */
.home-follow-btns ul {
  padding: 0;
  margin: 0;
}

.home-follow-btns ul {
  display: flex;
  flex-flow: wrap;
  list-style: none;
  justify-content: flex-end;
}

.home-follow-btns ul li {
  margin-right: 15px;
}

.home-follow-btns ul li:last-child {
  margin-right: 0px;
}

.home-followTitle {
  max-width: 490px;
}

.home-follow-sec {
  overflow-y: hidden;
}

.home-follow-sec:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 49%;
  background-color: #fff;
  content: "";
}

/* ======================= Follow us end ============================= */

.dots-tryangle-pull-followTitle {
  top: -27px;
  left: -66px;
  position: absolute;
      z-index: 0;
    width: 146px;
}

/* ======================= Reach out ============================= */
.home-reach-box {
  background: url(../images/contact-home.svg) no-repeat bottom center #fff;
  border-radius: 20px;
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.1);
  padding: 60px;
  margin-top: 60px;
  z-index: 1;
}

.home-reach-box-inner {
  max-width: 1194px;
  margin: 0 auto;
}

.home-reach-box .common-header-center {
  max-width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px !important;
}

.home-reach-box .form-control {
  border-color: #d4d7db;
  border-radius: 30px;
  color: #9f9f9f;
}

.home-reach-box .form-control::-ms-input-placeholder {
  color: #9f9f9f;
}

.home-reach-box .form-control::placeholder {
  color: #9f9f9f;
  opacity: 1;
}

.dots-reach-home-top {
  position: absolute;
  left: -66px;
  top: 24px;
  z-index: 0;
}

.dots-reach-home-bottom {
  position: absolute;
  right: 0px;
  bottom: 5%;
  z-index: 0;
  width: 244px;
}

.dots-tryangle-reach-home-bottom {
  position: absolute;
  left: 40px;
  bottom: -4px;
  z-index: 0;
  width: 156px;
}

/* ======================= Reach out end ============================= */

.carve-line-reach-home-middle {
  position: absolute;
  right: 0px;
  bottom: 51%;
  width: 150px;
}

.common-header-center h3 {
  font-weight: 600;
  position: relative;
}

.common-header-center h3::before {
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  width: 155px;
  height: 20px;
  background-image: url("../images/yellow-line.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -26px;
}

/*-- footer(Start) --*/
.main-ftr {
  background-color: #03131f;
  padding-top: 50px;
}

.ftr-top {
  text-align: center;
}

.ftr-links {
  border-top: 1px solid #122838;
  border-bottom: 1px solid #122838;
}

.ftr-links ul {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding-left: 0;
  margin-bottom: 0;
}

.ftr-links ul li {
  position: relative;
  padding: 30px 50px;
  list-style: none;
}

.ftr-links ul li a {
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  position: relative;
}

.ftr-links ul li:after {
  content: "";
  position: absolute;
  background: #123148;
  height: 26px;
  width: 1px;
  right: 0;
}

.ftr-links ul li:last-child:after {
  display: none;
}

.logo-ftr {
  position: relative;
  padding: 50px 0 50px;
  max-width: 300px;
  margin: 0 auto;
}

.logo-whatermark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.footer-email-box,
.footer-follow {
  background-color: #071927;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
}

.ftr-bottom {
  padding: 50px 0;
}

.footer-email-box .image-box {
  width: 80px;
  height: 80px;
  border: 1px solid #fff;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-right: 20px;
}

/*.footer-email-box .text-box { width: calc(100% - 100px); }*/
.footer-email-box .text-box h3 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-follow h3 {
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
}

.footer-email-box .text-box a,
.footer-follow ul li a {
  font-size: clamp(20px, 2vw, 22px);
  color: #fff;
  font-weight: 300;
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  display: inline-block;
}

.footer-follow ul li {
  list-style: none;
}

.footer-follow ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.footer-follow {
  justify-content: space-between;
}

.footer-follow ul li span.icon {
  padding-right: 3px;
  line-height: 0;
  margin-right: 3px;
}

.footer-follow ul li:first-child {
  padding-right: 20px;
}

.footer-another-logo svg {
  /* padding-left: 10px;*/
  max-width: 255px;
}

.footer-another-logo svg path {
  fill: #ffffff !important;
  stroke: #ffffff;
  transition: all 0.4s ease
}

.footer-another-logo:hover svg path {
  fill: #40001d !important;
  stroke: #40001d;
  transition: all 0.4s ease
}

.footer-another-logo {
  position: relative;
  display: inline-block;
}

.footer-another-logo::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background-color: #ffffff;
  border-radius: 8px;
  transform: scale(0);
  transition: all 0.4s ease;
  z-index: 0;
}

.footer-another-logo:hover::after {
  transform: scale(1);
}

.footer-another-logo .svg-container {
  position: relative;
  z-index: 1;
  padding: 15px;
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.end-footer {
  border-top: 1px solid #122838;
  padding: 30px 0;
}

.end-footer p {
  color: #fff;
  font-weight: 300;
  margin: 0;
}

.end-footer a {
  position: relative;
}

/* ===================== footer animation =========================== */
.ftr-links ul li a::before,
.footer-email-box .text-box a::before,
.footer-follow ul li a::before,
.end-footer a::before {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #E8C100;
  position: absolute;
  bottom: -4px;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.ftr-links ul li a:hover::before,
.footer-email-box .text-box a:hover::before,
.footer-follow ul li a:hover::before,
.end-footer a:hover::before {
  content: "";
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.ftr-bottom .partical-dot {
  position: absolute;
  bottom: 50px;
  right: 67px;
}

/*=====home page====*/

/* =============== login page ==================== */
.login-page {
  background-image: url(../images/login-background.png);
  min-height: 100vh;
  min-height: 100svh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.login-page>.container {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  padding: 100px 15px;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  z-index: 1;
}

.login-form-wrap {
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #ded9ca;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 40px;
  padding: 60px 60px 30px 60px;
}

.login-form-wrap h1 {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  color: #194768;
  margin-bottom: 30px;
}

.login-form-wrap .form-group {
  margin-bottom: 30px;
}

.login-form-wrap .form-group input {
  border: 1px solid #d4d7db !important;
  padding: 15px 47px 15px 30px;
  border-radius: 100px;
  color: #9f9f9f;
  font-size: 18px;
  font-weight: 500;
}

/* ========================= input eye ============================ */
.eye-position {
  position: absolute;
  top: 32px;
  right: 4%;
  cursor: pointer;
}

.eye-position svg {
  color: #7aa6c6;
}

/* ===================== input check ======================================== */
.form-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-check input.form-check-input {
  background-color: transparent;
  border-color: #0d6efd;
  border: 2px solid #3866af !important;
  border-radius: 50%;
  height: 21px !important;
  width: 20px !important;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url(../images/check-box.svg);
  background-size: 45%;
  height: 18px !important;
  width: 18px !important;
}

.form-check-input:focus {
  box-shadow: none !important;
}

.form-check label.form-check-label {
  color: #2e2e2e;
  font-size: 18px;
}

a.forget-password {
  color: #194768;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.login-submit {
  margin: 30px 0px;
}

.button-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}

.button-flex .button-btn {
  background-color: #ecf2f7;
  border: none;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #2e2e2e;
  font-weight: 500;
}

.button-flex .button-btn img {
  margin-right: 7px;
}

p.log-with.text-center,
.account-sign-up {
  color: #6d7682;
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 500;
}

.account-sign-up a {
  color: #194768;
  position: relative;
}

.login-after {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 327px;
}

.contribute-form .form-group input[type="password" i] {
  padding-right: 60px;
}

.account-sign-up a::before,
a.forget-password::before {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #194768;
  position: absolute;
  bottom: -3px;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.account-sign-up a:hover::before,
a.forget-password:hover::before {
  content: "";
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/*============Suggest=============*/
.suggest-banner .lft-text p {
  max-width: 650px;
}

.suggest-banner .banner-sm2 {
  left: 45%;
}

.suggest-banner .location-banner-img2 {
  left: 0;
  position: absolute;
  bottom: 30px;
  width: 330px;
  height: 330px;
  border-radius: 330px;
  border: 15px solid #f0f9ff;
}

.suggest-banner .location-banner-right {
  justify-content: flex-end;
}

.suggest-banner .location-banner-img1 {
  margin-right: 0px;
  border-radius: 250px;
  margin-bottom: 0;
  height: 100%;
}

.suggest-banner .suggest-imge-line {
  height: 600px;
  margin-bottom: -130px;
  margin-right: 100px;
  position: relative;
}

.suggest-banner .suggest-imge-line::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 15px;
  width: 100%;
  height: 100%;
  border-radius: 250px;
  z-index: -1;
  border: 1px dashed #194768;
}

.suggest-form-section .top-right-partical {
  position: absolute;
  top: 0;
  right: 0;
}

.suggest-form-section .top-lft-partical {
  position: absolute;
  top: 50px;
  left: 0;
}

.suggest-form-section .mdl-lft-partical {
  position: absolute;
  top: 50%;
  left: 30px;
}

.suggest-form-section .partical-dot {
  position: absolute;
  top: 22%;
  right: 50px;
}

.suggest-form-box ul.filter-box {
  padding: 0;
  margin: 0;
  column-count: 9;
}

.suggest-form-box ul.filter-box li {
  list-style: none;
}

.suggest-form-box .filter-box .form-check {
  margin-bottom: 15px;
  margin-bottom: 20px;
  color: #6d7682;
  margin-right: 10px;
}

.suggest-form-box .filter-box .form-check label.form-check-label {
  color: #6d7682;
}

.suggest-form-box .filter-box .form-check-input:checked[type="checkbox"]+label.form-check-label {
  color: #194768;
}

.suggest-form-box .filter-box .form-check-input:checked[type="checkbox"] {
  background-image: url(../images/Check.svg);
  border: 2px solid #194768 !important;
}

.suggest-form-section .common-header-center {
  max-width: 850px;
  margin: 0 auto;
}

.suggest-form-box .tob-bar-sec {
  max-width: 750px;
  margin: 0 auto;
}

.suggest-form-box .progress {
  max-width: 72%;
  height: 6px;
  margin: 0 auto;
  border-radius: 60px;
  overflow: hidden;
  background-color: #cdd7df;
  padding: 0 !important;
}

.suggest-form-box .step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #cdd7df;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer;
  color: #6e7f8c;
  font-size: clamp(20px, 4vw, 30px);
  position: relative;
}

.suggest-form-box .step-circle::before {
  content: "";
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
  border: 1px dashed #91979c;
  border-radius: 80px;
}

.suggest-form-box .progress-bar {
  background-color: #194768;
  border-radius: 50px !important;
}

.suggest-form-box .sngl-form-box h3 {
  font-weight: 600;
  color: #194768;
}

.suggest-form-box .sngl-form-box {
  margin-bottom: 30px;
}

.suggest-form-box input.form-control {
  border-radius: 50px;
  font-size: 18px;
  color: #9f9f9f;
  padding: 15px 30px;
}

.suggest-form-box .filter-box {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.suggest-form-box .sngl-form-box p {
  font-size: 20px;
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 400;
  color: #000;
  margin-top: 10px;
}

.suggest-form-box {
  background-color: #f1f5f9;
  border-radius: 20px;
  padding: 50px;
  margin-top: 24px;
  position: relative;
}

.suggest-after::before,
.location-details-after::before {
  content: "";
  position: absolute;
  width: 99.7%;
  height: 41px;
  bottom: -10px;
  left: 0;
  background-color: #194566;
  border-radius: 20px;
  right: 0;
  margin: 0 auto;
}

.suggest-form-box .step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}

.suggest-form-box .step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #007bff;
  z-index: -1;
}

.suggest-form-box #multi-step-form {
  overflow-x: hidden;
}

.suggest-form-box textarea.form-control {
  border-radius: 20px;
  padding: 15px 30px;
}

.suggest-form-box .button-box {
  display: flex;
  justify-content: space-between;
}

.suggest-form-box .button-box .btn span {
  top: 1px;
  margin-left: 0;
}

.suggest-form-box .btn.next-step:hover span img,
.suggest-form-box .btn.btn-success:hover span img {
  transform: rotate(0deg);
  transform: translate(10px, 0px);
}

.suggest-form-box .btn.prev-step:hover span img {
  transform: rotate(0deg);
  transform: translate(-10px, 0px);
}

.suggest-form-box .step-circle.active {
  background-color: #194768;
  color: #fff;
}

.suggest-form-box .step-circle.active::before {
  border: 1px dashed #000000;
}

.suggest-form-box button.btn.prev-step.disable {
  cursor: not-allowed;
  color: #6e7f8c !important;
  border: 1px solid #cdd7df;
  background-color: #cdd7df;
}

.suggest-form-box button.btn.prev-step.disable::before {
  background-color: #cdd7df;
}

.suggest-form-box button.btn.prev-step.disable span::before {
  display: none;
}

.suggest-form-box button.btn.prev-step.disable:hover span img {
  transform: translate(0, 0);
}

.suggest-form-box button.btn:hover img,
.suggest-form-box button.btn.prev-step.disable img {
  filter: unset !important;
}

.suggest-form-box .filter-box.auto-width .form-check {
  width: auto;
  margin-right: 20px;
}

.suggest-form-box .filelabel {
  width: 100%;
  border: 1px solid #d4d7db;
  border-radius: 5px;
  display: block;
  padding: 5px;
  transition: border 300ms ease;
  cursor: pointer;
  text-align: left;
  margin: 0;
  border-radius: 20px;
  font-size: 18px;
  color: #9f9f9f;
  padding: 15px 30px;
  background-color: #fff;
  height: 120px;
  display: flex;
  align-items: center;
}

.suggest-form-box .filelabel .title {
  transition: 200ms color;
  background-color: #29abe2;
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  padding: 10px 30px;
  border-radius: 30px;
  z-index: 1;
  color: #fff;
  position: relative;
}

.suggest-form-box .filelabel span.title::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #194566;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50px;
  z-index: -1;
  right: 0;
  border: 0;
  margin: 0 auto;
  transform: scale(0);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.suggest-form-box .filelabel span.title:hover::before {
  transform: scale(1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.suggest-form-box .filelabel button:hover span.title::before {
  transform: scale(1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.suggest-form-box .inputfile-hide {
  display: none;
}

.remove-wrap img {
  height: 50px !important;
  margin-bottom: 0px !important;
}

.custom-file-input,
.home-latest-greatest-sec .single-box .image-box {
  position: relative;
}

.home-latest-greatest-sec .single-box .image-box::after {
  width: 100%;
  height: 100%;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 100%);
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 20px;
}

.home-latest-greatest-sec .single-box .image-box::before {
  width: 100%;
  height: 100%;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background: rgb(0, 0, 0);
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 78%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 20px;
}

.home-latest-greatest-sec .single-box:hover .image-box::before {
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-box .content-box {
  z-index: 6;
}

.swiper-button-next,
.swiper-button-prev {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

/*============Suggest=============*/

/*==========resources===========*/
.resources-banner .lft-text p {
  max-width: 550px;
}

.resources-banner .resources-banner-img-one {
  height: 313px;
  margin-bottom: 20px;
  border-radius: 40px;
  margin-right: 0;
}

.resources-banner .resources-banner-img-two {
  height: 225px;
  border-radius: 40px;
  margin-right: 0;
}

.resources-banner .first-img-box {
  margin-right: 20px;
}

.resources-banner .resources-banner-img-three {
  border-radius: 40px;
  height: 560px;
  margin-bottom: -220px;
}

.resources-banner .location-banner-right {
  padding-right: 50px;
}

/* ====================== discover resume ========================== */
.discover-resume-sec .common-header-center {
  max-width: 850px;
  margin: 0 auto;
}

.discover-resume-box .image-box {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.discover-resume-box .content-box {
  padding: 20px;
  border-top: 0;
  background-color: #fff;
}

.discover-resume-box .content-box h3 {
  font-weight: 600;
  color: #2e2e2e;
}

.discover-resume-box .content-box .author {
  display: flex;
  align-items: center;
  border-top: 1px dashed #a8c5e2;
  padding-top: 20px;
}

.discover-resume-box .content-box .author p {
  margin: 0;
  color: #2e2e2e;
  font-size: clamp(16px, 4vw, 20px);
  width: calc(100% - 50px);
}

.discover-resume-box .content-box .author .icon {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #ecf2f7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin-right: 10px;
}

.discover-resume-box .sngl-box {
  border: 1px solid #b2cde0;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.discover-resume-box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.discover-resume-box .sngl-box a:hover .image-box img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.discover-resume-box .row .col-lg-3 {
  margin-bottom: 30px;
}

.discover-resume-box .end-button {
  text-align: center;
  margin-top: 20px;
}

.discover-resume-sec .partical-btm {
  position: absolute;
  bottom: 0;
  right: 0;
}

.discover-resume-sec .partical-lft {
  position: absolute;
  left: 50px;
  top: 20%;
}


/* ========================== beyond perfect matches ====================== */
.beyond-perfect-matches-sec .accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
}

.beyond-perfect-matches-sec .accordion-button:focus {
  box-shadow: none;
}

.beyond-perfect-matches-sec .accordion-item {
  margin-bottom: 11px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

.beyond-perfect-matches-sec .accordion-button::after {
  background-image: url("../images/accordian-arrow.svg");
  width: 50px;
  height: 50px;
  background-color: #194768;
  position: absolute;
  top: 15px;
  right: 30px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
}

.beyond-perfect-matches-sec .accordion-item .accordion-button {
  padding: 30px 30px;
  padding-right: 90px;
  position: relative;
  font-weight: 600;
  color: #194768;
  font-size: clamp(16px, 4vw, 20px);
}

.beyond-perfect-matches-sec .accordion-item .accordion-body {
  padding-top: 0;
  width: calc(100% - 50px);
}

.beyond-perfect-matches-sec .accordion-body p {
  font-size: clamp(16px, 4vw, 20px);
}

.beyond-perfect-matches-sec .accordion-item button.accordion-button.collapsed {
  color: #2e2e2e;
}

.beyond-perfect-matches-wraper {
  background-image: url("../images/beyon-map.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.beyond-perfect-matches-sec .partical-two {
  position: absolute;
  bottom: 0;
  right: 0;
}

.beyond-perfect-matches-sec .partical-three {
  position: absolute;
  bottom: 100px;
  left: 50px;
}

.beyond-perfect-matches-sec .partical-four {
  position: absolute;
  top: 100px;
  right: 50px;
}

/* ====================== harvey specter dethroned ====================== */
.harvey-specter-dethroned-wraper .sngl-box .image-box {
  width: 100%;
  height: 585px;
  overflow: hidden;
  position: relative;
}

.harvey-specter-dethroned-wraper .sngl-box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.harvey-specter-dethroned-wraper .sngl-box:hover .image-box img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.harvey-specter-dethroned-wraper .sngl-box .image-box h2 {
  position: absolute;
  top: 20px;
  width: 100%;
  margin: 0;
  text-align: center;
  padding: 20px;
  color: #ffffff;
  font-weight: 600;
}

.harvey-specter-dethroned-wraper .sngl-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(7, 35, 87);
  background: linear-gradient(0deg, rgb(7 35 87 / 34%) 0%, rgba(14, 64, 104, 0) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.harvey-specter-dethroned-wraper .sngl-box .overlay .icon {
  max-width: 250px;
}

.harvey-specter-dethroned-wraper .sngl-box .overlay h3 {
  margin: 0;
  position: absolute;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding: 30px 50px;
  font-weight: 600;
}

.harvey-specter-dethroned-wraper .sngl-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.harvey-specter-dethroned-wraper .sngl-box img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.harvey-specter-dethroned-wraper .owl-item.center .sngl-box img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.harvey-specter-dethroned-wraper .owl-item {
  transform: scale(0.9);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.harvey-specter-dethroned-wraper .owl-item.center {
  transform: scale(1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.harvey-specter-dethroned-wraper .container-fluid {
  padding: 0;
}

.harvey-specter-dethroned-wraper .owl-nav button.owl-prev {
  left: 23%;
  box-shadow: 0 0 15px #00000040;
}

.harvey-specter-dethroned-wraper .owl-nav button.owl-next {
  right: 23%;
  box-shadow: 0 0 15px #00000040;
}

.harvey-specter-dethroned-wraper .owl-stage-outer {
  z-index: -1;
}

.harvey-specter-dethroned-sec {
  padding-top: 200px;
}

.harvey-specter-dethroned-sec .owl-nav button.owl-next,
.harvey-specter-dethroned-sec .owl-nav button.owl-prev {
  top: 45%;
}

.harvey-specter-dethroned-sec .partical-three {
  position: absolute;
  top: 0;
  right: 0;
}

.harvey-specter-dethroned-sec .partical-two {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.harvey-specter-dethroned-sec .partical-one {
  top: 50px;
}

/*==========resources===========*/

/* ====================  Contribute ============== */

.inner-banner.banner-sec {
  min-height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: inherit;
  padding: 150px 0px 40px 0px;
}

.baner-right-img {
  width: 100%;
}

.banner-sm {
  max-width: 230px;
  position: absolute;
  right: 0;
  z-index: 1;
  top: 50%;
}

.inner-baner-right-main {
  margin-bottom: -80px;
}

.banner-sm2 {
  max-width: 126px;
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-40%, -50%);
}

.inner-banner.banner-sec .banner-text {
  margin-top: 0px;
}

.login-submit input[type="submit"].btn.btnWhite {
  background-image: url("../images/circle-arrow-blue.svg");
  background-repeat: no-repeat;
}

/* ======================= contribute section =========================== */
.contribute-form-main {
  background-image: url("../images/contribute-from-bg.png");
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}

.contribute-form {
  background-color: #194768;
  padding: 50px 50px 100px 50px;
  border-radius: 50px;
  overflow: hidden;
}

.contribute-form h2 {
  text-align: center;
  position: relative;
  padding-bottom: 30px;
  color: #fff;
  font-weight: 500;
}

.contribute-form h2::before {
  content: "";
  width: 155px;
  height: 20px;
  background-image: url(../images/yellow-line.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.contribute-form p {
  max-width: 1174px;
  margin: 0 auto;
  color: #fff;
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.contribute-form input.form-control {
  padding: 12px 30px;
  background-color: #265374 !important;
  border: 1px solid #4d7795 !important;
  border-radius: 100px;
  color: #7aa6c6;
  font-size: 18px;
}

.contribute-form .form-group {
  margin-bottom: 30px;
}

/* ====================== contribute placeholder =============================  */
.contribute-form .form-control::-moz-placeholder {
  color: #7aa6c6;
  opacity: 1;
}

.contribute-form .form-control:-ms-input-placeholder {
  color: #7aa6c6;
}

.contribute-form .form-control::-webkit-input-placeholder {
  color: #7aa6c6;
}

.edit-location .form-control::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.edit-location .form-control:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

.edit-location .form-control::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

.edit-location .form-group input.form-control {
  color: #fff !important;
}

.contribute-form .form-group textarea {
  padding: 12px 30px;
  background-color: #265374;
  border: 1px solid #4d7795 !important;
  border-radius: 30px;
  color: #7aa6c6;
  font-size: 18px;
  height: 110px;
}

.contribute-form input.btn.btnWhite {
  color: #194768;
  font-weight: 500;
  font-size: 20px;
  padding-right: 67px;
  background-size: 11%;
  background-position: center left 84%;
}

.contribute-form input.btn.btnWhite:hover {
  background-position: center left 81%;
  background-image: url(../images/white-arrow.svg);
}

.position-icon1 {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 245px;
}

.position-icon2 {
  position: absolute;
  right: 0;
  max-width: 112px;
  bottom: 0;
}

/* ================ small image ===================== */
.sm-img1 {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 70px;
}

.sm-img2 {
  position: absolute;
  max-width: 240px;
  top: 2%;
  left: 2%;
}

.sm-img3 {
  position: absolute;
  bottom: 27%;
  left: 2%;
}

/* ================ inner banner ===================== */
.inner-baner-right {
  padding-right: 215px;
}

.inner-baner-right-main .baner-right-img {
  border-radius: 40px;
  overflow: hidden;
}

.inner-baner-right-main .dotted-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  border: 1px dashed #194768;
  max-width: 440px;
  height: 94%;
  bottom: 0;
  border-radius: 40px;
  z-index: -1;
  width: 100%;
}

.dotted-wrap {
  padding-right: 10px;
  padding-bottom: 10px;
}

.login-submit.home-btn input[type="submit"] {
  background-size: 12%;
  padding-right: 60px;
  background-position: center left 87%;
}

.login-submit.home-btn input[type="submit"]:hover {
  background-image: url(../images/white-arrow.svg);
  background-position: center left 85%;
}


/* ======================== location ==================== */
.location-banner-right {
  display: flex;
  align-items: center;
}

.location-banner-img1 {
  height: 600px;
  overflow: hidden;
  border-radius: 100px;
  width: 100%;
  margin-right: 26px;
  margin-bottom: -130px;
}

.resources-banner-img-one.location-banner-img1 {
  max-width: 348px;
}

.resources-banner-img-two.location-banner-img2 {
  max-width: 348px;
}

.location-banner-img2 {
  border-radius: 100px;
  overflow: hidden;
  height: 450px;
  width: 100%;
  margin-bottom: -130px;
}

.world-map {
  width: 60px;
  height: 60px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  padding: 15px;
  flex: 0 0 auto;
}

/* ===================== location ============================= */
.location-search button {
  background-color: #194768;
  border: none;
  width: 60px;
  height: 60px;
  padding: 15px;
  border-radius: 50%;
  font-size: 0px;
}

.location-select {
  display: flex;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19);
  border-radius: 100px;
  padding: 20px 30px;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.location-select form {
  padding-left: 15px;
  padding-right: 30px;
}

.location-select form h4 {
  font-size: 20px;
  color: #194768;
  margin-bottom: 0px;
  text-align: left;
}

.address-select-wrap,
.radio-select-wrap {
  padding-left: 70px;
  position: relative;
}

.address-select-wrap .world-map,
.radio-select-wrap .world-map {
  position: absolute;
  left: 0;
  top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.search-post-item h3,
.search-post-item p {
  cursor: pointer;
}

.location-select form select.form-select,
.location-select form input {
  border: none !important;
  border-radius: 0 !important;
  padding-left: 0px;
  color: #8c8c8c;
  font-size: 18px;
  height: auto !important;
  padding-top: 5px !important;
}

.location-select form select.form-select:focus {
  box-shadow: none;
}

.location-select form .location-w {
  position: relative;
  padding-left: 70px;
  width: 100%;
}

.location-select form .location-w .world-map {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.location-select form {
  width: 100%;
}

.more-btn {
  text-align: center;
}

.more-btn a.btn.map-btn {
  border-radius: 10px 10px 10px 10px;
  background-color: #fff;
  color: #194566 !important;
  padding: 15px 20px 15px 20px;
}

.more-btn a.btn.map-btn::before {
  display: none;
}

.more-btn a.btn.map-btn:hover {
  background-color: #e6c43b;
  color: #fff !important;
}

.banner-tab ul.nav-tabs {
  border: none;
  padding-left: 50px;
}

.banner-tab ul.nav-tabs li.nav-item .nav-link {
  border: none !important;
  box-shadow: none;
  background-color: #cdd7df;
  color: #6e7f8c;
  font-size: 20px;
  padding: 10px 30px !important;
  border-radius: 30px 30px 0px 0px;
}

.banner-tab ul.nav-tabs li.nav-item .nav-link.active {
  background-color: #194768;
  color: #fff;
}

.banner-tab ul.nav-tabs li.nav-item {
  margin-right: 10px;
}

.banner-tab ul.nav-tabs li.nav-item:last-child {
  margin-right: 0px;
}

.date-destinations-heading {
  max-width: 840px;
  margin: 0 auto;
}

.date-list-left {
  background-color: #f1f5f9;
  border-radius: 20px;
  overflow: hidden;
}

.date-list-left .date-list-top {
  background-color: #194768;
  padding: 30px 30px;
}

.date-list-left .date-list-top h3 {
  color: #fff;
  margin-bottom: 20px;
}

.date-list-left .date-list-top .form-group {
  position: relative;
}

.date-list-left .date-list-top .form-group input.form-control {
  color: #7aa6c6;
  background-color: #265374;
  border: 1px solid #4d7795 !important;
  border-radius: 100px;
  padding-right: 55px;
  padding-left: 20px;
}

.date-list-left .date-list-top .form-group button.search {
  width: 40px;
  height: 40px;
  border: none;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  padding: 0px;
}

.gm-style .gm-style-iw-tc::after {
  background: #162531 !important;
}

.date-list-left .date-list-top .form-group input.form-control::-moz-placeholder {
  color: #7aa6c6;
  opacity: 1;
}

.location-content-wrap {
  padding: 20px;
  color: #fff;
}

.location-content-wrap p {
  margin-bottom: 10px;
}

.location-content-wrap ul.best-suited-term-list {
  list-style: none;
  padding: 0px;
}

.location-content-wrap ul.best-suited-term-list li,
.location-content-wrap p {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
}

.location-content-wrap ul.best-suited-term-list li::after {
  content: " ✔";
  position: absolute;
  top: 0px;
  left: 0;
}

.location-content-wrap p::after {
  position: absolute;
  top: 6px;
  left: -4px;
  background-image: url(../images/location-white.svg);
  content: "";
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  filter: invert(1);
}

.date-list-left .date-list-top .form-group input.form-control:-ms-input-placeholder {
  color: #7aa6c6;
}

.date-list-left .date-list-top .form-group input.form-control::-webkit-input-placeholder {
  color: #7aa6c6;
}

.locaton-content-heading h3,
.locaton-content-heading p {
  color: #fff;
  margin-bottom: 2px;
}

.location-col-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.location-col-wrap a {
  color: #fff;
}

.location-col-wrap a .locaton-content-hover h3,
.locaton-content-hover h3 {
  color: #fff;
  margin-bottom: 2px;
}

.locaton-content-hover p {
  color: #fff;
  margin-bottom: 10px;
}

.locaton-content-hover ul {
  padding: 0px;
  list-style: none;
}

.locaton-content-hover ul li {
  color: #fff;
  padding-left: 13px;
  position: relative;
  line-height: 1;
  margin-bottom: 12px;
}

.locaton-content-hover .hover-arrow {
  width: 50px;
  position: absolute;
  right: 5%;
  bottom: 4%;
}

.data-list-col .col-md-6,
.data-list-col .col-md-12 {
  margin-bottom: 17px;
}

/* ========================== location-details =========================== */
.location-details .form-group .form-control {
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border: 1px solid #4d7795 !important;
  background-color: #265374 !important;
  font-size: 18px;
  color: #fff;
  padding: 15px 25px;
}

.location-details .yellow-curve-line {
  position: absolute;
  bottom: -28px;
  right: 203px;
  z-index: 0;
}

.location-details {
  position: relative;
}

.location-details::before {
  position: absolute;
  content: "";
  width: 69px;
  height: 244px;
  background-image: url("../images/dotedimg.png");
  background-size: cover;
  background-repeat: no-repeat;
  left: 145px;
  top: 130px;
  background-color: transparent;
}

.location-details::after {
  position: absolute;
  content: "";
  width: 97px;
  height: 57px;
  background-image: url("../images/trangle-dots.png");
  background-size: cover;
  background-repeat: no-repeat;
  left: 45%;
  bottom: 15%;
  background-color: transparent;
  transform: translateX(-45%);
}

.location-details .date-spotL p {
  font-size: 30px;
  font-weight: normal;
}

.location-details .form-group input::placeholder {
  color: #7aa6c6;
}

.location-details .form-group textarea::placeholder {
  color: #7aa6c6;
}

.location-details .date-spotR {
  justify-content: flex-start !important;
}

.location-select .radio-select-wrap {
  width: 50%;
}

button.wp_ulike_btn.wp_ulike_put_image {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  background-color: #ecf2f7;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: none;
}

.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active {
  background-color: #ff6f63;
}

.wpulike-animated-heart button.wp_ulike_btn:hover {
  background-color: #ff6f63;
}

.wpulike-animated-heart button.wp_ulike_btn:hover svg {
  fill: white !important;
}

.wpulike {
  padding: 0 !important;
}


.map-wrap {
  height: 570px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background-color: #fff;
}

.map-wrap iframe {
  height: 100%;
  border-radius: 20px;
  width: 100%;
}

.map-wrap img {
  height: 100%;
  object-fit: cover;
}

.data-list-col {
  margin-top: 100px;
}

.search-location-img {
  position: relative;
  padding-bottom: 118%;
  height: 100%;
}

.search-location-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-location-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 92%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 92%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 92%);
}

.locaton-content-heading {
  width: calc(100% - 50px);
}

.search-locaton-content {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px;
  align-items: end;
}

.search-locaton-content .hover-arrow {
  width: 50px;
  height: 50px;
}

.data-result {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.data-result ul {
  padding: 0;
  margin-bottom: 0px;
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.data-result ul li {
  border: 1px solid #194768;
  background-color: #daefff;
  font-size: 20px;
  color: #194768;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.data-result ul li p {
  padding: 5px 12px;
  margin-bottom: 0px;
  border-right: 1px solid #194768;
}

.data-result ul li button {
  display: block;
  padding: 7px 12px 7px 12px;
  border: none;
  background-color: transparent;
  line-height: normal;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-result h5 {
  font-size: 20px;
  color: #2e2e2e;
  font-weight: 400;
  margin-bottom: 0px;
  width: 130px;
}

.data-result ul {
  width: calc(100% - 130px);
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.partical-one {
  position: absolute;
  top: 0;
  max-width: 964px;
  left: 0;
}

.location-sec .banner-sm {
  top: inherit;
  bottom: -63px;
}

.dot-img {
  position: absolute;
  right: 0;
  height: 211px;
  top: 10%;
}

.tringle-img {
  position: absolute;
  top: 39%;
  right: 5%;
  width: 100px;
}

.date-destinations .container {
  position: relative;
  z-index: 1;
}

.data-result ul li {
  margin-right: 15px;
  margin-bottom: 5px;
}

.data-result ul li:last-child {
  margin-right: 0px;
}

.filter-box .form-check input.form-check-input {
  background-color: #fff;
  border: 2px solid #6d7682 !important;
  border-radius: 5px !important;
  height: 24px !important;
  width: 24px !important;
  margin-top: 0px;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url(../images/check-box.svg);
  background-size: 40%;
  height: 20.5px !important;
  width: 20px !important;
  background-position: 50% 50%;
}

.filter-box .form-check-input:checked[type="checkbox"]+label.form-check-label {
  color: #3866af;
}

.data-check-box-main {
  padding: 30px 30px;
}

.filter-box .form-check {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.filter-box .form-check label.form-check-label {
  font-size: clamp(16px, 4vw, 20px);
  padding-left: 10px;
  font-weight: 400;
  color: #6D7682;
}


.location-details .form-group .filter-box {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.location-details .form-group  .form-check {
  margin-bottom: 15px;
  margin-bottom: 20px;
  margin-right: 20px;
}

.location-details .form-group .filter-box .form-check-input:checked[type="checkbox"] {
  background-image: url(../images/Check.svg);
  border: 2px solid #ffffff !important;
  filter: brightness(0) invert(1); /* Makes the check mark white */
}

.location-details .form-group .filter-box .form-check input.form-check-input {
  background-color: #ffffff00;
  border: 2px solid #ffffff !important;
  border-radius: 5px !important;
  height: 24px !important;
  width: 24px !important;
  margin-top: 0px;
}

.location-details .filter-box .form-check-input:checked[type="checkbox"]+label.form-check-label{
      color: #ffffff;
}

.location-details .filter-box .form-check label.form-check-label {
    color: #9f9f9f;
}



.location-details .additional-box-form{
    border: 1px solid #4d7795 !important;
    background-color: #265374 !important;
    font-size: 18px;
    color: #fff;
    padding: 15px 25px;
    border-radius: 40px;}
	
.date-list-right {
  padding-left: 20px;
}

.date-list-left .btn {
  justify-content: center;
}

.filter-box h4 {
  color: #2e2e2e;
  font-weight: 700;
}

.filter-box {
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.date-destinations .dots-portrait {
  width: 69px;
  position: absolute;
  top: 42%;
}

.sponsored {
  position: absolute;
  color: #194768;
  font-size: 20px;
  font-weight: 400;
  background-color: #e8c100;
  padding: 5px 40px;
  top: 3%;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.locations-details-banner-img {
  height: 700px;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
}

.location-details-banner .banner-sm {
  top: 109px;
  bottom: inherit;
  left: 0;
  max-width: 170px;
}

.location-details-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 20%;
  background-color: #fff;
}

.banner-sec .container {
  position: relative;
  z-index: 2;
}

/* ========================== allegria-hotel ========================== */
.allegria-hotel-left ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.allegria-hotel-left ul li {
  position: relative;
  padding-right: 30px;
  margin-right: 30px;
  display: flex;
  align-items: center;
  color: #194768;
  font-size: 20px;
}

.allegria-hotel-left ul li .icon-sm {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  background-color: #ecf2f7;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}

.allegria-hotel-left ul li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background-color: #cdd7de;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.allegria-hotel-left ul li:last-child:after {
  display: none;
}

.allegria-hotel-left ul li:last-child {
  margin: 0;
  padding: 0;
}

.allegria-hotel-left h2 {
  color: #092234;
  font-weight: 700;
}

.allegria-hotel-left p {
  font-size: 20px;
}

.allegria-hotel-right {
  position: relative;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
}

.allegria-hotel-right::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(9 34 51 / 90%);
  top: 0;
  bottom: 0;
  left: 0;
}

/* ========================= information ============================ */
.information-wrap {
  padding: 50px;
  position: relative;
  z-index: 2;
}

.information-wrap a::before {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #E8C100;
  position: absolute;
  bottom: -2px;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.information-wrap a:hover::before {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}



.information-list h3 {
  color: #fff;
  border-bottom: 1px solid #ecf2f7;
  padding-bottom: 10px;
  font-weight: 500;
  position: relative;
}

.information-list ul {
  padding: 0;
  list-style: none;
  margin-bottom: 50px;
}

.information-list ul li,
.information-list ul li a {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  line-height: normal;
}

.information-list ul li a {
  padding-left: 0px;
}

.information-list ul li:last-child {
  margin-bottom: 0px;
}

.information-list ul li::after {
  content: "";
  position: absolute;
  top: 13px;
  width: 10px;
  height: 10px;
  background-color: #e8c100;
  border-radius: 50%;
  left: 0;
}

/* ============================= autocompl ========================= */
.autocompl-wrap {
  background-color: #f1f5f9;
  padding: 50px 50px;
  border-radius: 20px;
}

/*.autocompl-wrap a::before {content: "";width: 0%;height: 2px;background-color: #E8C100;position: absolute;bottom: -2px;border-radius: 10px;-webkit-transition: all 0.4s ease;-moz-transition: all 0.4s ease;-ms-transition: all 0.4s ease;-o-transition: all 0.4s ease;transition: all 0.4s ease;}
.autocompl-wrap a:hover::before {width: 100% ;-webkit-transition: all 0.4s ease;-moz-transition: all 0.4s ease;-ms-transition: all 0.4s ease;-o-transition: all 0.4s ease;transition: all 0.4s ease;}*/

.location-address-wrap p.hovered {
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  background-color: #e1eef7;
  box-shadow: 0 10px 7px #19476821;
  border: 1px solid #b2cde0;
}

.location-address-wrap p {
  padding: 40px 20px 40px 80px;
  background-color: #fff;
  border: 1px solid #fff;
  width: 100%;
  border-radius: 20px;
  color: #2e2e2e !important;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  position: relative;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s
}

.location-address-wrap p::after {
  content: "";
  background-image: url(../images/location-details-location.svg);
  width: 50px;
  height: 50px;
  background-size: cover;
  left: 16px;
  background-repeat: no-repeat;
  border: 2px solid #CDD7DE;
  border-radius: 50%;
  background-size: 65%;
  position: absolute;
  background-position: center;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s
}

.location-address-wrap p.hovered::after {
  background-color: white;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s
}

.autocompl-wrap .autocompl-input-wrap input::-moz-placeholder {
  color: #2e2e2e;
  opacity: 1;
}

.autocompl-wrap .autocompl-input-wrap input:-ms-input-placeholder {
  color: #2e2e2e;
}

.autocompl-wrap .autocompl-input-wrap input::-webkit-input-placeholder {
  color: #2e2e2e;
}

.account-profile .support-form input::-moz-placeholder {
  color: #9F9F9F;
  opacity: 1;
}

.account-profile .support-form input::-webkit-input-placeholder {
  color: #9F9F9F;
  opacity: 1;
}

.account-profile .support-form input::-moz-placeholder {
  color: #9F9F9F;
  opacity: 1;
}

.account-profile .support-form input.form-control,
.support-form .form-group textarea,
.support-form .form-group input {
  color: #9F9F9F !important;
}

.autocompl-wrap .map-wrap {
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  margin-top: 20px;
}

.autocompl-wrap .map-wrap img,
.autocompl-wrap .map-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.allegria-hotel {
  padding-bottom: 60px;
}

.information-list h3::after {
  content: "";
  position: absolute;
  background-color: #e8c100;
  bottom: -2px;
  width: 200px;
  height: 3px;
  border-radius: 10px;
  left: 0;
  z-index: 1;
}

.allegria-hotel-right .yellow-curve-line {
  bottom: 1%;
  z-index: 2;
  right: 0;
  max-width: 194px;
}

.allegria-hotel-right .dots {
  max-width: 178px;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ============ additional information ======================== */
.additional-information {
  background-color: #f1f5f9;
  padding: 50px 50px;
  border-radius: 20px;
}

.additional-information h3 {
  position: relative;
  color: #194768;
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.additional-information ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.additional-information ul {
  margin-right: -15px;
  margin-left: -15px;
}

.additional-information ul li {
  width: 25%;
  padding: 0px 10px;
  margin-bottom: 20px;
}

.additional-information ul li .additional-list-wrap {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  border: 1px solid #b2cde0;
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 10px;
  height: 100%;
}

.additional-information ul li p {
  margin-bottom: 0;
  color: #2e2e2e;
  font-size: 20px;
}

.additional-information ul li span {
  background-color: #ecf2f7;
  padding: 12px 12px;
  border-radius: 15px;
  margin-right: 10px;
  height: 50px;
  width: 50px;
}

.additional-information ul li span img {
  object-fit: contain;
}

.additional-information h3::after {
  content: "";
  position: absolute;
  background-color: #e8c100;
  bottom: 0px;
  width: 200px;
  height: 3px;
  border-radius: 10px;
  left: 0;
  z-index: 2;
}

.additional-information h3::before {
  content: "";
  position: absolute;
  background-color: #cdd7df;
  bottom: 0px;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  left: 0;
  z-index: 1;
}

.additional-information-wrap {
  margin-top: 60px;
}

.additional-information ul li .additional-list-wrap:hover span {
  background-color: #fff;
}

.contribute-form .submit-btn {
  margin: 0 auto;
 /* display: table;*/
}


.comment-sec {
  position: relative;
}

.comment-sec::before {
  position: absolute;
  content: "";
  width: 244px;
  height: 111px;
  background-image: url("../images/comment-fram.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  left: 0;
}

.comment-sec::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 245px;
  background-image: url("../images/comment-line.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  right: 4px;
  top: 15px;
}

.comment-sec .comment-row {
  border-top: 1px solid #a8c5e2;
  border-bottom: 1px solid #a8c5e2;
}

.comment-sec .comment-row p {
  font-size: 30px;
  font-weight: 600;
  color: #194768;
  padding-top: 15px;
}


.comment-sec {
  background-color: #f1f5f9;
  padding: 50px 50px;
  border-radius: 20px;
}

.comment-sec h3 {
  position: relative;
  color: #194768;
  font-weight: 700;
  padding-bottom: 15px;
  margin: 20px 0;
}

.comment-sec ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/*.comment-sec ul { margin-right: -15px; margin-left: -15px; }*/
.comment-sec ul li {
  width: 25%;
  padding: 0;
  margin-bottom: 20px;
}

.comment-sec ul li .additional-list-wrap {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  border: 1px solid #b2cde0;
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 10px;
  height: 100%;
}

.comment-sec p {
  margin: 15px 0;
  color: #2e2e2e;
  font-size: 20px;
}

.comment-sec ul li span img {
  object-fit: contain;
}

.comment-sec h3::after {
  content: "";
  position: absolute;
  background-color: #e8c100;
  bottom: 0px;
  width: 200px;
  height: 3px;
  border-radius: 10px;
  left: 0;
  z-index: 2;
}

.comment-sec h3::before {
  content: "";
  position: absolute;
  background-color: #cdd7df;
  bottom: 0px;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  left: 0;
  z-index: 1;
}

.comment-sec ul li:hover .additional-list-wrap span {
  background-color: #fff;
}

/* ============================ user-section ======================= */
.user-section {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
  align-items: center;
}

.user-section .item .user-profile {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  flex-shrink: 0;
  background-color: #ccc;
}

.user-section .item .user-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-section .item .user-title {
  display: flex;
  gap: 20px;
  align-items: center;
}

.comment-row {
  margin-bottom: 30px;
}

.user-section .item .user-title h4 {
  margin-bottom: 10px;
  font-size: 30px;
  color: #2e2e2e;
  margin-bottom: 0px;
}

.user-section .item .user-title p {
  margin-bottom: 10px;
  font-size: 20px;
  color: #194768;
}

.comment-form .form-control {
  border-color: #d4d7db !important;
  border-radius: 30px;
  color: #194768;
  background-color: #fff !important;
}

.comment-sec .comment-form h4 {
  font-size: 30px;
  color: #194768;
  margin-top: 30px;
  font-weight: 600;
}

.user-section .item p:last-child {
  margin-bottom: 0px;
}

/* blog page css start here  */
.blog-sec {
  position: relative;
  margin-top: 100px;
}

.blog-sec .dashed-line {
  position: absolute;
  width: 306px;
  height: 225px;
  top: 0;
  left: 0;
}

.blog-sec .dotted-img {
  position: absolute;
  width: 244px;
  height: 69px;
  right: 0;
  top: 63px;
  z-index: -1;
}

.blog-single-list .yellow-line {
  position: absolute;
  width: 317px;
  top: inherit;
  right: -72px;
  bottom: 3%;
  z-index: -1;
}

.blog-sec .blog-img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  padding-bottom: 60%;
  overflow: hidden;
}

.blog-sec .blog-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-sec .blog-content h2 {
  color: #092234;
  font-weight: 600;
  margin-top: 50px;
}

.blog-date ul {
  padding-left: 0px;
  display: flex;
  align-items: center;
}

.blog-date ul li::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 50%;
  background-color: #cdd7de;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.blog-date ul li:last-child::after {
  display: none;
}

.blog-date ul li {
  list-style: none;
  color: #194768;
  font-size: 20px;
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.blog-date ul li span {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 10px;
  padding: 10px;
  background-color: #ECF2F7;
  position: relative;
}

.blog-date ul li span img {
  object-fit: cover;
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.blog-content h3 {
  font-weight: 600;
}

.blog-content p {
  font-size: 20px;
}

.blog-sec .blog-content .at-vero-box {
  font-size: 30px;
  color: #194768;
  width: 100%;
  height: auto;
  border-left: 5px solid #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.blog-sec .blog-content .at-vero-box::before {
  content: "";
  position: absolute;
  height: 99%;
  width: 41px;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #194566;
  border-radius: 20px;
  margin: 0 auto;
  z-index: -2;
}

.blog-sec .blog-content .at-vero-box::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #f1f5f9;
  border-radius: 20px;
  margin: 0 auto;
  z-index: -1;
}

img.blog-small-img {
  width: 48%;
  float: left;
  border-radius: 40px;
  margin-right: 2%;
  margin-bottom: 20px;
  height: 375px;
  object-fit: cover;
}

.blog-sec .container {
  position: relative;
  z-index: 1;
}

.side-bar {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 40px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px #d4d7db;
}

/* ===================== side bar ================================= */
.side-bar .srch-input input.form-control {
  border: 1px solid #d4d7db;
  height: 60px;
  border-radius: 100px;
  padding: 15px 30px;
  padding-right: 45px;
}

.side-bar .srch-input button[type="submit"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  background-color: #194768;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.blog-right {
  height: 100%;
}

.side-bar .srch-input button[type="submit"] img {
  filter: brightness(0) invert(1);
}

.side-bar .side-bar-content h3 {
  position: relative;
  font-weight: 600;
  font-size: 30px;
  color: #000;
}

.side-bar .side-bar-content h3::before {
  content: "";
  position: absolute;
  background-color: #cdd7df;
  bottom: -10px;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  left: 0;
  z-index: 1;
}

.side-bar .side-bar-content h3::after {
  content: "";
  position: absolute;
  background-color: #e8c100;
  bottom: -10px;
  width: 200px;
  height: 3px;
  border-radius: 10px;
  left: 0;
  z-index: 2;
}

.side-bar .side-bar-content .recent-blog-img {
  width: 110px;
  height: 110px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.side-bar .side-bar-content .recent-blog {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.side-bar .side-bar-content .recent-blog .recent-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-bar .side-bar-content .recent-blog .recent-blog-text p {
  font-size: 20px;
  color: #2e2e2e;
  font-weight: 500;
  margin-bottom: 0px;
}

.date-spotPicL img,
.date-spotPicR img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-wraper .text-box {
  width: calc(100% - 80px);
}

.home-follow-sec .container {
  position: relative;
  z-index: 1;
}

.contribute-form-main .container {
  position: relative;
  z-index: 1;
}

.yellow-line img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ========================== Styles for the search results container ======================== */
.suggest-search-results {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #ddd;
  max-height: 440px;
  overflow-y: auto;
  margin-top: 10px;
  box-sizing: border-box;
  left: 0;
  border-radius: 15px;
  padding: 10px;
}

.search-result-item {
  padding: 10px;
  cursor: pointer;
}

.search-result-thumbnail {
  max-width: 100px;
  height: auto;
}

.search-result-content {
  max-width: 500px;
}

.search-result-excerpt {
  margin-top: 5px;
}

.contribute-form .eye-position {
  background-color: transparent;
}

.contribute-form .eye-position svg {
  color: #89b6d7;
}

/* =====================  Dashboard =======================  */
.dashboard-btn-wrap.submit-btn span {
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 1;
  transform: translateY(-50%);
}

.dashboard-btn-wrap.submit-btn span::before {
  background-color: transparent;
}

.dashboard-btn-wrap.submit-btn:hover .btn {
  border: 1px solid #194768;
  background-color: transparent;
  color: #194768 !important;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.captcha-text a,
.text-end a {
  color: #fff;
}

.end-footer .row {
  align-items: center;
}

.error-field {
  font-size: 13px;
  display: block;
  width: 100%;
}

button.dz-button {
  transition: border 300ms ease;
  display: flex;
}

.dashboard-col-content a span {
  transform: inherit !important;
  /*top: 5px;*/
  margin: 0px;
}

.dashboard-col-content a:hover span img {
  filter: invert(1);
  transform: inherit !important;
}

.captcha-text {
  font-size: 12px;
}

.map-wrap .map-iframe {
  height: 100%;
  border-radius: 20px;
}

.right-box .sec-logo-box {
  position: relative;
}

/*.right-box .sec-logo-box::after { content: ""; position: absolute; top: 0; right: -47px; background-image: url(../images/dotted-triangle.svg); width: 150px; height: 85px; z-index: -1; background-repeat: no-repeat; background-size: cover; }*/
.right-box .sec-logo-box {
  position: relative;
  overflow: hidden;
}

.right-box .sec-logo-box img{width: 500px;padding: 0 20px;}

.sec-logo-box-particle img {
  position: absolute;
  top: 0;
  left: 437px;
  width: 150px;
  height: 85px;
  z-index: -1;
}

.right-box .sec-logo-box::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 0;
}

.right-box .sec-logo-box.hover::before {
  animation: shine 0.85s;
}

.right-box .sec-logo-box a {
  z-index: 2;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.btn-map {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
  -o-transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
  transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
  display: block;
  border-radius: 22px 22px 22px 22px;
}

.btn-map .jet-button__state.jet-button__state-normal {
  justify-content: center;
  padding: 15px 25px 15px 25px;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #164062;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

.jet-button__state-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
  -o-transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
  transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
  background-color: #e8c100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.btn-map:hover .jet-button__state-hover {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
  -o-transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
  transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
}

.btn-map .jet-button__label {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

.btn-map:hover .jet-button__state.jet-button__state-normal {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
  -o-transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
  transition: all 0.3s cubic-bezier(0.5, 0.12, 0.46, 0.88);
}

.dashboard-body-common .dashboar-common-top .user-box ul.submenu.submenu-open li:last-child {
  padding-bottom: 0px;
}

.dashboard-body-common .dashboar-common-top .user-box ul.submenu.submenu-open li:first-child {
  padding-top: 0px;
}

.additional-information h2 {
  color: #265374 !important;
}

.home-date-spot-sec .date-spotR {
  padding-right: 126px;
}

.main-header.no-banner {
  background-image: url(../images/no-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.home-latest-greatest-sec .swiper-pagination {
  display: none;
}

/*=========resources video section==========*/

:root {
  --swiper-image-ratio: 33.3%;
  /* ratio 16:9 = 56.25% */

  --swiper-width: 50%;
  --swiper-inactive-scale: .85;
  /* makes the other slide smaller */

  --swiper-mobile-width: 90%;
  --swiper-mobile-inactive-scale: .95;
}


.harvey-specter-dethroned-wraper .swiper {
  position: relative;
  width: 100%;
  height: calc(var(--swiper-width) * var(--swiper-image-ratio) / 100%);
  overflow: hidden;
}

.harvey-specter-dethroned-wraper .swiper-slide {
  position: relative;
  width: var(--swiper-width);
  opacity: .8;
  transform: scale(.84);
  transition: all .3s ease-in-out;
  overflow: hidden;
  border-radius: 0.4285rem;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  filter: grayscale(100%);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.harvey-specter-dethroned-wraper .swiper-backface-hidden .swiper-slide {
  transform: scale(.84) translateZ(0);
}

.harvey-specter-dethroned-wraper .swiper-slide.swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1 !important;
  filter: unset;
  -webkit-filter: unset;
  filter: unset;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* .harvey-specter-dethroned-wraper .play-button-wrapper .play-gif{  
  -webkit-transition: all 5s ease;
  -moz-transition: all 5s ease;
  -ms-transition: all 5s ease;
  -o-transition: all 5s ease;
  transition: all 5s ease;} */

.harvey-specter-dethroned-wraper .swiper-backface-hidden .swiper-slide.swiper-slide-active {
  transform: scale(1) translateZ(0) !important;
}

.harvey-specter-dethroned-wraper .swiper-image {
  position: relative;
  width: 100%;
  padding-top: var(--swiper-image-ratio);
}

.harvey-specter-dethroned-wraper .swiper-image .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #929ec9;
}

.harvey-specter-dethroned-wraper .swiper-button-next {
  transform: translate(50%, -50%);
  right: calc((100% - var(--swiper-width)) / 2);
}

.harvey-specter-dethroned-wraper .swiper-button-prev {
  transform: translate(-50%, -50%);
  left: calc((100% - var(--swiper-width)) / 2);
}

.harvey-specter-dethroned-wraper .sngl-box .image-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-right-wrap #location-result-data a.btn:hover span img {
  filter: invert(1);
}

.harvey-specter-dethroned-wraper .video-container {
  width: 100%;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 585px;
  overflow: hidden;
}

.harvey-specter-dethroned-wraper .video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.harvey-specter-dethroned-wraper .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.harvey-specter-dethroned-wraper .video-with-content {
  height: 100%;
}

.harvey-specter-dethroned-wraper .paus-icon {
  /* visibility: hidden; */
  /* opacity: 0; */
  /* -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease; */
}

/* .harvey-specter-dethroned-wraper .video-wrapper:hover .paus-icon {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
} */

.harvey-specter-dethroned-wraper .play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.harvey-specter-dethroned-wraper .play-button-wrapper h3 {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  font-weight: 600;
  color: #fff;
  padding: 50px 30px;
  padding-top: 0;
}

.harvey-specter-dethroned-wraper .video-container h2 {
  position: absolute;
  top: 0;
  font-weight: 700;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 30px;
  padding-bottom: 0;
  text-transform: capitalize;
}

.harvey-specter-dethroned-wraper .play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}

.harvey-specter-dethroned-wraper .play-button-wrapper #circle-play-b svg {
  width: 100px;
  height: 100px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}

/*=========resources video section end==========*/
form#address-radius-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0px;
}

.data-list-col .pagination {
  justify-content: center;
  margin-top: 30px;
}

.data-list-col .pagination button {
  border-radius: 50%;
  width: 47px;
  height: 47px;
  background-color: #F6F6F6;
  border: none;
  color: #353537;
  font-size: 20px;
  margin: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Search Page Pages*/
.pagination .page-nav,
.pagination .page-nav .page-numbers {
  list-style: none;
  padding:0;
}

.pagination .page-nav .page-numbers li a {
  border-radius: 50%;
  width: 47px;
  height: 47px;
  background-color: #F6F6F6;
  border: none;
  color: #353537;
  font-size: 20px;
  margin: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-nav .page-numbers {
  margin: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-nav .page-numbers img#Next {
  transform: rotate(180deg);
}

.pagination .page-nav .page-numbers li:has(.current) {
  background-color: #E8C100;
  color: #fff;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  border: none;
  font-size: 20px;
  margin: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-nav .page-numbers li a:hover {
  background-color: #E8C100;
  color: #fff;
}

/*Archives*/


.inner-banner.archive .banner-text h1::before{
    margin: auto;
    left: 0;
    right: 0;
}


.swiper-button-prev:focus,
.swiper-button-next:focus,
.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
  border: transparent;
  box-shadow: none;
  outline: none;
}

button#next-btn img {
  transform: rotate(180deg);
}

.data-list-col .pagination button.active {
  background-color: #E8C100;
  color: #fff;
}

.data-list-col .pagination button:hover {
  background-color: #E8C100;
  color: #fff;
}

.data-list-col .pagination button:hover img {
  filter: brightness(0) invert(1);
}

.support-form p {
  margin-bottom: 0px;
}

.data-list-col .pagination button#next-btn,
.data-list-col .pagination button#prev-btn {
  padding: 0px !important;
}

.dropdown-icon span {
  display: block;
  position: relative;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.dropdown-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.dropdown-icon span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  width: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.dropdown-icon span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.for-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dropdown-icon {
  display: block;
  width: 30px;
}

.for-mobile-toggle h3 {
  margin-bottom: 0px !important;
}

.dropdown-icon {
  display: block;
  width: 30px;
  height: 42px;
  border: none;
  background: transparent;
  padding: 0;
}

.for-mobile-toggle button.dropdown-icon {
  display: none;
}

.error-data {
  color: #cb1919;
  padding-top: 5px;
  display: block;
  text-align: left;
}

.lft-text p:last-child {
  margin-bottom: 0px;
}




.map-wrap .gm-style-iw.gm-style-iw-c {
  max-width: 320px !important;
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  background-color: #162531;
  padding: 0px !important;
  width: 100%;
}

.map-wrap .info-data-wrap {
  position: relative;
  padding-bottom: 35%;
}

.map-wrap .info-data-wrap img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 100% !important;
}

.map-wrap .info-data-wrap h3 {
  position: absolute;
  top: 50%;
  z-index: 1;
  font-size: 20px;
  color: #fff;
  left: 6%;
  right: 2%;
  margin: 0 auto;
  transform: translateY(-50%);
  font-weight: bold;
  padding-right: 35px;
}

.map-wrap .gm-style-iw-d {
  overflow: hidden !important;
  height: auto !important;
  max-height: 100% !important;
}

.map-wrap .gm-style-iw.gm-style-iw-c button.gm-ui-hover-effect {
  right: -9px !important;
  top: -10px !important;
}

.map-wrap .gm-style-iw.gm-style-iw-c span {
  background-image: url(../images/close-1.png);
  width: 30px !important;
  height: 30px !important;
  mask-image: inherit !important;
  background-size: cover;
  background-color: transparent;
  margin: 0 !important;
}

#mwp-dropform-uploder .dz-preview.dz-processing.dz-image-preview.dz-success.dz-complete {
  height: auto;
  min-height: inherit;
}

#mwp-dropform-uploder .dz-preview.dz-processing.dz-image-preview.dz-success.dz-complete .dz-details {
  padding: 0px !important;
  display: flex;
  width: 100%;
}

#mwp-dropform-uploder .dz-preview.dz-processing.dz-image-preview.dz-success.dz-complete .dz-image {
  height: 40px;
}

#mwp-dropform-uploder .dz-preview.dz-processing.dz-image-preview.dz-success.dz-complete .dz-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mwp-dropform-uploder .dz-preview.dz-processing.dz-image-preview.dz-success.dz-complete .dz-size {
  margin: 0px !important;
}

.commentlist li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.commentlist li .comment-metadata a {
  font-size: 20px;
  color: #194768;
}

.commentlist li .comment-content p {
  color: #2E2E2E;
}

.commentlist li a.comment-edit-link {
  color: #ffc107;
}

ol.commentlist {
  padding: 0;
  list-style: none;
}

ol.commentlist .comment-author.vcard img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  flex-shrink: 0;
  background-color: #ccc;
  margin-right: 10px;
}

.reply a {
  font-size: 20px;
  color: #194768;
}

.page-template-login .login-page .submit-button span {
  right: 40%;
}

.post-search-results img {
  border-radius: 10px;
}

.search-result-content {
  font-size: 20px;
  color: #2e2e2e;
  font-weight: 500;
  margin-bottom: 0px;
}

.filelabel p {
  color: #9F9F9F !important;
  font-size: 18px !important;
}

.blog-single-list {
  padding-bottom: 147px;
}

.main-ftr a {
  display: inline-block;
}

/* =================== 404 page ============================= */
.not-found {
  padding: 150px 0px;
}

span#profile-image-error {
  padding-left: 20px;
  display: block;
  font-size: 12px;
}

/* ========================= result ========================= */

.result-list-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.result-list-wrap article {
  width: 25%;
  margin-bottom: 15px;
  padding: 0px 10px;
}

.result-list-wrap article a.post-thumbnail {
  position: relative;
  padding-bottom: 70%;
  display: block;
  margin-bottom: 15px;
}

.result-list-wrap article a.post-thumbnail img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-area header.page-header {
  padding-top: 20px;
}

.result-list-wrap article .entry-summary p {
  margin-bottom: 0px;
}

.result-list-wrap article header h4 {
  margin-bottom: 10px;
}

.result-list-wrap article .entry-meta {
  margin-bottom: 10px;
}

.no-results.not-found {
  text-align: center;
}

.no-results form.search-form {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.no-results form.search-form input.search-field {
  color: #092133;
  background-color: transparent;
  border: 1px solid #4d7795 !important;
  border-radius: 100px;
  padding-right: 100px;
  padding-left: 20px;
  font-weight: 400;
  width: 100%;
}

.no-results form.search-form input.search-submit {
  background-color: #1a4364;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  height: 58px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.no-results form.search-form label {
  position: relative;
  width: 100%;
}


.remove-wrap {
  text-align: center;
}

.remove-wrap span.remove-btn {
  font-size: 12px;
}

.dropzone .dz-preview .dz-details .dz-size {
  font-size: 0px !important;
}

/* .data-list-col.home-latest-greatest-sec {
  min-height: 1560px;
} */
/* .term-wrap { max-height: 800px;  transition: max-height .4s ease; }
.term-wrap.active { max-height: 300px;   transition: max-height .4s ease;} */

.search-results-for {
  text-align: center;
  margin-top: 20px;
}

.search-results-for h3 {
  font-size: 20px;
  color: #1a4364;
}

.date-list-right .data-list-col.home-latest-greatest-sec {
  background-image: none;
}

.common-header-center.header-with-line h2::before {
  left: 0;
  right: 0;
  margin: 0 auto;
}

.location-select .world-map img {
  object-fit: contain;
}

.gm-style-iw-chr {
  display: block;
  position: absolute;
  top: 0;
  z-index: 9;
  right: 0;
  height: auto;
}

input[type='search']::-webkit-search-cancel-button {
  -webkit-appearance: none;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-image: url('../images/close.svg') !important;
  top: 30%;
  right: 20px;
  padding: 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}

.location-search-box input[type='search']::-webkit-search-cancel-button {
  background-image: none !important;
}

.location-select input[type='search']::-webkit-search-cancel-button {
  background-image: url('../images/cross.svg') !important;
}

#suggest-search input[type='search']::-webkit-search-cancel-button {
  right: 0px !important;
}

#suggest-search input {
  padding: 20px 0px !important;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  height: 100%;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #1a4364;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham6 .top {
  stroke-dasharray: 40 172;
}

.ham6 .middle {
  stroke-dasharray: 40 111;
}

.ham6 .bottom {
  stroke-dasharray: 40 172;
}

.ham6.active .top {
  stroke-dashoffset: -132px;
}

.ham6.active .middle {
  stroke-dashoffset: -71px;
}

.ham6.active .bottom {
  stroke-dashoffset: -132px;
}

span.remove-btn {
  color: #194768 !important;
  font-size: 14px;
}

span.remove-btn:hover {
  text-decoration: underline;
}

.additional-information ul.children li {
  width: 100%;
}

.comment-sec ul.children li {
  width: 100%;
}

.comment-form .submit-btn.dark span {
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  margin-right: 0px !important;
}

.comment-sec ul {
  display: block !important;
}

.comment-sec ul li {
  width: 100% !important;
}

.comment-sec .comment .comment-body {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.comment-sec ul.children li {
  border: none;
}


#scrollToTop {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  border: 2px solid #1947686b;
  border-radius: 100%;
  height: 46px;
  width: 46px;
  display: flex;
  font-family: "Arial";
  align-items: center;
  justify-content: center;
  margin-bottom: -12rem;
  transition: margin-bottom 0.2s;
}

#scrollToTop.active {
  margin-bottom: 0;
}

#scroll-rotate {
  background: transparent;
  height: 46px;
  width: 46px;
  display: block;
  border-radius: 50% 50% 0% 0%;
  position: absolute;
  border: 2px solid #1a4364;
  border-bottom: none;
  border-right: none;
  border-left: none;
}

@keyframes rotate {
  to {
    transform: rotate(2520deg);
  }
}



/*Scroll to top */

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgb(0 0 0 / 20%);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: white;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  background: url('data:image/svg+xml,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.875 10.3125L7.5 4.6875L13.125 10.3125" stroke="%23194768" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  content: '';
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: black;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  background: url('data:image/svg+xml,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.875 10.3125L7.5 4.6875L13.125 10.3125" stroke="%23194768" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  content: '';
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #194768;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/*===========  sampa  ============*/
.submit-button.text-center.login-submit.btn span {
    transform: translate(0px, 0px);
	left: auto;
    right: -56%;
}
.login-form-wrap input[type="submit"].submit-button {
    background: transparent;
    border: 0;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    height: 100%;
    width: 100%!important;
    padding: 12px 35px;
    position: absolute;
    left: 0;
}
.login-form-wrap .submit-button.login-submit:hover input[type="submit"] {
    color: #194566;
}
.home-latest-greatest-sec.light-blue-bg .content-box ul li::before {
    top: 11px;
}
.location-select form select.form-select, .location-select form input {
  position: relative;
}
.map-wrap .info-data-wrap img {
  filter: brightness(0.4);
}
.location-content-wrap ul.best-suited-term-list li::after {
  content: " ";
  position: absolute;
  top: 8px;
  left: 0px;
  width: 7px;
  height: 7px;
  background-color: #e8c100;
  border-radius: 100%;
}
.location-content-wrap ul.best-suited-term-list {
  max-height: 150px;
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.location-content-wrap ul.best-suited-term-list::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.submit-button.text-center.login-submit.btn.forgetbtn span {
  right: -77%;
}
.location-content-wrap ul.best-suited-term-list {
  max-height: 95px;
}
.map-wrap .info-data-wrap {
  padding-bottom: 26%;
}
/* 02-09 */
.login-submit .btn:disabled {
  transform: translate(0px, 0px);
  border: 1px solid #194666;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  box-shadow: 0 12px 10px #0000;
  color: #000 !important;
  background: transparent!important;
}
.login-submit .btn:disabled::before {
  background-color: #fff!important;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
}
.login-submit .btn:disabled span {
  transform: translate(0px, 0px);
}
.map-wrap .more-btn .btn span {
  margin-left: 10px!important;
}
.map-wrap .more-btn .btn.white-btn {
  padding: 10px 20px;
}
a.text-btn {
  color: #fff;
  font-size: 17px;
  text-decoration: underline;
  font-weight: 500;transition: 0.6s;
}
a.text-btn:hover {
  color: #e8c100;
}
.location-content-wrap ul.best-suited-term-list {
  margin: 0;
}
 .location-content-wrap p {
  font-size: 16px;
}
.location-content-wrap p::after {
  top: 4px;
  left: -6px;
  filter: none;
}
.general-scroll .btn-map .jet-button__label {
  padding: 5px 20px;
  text-align: center;
}
.search-location-name-results-for h3 ,.date-list-right .search-results-for h4{
  font-size: 20px;
  color: #1a4364;
  text-align: center;
}
.data-list-col .pagination {
  align-items: center;
}
span.ellipsis {
  height: 44px;
  font-size: 23px;
}



.sponsor_image_locations {   
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #fff;
	height:auto;
	width:100%;
   

}

.sponsor_image_locations img{
    border-radius:20px;
    width: 100%;
	height: auto;
}

/* Style the Google Maps Autocomplete dropdown */
.pac-container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    padding: 8px 0;
    z-index: 1000;
}

.pac-item {
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    border: none;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.pac-item:hover {
    background-color: #f5f5f5;
    color: #000;
}

.pac-item-selected,.pac-item-selected:hover {
    background-color: #e6f0ff;
    color: #01539B;
}

.pac-logo:after {
    display: none !important;
}

.pac-matched {
    font-weight: 600;
    color: #01539B;
}

.pac-container .pac-icon {
    background-size: 100% 100%;
    margin-top: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgNjQgNjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPjxwYXRoIGQ9Ik0zMiAwQTI0LjAzMiAyNC4wMzIgMCAwIDAgOCAyNGMwIDE3LjIzIDIyLjM2IDM4LjgxIDIzLjMxIDM5LjcyYS45OS45OSAwIDAgMCAxLjM4IDBDMzMuNjQgNjIuODEgNTYgNDEuMjMgNTYgMjRBMjQuMDMyIDI0LjAzMiAwIDAgMCAzMiAwem0wIDM1YTExIDExIDAgMSAxIDExLTExIDExLjAwNyAxMS4wMDcgMCAwIDEtMTEgMTF6IiBmaWxsPSIjMDE1MzliIiBvcGFjaXR5PSIxIiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iIj48L3BhdGg+PC9nPjwvc3ZnPg==);
    padding: 7px;
}


/*===========media============*/

@media only screen and (min-width: 1700px) {
  .container {
    max-width: 1630px !important;
  }
}

@media only screen and (max-width: 1700px) {

  .home-pull-roundedPic {
    max-width: 325px;
  }

  .home-pull-twoPics-circle {
    width: 200px;
    height: 200px;
  }

  .home-follow-btns a.btn.border-btn {
    padding: 10px 20px;
    font-size: 18px;
  }

  .home-contributors-wraper ul li .card-wraper {
    padding: 20px;
  }

  .suggest-form-box .filter-box .form-check {
    width: auto;
  }

  .location-banner-img2 {
    border-radius: 60px;
    height: 440px;
  }

  .location-banner-img1 {
    height: 530px;
    border-radius: 60px
  }

  .inner-baner-right {
    padding-right: 100px;
  }

  .circle-pic {
    max-width: 190px;
  }

  .featured-image {
    height: 240px;
  }

  .home-latest-greatest-sec .common-header-center {
    max-width: 548px;
  }

  .home-latest-greatest-sec .partical-one {
    top: 24%;
    max-width: 652px;
  }

  .dots-tryangle-pull-twoPics {
    top: 44%;
    right: -159px;
    z-index: -1;
  }

  .home-featur-sec .swiper-button-prev {
    left: -35%;
  }

  .home-featur-sec .swiper-button-next {
    left: -28%;
  }

  .data-list-col {
    margin-top: 40px;
  }

  .suggest-banner .suggest-imge-line {
    margin-right: 30px;
  }

  .form-check-input:checked[type="checkbox"] {
    background-position: 50% 60%;
  }

  .suggest-banner .banner-sm2 {
    left: 50%;
  }

  .resources-banner-img-one.location-banner-img1 {
    height: 460px;
    border-radius: 30px;
  }

  .resources-banner-img-two.location-banner-img2 {
    border-radius: 30px;
    height: 380px;
  }

  .resources-banner .resources-banner-img-one {
    height: 240px;
  }

  .resources-banner .resources-banner-img-two {
    height: 180px;
  }

  .harvey-specter-dethroned-sec .partical-two {
    max-width: 200px;
  }

  .resources-banner .resources-banner-img-three {
    height: 480px;
  }

  .home-pull-twoPics-squre {
    width: 200px;
    height: 230px;
  }
}


@media only screen and (max-width: 1599px) {
  .home-featur-sec .swiper-button-prev {
    left: -39%;
  }

  .home-featur-sec .swiper-button-next {
    left: -31%;
  }

  .harvey-specter-dethroned-wraper .video-container {
    height: 450px;
  }

  .harvey-specter-dethroned-wraper .play-gif {
    max-width: 150px;
  }

  .harvey-specter-dethroned-wraper .play-button-wrapper h3 {
    padding: 30px 30px;
    padding-top: 0;
  }

  .footer-email-box .image-box {
    width: 70px;
    height: 70px;
    margin-right: 14px;
  }

  .beyond-perfect-matches-sec .partical-three {
    bottom: 55px;
    left: 0;
  }

  .discover-resume-sec .common-header-center {
    max-width: 645px;
    margin: 0 auto;
  }
}


@media only screen and (max-width: 1440px) {
  .circle-pic {
    max-width: 180px;
  }

  .banner-sm {
    max-width: 140px;
  }

  .home-latest-greatest-sec .common-header-center {
    max-width: 549px;
  }

  .home-contributors-wraper ul li {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .home-pull-twoPics-squre {
    width: 155px;
    height: 170px;
  }

  .circle-pic {
    position: absolute;
    top: -24px;
    left: -60px;
  }

  .dots-tryangle-pull-twoPics {
    top: 55%;
    right: -146px;
  }

  .home-pull-roundedPic {
    max-width: 290px;
    height: 422px;
    border-radius: 125px;
    border: 6px solid #fff;
  }

  .yellow-curve-pull {
    top: -45px;
    left: 166px;
    max-width: 200px;
  }

  .home-pull-twoPics-circle {
    width: 160px;
    height: 161px;
    border: 6px solid #fff;
  }

  .home-follow-btns a.btn.border-btn {
    padding: 10px 13px;
    font-size: 16px;
  }

  .home-follow-btns ul li {
    margin-right: 8px;
  }

  .home-follow-btns a.btn.border-btn span {
    width: 28px;
    height: 28px;
  }

  .home-contributors-wraper ul li .image-box {
    width: 60px;
    height: 60px;
  }

  .home-featur-sec .container .owl-carousel .owl-nav button.owl-next {
    left: 6%;
  }

  .home-pull-twoPics-squre {
    border: 6px solid #fff;
  }

  /* ================ location page ===================== */


  .resources-banner-img-two.location-banner-img2 {
    height: 360px;
    border-radius: 40px;
  }

  .suggest-banner .banner-sm2 {
    left: 50%;
    top: 58%;
  }

  .location-sec .banner-sm {
    bottom: 10%;
  }

  .data-check-box-main,
  .date-list-left .date-list-top {
    padding: 20px 15px;
  }

  .suggest-banner .location-banner-right {
    padding-right: 35px;
  }

  .suggest-form-box .step-circle {
    width: 70px;
    height: 70px;
  }

  .suggest-banner .suggest-imge-line {
    margin-right: 0px;
  }

  .suggest-banner .location-banner-img2 {
    width: 280px;
    height: 280px;
  }

  .suggest-banner .location-banner-right {
    padding-right: 90px;
  }

  .suggest-form-box .filter-box .form-check {
    margin-right: 12px;
    margin-bottom: 12px;
  }

  .suggest-form-box .sngl-form-box {
    margin-bottom: 20px;
  }

  .inner-baner-right {
    padding-right: 0px;
  }

  .contribute-form p {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .information-list ul li,
  .information-list ul li a {
    font-size: 23px;
  }

  .information-list ul {
    margin-bottom: 30px;
  }

  .information-wrap,
  .autocompl-wrap,
  .additional-information {
    padding: 30px;
  }

  .location-details .date-spotPicR {
    transform: rotate(7deg);
  }

  .side-bar {
    padding: 20px 20px;
  }

  .side-bar .side-bar-content .recent-blog-img {
    width: 90px;
    height: 90px;
  }

  .blog-sec .blog-content .at-vero-box {
    font-size: 24px;
  }

  .discover-resume-box .content-box {
    padding: 10px;
  }

  .beyond-perfect-matches-sec .accordion-button::after {
    width: 40px;
    height: 40px;
  }

  .blog-date ul li {
    font-size: 18px;
  }

  .blog-sec .blog-content h2 {
    margin-top: 20px;
  }

  .partical-one {
    max-width: 645px;
  }

  .home-latest-greatest-sec .partical-one {
    top: 22%;
    left: 2%;
    max-width: 615px;
  }

  .suggest-form-section .partical-dot {
    right: 18px;
  }

  .suggest-form-section .mdl-lft-partical {
    left: 18px;
  }

  .comment-sec::after {
    width: 132px;
    height: 153px;
  }

  .home-date-spot-sec .date-spotR {
    padding-right: 60px;
  }

  .location-details .yellow-curve-line {
    bottom: -68px;
    right: 134px;
  }

  .location-details-banner .banner-sm {
    height: 250px;
  }

  .footer-email-box,
  .footer-follow {
    padding: 15px;
  }

  .location-banner-right {
    padding-right: 30px;
  }

  .tringle-img {
    right: 0%;
    top: 42%;
  }

  .partical-one {
    max-width: 334px;
  }

  .blog-single-list .yellow-line {
    right: 0px;
    bottom: 1%;
    z-index: -1;
  }

  .information-list ul li::after {
    top: 10px;
  }
}


@media only screen and (max-width: 1439px) {
  .home-featuredR {
    width: 100%;
    margin-left: 0;
  }

  .home-featur-sec .swiper-button-prev {
    left: -32%;
  }

  .home-featur-sec .swiper-button-next {
    left: -23%;
  }

  .home-featur-sec .swiper-button-next,
  .home-featur-sec .swiper-button-prev {
    bottom: 30px;
  }

  .home-featuredR {
    width: calc(100vw - 29vw);
    margin-left: 0;
    padding-left: 20px
  }

  .circle-pic {
    position: absolute;
    top: -15px;
    left: -34px;
    max-width: 143px;
  }

  .location-banner-right {
    padding-right: 30px;
  }

  .btn-map .jet-button__label {
    font-size: 17px;
  }

  .suggest-banner .location-banner-right {
    padding-right: 0px;
  }

  .resources-banner .resources-banner-img-three {
    height: 440px;
  }

  .location-banner-img2 {
    border-radius: 30px;
    height: 380px;
  }

  .location-banner-img1 {
    height: 440px;
    border-radius: 30px;
  }

  .locaton-content-hover p {
    line-height: 1.2;
  }
}

@media only screen and (max-width: 1366px) {
  .home-latest-greatest-sec .common-header-center {
    max-width: 427px;
  }

  .home-featur-sec .swiper-button-next {
    left: -20%;
    bottom: 0;
  }

  .home-featur-sec .swiper-button-prev {
    left: -28%;
    bottom: 0;
  }

  .suggest-banner .location-banner-right {
    padding-right: 0px;
  }

  .banner-sm2 {
    top: 50%;
  }

  .additional-information ul li {
    width: 33.33%;
  }

  .btn {
    padding: 12px 19px;
  }
}

@media only screen and (max-width: 1280px) {
  .discover-resume-box .col-lg-3 {
    width: 50%;
  }
  .home-date-spot-sec {
    background-attachment: scroll;
}

  .circle-pic {
    position: absolute;
    top: 0px;
    left: 0px;
  }

  .suggest-banner .location-banner-right {
    padding-right: 0px;
  }

  .resources-banner .resources-banner-img-three {
    height: 420px;
  }

  a.forget-password,
  .form-check label.form-check-label {
    font-size: 16px;
  }

  .dots-tryangle-featured {
    bottom: 0;
  }

  .home-latest-greatest-sec .common-header-center {
    max-width: 400px;
  }

  .home-featur-sec .swiper-button-next,
  .home-featur-sec .swiper-button-prev {
    bottom: 11px;
  }

  .resources-banner-img-two.location-banner-img1 {
    height: 200px;
    border-radius: 20px;
  }

  .resources-banner-img-two.location-banner-img2 {
    height: 200px;
    border-radius: 20px;
  }

  .suggest-form-section .top-lft-partical {
    max-width: 300px;
  }

  .suggest-banner .location-banner-img2 {
    width: 240px;
    height: 240px;
    border: 8px solid #f0f9ff;
  }

  .suggest-banner .suggest-imge-line {
    margin-right: 30px;
  }

  .footer-email-box .text-box a,
  .footer-follow ul li a {
    word-break: break-all;
  }

  .comment-sec::before {
    width: 150px;
    height: 59px;
  }

  .date-destinations-heading {
    max-width: 640px;
  }

  img.blog-small-img {
    border-radius: 15px;
  }

  .resources-banner .resources-banner-img-two,
  .resources-banner .resources-banner-img-one,
  .resources-banner .resources-banner-img-three {
    border-radius: 30px;
  }

  .harvey-specter-dethroned-sec .partical-two {
    max-width: 150px;
  }

  .additional-information ul {
    margin-right: -5px;
    margin-left: -5px;
  }

  .additional-information ul li {
    padding: 0px 5px;
  }

  /*.comment-sec ul { margin-right: -5px; margin-left: -5px; }*/
  .comment-sec ul li {
    padding: 0;
  }

  .result-list-wrap article {
    width: 33.33%;
  }

  .home-latest-greatest-sec .image-box {
    height: 400px;
  }

  .home-latest-greatest-sec .content-box {
    padding-right: 50px;
  }

  .home-latest-greatest-sec .single-box .card-arrow {
    width: 35px;
    height: 35px;
  }
}

@media only screen and (max-width: 1199px) {

  /*  ===========mobile nav==========  */
  header .main-menu {
    display: none;
  }

  .hamburger-nav {
    display: inline-block;
    margin-left: 5px;
  }

  .mobile-menu ul li a.btn {
    display: inline-block;
    padding: 15px 20px;
  }

  .mobile-menu-container {
    display: block;
  }

  .hamburger-nav span {
    background: #194566;
  }

  .header-section .right-panel {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .mobile-menu-logo {
    max-width: 50px;
    margin: 0 auto;
    text-align: center;
    display: none;
  }

  .mobile-menu ul li {
    padding: 0;
  }

  .mobile-menu ul li a {
    color: #1a4364;
    text-align: left;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-menu ul li a:before {
    content: '';
    width: 100%;
    height: 2px;
    background: #ffc107;
    display: block;
    position: absolute;
    top: 41px;
  }

  .mobile-menu ul li a:hover {
    color: #b4975a;
  }

  .mobile-menu ul li ul.sub-menu li {
    margin: 11px 0;
  }

  .mobile_menu_btn {
    margin-top: 30px;
  }

  .mobile_menu_btn a.btn.plbig {
    padding-left: 50px;
  }

  .contact_icon {
    width: 41px;
    height: 41px;
    top: 5px;
    left: 4px;
  }

  .mobile_menu_btn a.plbig {
    margin-right: 15px;
  }

  .top-largr-padding {
    padding-top: 160px;
    padding-bottom: 70px;
  }

  .common-padd {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .home-featur-sec .swiper-button-prev {
        left: -47%;
    }
	.home-featur-sec .swiper-button-next {
        left: -34%;
    }

  .home-contributors-wraper ul li {
    -ms-flex: 0 0 25%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .home-pull-roundedPic {
    max-width: 240px;
    margin-right: 20px;
    height: 380px;
  }

  .home-pull-twoPics-squre {
    width: 133px;
    height: 146px;
    border: 7px solid #fff;
  }

  .home-pull-twoPics-circle {
    width: 136px;
    height: 136px;
    border: 7px solid #fff;
  }

  .dots-tryangle-pull-twoPics {
    top: -79px;
    right: -161px;
  }

  .home-follow-btns ul li {
    margin-right: 0;
    width: 100%;
    margin-bottom: 5px;
  }

  .home-follow-btns ul li a {
    width: 100%;
    justify-content: center;
  }

  .home-reach-box {
    padding: 30px;
  }

  .footer-email-box .image-box {
    width: 60px;
    height: 60px;
    padding: 13px;
    margin-right: 12px;
  }

  .footer-email-box,
  .footer-follow {
    padding: 15px;
    min-height: 110px;
  }

  .footer-email-box .text-box a,
  .footer-follow ul li a {
    font-size: 18px;
  }

  .footer-follow ul li span.icon {
    width: 20px;
    height: 20px;
  }

  .ftr-links ul li {
    padding: 16px 47px;
  }

  /* ================ location page ===================== */
  .banner-tab ul.nav-tabs li.nav-item .nav-link {
    font-size: 18px;
    padding: 10px 20px !important;
  }

  .date-list-left .date-list-top h3 {
    text-align: center;
  }

  .data-list-col .row .col-lg-4 {
    width: 50%;
  }

  /* .map-wrap { height: 370px !important; } */
  .map-wrap .info-data-wrap {
    position: relative;
    padding-bottom: 45%;
  }

  .home-date-spot-sec .date-spotR {
    padding-right: 20px;
  }

  .for-mobile-toggle button.dropdown-icon {
    display: block;
    /*margin-top: -13px;*/
    width: 47px;
    height: 47px;
  }

  .for-mobile-toggle svg .line {
    stroke: white !important;
  }

  .for-mobile-toggle h3 {
    color: white
  }

  .date-list-left {
    display: none;
  }

  .for-mobile-toggle {
    display: flex;
    padding: 25px;
    background-color: #194768;
    align-items: center;
    align-content: center;
    flex-direction: row;
    border-radius: 20px;
  }

  /*  ================= suggest ========================== */
  .resources-banner-img-two.location-banner-img1 {
    max-width: 350px;
  }

  .suggest-banner .location-banner-img2 {
    width: 210px;
    height: 210px;
    border: 8px solid #f0f9ff;
    bottom: 100px;
  }

  .suggest-banner .suggest-imge-line {
    height: 520px;
    margin-bottom: -83px;
  }

  .suggest-form-box {
    padding: 30px;
    margin-top: 60px;
  }

  .suggest-form-box .step-circle {
    width: 60px;
    height: 60px;
  }

  .footer-another-logo svg {
    padding-left: 0px;
    max-width: 180px;
  }

  .banner-sec .banner-text h1 {
    margin-bottom: 31px;
  }

  .user-section .item .user-profile {
    width: 70px;
    height: 70px;
  }

  .locations-details-banner-img {
    height: 480px;
  }

  .location-details-banner .banner-sm {
    max-width: 170px;
    height: 239px;
  }

  .additional-information ul li {
    width: 50%;
    margin-bottom: 10px;
  }

  .side-bar .side-bar-content .recent-blog-img {
    width: 70px;
    height: 70px;
  }

  .side-bar .side-bar-content .recent-blog .recent-blog-text p {
    font-size: 18px;
    line-height: normal;
  }

  .blog-sec .yellow-line {
    width: 160px;
    right: 0;
  }

  .login-form-wrap {
    border-radius: 20px;
    padding: 30px 30px 30px 30px;
  }

  .location-banner-img2 {
    height: 330px;
  }

  .location-banner-img1 {
    height: 370px;
  }

  .support-form h3 {
    font-size: 22px;
  }

  .contribute-form .form-group textarea {
    border-radius: 20px;
  }

  .data-result {
    display: block;
  }

  .data-result ul {
    width: 100%;
    margin-top: 20px;
  }

  .home-featur-sec .featured-image {
    height: 250px;
  }

  .data-result ul li p {
    padding: 4px 6px;
  }

  .home-pullR h2 {
    max-width: 374px;
  }

  .home-reach-box .common-header-center {
    max-width: 754px;
  }

  .banner-sm2 {
    top: 38%;
  }

  .login-after {
    max-width: 195px;
  }

  .date-list-right {
    padding-left: 0px;
  }

  .date-destinations .col-lg-3 {
    margin-bottom: 20px;
  }

  .date-destinations .col-lg-3,
  .date-destinations .col-lg-9 {
    width: 100%;
  }

  .tringle-img {
    top: 53%;
  }

  .data-list-col .col-lg-8,
  .data-list-col .col-lg-4 {
    width: 100%;
  }

  .filelabel p {
    font-size: 0px !important;
  }

  .data-list-col .row .col-lg-4 .col-lg-12.col-md-12 {
    width: 50%;
  }

  .dashboard-row {
    height: auto;
    overflow: hidden;
  }

  .search-wrap input {
    padding: 5px 13px 5px 47px
  }

  .suggest-banner .banner-sm2 {
    left: 46%;
    top: 51%;
  }

  .discover-resume-sec .common-header-center {
    max-width: 570px;
    margin: 0 auto;
  }
  /* sampa */
/* .location-content-wrap ul.best-suited-term-list {
  max-height: 80px;
} */
.map-wrap .info-data-wrap {
  padding-bottom: 26%;
}
.home-featuredR {
  width: calc(100vw - 45vw);
}
}
@media only screen and (max-width: 1080px) {
.home-featuredR {
  width: calc(100vw - 40vw);
}
}
@media only screen and (max-width: 991px) {

  .common-padd-xl-top {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .allegria-hotel-right .dots {
    max-width: 100px;
  }

  .allegria-hotel-right .yellow-curve-line {
    max-width: 130px;
  }
  
  img.blog-small-img {
        width: 100%;
    }

  /*  ===========mobile nav==========  */
  .lft-text {
    text-align: center;
  }

  .banner-sec .right-img {
    /*width: 100%;  */
    margin-top: 30px;
  }

  .banner-sec .right-img {
    width: calc(100vw - 7vw);
  }

  .banner-sec .banner-text h1::before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .common-header-center.header-with-line h2::before,
  .header-with-line h2::before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .home-maintain-sec .common-header-lft {
    max-width: 100%;
    text-align: center;
  }

  .page-template-login .login-page .submit-button span {
    right: 40%;
    width: 28px;
    top: 46%;
  }

  .account-sign-up a {
    font-size: 16px;
  }

  .home-maintain-sec .sec-logo-box {
    margin: 0 auto;
  }

  .common-header-center {
    margin-bottom: 30px !important;
  }

  .date-list-left {
    margin-top: 20px;
  }

  .date-spotR {
    justify-content: center;
    margin-top: 40px;
  }

  .home-contributors-wraper ul li {
    -ms-flex: 0 0 25%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .home-eaturedL {
    max-width: 100%;
  }

  .home-featuredR .partical-img {
    position: absolute;
    top: 0;
    left: inherit;
    right: 0;
  }

  .home-featuredR .owl-nav {
    position: absolute;
    left: 50%;
    bottom: 0%;
    margin: 0 auto;
    transform: translateX(-50%);
  }

  .home-pullL {
    justify-content: center;
    margin-top: 40px;
  }

  .home-pull-form-sec .container>.row {
    flex-direction: column-reverse;
  }

  .ftr-bottom .col-lg-4 {
    margin-bottom: 10px;
  }

  .end-footer {
    padding: 20px 0;
    text-align: center;
  }

  .end-footer p {
    text-align: center !important;
  }

  .home-featur-sec .container .owl-carousel .owl-nav button.owl-next {
    left: 9%;
  }

  .home-featuredR {
    width: 100%;
  }

  .home-featur-sec .container .owl-carousel .owl-nav button.owl-prev {
    left: 40%;
  }

  .home-featur-sec .container .owl-carousel .owl-nav button.owl-next {
    left: 50%;
  }

  .home-pullL {
    justify-content: center;
  }

  .home-pull-twoPics {
    width: auto;
  }

  .header-with-line h2,
  .home-follow-subTitle,
  .home-featur-sec .home-eaturedL p,
  .home-pull-form-sec .home-pullR p,
  .date-spotL p,
  .date-spotL {
    text-align: center;
  }

  .main-header .user-sec {
    margin-left: 0px;
  }

  .footer-another-logo svg {
    padding-left: 0;
    max-width: 150px;
  }

  .sec-logo-box-particle img {
    left: 384px;
  }

  /* ================ location page ===================== */
  .banner-tab {
    margin-bottom: 30px;
    padding-top: 20px;
  }

  .date-destinations .row .col-lg-3 {
    margin-bottom: 30px;
  }

  .date-list-right {
    padding: 0px;
  }

  .data-list-col {
    margin-top: 50px;
  }

  .banner-tab ul.nav-tabs {
    padding-left: 0;
    justify-content: center;
  }

  .banner-sm2 {
    top: 27%;
  }

  .resources-banner-img-two.location-banner-img1,
  .resources-banner-img-two.location-banner-img2 {
    border-radius: 30px;
  }

  .location-banner-right {
    max-width: 500px;
    margin: 0 auto;
  }

  .suggest-banner .location-banner-right {
    max-width: 100%;
  }

  .suggest-banner .location-banner-right {
    justify-content: center;
  }

  .suggest-banner .suggest-imge-line {
    margin-bottom: -50px;
  }

  .location-banner-img1,
  .location-banner-img2 {
    margin-bottom: -80px;
  }

  .banner-sm {
    right: 16%;
  }

  /*  ================= suggest ========================== */
  .sngl-form-box .row .col-lg-6 {
    margin-bottom: 15px;
  }

  .sngl-form-box .row .col-lg-6:last-child {
    margin-bottom: 0px;
  }

  .suggest-form-box {
    padding: 22px;
  }

  .suggest-form-box .step-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .banner-sec .banner-text h1 span {
    display: inline-block;
  }

  .contribute-form {
    padding: 30px 30px 60px 30px;
  }

  .sm-img2 {
    max-width: 100px;
  }

  .top-largr-padding {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .contribute-form {
    padding: 30px 15px 60px 15px;
    border-radius: 20px;
  }

  .contribute-form .form-group {
    margin-bottom: 16px;
  }

  .position-icon1 {
    max-width: 150px;
  }

  .location-details .container>.row {
    flex-direction: column-reverse;
  }

  .comment-sec::after {
    width: 104px;
    height: 144px;
  }

  .comment-sec::before {
    width: 99px;
    height: 59px;
  }

  .user-section .item .user-profile {
    width: 50px;
    height: 50px;
  }

  .allegria-hotel .col-lg-7 {
    margin-bottom: 20px;
  }

  .user-section .item .user-title h4 {
    font-size: 24px;
  }

  .blog-sec .container .row {
    flex-direction: column-reverse;
  }

  .discover-resume-box .col-lg-3 {
    width: 50%;
  }

  .harvey-specter-dethroned-wraper .sngl-box .image-box {
    height: 500px;
  }

  .harvey-specter-dethroned-wraper .sngl-box .overlay .icon {
    max-width: 180px;
  }

  .resources-banner .resources-banner-img-three {
    height: 360px;
  }

  .resources-banner .resources-banner-img-one {
    height: 180px;
    border-radius: 20px;
  }

  .resources-banner .resources-banner-img-two {
    height: 160px;
    border-radius: 20px;
    margin-right: 0;
  }

  .resources-banner .location-banner-right {
    padding-right: 0;
    justify-content: center;
  }

  .resources-banner .resources-banner-img-three {
    border-radius: 20px;
  }

  .harvey-specter-dethroned-sec .partical-two {
    max-width: 170px;
  }

  .resources-banner .lft-text p {
    max-width: 100%;
  }

  .harvey-specter-dethroned-wraper .sngl-box .overlay h3 {
    padding: 15px 25px;
  }

  .button-flex .button-btn {
    border-radius: 13px;
    padding: 15px 15px;
  }

  input.btn {
    height: 50px;
  }

  .login-form-wrap .form-group {
    margin-bottom: 15px;
  }

  .dots-tryangle-pull-twoPics {
    top: 0;
    right: 0;
  }

  .location-banner-img1 {
    margin-right: 10px;
  }

  .banner-sm2 {
    display: none;
  }

  .home-featur-sec .swiper-button-next {
    left: 0;
    right: -65px;
    margin: 0 auto;
  }

  .home-featur-sec .swiper-button-prev {
    left: -65px;
    right: 0;
    margin: 0 auto;
  }

  .home-featur-sec .swiper-button-next,
  .home-featur-sec .swiper-button-prev {
    bottom: -70px;
  }

  section.home-featur-sec {
    padding-bottom: 130px;
  }

  .home-featur-sec .home-eaturedL {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .home-pullR h2 {
    max-width: 100%;
    text-align: center;
  }

  .home-featuredR {
    width: calc(100vw - 9vw);
    margin-left: 0;
    padding-left: 0px;
  }

  .data-result ul {
    width: 100%;
  }

  .home-date-spot-sec .date-spotR {
    padding-right: 0px;
  }

  .home-follow-btns ul {
    justify-content: space-between;
  }

  .home-follow-btns ul li {
    width: 48%;
  }

  .partical-one {
    max-width: 298px;
  }

  .beyond-perfect-matches-sec .partical-two {
    max-width: 500px;
  }

  .discover-resume-sec .common-header-center {
    max-width: 530px;
    margin: 0 auto;
  }

  .home-followTitle {
    margin: 0 auto;
  }

  .tringle-img {
    top: 57%;
  }

  .blog-single-list {
    padding-bottom: 60px;
  }

  .resources-banner .resources-banner-img-three {
    margin-bottom: -130px;
  }
  .home-featur-sec .home-featuredR {
    width: 100%;
}
}

@media only screen and (max-width: 767px) {


  .harvey-specter-dethroned-wraper .swiper {
    height: calc(var(--swiper-mobile-width) * var(--swiper-image-ratio) / 100%);
  }

  .harvey-specter-dethroned-wraper .swiper-slide {
    width: var(--swiper-mobile-width);
    transform: scale(var(--swiper-mobile-inactive-scale));
  }

  .harvey-specter-dethroned-wraper .swiper-backface-hidden .swiper-slide.swiper-slide {
    transform: scale(var(--swiper-mobile-inactive-scale)) translateZ(0);
  }

  .harvey-specter-dethroned-wraper .swiper-button-next {
    right: calc((100% - var(--swiper-mobile-width)) / 2);
  }

  .harvey-specter-dethroned-wraper .swiper-button-prev {
    left: calc((100% - var(--swiper-mobile-width)) / 2);
  }

  .tringle-img {
    top: 41%;
  }

  textarea.form-control {
    height: 130px !important;
  }

  .common-padd {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .home-contributors-wraper ul li .card-wraper {
    padding: 15px;
  }

  .home-contributors-wraper ul li .image-box {
    width: 50px;
    height: 50px;
  }

  .home-contributors-wraper ul li .text-box h6 {
    margin-bottom: 0px;
  }

  .home-featuredR {
    width: 100%;
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .ftr-links ul li {
    padding: 11px 17px;
  }

  .logo-ftr {
    padding: 20px 0 20px;
  }

  .home-featuredR .owl-nav {
    bottom: 5%;
  }

  .home-reach-box .common-header-center {
    margin-bottom: 50px !important;
  }

  .date-spotPicR {
    max-width: 228px;
    transform: rotate(6deg);
    height: 269px;
  }

  .date-spotPicL {
    max-width: 290px;
    height: 320px;
    right: -10px;
  }

  .btn span {
    width: 25px;
    height: 25px;
  }

  .home-featuredR .partical-img {
    max-width: 100px;
  }

  .home-featur-sec .container .owl-carousel .owl-nav button.owl-prev {
    left: 38%;
  }

  .header-with-line h2 {
    margin-bottom: 35px;
  }

  .dots-square-home-pull-left {
    bottom: 0;
    left: 0;
    max-width: 100px;
  }

  .dots-square-home-pull-right {
    max-width: 33px;
  }

  /*.footer-email-box .image-box { width: 50px; height: 50px; margin-right: 9px; }*/
  .footer-email-box .text-box h3 {
    margin-bottom: 0px;
  }

  /* ================ location page ===================== */
  .map-wrap {
    padding: 10px;
  }

  .data-list-col .row .col-lg-4 {
    width: 100%;
  }

  .data-result ul li {
    margin-bottom: 4px;
  }

  .banner-sm2 {
    top: 37%;
  }
  
  .location-select form {
    padding-right: 0px;
	padding-left: 0px;
}

  /*  ================= suggest ========================== */
  .filter-box .form-check label.form-check-label {
    padding-left: 10px;
  }

  .suggest-form-section .top-lft-partical {
    max-width: 200px;
  }

  .filter-box .form-check input.form-check-input {
    height: 20px !important;
    width: 20px !important;
  }

  .main-header.fixed .logo {
    max-width: 150px;
  }

  .locations-details-banner-img {
    height: 319px;
    border-radius: 20px;
  }

  /*.location-address-wrap p { height: 70px !important; }*/
  /*.location-details .form-group .form-control {
    border-radius: 20px;
  }*/

  .user-section {
    gap: 13px;
  }

  .harvey-specter-dethroned-wraper .sngl-box .image-box {
    height: 400px;
  }

  .harvey-specter-dethroned-wraper .sngl-box .overlay .icon {
    max-width: 120px;
  }

  .discover-resume-box .col-lg-3 {
    width: 100%;
  }

  .harvey-specter-dethroned-sec .partical-two {
    max-width: 120px;
  }

  .banner-sm {
    right: 0%;
  }

  .owl-nav button.owl-next,
  .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
  }

  .beyond-perfect-matches-sec .accordion-button::after {
    width: 26px;
    height: 26px;
    background-size: 30%;
  }

  .home-contributors-wraper ul li {
    padding: 5px;
    padding-top: 0px;
  }

  .footer-email-box .text-box a,
  .footer-follow ul li a {
    font-size: 16px;
  }

  .home-featur-sec .swiper-button-next,
  .home-featur-sec .swiper-button-prev {
    bottom: -30px;
  }

  section.home-featur-sec {
    padding-bottom: 80px;
  }

  .home-featur-sec .featured-box {
    border-radius: 70px;
  }

  .additional-information ul li {
    width: 100%;
  }

  .comment-sec ul li {
    width: 100%;
  }

  .comment-sec {
    padding: 15px;
  }

  .user-section .item .user-title p {
    font-size: 18px;
  }

  .account-profile-wrap {
    display: flex;
    align-items: baseline;
    margin-top: 0;
    padding: 20px 0px 0px 20px;
  }

  .search-result-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 7px;
  }

  .search-result-item .search-result-content {
    width: calc(100% - 60px);
    padding-left: 15px;
  }

  .search-result-item .search-result-content h3 {
    font-size: 18px;
  }

  .search-result-item {
    margin-bottom: 10px;
  }

  .partical-one {
    max-width: 223px;
  }

  .data-list-col .row .col-lg-4 .col-lg-12.col-md-12 {
    width: 100%;
  }

  .discover-resume-sec .common-header-center {
    max-width: 420px;
    margin: 0 auto;
    padding: 0px;
  }

  .location-select {
    padding: 20px 20px;
  }

  .world-map {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .address-select-wrap,
  .radio-select-wrap {
    padding-left: 55px;
  }

  .address-select-wrap {
    width: 50%;
  }

  .location-search button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .result-list-wrap article {
    width: 50%;
  }

  .banner-sec .right-img {
    width: calc(100vw - 7vw);
  }
/* sampa */
/* .location-content-wrap ul.best-suited-term-list {
  max-height: 80px;
} */
.map-wrap .info-data-wrap {
  padding-bottom: 26%;
}
.date-destinations .dots-portrait {
  width: 40px;
 
}
.sponsor_image_locations img{
    height: 180px;
    object-fit: cover;
}
.sponsor_image_locations{padding:10px;}
}


@media only screen and (max-width: 600px) {
  .banner-sec .right-img {
    width: calc(100vw - 0vw);
  }
}

@media only screen and (max-width: 575px) {
  .location-banner-right {
    max-width: 420px;
    margin: 0 auto;
  }

  .location-banner-img2 {
    height: 290px;
  }

  .location-banner-img1 {
    height: 330px;
  }

  .main-header .logo {
    max-width: 165px;
  }

  .btn {
    padding: 12px 20px;
  }

  .banner-sec .banner-partical {
    max-width: 200px;
  }

  .home-maintain-sec .tag-text {
    max-width: 510px;
    width: 100%;
    left: 0;
    margin: 0 auto;
  }

  .circle-pic {
    max-width: 120px;
  }

  .logo-ftr {
    max-width: 200px;
  }

  #home-latest-greatest-carasol {
    padding-bottom: 60px;
  }

  #home-latest-greatest-carasol .owl-nav button.owl-prev {
    top: inherit;
    bottom: 0;
    left: 35%;
  }

  #home-latest-greatest-carasol .owl-nav button.owl-next {
    top: inherit;
    bottom: 0;
    left: 51%;
  }

  .home-latest-greatest-sec .home-latest-greatest-wraper {
    padding: 0;
  }

  .date-spotPicL {
    max-width: 240px;
    height: 190px;
    right: -17px;
  }

  .date-spotPicR {
    max-width: 228px;
    height: 190px;
  }

  .home-featur-sec .container .owl-carousel .owl-nav button.owl-prev {
    left: 33%;
  }

  .home-pull-roundedPic {
    max-width: 180px;
    height: 180px;
  }

  .home-pull-twoPics-squre {
    width: 120px;
    height: 135px;
  }

  .home-pull-roundedPic {
    max-width: 180px;
    height: 280px;
    border-radius: 80px;
  }

  .home-reach-box {
    padding: 15px;
  }

  .ftr-links ul li {
    padding: 7px 10px;
  }

  .home-featur-sec .owl-stage .owl-item {
    max-width: 100%;
    border-radius: 30px;
  }

  .featured-image {
    border-radius: 30px 30px 0 0;
  }

  .card-wraper .text-box {
    width: 100%;
  }


  /* ================ location page ===================== */
  .location-select {
    padding: 15px 15px;
  }

  .world-map,
  .location-search button {
    width: 50px;
    height: 50px;
    padding: 7px;
  }

  .location-select form h4 {
    font-size: 18px;
  }

  .location-select form select.form-select,
  .location-select form input {
    font-size: 16px;
  }

  .filter-box .form-check {
    margin-bottom: 10px;
  }

  .banner-tab ul.nav-tabs li.nav-item .nav-link {
    font-size: 16px;
    padding: 8px 16px !important;
    border-radius: 10px 10px 0px 0px;
  }

  .resources-banner-img-two.location-banner-img2 {
    height: 230px;
  }

  .data-result ul li a,
  .data-result h5 {
    font-size: 16px;
  }

  .data-result ul li {
    margin-right: 4px;
  }

  .location-select {
    justify-content: space-between;
  }

  .filter-box {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  /* .map-wrap { height: 270px !important; } */
  .data-result ul li a p {
    padding: 0px 3px;
  }

  .data-result ul li a span {
    padding: 7px 5px 7px 5px;
  }

  .data-result {
    display: block;
    margin-bottom: 18px;
  }

  .search-locaton-content .hover-arrow,
  .locaton-content-hover .hover-arrow {
    width: 36px;
    height: 36px;
  }

  /*  ================= suggest ========================== */
  .location-banner-img1 {
    max-width: 280px;
  }

  .suggest-banner .location-banner-img2 {
    width: 160px;
    height: 160px;
    border: 6px solid #f0f9ff;
  }

  .suggest-banner .suggest-imge-line {
    height: 380px;
  }

  .suggest-form-box .progress {
    max-width: 60%;
    height: 4px;
  }

  .suggest-form-box .step-circle {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .world-map,
  .location-search button {
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .banner-sm2 {
    display: none;
  }

  .allegria-hotel-left ul {
    display: block;
  }

  .allegria-hotel-left ul li {
    padding-right: 0px;
    margin-right: 0px;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .allegria-hotel-left ul li::after {
    width: 100%;
    height: 1px;
    background-color: #cdd7de;
    top: inherit;
    transform: inherit;
    right: 0;
    bottom: 0;
  }

  .autocompl-wrap {
    padding: 15px 15px;
  }

  .blog-date ul {
    display: block;
  }

  .blog-date ul li {
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .blog-date ul li::after {
    width: 100%;
    height: 1px;
    top: inherit;
    transform: inherit;
    bottom: 0;
  }

  .blog-sec .blog-content h2 {
    margin-top: 20px;
  }

  .blog-sec .blog-content .at-vero-box {
    font-size: 22px;
  }

  .harvey-specter-dethroned-sec .owl-nav button.owl-next,
  .harvey-specter-dethroned-sec .owl-nav button.owl-prev {
    top: inherit;
    bottom: 0;
  }

  #hsd-slider {
    padding-bottom: 60px;
  }

  .harvey-specter-dethroned-wraper .owl-nav button.owl-prev {
    left: 38%;
  }

  .harvey-specter-dethroned-wraper .owl-nav button.owl-next {
    right: 38%;
  }

  .button-flex {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .button-flex button {
    width: 100%;
    margin-bottom: 10px;
  }

  .button-flex button:last-child {
    margin-bottom: 0px;
  }

  .login-submit {
    margin: 15px 0px;
  }

  .login-form-wrap {
    border-radius: 20px;
    padding: 30px 20px 30px 20px;
  }

  .login-form-wrap .form-group input {
    padding: 10px 43px 9px 23px;
    font-size: 16px;
    height: 50px !important;
  }

  .home-maintain-sec .sec-logo-box {
    height: 300px;
  }

  .home-maintain-sec .tag-text h3 {
    border-radius: 1px;
    padding: 6px 19px;
	font-size: 25px;
  }

  .home-maintain-sec .tag-text {
    border-radius: 10px;
  }

  .home-contributors-wraper ul li .card-wraper {
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-contributors-wraper ul li .image-box {
    width: 38px;
    height: 38px;
    margin-bottom: 7px;
  }

  .banner-sec .banner-text p {
    margin-bottom: 15px;
  }

  /*.home-pullR textarea.form-control { border-radius: 15px; }*/
  .footer-email-box .text-box a,
  .footer-follow ul li a {
    font-size: 16px;
  }

  /*.footer-email-box .image-box { width: 40px; height: 40px; margin-right: 6px; padding: 10px; }*/
  .date-spotPicL,
  .date-spotPicR {
    border: 5px solid #fff;
  }

  .home-latest-greatest-wraper .swiper-button-next {
    top: unset;
    right: 0px;
    bottom: -9px;
    margin: 0 auto;
    left: 65px;
  }

  .home-latest-greatest-wraper .swiper-button-prev {
    top: unset;
    left: 0px;
    bottom: -9px;
    right: 65px;
    margin: 0 auto;
  }

  .right-box .sec-logo-box::after {
    right: 0;
  }

  .harvey-specter-dethroned-wraper .swiper-button-next {
    transform: translate(0px, -50%);
    top: unset;
    bottom: -35px;
    left: 90px;
    right: 0;
    margin: 0 auto;
  }

  .harvey-specter-dethroned-wraper .swiper-button-prev {
    transform: translate(0px, -50%);
    top: unset;
    bottom: -35px;
    left: 0;
    right: 90px;
    margin: 0 auto;
  }

  .user-section .item .user-title p {
    font-size: 16px;
  }

  .tringle-img {
    top: 39%;
    max-width: 100px;
  }

  .right-box .sec-logo-box::after {
    width: 80px;
    height: 46px;
  }

  .sec-logo-box-particle img {
    width: 80px;
    height: 46px;
    left: 342px;
  }

  .yellow-curve-line-featured {
    max-width: 150px;
  }

  .circle-pic {
    top: -15px;
  }

  .ftr-bottom .partical-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 60px;
  }

  .suggest-form-box .button-box .btn span {
    top: 1px;
  }

  .login-submit .btn {
    width: 100% !important;
    text-align: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .inner-support-form .form-group .form-label,
  .dashboard-location-search .form-label {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .home-maintain-sec .header-with-line h2::before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .data-list-col .pagination button {
    width: 33px;
    height: 33px;
    font-size: 15px;
    margin: 0px 5px;
  }

  .location-details::before {
    display: none;
  }

  .date-spotPicR {
    transform: rotate(2deg);
  }

  .banner-sec .banner-text h1::before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .search-result-item img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 6px;
    overflow: hidden;
  }

  .search-result-item .search-result-content {
    width: calc(100% - 50px);
    padding-left: 10px;
  }

  .search-result-item {
    margin-bottom: 0px;
  }

  .resources-banner .resources-banner-img-three {
    height: 323px;
  }

  .banner-sec .banner-text {
    margin-top: 60px;
  }

  .banner-sec .banner-content {
    padding: 80px 0px;
  }

  .result-list-wrap article {
    width: 100%;
  }

  .search-results-for h3 {
    font-size: 16px;
  }

  .user-sec .btn {
    padding-left: 12px;
    font-size: 0px;
    display: block;
    padding: 10px;
  }

  .user-sec .btn span {
    margin-right: 0px;
  }

  /* .location-select form .location-w { padding-left: 50px; } */
  .location-select {
    border-radius: 20px;
  }

  .location-select.addrs-location {
    display: block;
  }

  .location-select.addrs-location form {
    display: block !important;
  }

  .location-select.addrs-location form .address-select-wrap {
    width: 100%;
    border-bottom: 1px solid #CDD8DF;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .location-select.addrs-location form .radio-select-wrap {
    width: 100%;
    margin-bottom: 20px;
  }

  .location-search button#search-btn {
    width: 100%;
    height: auto;
    border-radius: 100px;
    color: #fff;
  }

  .location-search button#search-btn img {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }

  .location-search button {
    font-size: 16px;
  }

  .location-select form select.form-select,
  .location-select form input {
    padding-bottom: 0px;
  }

  .address-select-wrap .world-map,
  .radio-select-wrap .world-map {
    position: absolute;
    left: 0;
    top: 0;
    top: 0;
    transform: inherit;
  }

  .progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
  }
  .submit-button.text-center.login-submit.btn.forgetbtn span {
    right: -82%;
}
.eye-position {
  top: 27px;
  right: 4%;
}
.location-content-wrap ul.best-suited-term-list li::after {
  top: 9px;
}
.map-wrap .info-data-wrap h3 {
  font-size: 18px;
}
.search-location-name-results-for h3,.date-list-right .search-results-for h4 {
  font-size: 16px;
}
span.ellipsis {
  height: 34px;
  font-size: 16px;
}
#pagination button#next-btn img, #pagination button#prev-btn img {
  width: 12px;
}


}
@media only screen and (max-width: 465px) {
.submit-button.text-center.login-submit.btn.forgetbtn span {
  right: -87%;
}

}
@media only screen and (max-width: 414px) {
  .home-contributors-wraper ul li {
    -ms-flex: 0 0 25%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .main-header .logo {
    max-width: 140px;
  }

  .hamburger-nav {
    margin-left: 10px;
  }

  .additional-information ul li {
    width: 100%;
  }

  .comment-sec ul li {
    width: 100%;
  }

  .resources-banner .resources-banner-img-three {
    height: 290px;
  }

  .resources-banner .resources-banner-img-one {
    height: 140px;
  }

  .resources-banner .resources-banner-img-two {
    height: 110px;
  }

  a.forget-password,
  .form-check label.form-check-label {
    font-size: 14px;
  }

  .harvey-specter-dethroned-wraper .video-container {
    height: 350px;
  }

  .harvey-specter-dethroned-wraper .play-gif {
    max-width: 130px;
  }

  .harvey-specter-dethroned-wraper .play-button-wrapper h3 {
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    padding: 15px;
  }

  .dashboard-right p {
    font-size: 14px;
  }

  .account-profile-wrap .profile-details h4 {
    font-size: 20px;
  }

  .home-pull-roundedPic {
    max-width: 149px;
    height: 237px;
    border-radius: 77px;
  }

  .banner-tab ul.nav-tabs li.nav-item .nav-link {
    font-size: 13px;
    padding: 6px 8px !important;
    border-radius: 11px 10px 0px 0px;
  }
  .login-form-wrap input[type="submit"].submit-button {
    font-size: 14px;
}
.page-template-login .login-page .submit-button span {
  width: 24px;
}
.right-box .sec-logo-box img {    padding-bottom: 20px;}
}

@media only screen and (max-width: 380px) {
  .main-header .logo {
    max-width: 115px;
  }

  .account-profile-wrap .profile-details {
    padding-left: 8px;
  }

  .profile-pic .-label {
    height: 26px;
    width: 26px;
    right: 0px;
    bottom: 4px;
  }

  .btn span {
    width: 18px;
    height: 18px;
  }

  .btn {
    padding: 8px 15px;
  }

  .location-select form h4 {
    font-size: 16px;
  }

  .location-select form {
    width: calc(100% - 60px);
    padding-left: 10px;
    padding-right: 9px;
  }

  .location-banner-img1 {
    max-width: 199px;
  }

  .suggest-banner .location-banner-img2 {
    width: 120px;
    height: 120px;
  }

  .suggest-banner .suggest-imge-line {
    height: 316px;
  }

  .user-section .item .user-title p {
    font-size: 14px;
  }

  .home-pull-twoPics-circle {
    width: 120px;
    height: 120px;
  }

  .home-pull-roundedPic {
    max-width: 140px;
    height: 214px;
    border-radius: 77px;
  }

  .home-pull-twoPics-squre {
    width: 120px;
    height: 120px;
  }
  .submit-button.text-center.login-submit.btn.forgetbtn span {
    right: -90%;
}

.right-box .sec-logo-box img {    padding-bottom: 50px;}
}

/*Media Query css*/