/*-----------------------
Project :
Author :
------------------------------------*/


/*-----------------------------------
Table of content

1. General
2. Typography
3. Helper classes
4. text color
5. Bckground color
6. border 
7. border radius
8. button gradient
9. box shadow
10. text animation & effects
11.section setting
---------------------------------------*/


/*----------------------------
#1 General
----------------------------------------*/
body {
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  font-style: normal;
  color: #1e1e1e;
  overflow-x: hidden;
}

.page-wrapper {
  overflow-x: hidden;
}

/*----------------------------------------
#2 TYPOGRAPHY
------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin-top: 0px;
  margin-bottom: 0px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  line-height: 70px;
  letter-spacing: 0;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  line-height: 50px;
  text-transform: capitalize;
}

h3 {
  font-size: 30px;
  font-weight: 500;
  font-style: normal;
  line-height: 40px;
}

h4 {
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  line-height: 34px;
  color: #1e1e1e;
  margin-bottom: 10px;
}

h5 {
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 26px;
  margin-bottom: 10px;
}

h6 {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  margin-bottom: 10px;
}

ul {
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
}

/*-----------------------------------
#3 helper classes
--------------------------------------------*/
p {
  line-height: 1.7;
}

.lead {
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
}

.o-hidden {
  overflow: hidden;
}

.pos-r {
  position: relative
}

.z-index-0 {
  z-index: 0;
  position: relative;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

h1 span {
  color: red;
}

/* section { padding: 80px 0; } */

.font-w-3 {
  font-weight: 300;
}

.font-w-4 {
  font-weight: 400;
}

.font-w-5 {
  font-weight: 500;
}

.font-w-6 {
  font-weight: 600;
}

.font-w-7 {
  font-weight: 700;
}

.font-w-8 {
  font-weight: 800;
}

.font-w-9 {
  font-weight: 900;
}

.line-h-2 {
  line-height: 1.4;
}

.line-h-3 {
  line-height: 1.5;
}

.line-h-4 {
  line-height: 1.6;
}

.line-h-5 {
  line-height: 1.7;
}


/*-------------------------
#4 Text color
---------------------------------*/
.text-theme {
  color: red;
}

.text-black {
  color: #1e1e1e;
}

.text-gray {
  color: #999999;
}

.text-rgba {
  color: rgba(255, 255, 255, 0.8);
}



/*---------------------------
#5 gradient button
------------------------------------*/


.btn-grad-1 {
  background-image: linear-gradient(to right,
      #00648f 0%,
      #004f73 51%,
      #0082b3 100%);
  padding: 10px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}

.btn-close:focus {
  box-shadow: none;
}

.btn-grad-1:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.btn-grad-2 {
  background-image: linear-gradient(to right,
      #00648f 0%,
      #004f73 51%,
      #0082b3 100%);
  padding: 10px 10px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 7px;
  display: block;
  border: none;
}

.btn-grad-2:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}



/*--------------------------------
#6 Animated text
--------------------------------------------*/
.animate-charcter-1 {
  text-transform: uppercase;
  background-image: linear-gradient(-225deg, #231557 0%, #991630 29%, #c96969 67%, #97144d 100%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}