/* Variables
======================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;900&display=swap");
.link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 45px;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  padding: 0 20px;
  background-color: #2495d8;
  color: #fff;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -webkit-transition: 0.1s all linear;
  transition: 0.1s all linear;
}

.link span {
  position: relative;
  z-index: 99;
  color: #fff;
}

.link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  background: #c371ed;
  -webkit-clip-path: circle(0% at 0% 100%);
          clip-path: circle(0% at 0% 100%);
  -webkit-transition: 0.4s all linear;
  transition: 0.4s all linear;
}

.link:hover::before {
  -webkit-clip-path: circle(100% at 50% 100%);
  clip-path: circle(100% at 50% 100%);
}

@media all and (max-width: 575.98px) {
  .link {
    line-height: 40px;
    padding: 0 15px;
    font-size: 12px;
  }
}

.icon_link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  padding: 0;
  background-color: #c371ed;
  color: #fff;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.icon_link i {
  line-height: 40px;
}

.icon_link:hover {
  background-color: #2495d8;
  color: #fff;
}

/* Setting Style
======================*/
*,
:focus {
  outline: 0 !important;
}

::-moz-selection {
  background-color: #2495d8 !important;
  color: #fff !important;
}

::selection {
  background-color: #2495d8 !important;
  color: #fff !important;
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  font-weight: 400;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: #3c3c3c;
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #3c3c3c;
  border-radius: 25px;
  -webkit-border-radius: 25px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(31%, #2495d8), color-stop(64%, #c371ed));
  background-image: linear-gradient(top, #2495d8 31%, #c371ed 64%);
  border-radius: 25px;
  -webkit-border-radius: 25px;
}

/* Lists  
======================*/
ul,
li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

small {
  text-transform: uppercase;
}

/* Section Setting
=======================*/
.page_content {
  position: relative;
  margin-top: 75px;
  width: 100%;
}

section {
  padding: 90px 0;
  position: relative;
}

@media all and (max-width: 575.98px) {
  section {
    padding: 35px 0;
  }
}

section .container {
  position: relative;
  z-index: 99;
}

.section_num {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  color: transparent;
  font-size: 230px;
  height: 240px;
  line-height: 250px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 5px;
  opacity: 0.02;
  font-weight: 900;
}

@media all and (max-width: 575.98px) {
  .section_num {
    font-size: 100px;
  }
}

[data-aos^="zoom"][data-aos^="zoom"].aos-animate {
  opacity: 0.02;
}

/* Cursor
=========================*/
.cursor {
  z-index: 9999;
  position: fixed;
  width: 22px;
  height: 22px;
  background-color: rgba(30, 59, 110, 0.1);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #3c3c3c;
}

.preloader p {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 14px;
  line-height: 20px;
  color: #fff;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 46%;
  left: 0;
  right: 0;
  margin: auto;
}

.pace {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 9999999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  width: 290px;
  border: 0px;
  height: 1.5px;
  overflow: hidden;
  background-color: #3c3c3c;
}

.pace .pace-progress {
  z-index: 9999999;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(31%, #2495d8), color-stop(64%, #c371ed));
  background-image: linear-gradient(90deg, #2495d8 31%, #c371ed 64%);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.main_screen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  background-color: #3c3c3c;
}

.main_screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/lines.png) top left no-repeat;
  background-size: cover;
  color: #fff;
}

.main_screen .row {
  position: relative;
  z-index: 99;
}

.main_screen h1 {
  margin: 25px 0;
  font-weight: 900;
  font-size: 72px;
  line-height: 50px;
  background: -webkit-gradient(linear, left top, right top, color-stop(31%, #2495d8), color-stop(64%, #c371ed));
  background: linear-gradient(90deg, #2495d8 31%, #c371ed 64%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main_screen h2 {
  margin: 25px 0;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}

.main_screen h3 {
  display: block;
  width: 100%;
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  margin: 25px 0;
  color: #fff;
}

.main_screen h3 span {
  display: inline-block;
  font-style: normal;
  background: -webkit-gradient(linear, left top, right top, color-stop(31%, #2495d8), color-stop(64%, #c371ed));
  background: linear-gradient(90deg, #2495d8 31%, #c371ed 64%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main_screen h6 {
  font-size: 22px;
  margin: 0;
  font-weight: 400;
  color: #fff;
}

.main_screen .main_img {
  position: relative;
  max-width: 390px;
  margin: auto 0 auto auto;
}

.main_screen .main_img img {
  width: 100%;
  margin: auto 0 auto auto;
}

.main_screen .main_img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0 auto auto;
  z-index: -1;
  width: 100%;
  height: 90%;
  border-radius: 70%;
  -webkit-border-radius: 70%;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(31%, #2495d8), color-stop(64%, #c371ed));
  background-image: linear-gradient(90deg, #2495d8 31%, #c371ed 64%);
  opacity: 0.3;
  -webkit-filter: blur(90px);
          filter: blur(90px);
  -webkit-animation: fa-spin 14s infinite linear;
          animation: fa-spin 14s infinite linear;
}

.main_screen h1,
.main_screen h2,
.main_screen h3,
.main_screen h6,
.main_screen .link,
.main_screen .main_img {
  top: 50px;
  opacity: 0;
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
}

@media all and (min-width: 992px) and (max-width: 1199.98px) {
  .main_screen h1 {
    font-size: 64px;
  }
  .main_screen .main_img::before {
    width: 55%;
    height: 55%;
    margin: auto;
  }
}

@media all and (max-width: 991.98px) {
  .main_screen {
    text-align: center;
    padding: 130px 0;
    display: block;
    min-height: auto;
  }
  .main_screen .main_img {
    display: none;
  }
}

@media all and (max-width: 767.98px) {
  .main_screen h1 {
    font-size: 52px;
  }
}

@media all and (max-width: 575.98px) {
  .main_screen {
    padding: 100px 0;
  }
  .main_screen h1 {
    line-height: 32px;
    font-size: 35px;
    margin: 15px 0;
  }
  .main_screen h2 {
    font-size: 22px;
    margin: 15px 0;
  }
  .main_screen h3 {
    margin: 15px 0;
  }
  .main_screen h3 span {
    display: block;
    margin-top: 10px;
  }
  .main_screen .scroll-btn {
    bottom: 0;
  }
}

/* Scroll
====================*/
.scroll-btn {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  width: 110px;
  height: 40px;
  text-align: center;
  font-style: italic;
  letter-spacing: 1px;
}

.scroll-btn:hover {
  color: #fff;
}

.scroll-btn::before {
  content: " ";
  height: 40px;
  width: 4px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  margin: auto;
  opacity: 0.4;
  border-radius: 25px;
  -webkit-border-radius: 25px;
}

.scroll-btn::after {
  content: " ";
  height: 20px;
  width: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -webkit-animation: move 1.5s ease-in-out alternate infinite;
          animation: move 1.5s ease-in-out alternate infinite;
}

@-webkit-keyframes move {
  0% {
    top: -45px;
  }
  100% {
    top: -35px;
  }
}

@keyframes move {
  0% {
    top: -45px;
  }
  100% {
    top: -35px;
  }
}

header {
  position: fixed;
  top: 30px;
  padding: 15px 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  background-color: transparent;
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
}

header.move {
  top: 0;
  background-color: #3c3c3c;
  border-bottom: 1px solid #474747;
}

header .logo {
  margin: 0;
  height: 40px;
}

header .icons {
  position: absolute;
  right: 15px;
  margin: auto;
  top: 0;
  bottom: auto;
  z-index: 999;
}

header .icons .icon_link {
  margin: 0;
}

header .icons .icon_link.menu_btn {
  display: none;
  background-color: #2495d8;
}

header .navbar {
  min-height: 40px;
  width: 100%;
  margin: -40px auto auto;
  padding: 0;
}

header .navbar ul {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .navbar ul li {
  display: inline-block;
}

header .navbar ul li a {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  margin: 0 15px;
  letter-spacing: 1px;
  line-height: 40px;
  text-transform: uppercase;
  display: block;
  padding: 0;
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
}

header .navbar ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
}

header .navbar ul li a.active::before, header .navbar ul li a:hover::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(31%, #2495d8), color-stop(64%, #c371ed));
  background: linear-gradient(90deg, #2495d8 31%, #c371ed 64%);
}

@media all and (max-width: 991.98px) {
  header {
    top: 0;
    background-color: #3c3c3c;
    border-bottom: 1px solid #5a5757;
  }
  header .icons .icon_link.menu_btn {
    display: inline-block;
  }
  header .navbar {
    background-color: #3c3c3c;
    margin: 0;
    z-index: 9999;
    min-height: auto;
    position: absolute;
    top: 71px;
    border-bottom: 1px solid #5a5757;
  }
  header .navbar ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about .section_num {
  -webkit-text-stroke-color: #3c3c3c;
}

.about .about_img {
  width: 100%;
  margin: auto auto 25px;
  padding-right: 25px;
}

.about h3 {
  margin: 0 0 25px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 32px;
  line-height: 30px;
  letter-spacing: 4px;
  background: -webkit-gradient(linear, left top, right top, color-stop(15%, #2495d8), color-stop(22%, #c371ed));
  background: linear-gradient(90deg, #2495d8 15%, #c371ed 22%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about p {
  font-size: 14px;
  margin: 0 0 15px;
  font-weight: 400;
  color: #3c3c3c;
}

@media all and (max-width: 1200px) {
  .about h3 {
    margin-bottom: 15px;
    line-height: 25px;
  }
  .about p {
    margin: 0 0 10px;
    font-size: 14px;
  }
}

@media all and (max-width: 991.98px) {
  .about .about_img {
    max-width: 480px;
    padding: 0;
    margin-bottom: 15px;
  }
}

@media all and (max-width: 575.98px) {
  .about h3 {
    font-size: 24px;
  }
}

.skills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 15px auto;
}
.skills li{
    display: inline-block;
}
.skills li img {
  margin: auto;
  padding: 0 10px;
  width:100px;
}

@media all and (max-width: 991.98px) {
  .skills {
    margin-top: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .skills li {
    width: 95px;
    margin: 10px;
  }
}

@media all and (max-width: 575.98px) {
  .skills {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .skills li {
    width: 75px;
  }
}

.experince {
  position: relative;
  background-color: #3c3c3c;
}

.experince::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/lines.png) top left no-repeat;
  background-size: cover;
  color: #fff;
}

.experince .section_num {
  bottom: auto;
}

.experince .flex {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media all and (max-width: 991.98px) {
  .experince .flex {
    margin-bottom: 25px;
  }
}

.experince h2 {
  margin: 0 0 25px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 32px;
  line-height: 30px;
  letter-spacing: 4px;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #2495d8), color-stop(65%, #c371ed));
  background: linear-gradient(90deg, #2495d8 30%, #c371ed 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.experince p {
  font-size: 16px;
  margin: 0 0 25px;
  font-weight: 400;
  color: #fff;
}

@media all and (max-width: 575.98px) {
  .experince h2 {
    letter-spacing: 2px;
    font-size: 24px;
  }
  .experince p {
    font-size: 14px;
    font-weight: 400;
  }
}

.resum-lists {
  position: relative;
}

.resum-lists::before {
  content: " ";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: calc(50% - 1px);
  width: 2px;
  height: 77%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, #2495d8), color-stop(55%, #c371ed));
  background: linear-gradient(0deg, #2495d8 45%, #c371ed 55%);
}

.resum-lists li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
  color: #fff;
}

.resum-lists li .date {
  width: 50%;
  text-align: right;
  padding: 5px 25px 0;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.resum-lists li .hand {
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  margin: auto;
  width: 20px;
  height: 20px;
  background-color: #3c3c3c;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.resum-lists li .resum-details {
  width: 50%;
  padding: 0 20px;
}

.resum-lists li .resum-details h3 {
  margin: 0;
  line-height: 25px;
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
}

.resum-lists li .resum-details p {
  margin: 10px 0 3px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
}

.resum-lists li .resum-details a {
  font-weight: 400;
  color: #c371ed;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
}

.resum-lists li.educ {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.resum-lists li.educ .resum-details {
  width: 100%;
  text-align: center;
  padding: 30px 0 0;
}

.resum-lists li.educ .resum-details p:last-child {
  margin: 0;
  font-size: 12px;
}

@media all and (max-width: 575.98px) {
  .resum-lists::before {
    left: 5px;
    height: 80%;
  }
  .resum-lists li {
    padding-left: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .resum-lists li .date {
    width: 100%;
    text-align: left;
    padding: 0;
    margin-bottom: 15px;
  }
  .resum-lists li .hand {
    left: -4px;
    top: -2px;
    right: auto;
  }
  .resum-lists li .resum-details {
    width: 100%;
    padding: 0;
  }
  .resum-lists li.educ {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .resum-lists li.educ .resum-details {
    width: 100%;
    text-align: left;
    padding: 0;
  }
  .resum-lists li.educ .resum-details h3 {
    margin-top: -5px;
    font-size: 14px;
  }
}

.contact {
  background-color: #3c3c3c;
  padding: 50px 0 35px;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/lines.png) top left no-repeat;
  background-size: cover;
  color: #fff;
}

.contact img {
  margin: 20px auto;
}

.contact h1 {
  margin: 25px 0;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  letter-spacing: 2px;
}

.contact p {
  margin: 35px 0 0;
  color: #fcfcfc;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 12px;
}

.contact .icon_link {
  right: 0;
  left: 0;
  top: -20px;
  margin: auto;
  position: absolute;
}

.links li {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
}

.links li a {
  display: block;
  color: #ffffff;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background-color: #474747;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.links li a i {
  line-height: 45px;
}

.links li.facebook:hover a {
  background-color: #4862a3;
}

.links li.linkedin:hover a {
  background-color: #3d6b92;
}

.links li.github:hover a {
  background-color: #161416;
  font-size: 18px;
}

.links li.whats:hover a {
  background-color: #25d366;
}

.links li.phone:hover a {
  background-color: #0099ff;
}

.links li.mail:hover a {
  background-color: #df2029;
}

@media all and (max-width: 575.98px) {
  .links li {
    margin: 3px;
  }
  .links li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
  }
  .links li a i {
    line-height: 35px;
  }
}

.portfolio {
 background-image: linear-gradient(180deg, #e8f1f9, #f4f9fc);
}

.portfolio h2 {
  margin: 0 0 25px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 32px;
  line-height: 30px;
  letter-spacing: 4px;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #2495d8), color-stop(70%, #c371ed));
  background: linear-gradient(90deg, #2495d8 20%, #c371ed 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  display: inline-block;
}

@media all and (max-width: 575.98px) {
  .portfolio h2 {
    letter-spacing: 2px;
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.work_item {
  background-color: #fff;
  display: block;
  margin: 30px auto 0;
-webkit-box-shadow: 0px 13px 19px 0 rgb(28 76 159 / 10%) !important;
    -moz-box-shadow: 0px 13px 19px 0 rgba(28, 76, 159, 0.1) !important;
    -ms-box-shadow: 0px 13px 19px 0 rgba(28, 76, 159, 0.1) !important;
    -o-box-shadow: 0px 13px 19px 0 rgba(28, 76, 159, 0.1) !important;
    box-shadow: 0px 13px 19px 0 rgb(28 76 159 / 10%) !important;

}

@media all and (max-width: 991.98px) {
  .work_item {
    margin: 15px auto;
  }
}

.work_item img {
  width: 100%;
}

.work_item h3 {
  color: #3c3c3c;
  margin: 0;
  padding: 15px;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  line-height: 35px;
}
.hint{
  text-align: center;
  color: #212121;
  font-weight: 600;
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  line-height: 35px;
}
/*# sourceMappingURL=style.css.map */