:root {
  --primary-color: #1b1464;
  --secondary-color: #00aeef;
  --primary-hover-color: #ec0d36;
  --secondary-hover-color: #1068B0;

  --body-bg: #fcfeff;

  --green-color:#6ABE52;
  --yellow-color: #ffc107;
  --red-color: #ec0d36;
  --text-color: rgba(0, 0, 0, 0.53);
  --white-color: #ffffff;
  --ofwhite-color: #f2f2f2;
  --black-color: #000000;
  --light-color: #fcfcfc;
  --light-color2: #aaaaaa;
  --dark-color: #242424;
  --sky-color: #647589;
  --border-color: #e7e7e7;
  --border-color2: #e4e4e4;
  --border-color3: #dddddd;
  --border-dark: #383434;
  --bg-gray-color: #fcfcfc;
  --bg-light-blue: rgba(207, 239, 252, 0.4);
  --bg-light-gray: #ebf0fa;
  --dark-blue: #0071bb;
  --gray-color: #fafbfe;
  --gray-color2: #f5f5f5;

  --body-font: "Spline Sans", sans-serif;
  --heading-font: "Spline Sans", sans-serif;
  --poppins-font: "Poppins", sans-serif;
  --plus-jakarta-font: "Plus Jakarta Sans", sans-serif;
  --anek-bangla-font:'Anek Bangla', sans-serif;

  --body-font-size: 18px;
  --body-font-weight: 400;
  --body-line-height: 37px;
  --body-weight: 400;
  --headings-weight: 500;
  --transition: all 0.3s ease 0s;
  --container-fluid-offset: 19rem;
}

/*---------------------------------
  =======> Base css start <========
  ---------------------------------*/

*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

.no-js:not(html) {
  display: none !important;
}

html.no-js .no-js:not(html) {
  display: block !important;
}

.no-js-inline {
  display: none !important;
}

html.no-js .no-js-inline {
  display: inline-block !important;
}

html.no-js .no-js-hidden {
  display: none !important;
}

/*------------ base CSS ------------*/
body,
html {
  height: 100%;
  position: relative;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

a {
  color: var(--black-color);
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover,
a:focus {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/*---------------------------------
      typography css start 
  ---------------------------------*/

body {
  background: var(--body-bg);
  color: var(--text-color);
  font-size: var(--body-font-size);
  line-height: 29px;
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  font-style: normal;
  visibility: visible;
  overflow-x: hidden;
  margin: 0 auto;
}

/*------------ GLobal Settings: Heading-------------*/
a {
  text-decoration: none;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-weight: var(--headings-weight);
  font-style: normal;
}

h1 {
  font-size: 70px;
  line-height: 82px;
}

h2 {
  font-size: 50px;
  line-height: 62px;
}

h3 {
  font-size: 40px;
  line-height: 52px;
}

h4 {
  font-size: 30px;
  line-height: 32px;
}

h5 {
  font-size: 20px;
  line-height: 24px;
}

h6 {
  font-size: 16px;
  line-height: 22px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  display: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

br:empty,
hr:empty,
iframe:empty,
path:empty,
line:empty,
circle:empty,
use:empty,
img:empty,
input:empty,
rect:empty,
textarea:empty,
.display-empty:empty,
shopify-payment-terms:empty,
shopify-installments-modal:empty,
model-viewer:empty,
polyline:empty,
polygon:empty {
  display: inline-block;
}

a {
  color: var(--color-link);
  cursor: pointer;
  border: none;
  box-shadow: none;
  text-decoration: none;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

body:not(.safari) a {
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

hr {
  border: none;
  height: 0.1rem;
  display: block;
  margin: 5rem 0;
  background-color: var(--black-color);
}

details > * {
  box-sizing: border-box;
}

.break {
  word-break: break-word;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea {
  outline: none;
  background-color: var(--white-colo);
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: var(--body-font-size);
  color: var(--black-color);
  padding-left: 20px;
  padding-right: 20px;
  font-family: var(--body-font);
  border: 1px solid var(--secondary-hover-color);
}
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--light-color2);
}
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--light-color2);
}
input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--light-color2);
}
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: var(--light-color2);
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
  /* MODERN BROWSER */
  color: var(--light-color2);
}
[dir="rtl"] input[type="text"],
[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="tel"],
[dir="rtl"] input[type="number"],
[dir="rtl"] input[type="password"],
[dir="rtl"] input[type="url"],
[dir="rtl"] textarea {
  text-align: right;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
textarea:focus {
  border-color: var(--black-color);
}
input[type="text"]:focus::placeholder,
input[type="email"]:focus::placeholder,
input[type="tel"]:focus::placeholder,
input[type="number"]:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="url"]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}

input[type="color"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--black-color);
  color: var(--white-color);
  text-shadow: none;
}

::-moz-selection {
  background: var(--black-color);
  color: var(--white-color);
  text-shadow: none;
}

::selection {
  background: var(--black-color);
  color: var(--white-color);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--black-color);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--black-color);
  font-size: 14px;
  opacity: 1;
}

html body .dl {
  display: inline-block;
}

html body .db {
  display: block;
}

.text-blue {
  color: #002154;
}

.font-regular {
  font-weight: 400;
}

.font-bold {
  font-weight: 700;
}

.font-extra-bold {
  font-weight: 800;
}

/*---------------------------------
     Button css start 
  ---------------------------------*/

.btn {
  border-radius: 35px;
  line-height: 59px;
  font-family: Anek Bangla;
  font-size: 25px;
  color: var(--white-color);
  font-weight: 500;
  height: 59px;
  padding: 0px 30px;
  display: inline-block;
  position: relative;
}
.btn-small {
  border-radius: 16px;
  line-height: 42px;
  color: var(--white-color);
  font-family: Anek Bangla;
  height: 42px;
  padding: 0px 30px;
  display: inline-block;
  position: relative;
}

.btn-small::before,
.btn-small::after,
.btn::before,
.btn::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  top: 0;
  left: 0;
}

.btn-small:hover,
.btn-small:focus,
.btn:hover,
.btn:focus {
  background: transparent;
  color: var(--white-color);
}

.btn::after,
.btn-small::after {
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: 1;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  border-radius: 35px;
}
.btn-small::after {
  border-radius: 16px;
}

.btn:hover:after,
.btn-small:hover:after,
.btn:focus:after,
.btn-small:focus:after,
.btn:active:after,
.btn-small:active:after {
  width: 100%;
  height: 100%;
}

:not(.btn-check) + .btn:active {
  color: var(--white-color);
}
.btn:first-child:active {
  color: var(--white-color);
}
.btn-small:first-child:active {
  color: var(--white-color);
}
:not(.btn-check) + .btn-small:active {
  color: var(--white-color);
}
.btn--primary::after {
  background: var(--primary-hover-color) 0% 0% no-repeat padding-box;
}
.btn--primary {
  background: var(--primary-color) 0% 0% no-repeat padding-box;
}
.btn--primary:hover,
.btn--primary:focus {
  background: transparent;
  color: var(--white-color);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.btn--secondary::after {
  background: var(--secondary-hover-color) 0% 0% no-repeat padding-box;
}
.btn--secondary {
  background: var(--secondary-color) 0% 0% no-repeat padding-box;
}
.btn--secondary:hover,
.btn--secondary:focus {
  background: transparent;
  color: var(--white-color);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.btn-outline--primary::after {
  background: var(--primary-hover-color) 0% 0% no-repeat padding-box;
}
.btn-outline--primary {
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.btn-outline--primary:hover,
.btn-outline--primary:focus {
  color: var(--white-color);
  border: 1px solid var(--primary-hover-color);
  background: transparent;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.btn-outline--secondary::after {
  background: var(--secondary-hover-color) 0% 0% no-repeat padding-box;
}

.btn-outline--secondary {
  background-color: var(--white-color);
  color: #1068B0;
  border: 1px solid #1068B0;
}
.btn-outline--secondary:hover,
.btn-outline--secondary:focus {
  background: transparent;
  border: 1px solid var(--secondary-hover-color);
  color: var(--white-color);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.btn span,
.btn-small span {
  z-index: 2;
  position: relative;
}


@media (max-width: 991px) {
 .btn{
  font-size: 20px;
 }
 .section-header {
  font-size: 24px !important;
  line-height: 2.4rem !important;
 }
 .section-description{
  font-size: 14px !important;
}
}
@media (max-width: 767px) {
  
  .section-header {
   font-size: 20px !important;
  }
  .section-description{
   font-size: 14px !important;
 }
 }
/*--Section Header Pavel--*/


/*=============================================
=                - Preloader                =
=============================================*/
.preloader-active {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
}
.preloader-active .preloader-area-wrap {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  display: block;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999999;
}
.preloader-active .preloader-area-wrap .spinner div {
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
          animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.preloader-active .preloader-area-wrap .spinner div.bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.preloader-active .preloader-area-wrap .spinner div.bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.preloader-area-wrap {
  display: none;
}

.open_tm_preloader {
  position: fixed;
  background-color: transparent;
  z-index: 9999;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.open_tm_preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.open_tm_preloader.loaded:before, .open_tm_preloader.loaded:after {
  width: 0%;
}
.open_tm_preloader:before, .open_tm_preloader:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  background-color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.open_tm_preloader:before {
  top: 0;
  left: 0;
}
.open_tm_preloader:after {
  bottom: 0;
  right: 0;
}






/* -- Start Toolbar--- */
.hint--left:before {
  border-left-color: #fff;
}
.hint--black:after {
  background: #fff;
  color: #000;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
  border-radius: 5px;
}
.hint--black:before {
  border-top-color: #000000;
}
.hint--black.hint--left::before {
  border-left-color: #fff;
}
.hint--black:before {
  border-top-color: transparent;
}
/*----------------------------
    tooltip library
----------------------------*/
[class*=hint--] {
  position: relative;
  display: inline-block;
  /**
  * tooltip arrow
  */
  /**
  * tooltip body
  */
}

[class*=hint--]:before, [class*=hint--]:after {
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0ms;
  -o-transition-delay: 0ms;
     transition-delay: 0ms;
}

[class*=hint--]:hover:before, [class*=hint--]:hover:after {
  visibility: visible;
  opacity: 1;
}

[class*=hint--]:hover:before, [class*=hint--]:hover:after {
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
     transition-delay: 100ms;
}

[class*=hint--]:before {
  content: "";
  position: absolute;
  background: transparent;
  border: 7px solid transparent;
  z-index: 1000001;
}

[class*=hint--]:after {
  background: #fff;
  color: #000;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
  border-radius: 5px;
  -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

[class*=hint--][aria-label]:after {
  content: attr(aria-label);
}

[class*=hint--][data-hint]:after {
  content: attr(data-hint);
}

[aria-label=""]:before, [aria-label=""]:after,
[data-hint=""]:before,
[data-hint=""]:after {
  display: none !important;
}

/**
 * left tooltip
 */
 .hint--left:before {
  margin-right: -13px;
  margin-bottom: -7px;
}

.hint--left:after {
  margin-bottom: -15px;
}

.hint--left:before, .hint--left:after {
  right: 100%;
  bottom: 50%;
}

.hint--left:hover:before {
  -webkit-transform: translateX(-8px);
  -ms-transform: translateX(-8px);
      transform: translateX(-8px);
}

.hint--left:hover:after {
  -webkit-transform: translateX(-8px);
  -ms-transform: translateX(-8px);
      transform: translateX(-8px);
}



.demo-option-container {
  position: fixed;
  top: 0;
  left: 100%;
  background: #fff;
  height: 100%;
  width: 350px;
  max-width: calc(100% - 45px);
  z-index: 100000;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.aeroland__toolbar .inner {
  position: absolute;
  top: 150px;
  right: 100%;
  display: block;
  width: 40px;
  height:128px;
  border: 1px solid #eee;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  background: #fff;
  text-align: center;
  -webkit-box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
          box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
}
.aeroland__toolbar .inner a {
  display: block;
  width: 40px;
  font-family: var(--anek-bangla-font);
  height: 40px;
  line-height: 40px;
  color: #222;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.aeroland__toolbar .inner a img {
  max-width: 40px;
  width: 30px !important;
}

/* ----download brouchere start----- */
.brochure_dn-container {
  position: fixed;
  top: 0;
  left: 100%;
  background: #fff;
  height: 100%;
  width: 350px;
  max-width: calc(100% - 200px);
  z-index: 100000;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.brochure_list_toolbar .inner_btn {
  position: absolute;
  top: 280px;
  right: 100%;
  display: block;
  width: 180px;
  border: 1px solid #eee;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  background: #fff;
  text-align: center;
  -webkit-box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
          box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
}
.brochure_list_toolbar .inner_btn ul li{
  list-style: none;
}
.brochure_list_toolbar .inner_btn ul {
  padding: 5px 10px;
}
.brochure_list_toolbar .inner_btn ul li a
{
  display: block;
  width: 100%;
  font-family: var(--anek-bangla-font);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  height: 25px;
  line-height: 24px;
  color: #222;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.brochure_list_toolbar .inner_btn ul li a span svg
{
  display: block;
  max-width: 20px;
}
.brochure_list_toolbar .inner_btn ul li:hover a
{
  color:red;
  font-weight: 600;
}
.brochure_list_toolbar .inner_btn ul li:hover svg
{
  fill:red;
  font-weight: 600;
}
/* ----download brouchere end----- */



#divMisshon2ndst{
  display: none;
}
#divMisshon1st{
  display:block;
}
@media screen and (max-width:991px) {
  #divMisshon2ndst{
    display: block;
  }
  #divMisshon1st{
    display:none;
  }
}
.scroll-top {
  position: fixed;
  bottom: 65px;
  right: 20px;
  z-index: 99;
}
@media (max-width:991px){
  .scroll-top {
      position: fixed;
      bottom: 40px;
      right: 20px;
      z-index: 99;
  }
}
@media (max-width:500px){
  .scroll-top {
      position: fixed;
      bottom: 50px;
      right: 20px;
      z-index: 99;
  }
}
/* -- Start Toolbar--- */

.section-header {
  width: 100%;
  color: rgba(51,51,51,10);
  font-family: Anek Bangla;
  font-weight: 800;
  font-size: 30px;
  margin-top: 15px;
  opacity: 1;
  line-height: 45px;
  text-align: center;
}
.section-description{
    width: 100%;
    color: rgba(0,0,0,1);
    font-family: Anek Bangla;
    font-weight: Regular;
    font-size: 18px;
    opacity: 1;
    text-align: justify;
}
.section__container_home {
  /* background: linear-gradient(rgba(148,181,5,1), rgba(255,255,255,1)); */
  background: linear-gradient(rgb(184, 229, 255), rgba(255,255,255,1));
  padding: 16px 0;
  width:100%;
}
.btn-small-consultant {
  border-radius: 16px;
  line-height: 42px;
  background: #1068B0;
  font-family: Anek Bangla;
  font-weight: Regular;
  font-size: 18px;
  color: var(--white-color);
  height: 42px;
  padding: 0px 30px;
  display: inline-block;
  position: relative;
}
/*---------------------------------
     Overlay start 
  ---------------------------------*/

[data-overlay] {
  position: relative;
}

[data-overlay]:before {
  position: absolute;
  content: "";
  background: #000000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

[data-overlay] > div {
  z-index: 2;
}

[data-overlay].image--light:before {
  background: #fff;
}

[data-overlay].bg--primary:before {
  background: #4a90e2;
}

[data-overlay="1"]:before {
  opacity: 0.1;
}

[data-overlay="2"]:before {
  opacity: 0.2;
}

[data-overlay="3"]:before {
  opacity: 0.3;
}

[data-overlay="4"]:before {
  opacity: 0.4;
}

[data-overlay="5"]:before {
  opacity: 0.5;
}

[data-overlay="6"]:before {
  opacity: 0.6;
}

[data-overlay="7"]:before {
  opacity: 0.7;
}

[data-overlay="8"]:before {
  opacity: 0.8;
}

[data-overlay="9"]:before {
  opacity: 0.9;
}

[data-overlay="10"]:before {
  opacity: 1;
}

[data-overlay="0"]:before {
  opacity: 0;
}

/*---------------------------------
     helper css
  ---------------------------------*/

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-68 {
  margin-bottom: 68px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-68 {
  margin-top: 68px;
}

.gap-40 {
  gap: 40px;
}

.gap-10 {
  gap: 10px;
}

.max-content-400 {
  max-width: 400px;
}

.max-content-430 {
  max-width: 430px;
}

.max-content-450 {
  max-width: 450px;
}

/*---------------------------------
      Slider 
  ---------------------------------*/

.slick-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 1;
  top: 50%;
}
.slick-prev {
  left: 20px;
}
.slick-next {
  right: 20px;
}

.slick-btn svg {
  width: 24px;
  height: 24px;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}


.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
 .slick-dots li button {
  height: 14px;
  width: 14px;
  margin: 0px 5px;
  cursor: pointer;
  display: inline-block;
  background: var(--white-color) !important;
  border: 1px solid var(--secondary-hover-color) !important;

  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  border-radius:30px;
  text-indent: -9999px;
}
 .slick-dots li.slick-active button {
  background: var(--secondary-hover-color) !important;
  border: 1px solid var(--secondary-hover-color) !important;
  border-radius:30px;
}
 .slick-dots li {
  margin: 0 5px;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
 .slick-dots li button::before {
  font-family: slick;
  content: "";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
   display: none;
  border-radius: 50%;
  text-align: center;
  opacity: 1;
  color: #121111;
  -webkit-font-smoothing: antialiased;
  left: 50%;
  top: 50%;
}
.slick-dots li.slick-active button::before {
  background:#000000;
  opacity:9;
}





/* swiper */
@media (max-width: 600px){
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    top: 41% !important;
    bottom: auto;
}
}
@media (max-width: 991px){
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    top: 54% !important;
    bottom: auto;
}}
@media (max-width: 768px){
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    top: 42% !important;
    bottom: auto;
}}
.swiper-pagination-bullet {
  height: 20px !important;
  width: 20px !important;
  background: var(--white-color) !important;
  border: 1px solid var(--green-color) !important;
  opacity: 1;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background-color: var(--green-color) !important;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 13px);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--light-color2) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--secondary-color);
}

.has-map .fancybox__content,
.has-youtube .fancybox__content {
  border-radius: 30px !important;
  border: 5px solid var(--white-color);
}

.has-map .fancybox__iframe,
.has-youtube .fancybox__iframe {
  border-radius: 30px !important;
}

.has-map .fancybox__content,
.has-youtube .fancybox__content {
  max-width: 1352px !important;
  margin: 0 auto !important;
  height: 656px !important;
}

.has-map [data-fancybox-close],
.has-youtube [data-fancybox-close] {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: var(--red-color) !important;
  color: var(--white-color) !important;
  top: 0px !important;
}

.fancybox__backdrop {
  --fancybox-opacity: 0.5;
}
@media (max-width: 991px) {
.has-youtube .fancybox__content,
 .has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 100% !important;
  height: 525px !important;
}

.has-map [data-fancybox-close],
.has-youtube [data-fancybox-close] {
  width: 30px;
  height: 30px;
}

}


@media (max-width: 576px) {
  .has-youtube .fancybox__content,
   .has-vimeo .fancybox__content,
  .has-html5video .fancybox__content {
    height: 300px !important;
  }
  }
/* img.lazyload */

.lazyload,
.lazyloading {
  opacity: 0;
}
.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

/*---------------------------------
      container Css 
  ---------------------------------*/
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
}


/*---------------------------------
      Header Css 
  ---------------------------------*/

  .position__relative {
    position: relative;
  }
  
  .header__main {
    position: relative;
    margin-left: 50px;
    margin-right: 50px;
  }
  
  .header__section {
    max-width: 1500px;
    margin: 20px auto 0;
    border-radius: 50px;
  }
  
  /* .header__transparrent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 0 0 50px 5px #8eeca6;
    width: 100%;
    background: rgba(255, 255, 255, 0.21);
    backdrop-filter: blur(10px);
    z-index: 1;
  } */
  .header__transparrent {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 0 0 40px 4px #86c4f7;
    width: 100%;
    background: rgba(255, 255, 255, 0.21);
    backdrop-filter: blur(10px);
    z-index: 1;
  }

  .header__bottom--inner {
    padding: 5px 30px;
    
  }
  
  .header__bottom--inner .main__logo {
    flex: 1;
  }
  
  .main__logo--img {
    max-width: 300px;
  }
  
  .main__logo--title {
    margin-bottom: 0;
    line-height: 0;
  }
  
  .header__bottom--inner .header__menu {
    flex: 4;
  }
  .header__menu--navigation {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
  }
  
  .header__menu--navigation li {
    list-style: none;
  }
  
  .header__menu--link {
    font-size: 20px;
    font-weight: 600;
    line-height: 19.5px;
    color: rgba(0,0,0,1);
    font-family: Anek Bangla;
    font-weight: Regular;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
  }
  .header__menu--link:hover,
  .header__menu--link:focus {
    color: #EF4136;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
  }
  .header__menu--link {
    padding: 5px 5px;
  }
  .header__menu--items .active {
    color:#EF4136;
  }
  .header__sub--menu {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 0;
    visibility: hidden;
    width: 150px;
    margin: 0;
    margin-top: 50px;
    padding: 0;
    list-style: none;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    opacity: 0;
    background-color: var(--white-color);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0;
  }
  
  .header__sub--menu__items_2{
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  
  }
  .header__sub--menu__items_2:last-child{
    border-bottom: 0;
  }
  .header__sub--menu .header__sub--menu__items ul{
    position: absolute;
    left: 100%;
    width:220px;
    top:0%;
    display: none;
  }
  .header__sub--menu .header__sub--menu__items .header__sub--menu_3{
    position: absolute;
    left: 100%;
    width:220px;
    top:33%;
    display: none;
  }
  .header__sub--menu .header__sub--menu__items .header__sub--menu_4{
    position: absolute;
    left: 100%;
    width:220px;
    top:66%;
    display: none;
  }
  .header__sub--menu .header__sub--menu__items ul li{
    width:100%;
  }
  .header__sub--menu .header__sub--menu__items:focus-within > .header__sub--menu_2,
  .header__sub--menu .header__sub--menu__items:hover > .header__sub--menu_2{
    display: initial;
  }
  .header__sub--menu .header__sub--menu__items:focus-within > .header__sub--menu_3,
  .header__sub--menu .header__sub--menu__items:hover > .header__sub--menu_3{
    display: initial;
  }
  .header__sub--menu .header__sub--menu__items:focus-within > .header__sub--menu_4,
  .header__sub--menu .header__sub--menu__items:hover > .header__sub--menu_4{
    display: initial;
  }
  
  

  
  .header__sub--menu__link {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    display: block;
    font-family: var(--anek-bangla-font);
    background-color: var(--white-color);
    color:#000;
    padding: 5px 10px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .header__sub--menu__link::before,
  .header__sub--menu__link::after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    top: 0;
    left: 0;
  }
  .header__sub--menu__link::after {
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background: var(--red-color);
    transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  }
  .header__sub--menu__link:hover,
  .header__sub--menu__link:focus {
    /* background: transparent; */
    background: rgba(255, 255, 255, 0.21);
    backdrop-filter: blur(10px);
    color: var(--white-color);
  }
  
  .header__sub--menu__link:hover:after {
    width: 100%;
    height: 100%;
  }
  
  .header__sub--menu__items {
    border-bottom: 1px solid var(--border-color);
  }
  
  .header__sub--menu__items:last-child {
    border-bottom: 0;
  }
  
  .header__menu--items {
    position: relative;
  }
  /* .mega__menu--items {
    position: static;
  }
  
  .header__mega--menu {
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    margin-top: 20px;
    padding: 25px;
    list-style: none;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
    background-color: var(--white-color);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
  }
  
  .header__mega--menu__li {
    padding: 3px 15px;
  }
  
  .header__mega--subtitle {
    font-weight: 600;
    font-size: 22px;
    font-family: var(--poppins-font);
    color: var(--primary-color);
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 15px;
    position: relative;
    display: block;
  }
  .header__mega--subtitle::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 150px;
    bottom: 0;
    height: 7px;
    background-color: var(--secondary-color);
  }
  .header__mega--sub__menu li {
    border-bottom: 1px solid var(--border-color);
  }
  .header__mega--sub__menu li:last-child {
    border-bottom: 0;
  }
  .header__mega--sub__menu--link {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    display: block;
    font-family: var(--poppins-font);
    background-color: var(--white-color);
    padding: 10px 10px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .header__mega--sub__menu--link::before,
  .header__mega--sub__menu--link::after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    top: 0;
    left: 0;
  }
  .header__mega--sub__menu--link::after {
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background: var(--red-color);
    transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  }
  
  .header__mega--sub__menu--link:hover,
  .header__mega--sub__menu--link:focus {
    background: transparent;
    color: var(--white-color);
  }
  
  .header__mega--sub__menu--link:hover:after {
    width: 100%;
    height: 100%;
  }
  
  .header__mega--sub__menu_li img {
    border-radius: 20px;
  } */
  
  .header__menu--items:hover .header__sub--menu {
    visibility: visible;
    margin-top: 25px;
    opacity: 1;
  }
  
  .header__menu--items:hover .header__mega--menu {
    visibility: visible;
    margin-top: 0;
    opacity: 1;
  }
  @media (min-width:1367px) {
    .header__menu--link {
      font-size: 18px;
      font-weight: 600 !important;
    }
  }
  @media (max-width: 1440px) {
    .header__menu--navigation {
      gap: 10px;
    }
  }
  @media (max-width: 1366px) {
    .header__menu--link {
      font-size: 18px;
      font-weight: 600;
    }
    .header__bottom--inner .header__menu {
      flex: 2;
    }
  
    .header__menu--navigation {
      gap: 0px;
    }
  }
  
  @media (max-width: 1280px) {
    .main__logo--img {
      max-width: 250px;
    }
    .header__menu--link {
      font-size: 14px;
    }
  }
  @media (max-width: 1170px) {
    .header__menu--navigation {
      gap: 8px;
    }
  }
  
  .search-user-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
    justify-content: end;
    gap: 20px;
  }
  .search-user-wrapper:hover{
    color:var(--secondary-color)
  }
  .input-wrapper {
    display: flex;
    justify-content: space-between;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(35px);
    padding: 0 10px;
    align-items: center;
    position: absolute;
    top: 0px;
    width: 0;
    height:38px;
    visibility: hidden;
    opacity: 0;
    right: 50px;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
  }
  
  .input-wrapper.active {
    visibility: visible;
    opacity: 1;
    width: 100%;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
  }
  @media screen and (min-width:1025px) {
    .input-wrapper.active {
      width: 80% !important;
    }
  }
  .input-wrapper .searchbox-input {
    border: 0;
    outline: 0;
    box-shadow: none;
    height: 33px;
    padding: 0 10px;
  }
  .input-wrapper .close-icon {
    cursor: pointer;
  }
  
  .search-toggle {
    border-radius: 30px;
    border: 0.5px solid rgba(0, 0, 0, 0.56);
    background: rgba(217, 217, 217, 0.5);
    height: 33px;
    color: rgba(0,0,0,1);
    font-family: Anek Bangla;
    font-weight: Regular;
    font-size: 18px;
    min-width: 137px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .search-toggle.active {
    visibility: hidden;
  }
  
  .submit--btn {
    width: 35px;
    height: 17px;
    border-right: 1px solid #808c92;
    padding-right: 15px;
    display: flex;
    align-items: center;
  }
  
  /*---------------------------------
       mobile__menu css
    ---------------------------------*/
  
  .mobile__menu-header {
    display: block;
    position: relative;
  }
  
  .header__bottom {
    display: none;
  }
  @media (min-width: 1040px) {
    .mobile__menu-header {
      display: none;
    }
  
    .header__bottom {
      display: block;
    }
  }
  
  .mobile__menu-header {
    border-radius: 50px;
    border: 2px solid rgba(166, 166, 166, 0.68);
    background: var(--white-color);
    padding: 5px;
    overflow: hidden;
  }
  .mobile__menu-header .main__logo--img {
    max-width: 250px;
  }
  
  .header__search ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile__menu-header .input-wrapper {
    border: 0;
    right: 0;
    padding: 0;
    height: 35px;
  }
  @media screen and (max-width:450px) {
    .mobile__menu-header .input-wrapper{
      height: 48px;
    }
  }
  .offcanvas__logo img {
    max-width: 280px;
  }
  
  .offcanvas__header--menu__open--btn > * {
    pointer-events: none;
  }
  
  .offcanvas__header--menu__open--svg {
    width: 32px;
  }
  
  .offcanvas__header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    height: 100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background-color: var(--body-bg);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
  }
  
  @media only screen and (min-width: 480px) {
    .offcanvas__header {
      max-width: 320px;
    }
  }
  .offcanvas__header.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  .offcanvas__header.open ~ .offcanvas-overlay {
    visibility: visible;
    opacity: 0.75;
  }
  
  .offcanvas-overlay {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    opacity: 0;
    background-color: var(--black-color);
  }
  
  .offcanvas__inner {
    position: relative;
    height: 100%;
  }
  
  .offcanvas__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 15px;
  }
  
  .offcanvas__close--btn {
    position: relative;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 1.6rem;
    height: 1.6rem;
    padding: 0;
    text-indent: -9999px;
    border: none;
    background-color: transparent;
  }
  
  .offcanvas__close--btn::after,
  .offcanvas__close--btn::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    content: "";
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #808c92;
    border-radius: 15px;
  }
  
  .offcanvas__close--btn::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .offcanvas__menu {
    overflow-y: auto;
    height: 100%;
  }
  
  .offcanvas__menu_ul {
    overflow: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: calc(100% - 100px);
  }
  
  .offcanvas__menu_li {
    position: relative;
    border-bottom: 1px solid var(--border-color2);
  }
  
  .offcanvas__menu_li:first-child {
    border-top: 1px solid var(--border-color2);
  }
  
  .offcanvas__menu_item {
    line-height: 1;
    display: block;
    font-family:Anek Bangla;
    font-size: 15px;
    font-weight: 800;
    color:rgba(0,0,0,1);
    padding: 10px 20px;
    text-transform: uppercase;
  }
  .offcanvas__menu_item:hover {
    color:#EF4136;
  }
  .offcanvas__sub_menu {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .offcanvas__sub_menu_li {
    position: relative;
    font-size: 15px;
    border-top: 1px solid var(--border-color2);
  }
  
  .offcanvas__sub_menu_item {
    line-height: 1;
    display: block;
    padding: 10px 0 10px 30px;
    font-family: var(--anek-bangla-font);
    color:#000;
    font-weight: 600;
  }
  
  .offcanvas__sub_menu_item ~ .offcanvas__sub_menu .offcanvas__sub_menu_item {
    padding-left: 40px;
  }
  
  .offcanvas__sub_menu_toggle {
    font-size: 15px;
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
    width: 4rem;
    height: 3.6rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
  }
  
  .offcanvas__sub_menu_toggle::after,
  .offcanvas__sub_menu_toggle::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    content: "";
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-color: #808c92;
  }
  
  .offcanvas__sub_menu_toggle:not(.active)::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
  }
  
  .offcanvas__sub-wrapper {
    padding: 20px 30px;
  }
  
  .offcanvas__footer {
    padding: 30px 17px 30px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--body-bg);
    border-top: 1px solid var(--border-color2);
    z-index: 9;
  }
  
  .offcanvas__account--items__icon {
    width: 3rem;
    height: 3rem;
    text-align: center;
    background: red;
    line-height: 2.8rem;
    border-radius: 50%;
    color: #fff;
  }
  
  .offcanvas__account--items__label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 6px;
    font-family:Anek Bangla;
    color:rgba(0,0,0,1);
  }
  
  .mobile_menu_open,
  .offCanvas__minicart_active,
  .offcanvas__filter--sidebar_active,
  .predictive__search--box_active,
  body.overlay__active {
    overflow-y: hidden;
  }
  
  .mobile_menu_open::before,
  .offCanvas__minicart_active::before,
  .offcanvas__filter--sidebar_active::before,
  .predictive__search--box_active::before,
  body.overlay__active::before {
    position: absolute;
    content: "";
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0.5;
    cursor: crosshair;
  }
  
  @media only screen and (max-width: 480px) {
    .input-wrapper {
      top: -7px;
    }
  
    .header__section {
      margin: 20px auto 0;
    }
    .mobile__menu-header .main__logo--img {
      max-width: 250px;
    }
    .header__main {
      margin-left: 20px;
      margin-right: 20px;
    }
  }
  
  /*---------------------------------
       mobile-siticky-header start 
    ---------------------------------*/
  
  /* .mobile-siticky-header {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 3;
    background: #001f42;
    border-radius: 4px 4px 0px 0px;
    -webkit-box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 15px;
  }
  .mobile-siticky-header ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    margin: 0;
  
    gap: 10px;
  }
  
  @media (max-width: 1024px) {
    .mobile-siticky-header {
      display: block;
    }
  }
  
  .sticky-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-family: var(--poppins-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    line-height: 17px;
  }
  
  .sticky-menu li .circle-icon {
    display: none;
  }
  .sticky-menu li.active .circle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .sticky-menu li.active .primary-icon {
    display: none;
  }
  
  .secondary-icon {
    position: absolute;
    top: -30px;
    width: 60px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  
    border-radius: 0 0 50px 50px / 0 0 70px 70px;
  }
  .menu-text {
    margin-top: 10px;
  }
  
  .secondary-icon::before {
    content: "";
    position: absolute;
    left: 5px;
    right: 0;
    top: 24px;
    width: 50px;
    height: 34px;
    background: #f2f9fe;
    z-index: -1;
    border-radius: 0 0 50px 50px / 0 0 66px 66px;
  } */
  

/*---------------------------------
     hero-slider start 
  ---------------------------------*/

.hero-slider {
  position: relative;
}

.slide-item {
  position: relative;
  overflow: hidden;
}

/* .hero-slider .slider-track {
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
} */

.ss_img {
  -webkit-transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);

  transition: all 500ms ease-in-out;
  transform: scale(1.1, 1.1);
}

.slick-active .ss_img,
.no-js .ss_img {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-animation: cssAnimation 5000ms 1 ease-in-out forwards;
  animation: cssAnimation 5000ms 1 ease-in-out forwards;
}

@keyframes cssAnimation {
  from {
    -webkit-transform: scale(1) translate(0px);
  }
  to {
    -webkit-transform: scale(1.1) translate(0px);
  }
}
@-webkit-keyframes cssAnimation {
  from {
    -webkit-transform: scale(1) translate(0px);
  }
  to {
    -webkit-transform: scale(1.1) translate(0px);
  }
}


/* -----------------video css for slider-------------- */

/* .ss_img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.slick-active .ss_img,
.no-js .ss_img {
  opacity: 1;
  visibility: visible;
} */

/* -----------------video css for slider-------------- */



.slide-item.small {
  height: 550px;
}
.slide-item.medium {
  height: 720px;
}
.slide-item.large {
  height: 1070px;
}
.slide-item.fullscreen {
  height: 100vh;
}

@media (min-width: 2201px) {
  .slide-item.large {
    height: 1430px;
  }
}
@media (min-width: 1025px) and (max-width: 1400px) {
  .slide-item.large {
    height: 640px;
    
  }
}
@media (min-width: 1401px) and (max-width: 1700px) {
  .slide-item.large {
    height: 800px;
  }
}
@media (min-width: 1701px) and (max-width: 2200px) {
  .slide-item.large {
    height: 1000px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .slide-item.small {
    height: 290px;
  }
  .slide-item.medium {
    height: 350px;
  }
  .slide-item.large {
    height: 500px;
  }
  .slide-item.fullscreen {
    height: 70vh;
  }
}
@media (max-width: 767px) {
  .slide-item.small {
    height: 290px;
  }
  .slide-item.medium {
    height: 350px;
  }
  .slide-item .ss_img{
    opacity: 1;
  }
  .slide-item.large {
    height: 400px;
  }
  .slide-item.fullscreen {
    height: 70vh;
  }
  .slide-item .tab-view {
    height: 800px;
    
  }
}

@media (max-width: 414px) {
  .slide-item.small {
    height: 234px;
  }

  .slide-item.medium {
    height: 234px;
  }

  .slide-item.large {
    height: 320px;
  }

  .slide-item.fullscreen {
    height: 40vh;
  }
}
/* ------------hero img other pages--------- */
/* .ss_img_hero {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
} */
/* .slick-active .ss_img_hero,
.no-js .ss_img_hero {
  opacity: 1;
  visibility: visible;
} */
.ss_img_contact {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/* .slick-active .ss_img_contact,
.no-js .ss_img_contact {
  opacity: 1;
  visibility: visible;
} */
.ss_img_project, .ss_img_aboutus,  .ss_img_hero  {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.ss_img_project, .ss_img_aboutus  {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.slick-active .ss_img_project, .slick-active .ss_img_aboutus, .slick-active .ss_img_hero, .slick-active .ss_img_contact,
.no-js .ss_img_project, .no-js .ss_img_aboutus, .no-js .ss_img_hero,  .no-js .ss_img_contact{
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width:767px) {
  .slick-active .ss_img_project, .slick-active .ss_img_aboutus, .slick-active .ss_img_hero, .slick-active .ss_img_contact,
  .no-js .ss_img_project, .no-js .ss_img_aboutus, .no-js .ss_img_hero,  .no-js .ss_img_contact {
  opacity: 0;
}
.slide-item.contact_mob_hero {
  background-image: url(../assets/ContactUs.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/* .slick-active .ss_img_hero,
.no-js .ss_img_hero {
  opacity: 0;
} */
.slide-item.profile_mob_img {
  background-image: url(../assets/CompanyProfile.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/* .slick-active .ss_img_project,
.no-js .ss_img_project {
  opacity: 0;
} */
.slide-item.project_mob_img {
  background-image: url(../assets/aminImage.webp);
  height: 50vh;
  width: 100vmax;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.slide-item.aboutus_mob_img {
  background-image: url(../assets/amaderSomporke.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
}
/* ------------hero img other pages--------- */


/*---------------------------------
     about-section start 
  ---------------------------------*/

  .about-section {
    position: relative;
    padding: 50px 0;
    margin-bottom: 60px;
  }
  
  .about__container {
    background-color: rgba(207, 239, 252, 0.4);
    border-radius: 37px;
    padding: 16px 0;
  }
  .about__box-wrap {
    padding: 40px;
  }
  
 
  
  .about__card {
    box-shadow: rgba(34, 180, 248, 0.25) 0px 10px 10px -5px,
      rgba(91, 194, 253, 0.3) 0px 8px 16px -8px;
    padding: 40px 40px 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 27px;
  }
  
  .about_logo {
    margin-bottom: 23px;
  }
  .about_logo img{
    max-width: 50%;
    border-radius: 0.5rem;
  }
  .about__brand-slider {
    padding: 20px;
    margin: 0;
    background-color: #ffffff;
    border-radius: 12px;
  }
  .about__brand-slider li{
    gap:10px;
    height: 60px;
    width: 100px;
  }
  .about__brand-slider .slick-slide img {
    margin: 0 auto;
    height: 60px;
    width: 120px;
  }
  .about__brand-slider .slick-slide {
    margin: 0 10px;
  }
  @media (max-width: 991px) {
   
    .about__box-wrap {
      padding: 10px;
      text-align: center;
    }
  
    .about_logo img {
      max-width: 150px;
    }
  
    .about__title {
      font-size: 30px;
      font-weight: 500;
      line-height: 4rem;
      letter-spacing: 0em;
      margin-bottom: 15px;
    }
  }
  @media (max-width: 767px) {
    .about__brand-slider {
      padding: 10px;
    }
    
    
    .about__logo-slider {
      margin-bottom: 24px;
    }
    .about__box-wrap {
      padding: 10px;
      text-align: center;
    }
  
    .about_logo img {
      max-width: 100px;
    }
  
    .about__card {
      padding: 15px;
    }
    .about__card .mb-60 {
      margin-bottom: 20px;
    }
  }









/*---------------------------------
       rev_slider start 
  ---------------------------------*/

.rev_slider .slick-slider {
  margin-left: -12%;
  margin-right: -12%;
}

.rev_slider .slick-list {
  padding-top: 0% !important;
  padding-bottom: 10% !important;
  padding-left: 0% !important;
  padding-right: 0% !important;
}

.rev_slider .slick-dots {
  text-align: right;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.rev_slider .slick-track {
  max-width: 100% !important;
  transform: translate3d(0, 0, 0) !important;
  perspective: 100px;
}

.rev_slider .slick-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  width: 100% !important;
  transform: translate3d(0, 0, 0);
  transition: transform 1s, opacity 1s;
}

.rev_slider .slick-snext,
.rev_slider .slick-sprev {
  display: block;
}

.rev_slider .slick-current {
  z-index: 4;
  opacity: 1;
  position: relative;
  display: block;
  transform: translate3d(3%, 21%, 0px);
}
.rev_slider .slick-sprev {
  z-index: 3;
  opacity: 1;
  transform: translate3d(13%, 7%, 0px);
}

.rev_slider .slick-pprev {
  z-index: 2;
  opacity: 1;
  transform: translate3d(17%, 1%, 0px);
}

.rev_slider .slick-snext {
  z-index: 3;
  opacity: 1;
  transform: translate3d(8%, 14%, 0px);
}
.project__item .img-wrap{
  padding:0 1rem;
}
/* @media screen and (min-width:991px) and (max-width:1300px) {
  .project__item .img-wrap img{
    border-radius: 30px;
    max-height: 612px;
    height: 612px;
    margin-top: 25px;
  }
} */
.project__item .img-wrap img{
  border-radius: 30px;
  max-height: 612px;
  height: 470px;
  margin-top: 25px;
}
/* .rev_slider .img-wrap{
  width: 100%;
} */

.rev_slider img {
  border-radius: 30px;
  padding: 28px;
  width: 95%;
  border-radius: 68px;
  transition: transform 0.5s ease-in-out;
  transform-origin: 100% 0;
}

.rev_slider .slick-slide {
  transition: transform 0.5s ease-in-out;
  transform-origin: 100% 0;
}
/* .rev_slider .slick-current.slick-slide:hover {
  transform: scale(1.2) translate(16%);
  transition: transform 0.5s, opacity 1s;
} */

.project__wrap {
  position: relative;
}
@media screen and (min-height:991px) {
  .project__card {
    height: 560px;
  }
}
.project__card {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 40px;
  padding: 34px 40px 40px;
  /* max-height: 560px; */
}

.project-overview {
  position: relative;
  margin-bottom: 60px;
}

.project-overview__container {
  padding: 50px 70px 60px;
  background-color: rgba(235, 240, 250, 1);
  border-radius: 40px;
}

.project__info-links {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 24px;
}

.project__info-links li img {
  max-width: 50px;
}

.rev_slider .slick-track {
  height: 550px;
}
@media screen and (max-width:768px) {
  .project__item .img-wrap img{
    height: 300px !important;
  }
}
/* @media screen and (max-width:500px) {
  .project__card{
    height: 250px !important;
  }
} */
@media (max-width: 991px) {
  .project-overview {
    margin-bottom: 40px;
}
  .project-overview__container {
    padding: 30px 15px 30px;
}

.rev_slider img {
  padding: 15px;
  width: 95%;
  border-radius: 30px;
}

.rev_slider .slick-track {
  
  height: auto;
}
.rev_slider {
  margin-bottom: 30px;
}

/* .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  top: 25%;
  bottom: auto;
} */
.project__card {
  padding: 15px;
}

.project__nfo{
  flex-direction: column-reverse;
}
.project__info-links li img {
  max-width: 40px !important;
}

.project__info-links {
  gap: 30px;
  margin-bottom: 20px !important;
}
}


/*---------------------------------
      btn__heading start Pavel-design
  ---------------------------------*/
  /*-------Project Info start-----*/
.btn__heading {
  background-color: #1068B0;
  color: var(--white-color);
  font-family: Anek Bangla;
  font-size: 25px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  padding: 14px 20px;
  min-width: 240px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .btn__heading {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.project__info-links li{
  list-style: none;
}
.project_slide_item li{
  list-style: none;
}
  /*-------Project Info end-----*/

/*--invest start ---*/
/*========================================
=        21. Video Popup Css            =
==========================================*/
.single-popup-wrap {
  position: relative;
}

.video-link {
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: block;
}

  .video-link .ht-popup-video.video-button {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
  }

      .video-link .ht-popup-video.video-button .video-mark {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translateY(-50%, -50%);
          -ms-transform: translateY(-50%, -50%);
          transform: translateY(-50%, -50%);
          pointer-events: none;
      }

          .video-link .ht-popup-video.video-button .video-mark .wave-pulse {
              width: 1px;
              height: 0;
              margin: 0 auto;
          }

              .video-link .ht-popup-video.video-button .video-mark .wave-pulse::after, .video-link .ht-popup-video.video-button .video-mark .wave-pulse::before {
                  opacity: 0;
                  content: "";
                  display: block;
                  position: absolute;
                  width: 200px;
                  height: 200px;
                  top: 50%;
                  left: 50%;
                  border-radius: 50%;
                  border: 3px solid #fff;
                  -webkit-animation: zoomBig 3.25s linear infinite;
                  animation: zoomBig 3.25s linear infinite;
                  -webkit-animation-delay: 0s;
                  animation-delay: 0s;
              }

              .video-link .ht-popup-video.video-button .video-mark .wave-pulse::before {
                  -webkit-animation-delay: 0.75s;
                  animation-delay: 0.75s;
              }

  .video-link .ht-popup-video .video-button {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
  }


  .video-link .ht-popup-video .video-button__two {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  }

      .video-link .ht-popup-video .video-button__two .video-play {
          width: 78px;
          height: 78px;
          background: #EF4136;
          -webkit-box-shadow: 0 2px 41px 0 rgba(91, 99, 254, 0.36);
          box-shadow: 0 2px 41px 0 rgba(91, 99, 254, 0.36);
          border-radius: 50%;
          -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1) !important;
          -o-transition: all 1s cubic-bezier(0, 0, 0.2, 1) !important;
          transition: all 1s cubic-bezier(0, 0, 0.2, 1) !important;
          -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 20px 30px rgba(0, 0, 0, 0.07);
      }

      .video-link .ht-popup-video .video-button__two .video-play-icon {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          line-height: 1;
          margin-left: 1px;
      }

          .video-link .ht-popup-video .video-button__two .video-play-icon::before {
              content: "";
              position: absolute;
              top: 0;
              left: 0;
              width: 0;
              height: 0;
              -webkit-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
              border-top: 11px solid transparent;
              border-bottom: 11px solid transparent;
              border-left: 17px solid #fff;
              border-top-width: 12px;
              border-bottom-width: 12px;
              border-left-width: 19px;
              border-left-color: #ffffff;
          }

  .video-link:hover .video-play {
      -webkit-transform: scale3d(1.15, 1.15, 1.15);
      transform: scale3d(1.15, 1.15, 1.15);
  }

@-webkit-keyframes zoomBig {
  0% {
      -webkit-transform: translate(-50%, -50%) scale(0);
      transform: translate(-50%, -50%) scale(0);
      opacity: 1;
      border-width: 3px;
  }

  40% {
      opacity: 0.5;
      border-width: 2px;
  }

  65% {
      border-width: 1px;
  }

  100% {
      -webkit-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1);
      opacity: 0;
      border-width: 1px;
  }
}

/*--invest end ---*/





/*---------------------------------
       invest-section start 
  ---------------------------------*/

.video-wrapper {
  position: relative;
}

.video__play-btn {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.poster-img-wrap img {
  width: 100%;
  border: 5px solid var(--white-color);
  margin: 2rem;
  border-radius: 20px;
}
@media screen and (max-width:500px) {
  .poster-img-wrap-mobi img {
    height:250px !important;
  }
}
.invest__container {
  background-color: #cfeffc;
  padding: 50px 70px 60px;
  border-radius: 40px;
}

.invest__title {
  margin-bottom: 50px;
}

.invest__description {
  max-width: calc(100% - 120px);
}

.invest-section {
  position: relative;
  margin-bottom: 60px;
}

.invest__description a{
  text-decoration: underline;
  text-transform: uppercase;
}

@media (max-width: 991px) {

  .invest-section{
    margin-bottom: 40px;
  }
  .invest__container{
    padding: 30px 15px 30px;
  }
  .invest__title{
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 15px;
  }

  .invest__description{
    max-width: 100%;
    text-align: center;
  }

  .video-wrapper{
    margin-top: 20px;
  }

  .video__play-btn svg{
    width: 40px;
    height: 40px;
  }


}

/*---------------------------------
     testimonial start 
  ---------------------------------*/

.testimonial {
  position: relative;
  margin-bottom: 100px;
  overflow: hidden;
}

.testimonial-wrap {
  background-color: #ebf0fa;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-box {
  text-align: center;
  flex: 1;
}

.author-box img {
  max-width: 100px;
  max-height: 100px;
  height: auto;
  border-radius: 50%;
  border: 3px solid #1068B0;
  margin: 0 auto 20px;
}

.author__name {
  font-family: var(--anek-bangla-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.30000001192092896px;
  color: #1068B0;
}

.autho__nfo {
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: var(--anek-bangla-font);
  color: rgba(0,0,0,1);
}

.ratting-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  justify-content: center;
}

.card-test {
  padding: 40px 15px;
  border-radius: 20px;
  background-color: var(--white-color);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2rem;
  font-family: Anek Bangla;
  color: rgba(0,0,0,1);
}

.test__item {
  margin: 0 10px;
}

.testimonial-slider .slick-slide {
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
}

.testimonial-slider .slick-slide,
.testimonial-slider
  .slick-slide[aria-hidden="true"]:not(.slick-cloned)
  ~ .slick-cloned[aria-hidden="true"] {
  transform: scale(0.8, 0.8);
  transition: all 0.4s ease-in-out;
}

.testimonial-slider .slick-center,
.testimonial-slider
  .slick-slide[aria-hidden="true"]:not([tabindex="-1"])
  + .slick-cloned[aria-hidden="true"] {
  transform: scale(1.1);
}

.testimonial-slider .slick-current.slick-active {
  transform: scale(1.1);
}

.testimonial-slider .slick-list {
  padding: 24px 20px !important;
}

@media (max-width: 1280px) {
  .testimonial-wrap {
    display: block;
}

.card-test{
  text-align: center;
  padding: 19px 15px;
  margin-top: 30px;
}

.author-box img {
  margin-top: -65px;
}
.testimonial-slider .slick-list {
  padding: 80px 20px 60px !important;
}

.test__item {
  margin: 0;
}
}
@media (max-width: 768px) {
  .testimonial-slider .slick-list {
      padding: 80px 20px 20px !important;
  }
  .testimonial-slider .slick-initialized .slick-slider .slick-dotted .slick-dots{
      padding: 0 0 1rem;
  }
}
.testimonial-slider .slick-initialized .slick-slider .slick-dotted .slick-dots{
  display: block;
  background-color: #fff;
}

/*--CSS New Start different Pages Pavel-----*/

/*-----Company Profile start----*/
/* ----------right decision start------- */
.flex {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width:1024px) {
  .flex .card {
    width: 100%;
    height: 35rem !important;
    max-width: calc(100% / 2 - 1rem) !important;
  }
  .flex .card img{
    width: 100px !important;
  }
  .card_discription .card_subtitle{
    line-height: 2.1rem !important;
    
  }
}
@media screen and (max-width:767px) {
  .flex .card {
    height: 30rem !important;
    max-width: calc(100% / 1 - 1rem) !important;
  }
}
@media screen and (max-width:600px) {
  .flex .card {
    width: 100%;
    height: 38rem !important;
    max-width: calc(100% / 1 - 1rem) !important;
  }
  .flex .card img{
    width: 100px !important;
  }
  .card_discription .card_subtitle{
    line-height: 2.5rem !important;
  }
}
.flex .card {
  width: 100%;
  max-width: calc(100% / 4 - 1rem);
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
  height: 40rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  cursor: pointer;
  position: relative;
  transition: all .3s ease-in;
}
.flex .card:hover{
  transform: translateY(-5px);
}
/* .flex .card::after{
  content: '';
  background-color: #038A45;
  border-radius: 1rem;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top:0;
  z-index: 0;
  clip-path: circle(10% at 0% 0%);
} */


.flex .card img{
  width: 100px;
}
.flex .card .card_discription{
  display: flex;
  flex-direction: column;
  font-family: Anek Bangla;
  padding: 1rem;
  text-align: start;
}
.card_discription .card_header{
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
  font-family: Anek Bangla;
  color: #000;
  text-align: center;
  
}
.card_discription .card_subtitle{
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 2.25rem;
  color: #000;
  font-family: Anek Bangla;
  text-align: justify;
}

/* ----------right decision end------- */



/*-----Company Profile end----*/










/* ---------- about us page start ------------- */
/*-----------mission start -----------*/

.mission-list {
  list-style: none;
  padding: 0;
}
/* .mission-list li {
  margin: 1rem 2rem;
  font-size: 18px;
  padding-left: 20px;
  color: rgba(0,0,0,1);
  font-family: Anek Bangla;
  line-height: 4rem;
  font-weight: 400;
} */
.mission-list li {
	display: flex;
	align-items: center;
	gap: 1.5rem;
  margin:  2rem auto;
	/* background: linear-gradient(rgba(166,200,161,1), rgba(255,255,255,1)); */
  /* background: rgb(81, 176, 253); */
  background: #1068B0;
  color: rgba(0,0,0,1);
  font-family: Anek Bangla;
	padding:  0.5rem 3rem;
	border-radius: 1rem;
	width: calc(100% - 2rem);
	box-shadow: 0.25rem 0.25rem 0.75rem rgb(0 0 0 / 0.1);
}
.mission-list li::before {
	counter-increment: list-item;
	content: url(../assets/rsz_9282598.png);
	font-size: 2.5rem;
	font-weight: 700;
	width: 1.6em;
 
	height: 1.6em;
	background: transparent;
	flex: 0 0 auto;
	border-radius: 50%;

	display: flex;
	justify-content: center;
	align-items: center;
}

.mission-list li:nth-child(even) {
	flex-direction: row-reverse;
	background: lavender;
	margin-right: -2rem;
	margin-left: 2rem;
}

.mission-list li:nth-child(even)::before {
	transform: rotateY(180deg);
}
.mission_img img {
  /* max-width: 100%;
  width: 100%;
  max-height: 400px; */
  border-radius: 30px;
}
@media screen and (max-width:991px) {
  .mission-list li {
    font-size: 14px;
    line-height: 2.5rem;
  }
  .mission_img img {
    max-width: 250px;
    max-height: 250px;
  }
  .mission_img{
    display: flex;
    justify-content: center;
  }
}

#director_name_desg h1{
  font-family: var(--anek-bangla-font);
  color: rgba(51,51,51,10);
  font-size: 23px;
  text-align: right;
  line-height: 25px;
  /* font-weight: bold; */
}
#director_name_desg h3{
  font-family: var(--anek-bangla-font);
  color: rgba(51,51,51,10);
  font-size: 20px;
  text-align: right;
  line-height: 20px;
  /* font-weight: 600; */
}
@media (max-width:991px) {
  #director_name_desg h1{
    
    font-size: 20px;
   
  }
  #director_name_desg h3{
    
    font-size: 18px;
    
  }
}
/*-----------mission end -----------*/

/* ---about us page css end ----- */


/*-----Project Page start----*/
/* ----------right decision start------- */
.flex_project {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width:991px) {
  .flex_project .card_project {
    width: 100%;
    max-width: calc(100% / 3 - 1rem) !important;
    padding:0.5rem;
    height: 18rem !important;
  }
  .card_discription_project .card_subtitle_project{
    line-height: 1.8rem !important;
    font-size: 13px !important;
  }
  .flex_project .card_project img{
    width: 70% !important;
  }
}
@media screen and (max-width:768px) {
  .flex_project .card_project {
    height: 20rem !important;
  }
}
@media screen and (max-width:600px) {
  .flex_project .card_project {
    width: 100%;
    max-width: calc(100% / 2 - 2rem) !important;
    padding:0.5rem 0.5rem !important;
    height: 18rem !important;
  }
  .flex_project .card_project img{
    width: 70% !important;
  }
  
}
.flex_project .card_project {
  width: 100%;
  max-width: calc(100% / 6 - 2rem);
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
  height: 22rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  cursor: pointer;
  position: relative;
  transition: all .3s ease-in;
}
.flex_project .card_project:hover{
  transform: translateY(-5px);
}
/* .flex .card::after{
  content: '';
  background-color: #038A45;
  border-radius: 1rem;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top:0;
  z-index: 0;
  clip-path: circle(10% at 0% 0%);
} */


.flex_project .card_project img{
  max-width: 70%;
  width:70%;
  max-height: 53%;
  border-radius: 1rem;
  padding: 1rem;
}
.flex_project .card_project .card_discription_project{
  display: flex;
  flex-direction: column;
  font-family: Anek Bangla;
  padding: 0.25rem;
  text-align: start;
}

.card_discription_project .card_subtitle_project{
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 2rem;
  color: #000;
  font-family: Anek Bangla;
}

/* ----------right decision end------- */
/* -------video gallery start ----------- */
.slider-container{
  width: 100%;
  height: 50vh;
  background-image: url('Images/bg-img.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-images{
  display: flex;
  align-items: center;
  gap: 21px;
}
.slider-images img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.slider-img{
  width: 110px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: 0.7s ease;
}
/* @media screen and (max-width:991px) {
  .slider-img{
    width: 50px !important;
    height: 100px !important;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: 0.7s ease;
  }
  .slider-img.active{
    width: 200px !important;
    height: 180px !important;
  }
  .slider-images{
    gap: 5px;
  }
  .details h2{
    font-size: 12px !important;
    line-height: 20px !important;
  }
  .details p{
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .details{
    position: absolute;
    bottom: 60px !important;
    left: 20px !important;
  }
  .slider-container{
    width: 100%;
    height: 20vh;
  }
} */
 .slider-images .slider-img:first-child, .slider-images .slider-img:last-child{
  height: 200px;
}
.slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(6){
  height: 250px;
}
.slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5){
  height: 300px;
}
.slider-img h1{
  font-family: Anek Bangla;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  top: 50%;
  left: -10%;
  transform: rotate(270deg);
  transition: 0.7s ease;
}
.details{
  position: absolute;
  bottom: 43px;
  left: 43px;
}
.details h2{
  font-family: Anek Bangla;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  line-height: 25px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}
.details p{
  font-family: Anek Bangla;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 25px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}
.slider-img.active{
  width: 400px;
  height: 300px;
}
#filterable-gallery .slider-img.hide {
  display: none;
}
.slider-img.active h1{
   display: none;
}
.slider-img.active .details p, .slider-img.active .details h2{
  display: block;
}
.slider-img.active .video-button{
  display: block;
}
.slider-img .video-button{
  display: none;
}
#filter-video-buttons button:hover {
  background: #ddd;
}
#filter-video-buttons button.active {
  color: #fff;
  background: #F66800;
}
#filter-video-buttons{
  max-width: 40%;
  background-color: #fff;
  text-align: center;
  border-radius: 40px;
  border: solid 1px #aaaaaa 
}
#filter-video-buttons button{
  border-radius: 40px;
  background: #fff;
  padding:0.5rem 1rem;
  margin: 0.5rem auto;
  font-family: Anek Bangla;
  font-size: 18px;
  color: #000;
  /* border: 1px solid #aaaa ; */
}
/* -------video gallery end ----------- */

/* ----rules section start ------ */
.rules_list{
  padding: 40px;
}
.rules_list ul li{
 list-style: none;
 padding: 0.5rem 0;
}
.rules_list ul li img{
  width:40px;
  margin-right: 10px;
 }
 .rules_list ul li span{
  font-family: Anek Bangla;
  font-size: 18px;
  color: #000;
  line-height: 2rem;
  text-align: start;
 }
 @media screen and (max-width:991px) {
  .rules_list{
    padding: 5px;
  }
  .rules_list ul li img{
    width:30px !important;
   }
  .rules_list ul li span{
    font-size: 14px !important;
    line-height: 1rem !important;
  }
 }
/* ----rules section end ------ */
/* -----image gallery start----- */
#filter-buttons, #filter-video-buttons{
  max-width: 40%;
  background-color: #fff;
  text-align: center;
  border-radius: 40px;
  border: solid 1px #aaaaaa 
}
#filter-buttons button, #filter-video-buttons button{
  border-radius: 40px;
  background: #fff;
  padding:0.5rem 2rem;
  margin: 0.5rem auto;
  font-family: Anek Bangla;
  font-size: 18px;
  color: #000;
  transition: all .3s ease-in;
  /* border: 1px solid #aaaa ; */
}

#filter-buttons button:hover {
  background: #ddd;
  transform: translateY(-2px);
}


#filter-buttons button.active {
  color: #fff;
  background: var(--secondary-hover-color);
}
#filterable-cards{
  /* margin: 3rem;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center; */
  justify-content: center;
  text-align: center;
}
#filterable-cards .card {
  width: 40rem;
  border-radius: 20px;
  transition: all .3s ease-in;
  cursor: pointer;
}
#filterable-cards .card:hover{
 transform: translateY(-5px);
}
/* #filterable-cards .card:hover img{
  transform: scale(1.025);
 } */
#filterable-cards .card img {
  width:100%;
  height:25rem;
  border: 4px solid #fff;
  border-radius: 20px 20px 0 0;
}
#filterable-cards .card .card-body {
  background: var(--secondary-hover-color);
  max-height: 35px;
  border-radius: 0 0 20px 20px;
  padding: 0.5rem;
}
#filterable-cards .card .card-body .card-title{
  font-family: Anek Bangla;
  font-size: 18px;
  color:#fff;
  font-weight: 400;
}

#filterable-cards .card.hide {
  display: none;
}
@media (max-width: 991px) {
  #filterable-cards {
    justify-content: center;
  }
  #filter-buttons{
    max-width: 90%;
  }
  
  #filter-video-buttons{
    max-width: 90%;
  }
  #filter-video-buttons button {
    font-size: 14px !important;
    padding: 0.3rem 0.8rem !important;
  }
  #filter-buttons button {
    font-size: 14px !important;
    padding: 0.3rem 1.8rem !important;
  }
  #filterable-cards .card {
    width: calc(100% / 3 - 10px);
  }
  #filterable-cards .card img {
    height:15rem;
  }
  #filterable-cards .card .card-body .card-title{
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #filterable-cards {
    justify-content: center;
  }
  #filterable-cards .card {
    width: calc(100% / 2 - 10px);
  }
}
@media (max-width: 500px) {
  #filterable-cards {
    justify-content: center;
  }
  #filterable-cards .card {
    width: calc(100% / 2 - 10px);
  }
  #filter-buttons{
    max-width: 90%;
  }
  #filter-video-buttons{
    max-width: 95%;
  }
  #filter-video-buttons button {
    font-size: 11px !important;
    padding: 0.2rem 1rem !important;
  }
  #filter-buttons button {
    font-size: 11px !important;
    padding: 0.2rem 1rem !important;
  }
  #filterable-cards .card .card-body .card-title{
    font-size: 12px;
  }
  #filterable-cards .card img {
    height:12rem;
  }
}
/* -----image gallery end----- */

/*-----Project Page end----*/
/* -----video gallery ----- */
.gallery-title
    {
        font-size: 36px;
        color: #42B32F;
        text-align: center;
        font-weight: 500;
        margin-bottom: 70px;
    }
    .gallery-title:after {
        content: "";
        position: absolute;
        width: 7.5%;
        left: 46.5%;
        height: 45px;
        border-bottom: 1px solid #5e5e5e;
    }
    .filter-div-button
    {
        font-size: 16px;
        
        animation: all 0.5s ease-in-out ;
        transition: cubic-bezier(0.075, 0.82, 0.165, 1);
        border-radius: 5px;
        width:30%;
        border-radius: 40px;
        padding:0.5rem 1rem;
        text-align: center;
        color: #000;
    }
    .filter-div-button:hover
    {
        animation: all 3s ease-in-out ;
        transition: all .3s ease-in;
        font-size: 16px;
        border: none;
        text-align: center;
        color: #000;
        background: #ddd;
        transform: translateY(-2px);
    }
    
    #btn-default-parent .active{
        color:#fff;
        background: var(--secondary-hover-color);
    }
    .btn-default-parent{
        border:solid 1px #ddd;
        display: flex;
        justify-content: space-between;
        margin-bottom: 0;
        font-family: var(--anek-bangla-font);
        align-items: center;
        padding: 10px;
        width:40%;
        border-radius: 40px;
    }
    .filter-div-button .active
    {
        background-color: #42B32F;
        color: white;
    }

    .port-image
    {
        width: 100%;
    }

    .gallery_product
    {
        margin-bottom: 30px;
    }
        

    /* ----playlist-- */
    .video_container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        padding: 20px;
        border-radius: 15px;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 20px;
        box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
        background-color:#dadce0;
    }
    .main-video-container {
        flex: 1 1 700px;
        position: relative;
        height: 480px;
        max-height: 550px;
        background-color: #fff;
        padding: 5px;
        border-radius: 15px;
    }
    .main-video, .main-video3d,.main-videoRec {
        position: relative;
        max-width:fit-content ;
        background-size: cover;
        max-width:760px;
        width:100%;
        height: 100%;
        max-height: 470px;
        border-radius: 15px;
    }
    .main-video img, .main-video3d img, .main-videoRec img {
        height: 100%;
        width: 100%;
        border-radius: 15px;
    }
    .main-vid-title {
        text-align: center;
        font-size: 20px;
        background-color: #1068B0;
        border-radius: 10px;
        color: #fff;
    }
    .video-list-container {
        flex: 1 1 300px;
        height: 480px;
        max-height: 500px;
        border-left: 2px solid #eee;
        background-color: #fff;
        overflow-y: scroll;
        padding: 15px 15px 15px 15px;
        border-radius: 15px;
    }

    .list {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 10px;
        border: 1px solid #eee;
        cursor: pointer;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    .list:last-child {
        margin-bottom: 0;
    }
    .list.active, .list3d.active, .listRec .active{
    background-color: #1068B0;
    }
    .container .video-list-container .list.active .list-title, .container .video-list-container .list3d.active .list-title, .container .video-list-container .listRec.active .list-title {
    color: #fff;
    }
    .container .video-list-container .list.active .list-description, .container .video-list-container .list3d.active .list-description, .container .video-list-container .listRec.active .list-description {
    color: #fff;
    }
    .list-video {

        width: 40%;
        height: 80px;
        border-radius: 5px;
    }
    .list-video img{
        width: 100%;
        height: 100%;
        border-radius: 5px;
    }
    .list-title-desc{
        width:60%;
    }
    .list-description{
        font-size: 12px;
        line-height: 14px;
        color: #444;
    }
    .list-title {
        font-size: 14px;
        line-height: 18px;
        color: #202020;
    }

    @media (max-width:1200px) {
    .container {
        margin: 0 auto;
    }
    .video-list-container{
        border: none !important;
        padding: 15px !important;
    }
    .btn-default-parent{
      width:90%;
    }
    }
    @media (max-width:450px) {
      .btn-default-parent{
        width:95%;
        padding: 10px;
      }
      .filter-div-button {
        width:33%;
        font-size:11px;
      }
    .video-list-container{
        border: none !important;
        padding: 15px !important;
    }
    .main-vid-title {
        font-size: 15px;
        text-align: center;
    }
    .list {
        flex-flow: column;
        gap: 10px;
    }
    .list-video {
        width: 100%;
    }
    .list-title {
        font-size: 15px;
        text-align: center;
    }
    }
/* -----video gallery end----- */

/*-----Golsands Group Blog start-------*/
.section__header {
  font-size: 2.4rem;
  line-height: 2.5rem;
  margin-bottom: 10px;
  color: #038A45;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .section__header{
    font-size: 2.4rem;
    line-height: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
  }

}
@media screen and (min-width:768px) and (max-width: 1023px) {
  .section__header{
      font-size: 2rem;
      font-weight: 500;
      line-height: 2.2rem;
      letter-spacing: 0em;
  }
}
@media (max-width: 767px) {
  .section__header{
      font-size: 1.8rem;
      font-weight: 500;
      line-height: 2rem;
      letter-spacing: 0em;
  }
}



/* ------------------contact us page start ----------------- */

/*---------------------------------
     category start 
  ---------------------------------*/
  /* @media screen and (min-width:1000px) {
  .category {
      margin-top: -450px !important;
  }
    }
    @media screen and (min-width:1700px) {
      .category {
          margin-top: -550px !important;
      }
        } */
  .category {
    padding: 50px 0 0;
    /* margin-bottom: 30px; */
    /* margin-top: -450px; */
    position: relative;
  }
  .category .inner-container_contact {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    width:60%;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
    /* background: rgba(53, 230, 8, 0.11); */
    background: rgba(4, 150, 248, 0.11);
    backdrop-filter: blur(12.9px);
    -webkit-backdrop-filter: blur(12.9px);
    box-shadow: rgba(122, 212, 235, 0.6) 0px 8px 19px;
    border-radius: 30px;
  }
  
  .category .contact_items{
    position:unset;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    font-family: var(--body-font);
    padding: 1.5rem 8rem;
  }
  
  .category .call{
    display: flex;
    width: 50%;
    flex-direction: row;
    align-items: center;
    justify-items: stretch;
    justify-content: space-around;
    font-family: var(--body-font);
    padding: 1rem;
  }
  .category .call img{
    width: 6rem;
    max-width: 7rem;
    border: none;
    background-color: rgba(8, 178, 230, 0.11);
    border-radius: 50%;
    padding:0.7rem;
  }
  .category .call .call_text h3{
    font-size: 1.5rem;
    font-family: Anek Bangla;
    font-weight: 600;
    text-align: center;
    color:#000;
    line-height: 2.5rem;
  }
  .category .call .call_text p{
    font-size: 1.4rem;
    font-family: Anek Bangla;
    font-weight: 400;
    text-align: center;
    color: #000000;
    line-height: 1rem;
  }
  .category .call a{
    background-color: #1068B0;
    width: 25%;
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    font-family: Anek Bangla;
    border-radius: 40px;
    max-width: 50%;
    /* border-width: 0.2vw;
    transition: 0.3s ease; */
  }
  .category .call a:hover{
    background-color: white;
    color: #1068B0;
    border: solid 1px #1068B0;
    font-weight: 800;
  }
  /* .branch_cols_button{
  max-width: 45%;
  width: 35%;
  border: solid .1rem #00AEEF;
  border-radius: 20px;
  font-size: var(--body-font);
  color: #00AEEF;
  display: flex;
  align-self: center;
  justify-content: center;
  transition: 0.3s ease;
  }
  .branch_cols_button:hover{
    background-color: #00AEEF;
    color: var(--white-color);
  } */
  @media screen and (max-width:1300px) {
    .category .contact_items {
      padding: 1rem 1rem;
  }
  .category .call a {
    width: 33%;
  }
  }
  @media screen and (min-width:768px) and (max-width:991px) {
    .category .inner-container_contact {
      width: 85% !important;
    }
    .category .contact_items{
      padding: 0.5rem ;
    }
    .category .call a{
      font-size: 1.2rem;
    }
    .category .call{
      gap:5px !important;
    }
  }
  @media screen and (max-width:767px) {
    .category {
      margin-top: 0px;
      margin-bottom: 0px;
    }
    .category .inner-container_contact {
      width: 85% !important;
    }
    .category .contact_items{
      padding: 0.5rem ;
      display: flex;
      flex-direction: column;
    }
    .category .call a{
      font-size: 1.2rem;
      width: 40% !important;
    }
    .category .call{
      width:80%;
    }
    .category .call img{
      width: 5rem;
    }
  }
  @media screen and (max-width:500px) {
    .category .inner-container_contact {
      width: 100% !important;
    }
    .category .contact_items{
      padding: 0.5rem ;
      display: flex;
      flex-direction: column;
    }
    .category .call a{
      font-size: 1.2rem;
      width: 40% !important;
    }
    .category .call{
      width:100%;
    }
    .category .call img{
      width: 4rem;
    }
  }
  
/*-----Branch Section Start------ */
.branch-section {
  position:relative;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
}
.branch-section .branch__container {
  max-width: 1250px;
  width:1250px;
  background-color: transparent;
  border-radius: 37px;
  padding: 16px 10px;
}

.branch-section .branch_lists{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 2rem;
  gap:10px;
  width:100%;
}

.branch-section .branch_cols{
  display: flex;
  flex-direction: column;
  font-family: var(--body-font);
  align-items: initial;
  background: white;
  height: auto;
  width: calc(100/3 - 1rem);
  padding: 1rem 1rem;
  border-radius: 2.5rem;
  border: solid 1px var(--secondary-hover-color);
  margin-bottom: 1rem;
  /* box-shadow: 10px 7px 12px -8px rgba(62,181,152,0.75);
-webkit-box-shadow: 10px 7px 12px -8px rgba(62,181,152,0.75);
-moz-box-shadow: 10px 7px 12px -8px rgba(62,181,152,0.75); */
  box-shadow: rgba(149, 193, 252, 0.6) 0px 8px 19px;
}
@media screen and (max-width:768px) {
  .branch-section .branch_cols{
  width: 90%;
  }
}
@media screen and (max-width:500px) {
  .branch-section .branch_cols{
  width: 100%;
  }
}
.branch-section .branch_cols iframe{
  width: 100%;
  max-width: 100%;
  height: 50%;
  border:none;
  background: #FFDED6;
}
.branch-section .branch_cols h2{
  font-size: 2rem;
  font-family: Anek Bangla;
  font-weight: 700;
  color:#1068B0;
  text-align: center;
  line-height: 3rem;
  text-transform: uppercase;
  border-bottom: solid 1px #1068B0;
  margin-top: 1.5rem;
}
.branch-section .branch_address{
  display: flex;
  flex-direction: row;
  font-family: Anek Bangla;
  color: #383434;
  align-items: center;
  justify-content: space-between;
}
.branch-section .branch_address .col_left{
 width: 30%;
 font-size: 1.5rem;
 font-weight: 600;
 text-align: left;
 line-height: 3.5rem;
 margin-left: 2rem;
}
.branch-section .branch_address .col_right{
  width: 95%;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
  line-height: 2rem;
 }
 .branch_cols_button{
  max-width: 45%;
  width: 35%;
  border: solid .1rem var(--secondary-hover-color);
  border-radius: 20px;
  font-size: var(--body-font);
  color: #1068B0;
  font-family: Anek Bangla;
  display: flex;
  align-self: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  margin: 1rem;
  }
  .branch_cols_button:hover{
    background-color: #1068B0;
    color: var(--white-color);
    /* letter-spacing: 0.15rem; */
  }

 @media screen and (max-width:600px){
  .branch-section .branch_address{
    padding: 0 1rem;
  }
  .branch-section .branch_address .col_right{
    font-size: 1.25rem;
  }
  .branch-section .branch_address .col_left{
    margin-left: 1rem;
   }
 }
 /*-----Branch Section End------ */

/* ------contact form start--------- */

.form-control{
  border-radius:30px;
  border:0px;
  background-color: wheat;
  text-align: center;
  z-index: 1;
}
#contact_form input {
  background-color: white;
  height: 4rem;
  border-radius: 30px;
  margin: 0.5rem;
}
@media screen and (min-width:1200px) {
  .contact_form_container{
    width:1120px;
  }
}

.contact_us_form input{
  font-family: Anek Bangla;
}
 .message_control input{
  height: 10rem;
}
.font-primary{
  font-family: Anek Bangla;
  font-size: 1.3rem;
  font-weight: 500;
}
.font-secondary{
  font-family: Anek Bangla;
  font-size: 1.6rem;
  font-weight: 500;
  color:#1068B0;
  border: solid 1px  #1068B0;
}
.font-secondary:hover{
  color:var(--secondary-hover-color);
  font-weight: 800;
}



/* ------contact form end--------- */  
/* ------------------contact us page end ----------------- */

/*--CSS New end different Pages Pavel-----*/











/*---------------------------------
     footer start 
  ---------------------------------*/

  .footer-bg {
    position: relative;
    background-position: center;
    background: url("../assets/Amin_City_Footer.webp") lightgray 50% / cover no-repeat;
    border-radius: 100px 100px 0px 0px;
    box-shadow: 0px 4px 80px 0px rgba(47, 196, 255, 0.8);
  }
  .footer-top {
    padding-top: 0px;
    padding-bottom: 0px;
    
  }
  .footer__col{
    margin-top:20px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin-top: 20px !important;
  }
  .footer-menu li a {
    color: #000;
    text-align: center;
    font-family: Anek Bangla;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.3px;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
  }
  
  .footer-menu li a:hover {
    /* color: #1B6D41; */
    color:#EF4136;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
  }
  .footer-menu li {
    margin-bottom: 0px;
  }
  .footer-menu li:last-child {
    margin-bottom: 0;
  }
  
  .footer-bottom {
    /* background-color: #1B6D41; */
    background-color: #1068B0;
    padding: 7px 18px;
  }
  
  .footer-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  
  .powered-by {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: -0.30000001192092896px;
    text-align: center;
    color: var(--white-color);
  }
  .copyright {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: -0.30000001192092896px;
    color: var(--white-color);
  }
  
  .privacy-menu {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
  
  .privacy-menu a {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: -0.30000001192092896px;
    color: var(--white-color);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
  }
  .privacy-menu a:hover {
    color: #000;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
  }
  @media (max-width: 1600px) {
    .payment-icon img {
      max-width: 745px;
    }
    .powered-by img {
      max-width: 138px;
    }
  }
  @media (max-width: 1366px) {
    .payment-icon img {
      max-width: 600px;
    }
    .powered-by img {
      max-width: 112px;
      height: 20px;
    }
  }
  @media (max-width: 1170px) {
    .payment-icon img {
      max-width: 545px;
    }
  }
  
  @media (max-width: 1080px) {
    .payment-icon img {
      max-width: 430px;
    }
    .powered-by img {
      max-width: 91px;
      height: 20px;
    }
  }
  
  .footer__desktop {
    display: block;
  }
  .footer__mobile {
    display: none;
  }
  @media (max-width: 991px) {
    .footer__desktop {
      display: none;
    }
  
    .footer__mobile {
      display: block;
    }
  }
  
  .social-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    margin-top: 5px;
  }
  
  .social-list li > a svg path {
    
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);



    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: none; 
    -webkit-transition: all .6s ease;
    opacity: 1;

  }
  .social-list li > a:hover svg path {
    
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);




    opacity: 0.5;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: gray ;
  }
  
  .subscribe-form {
    border-radius: 70px;
    box-shadow: 0px 4px 4px 0px #0000004d inset;
    box-shadow: 0px -4px 4px 0px #0000004d inset;
    height: 40px;
    background-color: #f1efef;
    align-items: center;
    margin-top: 5px;
  }
  .subscribe-form input {
    background: transparent;
    border: 0;
    outline: 0;
    border-radius: 70px;
    font-family: var(--anek-bangla-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: -0.30000001192092896px;
    color: #000;
    height: 30px;
    padding-right: 15px;
  }
  .subscribe-form .form-control:focus {
    border: 0;
    outline: 0;
    background: transparent;
    border-radius: 70px;
    color: #000;
    box-shadow: none;
  }
  
  .subscribe-form input::placeholder {
    font-family: var(--anek-bangla-font);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 27px;
    letter-spacing: -0.30000001192092896px;
    color: #000;
  }
  
  .subscribe-form input::-webkit-input-placeholder {
    font-family: var(--anek-bangla-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: -0.30000001192092896px;
    color: #000;
  }
  
  .subscribe-form .btn-subscribe {
    background-color: #000;
    font-family: var(--anek-bangla-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: -0.30000001192092896px;
    text-align: center;
    height: 33px;
    margin-right: 6px;
    margin-bottom: 2px;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    border: 0;
  }
  
  .subscribe-form .btn-subscribe:hover {
    background-color: var(--secondary-hover-color);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    border: 0;
    color: var(--white-color);
  }
  
  .button-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 33px;
    padding: 0;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 200px;
    position: relative;
    max-width: 130px;
    margin: 0 0 0 auto;
  }
  .button-group::before {
    content: "";
    position: absolute;
    width: 50%;
    bottom: 0;
    top: 0;
    left: 0;
    border-radius: 100px;
    background-image: radial-gradient(89% 83%, #1068B0 10%, #1068B0 100%);
  }
  .button-group.left::before {
    transform: translatex(0);
    transition: all 0.3s cubic-bezier(1, -0.01, 0, 1.01);
  }
  .button-group.right::before {
    transform: translatex(calc(100% - 0px));
    transition: all 0.3s cubic-bezier(1, -0.01, 0, 1.01);
  }
  .button-group .button {
    width: 50%;
    height: 33px;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    color: #000;
    transition: color 0.3s cubic-bezier(1, -0.01, 0, 1.01);
    font-family: var(--anek-bangla-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: -0.30000001192092896px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .button-group .button.active {
    color: #fff;
    transition: color 0.3s cubic-bezier(1, -0.01, 0, 1.01);
  }
  
  .pl-30p {
    padding-left: 30%;
  }
  
  .pl-15p {
    padding-left: 15%;
  }
  
  .footer-mobile-bg {
    position: relative;
  }
  
  .footer-mobile-bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background: url("../assets/Amin_City_Footer.webp") lightgray 50% / cover no-repeat;
    border-radius: 50px 50px 0px 0px;
    box-shadow: rgba(122, 212, 235, 0.6) 0px 8px 19px;
  }
  
  .footer-top__mobile{
    position: relative;
    z-index: 1;
  }
  .footer__mobile .footer-bottom {
    /* background-color: #1B6D41; */
    background-color: #1068B0;
  }
  
  .footer-bottom__mobile{
    position: relative;
    z-index: 1;
    /* background-color: #1B6D41; */
    background-color: #1068B0;
  }
  
  .footer-top__mobile {
    position: relative;
    z-index: 1;
  }
  
  .footer__mobile-flex{
    height: 250px;
    display: flex;
    align-items: end;
    justify-content: center;
  }
  
  .footer-top__menu{
    position: relative;
    z-index: 1;
    padding: 10px 0;
    /* background: -webkit-linear-gradient(89deg, hsla(214, 93%, 56%, 0.6) 0%, hsla(207, 94%, 87%, 0.4) 100%); */
  }
  
  .footer-bottom__mobile{
    padding: 15px 0;
  }
  .payment-icon{
    list-style: none;
  }
  .copyright{
    list-style: none;
  }
  @media (max-width: 991px) {
  
    .footer-bottom__mobile .payment-icon img {
      max-width: 100%;
  }
  .footer-mobile__inner {
    padding: 6px 10px 10px;
  }
  
    .footer-menu{
      column-count: 2;
      column-gap: 40px;
    }
    .footer-menu li {
      border-bottom: 3px solid var(--white-color);
      margin-bottom: 5px;
      padding-bottom: 5px;
    }
    .footer-menu li a {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        margin-left: 8px;
    }
  
  
    .social-list {
      margin-top: 5px;
      margin-bottom: 5px;
      justify-content: center;
  }
  
  .subscribe-form {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .button-group {
  
    justify-content: center;
    max-width: 159px;
    margin: 0 auto;
  }
  
  .button-group {
    height: 35px;
  }
  .button-group .button {
    height: 35px;
  }
  
  .powered-by {
    justify-content: center;
    margin:  5px 0;
  }
  .privacy-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin: 5px 0;
  }
  
  .copyright{
    text-align: center;
  }
  .social-list li > a svg path {
    
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);



    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: none; 
    -webkit-transition: all .6s ease;
    opacity: 1;

  }
  .social-list li > a:hover svg path {
    
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);




    opacity: 0.5;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: gray ;
  }
  }
  