
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


  a {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  a,
  .button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  a,
  button {
      color: inherit;
      outline: none;
      border: none;
      background: transparent;
  }
  
  button:hover{
      cursor: pointer;
  }
  
  button:focus{
      outline: 0; 
  }
  
  a:focus,
  .button:focus {
    text-decoration: none;
    outline: none;
  }
  a:focus,
  a:hover,
  .portfolio-cat a:hover,
  .footer -menu li a:hover {
    text-decoration: none;
  }
  a,
  button {
    outline: medium none;
  }
  button:focus,
  input:focus,
  input:focus,
  textarea,
  textarea:focus {
    outline: 0;
  }
 
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a {
    color: inherit;
  }
  ul {
    margin: 0;
    padding: 0;
  }
  li {
    list-style: none;
  }
  
  span {
    font-size: 14px;
  }
  .bg-position {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .z-index-1{
    z-index: 1;
  }
  .secondary-color{
    background: var(--secondary-color);
  }
  .bg-secondary-color{
    background: var(--secondary-color);
  }
  .bg-secondary-gradient{
    background: linear-gradient(270deg, rgba(86, 170, 174, 0.7) 0%, #FFFFFF 150%);
  }
  .bg-green {
    background: var(--primary-color);
  }
  .bg-black {
    background: #1e2425;
  }
  .br-round-50{
    border-radius: 50px;
  }
  .c-relative {
    position: relative;
  }
  .c-absulate {
    position: absolute;
  }
  .c-overfellow {
    overflow: hidden;
  }
  .c-zindex1 {
    z-index: 1;
  }
  .c-zindex9 {
    z-index: 9;
  }
  .c-zindex99 {
    z-index: 99;
  }
  .p-relative{
    position: relative;
  }
  *::-moz-selection {
    background: var(--title-color);
    color: var(--white-color);
    text-shadow: none;
  }
  ::-moz-selection {
    background: var(--title-color);
    color: var(--white-color);
    text-shadow: none;
  }
  ::selection {
    background: var(--title-color);
    color: var(--white-color);
    text-shadow: none;
  }
  .section-bg {
    background: var(--bg-color);
  }
  .primary-bg {
    background: var(--primary-color);
  }

  .primary-color{
    color:var(--primary-color);
  }
  .back-to-top-wrapper{
      position: fixed;
    right: 20px;
    bottom: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
  }
  .back-to-top-wrapper.back-to-top-btn-show{
    visibility: visible;
    opacity: 1;
    bottom: 50px;
  }
  .back-to-top-btn{
      display: inline-block;
      width: 44px;
      height: 44px;
      line-height: 44px;
      text-align: center;
      background: var(--primary-color);
      box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
      color: var(--white-color);
      border-radius: 50%;
    -webkit-transition: transform 0.3s 0s ease-out;
    -moz-transition: transform 0.3s 0s ease-out;
    -ms-transition: transform 0.3s 0s ease-out;
    -o-transition: transform 0.3s 0s ease-out;
    transition: transform 0.3s 0s ease-out;
  }
  .back-to-top-btn svg{
    transform: translateY(-2px);
  }
  .back-to-top-btn:hover{
    transform: translateY(-4px);
  }
  
  .container-fluid{
    padding:0 20px;
    width: 100%;
  }
  .container {
    max-width: 1400px;
    padding: 0 20px;
  }
  @media (max-width: 575.98px) {
    .back-to-top-btn{
          right: 20px;
          bottom: 20px;
      }
  }
  /*=============================
  02.default margin-padding
  ===============================*/
  .m-lr {
    margin: 0 250px;
  }
  .mr-40{
    margin-right: 40px;
  }
  .mb-25 {
    margin-bottom: 25px;
  }
  .mb-20 {
    margin-bottom: 20px;
  }
  .mb-15 {
    margin-bottom: 15px;
  }
  .mb-10 {
    margin-bottom: 10px;
  }
  .mb-5 {
    margin-bottom: 5px;
  }
  .mb-30 {
    margin-bottom: 30px;
  }
  .mb-35 {
    margin-bottom: 35px;
  }
  .mb-40 {
    margin-bottom: 40px;
  }
  .mb-45 {
    margin-bottom: 45px;
  }
  .mr-15{
    margin-right: 15px;
  }
  .mb-50 {
    margin-bottom: 50px;
  }
  .mb-55 {
    margin-bottom: 55px;
  }
  .mb-70 {
    margin-bottom: 70px;
  }
  .mt-40 {
    margin-top: 40px;
  }
  .mt-60 {
    margin-top: 60px;
  }
  .mt-120 {
    margin-top: 120px;
  }
  .mt-50 {
    margin-top: 50px;
  }
  .mb-60 {
    margin-bottom: 60px;
  }
  .ptb-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .pb-90 {
    padding-bottom: 90px;
  }
  .pb-120 {
    padding-bottom: 120px;
  }
  .pb-100 {
    padding-bottom: 100px;
  }
  .pt-30{
    padding-top: 30px;
  }
  .pt-90{
    padding-top: 90px;
  }
  .pt-200 {
    padding-top: 200px;
  }
  .pt-110 {
    padding-top: 110px;
  }
  .pb-110 {
    padding-bottom: 110px;
  }
  .pb-130 {
    padding-bottom: 130px;
  }
  .pt-120 {
    padding-top: 120px;
  }
  .pt-130 {
    padding-top: 130px;
  }
  .mb-100{
    margin-bottom: 100px;
  }
  .mb-120{
    margin-bottom: 120px;
  }
  .pt-240 {
    padding-top: 240px;
  }
  .pb-140 {
    padding-bottom: 140px;
  }
  .pb-200 {
    padding-bottom: 200px;
  }
  .pt-50 {
    padding-top: 50px;
  }
  .pb-50{
    padding-bottom: 50px;
  }
  .pt-70 {
    padding-top: 70px;
  }
  .pb-70{
    padding-bottom: 70px;
  }
  .section-ptb {
    padding-top: 120px;
    padding-bottom: 90px;
  }
  .section-ptb2 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .pb-30 {
    padding-bottom: 30px;
  }
  
  .mt-30 {
    margin-top: 30px;
  }
  .mt-25 {
    margin-top: 25px;
  }
  .mt-20 {
    margin-top: 20px;
  }
  .mt-15 {
    margin-top: 15px;
  }
  .mt-130 {
    margin-top: 130px;
  }
  .mt-10 {
    margin-top: 10px;
  }
  .mr-20 {
    margin-right: 20px;
  }
  .mr-30 {
    margin-right: 30px;
  }
  .ml-30 {
    margin-left: 30px;
  }
  .pl-0 {
    padding-left: 0;
  }
  .pr-0 {
    padding-right: 0;
  }
  .pr-50{
    padding-right: 50px;
  }
  .pl-50{
    padding-left: 50px;
  }

  .preloader{
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1000;
      background-color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .loading-container,
  .loading{
      height: 100px;
      position: relative;
      width: 100px;
      border-radius: 100%;
  }
  .loading-container{
      margin: 40px auto
  }
  .loading{
      border: 1px solid transparent;
      border-color: transparent var(--white-color) transparent var(--white-color);
      animation: rotate-loading 1.5s linear 0s infinite normal;
      transform-origin: 50% 50%;
  }
  .loading-container:hover .loading,
  .loading-container .loading{
      transition: all 0.5s ease-in-out;
  }
  
  #loading-icon{
      position: absolute;
      top: 50%;
      left: 50%;
      max-width: 100px;
      transform: translate(-50%, -50%);
  }
  
  @keyframes rotate-loading {
      0% {
          transform: rotate(0deg);
      }
  
      100% {
          transform: rotate(360deg);
      }
  }





















html {
    position: relative;
    min-height: 100%;
}

body {
    color: var(--black-color);
    font-size: 62.5% !important;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -font-smoothing: antialiased;
    font-family: var(--font-rg), sans-serif !important;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}
.wrapper{
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
a{
    cursor: pointer;
    text-decoration: none !important;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

img {
    border: none;
    outline: none;
    -moz-user-select: none;
    user-select: none;
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    outline: none;
    background: transparent;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

p {
    font-size: 15px;
    color: var(--black-color);
    font-family: var(--font-rg);
    line-height: 1.3;
    word-break: break-word;
    font-weight: normal;
    letter-spacing: 0.5px;
}
li{
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 0.5px;
}
.circle{
    border-radius: 50%;
}
input:focus,
.input {
    outline: 0;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
select,
textarea {
    font-family: var(--font-rg);
    font-size: 1.8em;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    line-height: 1.2;
    font-family: var(--font-rg);
    /* word-spacing: 0.2em; */
    word-break: break-word;
    margin-bottom: 0;
    color: var(--black-color);
    margin-top: 0 !important;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2.3em;
}

h3 {
    font-size: 2.1em;
}

h4 {
    font-size: 1.8em;
}

h5 {
    font-size: 1.5em;
}

h6 {
    font-size: 1.3em;
}

main,
section,
header,
nav,
footer,
aside,
figure,
figcaption,
article,
hgroup {
    display: block;
}

textarea {
    resize: none;
    outline: none;
}

select {
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clear {
    clear: both;
}

.clear:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

p:empty {
    display: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
    padding: 1em 0;
}

::selection {
    background: var(--black-color);
    color: #fff;
    text-shadow: none;
}

::-webkit-input-placeholder {
    color: #6a6969 !important;
}

::-moz-placeholder {
    color: #6a6969 !important;
    opacity: 1;
}

:-moz-placeholder {
    color: #6a6969 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #6a6969 !important;
}

input:-moz-placeholder {
    box-shadow: none !important;
}

select::-ms-expand {
    display: none;
}



.getForm input[type="submit"],
.btn{
     
    font-size: 15px;
    line-height: 1;
    margin: 0;
    overflow: visible;
    z-index: 0;
    text-decoration: none;
    text-transform: none;
    -webkit-transition: var(--wdt-elementor-base-transition);
    transition: var(--wdt-elementor-base-transition);
    border-radius: 50px;
    position: relative;
    padding:15px 20px;
    display: inline-block;
    perspective: 1000px;
}
  .btn-transparent {
    background: none;
    border: 1px solid var(--white-color);
    color: var(--white-color);
  }
  .btn-black{
    background: var(--title-color);
  }
  
 
  .theme-btn{
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--primary-color);
    border:1px solid var(--primary-color);
    padding: 12px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    font-weight: normal;
    border-radius: 50px;
    text-decoration: none;
  }
  .theme-btn:hover{
    color: var(--primary-color);
    background: transparent;
  }

  
  .theme-btn-black{
    background-color: var(--black-color);
    border-color: var(--black-color);
  }
  
  .theme-btn-black::before{
    background: var(--primary-color);
  }
  .theme-btn-black::after{
    background: var(--primary-color);
  }
  .theme-btn:hover::before, .theme-btn:hover::after {
    width: max-content;
  }

  .btn-border-primary{
    border:1px solid var(--primary-color);
    
  }
  .btn-white {
    background-color: var(--white-color);
    color: var(--title-color);
  }
  .btn-white:hover {
    color: var(--white-color);
  }



.btn-white{
    border-color: var(--white-color);
    color: var(--white-color);
}
.btn-black{
    border-color: var(--black-color);
    color: var(--black-color);
}
.btn i{
    font-size: 9px;
    margin-left: 10px;
}

.btn:hover i{
animation: btn-arrow 0.4s linear;
    -webkit-animation: btn-arrow 0.4s linear;

}
button,
button:active,
button:focus {
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active,
input:-webkit-autofill:focus {
    background-color: transparent !important;
    --webkit-box-shadow: 0 0 0 1000px white inset !important;
    --webkit-text-fill-color: #555555 !important;
}

select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:active,
select:-webkit-autofill:focus {
    background-color: transparent !important;
    --webkit-box-shadow: 0 0 0 1000px white inset !important;
    --webkit-text-fill-color: #555555 !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(227, 44, 39, 1);
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-decoration: none;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s ease;
    text-align: center;
    color: #fff;
    z-index: 100;
}

.scroll-top i {
    line-height: 40px;
}

.mr-top {
    margin-top: 50px;
}

.mr-bottom {
    margin-bottom: 50px;
}

.mrtop-mrbot {
    margin: 50px 0;
}


.d-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.align-center{
    align-items: center;
}



.slick-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    font-size: 56px;
    color: var(--white-color);
    z-index: 1;
    cursor: pointer;
}

.slick-nav.next-arrow {
    left: inherit;
    right: 30px;
}

.slick-nav.prev-arrow {
    left: 30px;
    right: inherit;
}

ul.slick-dots {
    position: absolute;
    bottom: 20px;
    display: flex;
    align-items: center;
    max-width: 200px;
    justify-content: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    gap: 5px;
}

ul.slick-dots li button {
    width: 10px;
    height: 10px;
    font-size: 0;
    border-radius: 50%;
    background: transparent;
    background: var(--black-color);
    border: none;
    opacity: 0.2;
    display: flex;
    align-items: center;
}

ul.slick-dots li.slick-active button {
    background: var(--primary-color);
    opacity: 1;
}

.slick-disabled{
    opacity: 0.6;
}
.textCenter{
    text-align: center;
}
.mb-0{
    margin-bottom: 0;
}
.mt-50{
    margin-top: 50px;
}

.headingAfter h2:after{
    display: block;
    content: '';
    background: url(../images/headling-line.png) no-repeat center center /cover;
    width: 200px;
    height: 10px;
    margin: 0 auto;
    margin-top: 20px;
}
.text-justify p{
    text-align: justify;
}
/*===============================================================
reset ends
=================================================================*/
