/*Globals*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  list-style: none;
}

:root {
  --color-primary: hsl(227, 26%, 13%);
  --color-secondary: hsl(273, 65%, 48%);
  --color-white: hsl(0, 0%, 100%);
  --color-black: hsl(0, 0%, 0%);
  --color-grey0: hsl(0, 0%, 97%);
  --color-grey-1: hsl(212, 22%, 88%);
  --color-grey-2: hsl(213, 21%, 75%);
  --color-grey-3: hsl(206, 10%, 47%);
  --color-grey-4: hsl(208, 11%, 30%);
  --color-grey-5: hsl(218, 12%, 19%);
  --color-grey-6: hsl(200, 20%, 9%);
  --br-sm-2: 14px;
  --transition-dflt: all .5s ease-in-out;
  --box-shadow-1:0 3px 15px rgba(0,0,0,0.2);
}

.lighTheme {
  --color-primary: hsl(0, 0%, 97%);
  --color-secondary: hsl(145, 63%, 42%);
  --color-white: hsl(0, 0%, 1%);
  --color-grey-5: hsl(225, 2%, 51%);
  --color-grey-1: hsl(180, 1%, 24%);
  --color-grey-2: hsl(214, 13%, 24%);
  --color-grey-4: hsl(207, 14%, 57%);
  --color-black: hsl(0, 0%, 0%);
  --color-grey0: hsl(0, 0%, 97%);
  --color-grey-3: hsl(206, 10%, 47%);
  --color-grey-6: hsl(200, 20%, 9%);
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  background-color: var(--color-primary);
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: var(--color-white);
  -webkit-transition: var(--transition-dflt);
  transition: var(--transition-dflt);
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
}

header {
  height: 100vh;
  color: var(--color-white);
  overflow: hidden;
}

section {
  min-height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 3rem 18rem;
}
@media (max-width: 63.9375em) {
  section {
    padding: 3rem 7.5rem;
  }
}
@media (max-width: 39.9375em) {
  section {
    padding: 2rem 2.5rem;
  }
}

.section {
  -webkit-transform: translateY(-100%) scale(0);
          transform: translateY(-100%) scale(0);
  -webkit-transition: -webkit-animation 0.5s ease-in-out;
  transition: -webkit-animation 0.5s ease-in-out;
  transition: animation 0.5s ease-in-out;
  transition: animation 0.5s ease-in-out, -webkit-animation 0.5s ease-in-out;
  background-color: var(--color-primary);
}
.section.active-sect {
  display: block;
  -webkit-animation: scaleAnm 1s ease-in-out;
          animation: scaleAnm 1s ease-in-out;
}

@-webkit-keyframes scaleAnm {
  from {
    -webkit-transform: translateY(-100%) scaleY(0);
            transform: translateY(-100%) scaleY(0);
  }
  to {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
  }
}

@keyframes scaleAnm {
  from {
    -webkit-transform: translateY(-100%) scaleY(0);
            transform: translateY(-100%) scaleY(0);
  }
  to {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
  }
}
.sec1 {
  display: none;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.sec2 {
  display: none;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.sec3 {
  display: none;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.sec4 {
  display: none;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.sec5 {
  display: none;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.bttn-main {
  border-radius: 30px;
  color: inherit;
  font-weight: 600;
  position: relative;
  border: 1px solid var(--color-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media (max-width: 63.9375em) {
  .bttn-main {
    margin: 0 auto;
  }
}
.bttn-main .bttn-text {
  padding: 0 2rem;
}
.bttn-main .bttn-icon {
  background-color: var(--color-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  border-radius: 50%;
  padding: 1rem;
}
.bttn-main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
.bttn-main:hover::before {
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.main-title {
  text-align: center;
}
.main-title h2 {
  position: relative;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 39.9375em) {
  .main-title h2 {
    font-size: 2rem;
  }
}
.main-title h2 span {
  color: var(--color-secondary);
}
@media (max-width: 39.9375em) {
  .main-title h2 span {
    font-size: 2.5rem;
  }
}
.main-title h2 .bgText {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--color-grey-5);
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 800;
  font-size: 6.3rem;
}
@media (max-width: 39.9375em) {
  .main-title h2 .bgText {
    font-size: 2.8rem;
  }
}

/*Controls section*/
.controls {
  position: fixed;
  z-index: 5;
  top: 50%;
  right: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 63.9375em) {
  .controls {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    top: auto;
    bottom: 0;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: var(--color-grey-5);
  }
}
.controls .control {
  padding: 1rem;
  cursor: pointer;
  background-color: var(--color-grey-4);
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 50%;
  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;
  margin: 0.7rem 0;
  -webkit-box-shadow: var(--box-shadow-1);
          box-shadow: var(--box-shadow-1);
}
@media (max-width: 39.9375em) {
  .controls .control {
    margin: 0.3rem 0rem;
  }
}
.controls .control i {
  font-size: 1.2rem;
  color: var(--color-grey-2);
  pointer-events: none;
}
.controls .control.active-btn {
  background-color: var(--color-secondary);
  transition: --transition-dflt;
}
.controls .control.active-btn i {
  color: var(--color-white);
}

/*Theme Button*/
.themeBtn {
  position: fixed;
  top: 5%;
  right: 3%;
  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;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-grey-4);
  -webkit-box-shadow: var(--box-shadow-1);
          box-shadow: var(--box-shadow-1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.themeBtn:active {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.themeBtn i {
  font-size: 1.4rem;
  color: var(--color-grey-2);
  pointer-events: none;
}

/*Header Section*/
.header-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
}
@media (max-width: 63.9375em) {
  .header-content {
    grid-template-columns: 1fr;
  }
}
.header-content .left-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 63.9375em) {
  .header-content .left-hd {
    bottom: 3.9375rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.header-content .left-hd .hshape {
  width: 75%;
  height: 100%;
  background-image: url("../img/hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-secondary);
  -webkit-transition: -webkit-filter 0.5s ease-in-out;
  transition: -webkit-filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
  -webkit-clip-path: polygon(0 0, 60% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 60% 0, 100% 100%, 0% 100%);
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media (max-width: 63.9375em) {
  .header-content .left-hd .hshape {
    width: 22%;
    height: 50%;
    -webkit-clip-path: none;
            clip-path: none;
    border-radius: 50%;
  }
}
.header-content .left-hd .hshape:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.header-content .right-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 12rem;
}
@media (max-width: 63.9375em) {
  .header-content .right-hd {
    grid-row: 1;
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
}
.header-content .right-hd .name {
  font: 3rem;
  color: var(--color-secondary);
}
.header-content .right-hd .name p {
  margin: 1.5rem 0;
}
@media (max-width: 63.9375em) {
  .header-content .right-hd .name {
    text-align: center;
  }
}
@media (max-width: 63.9375em) {
  .header-content .right-hd p {
    text-align: justify;
    padding: 0 1rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 39.9375em) {
  .header-content .right-hd p {
    padding: 0;
  }
}

.bttn-cntainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 63.9375em) {
  .bttn-cntainer {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

/*About Section*/
.aboutContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}
@media (max-width: 63.9375em) {
  .aboutContainer {
    grid-template-columns: 1fr;
  }
}
.aboutContainer .aboutRight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}
@media (max-width: 63.9375em) {
  .aboutContainer .aboutRight {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }
}
.aboutContainer .aboutRight .aboutItem {
  border: 1px solid var(--color-grey-5);
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 1px 2px 15px hsla(0deg, 0%, 0%, 0.1);
          box-shadow: 1px 2px 15px hsla(0deg, 0%, 0%, 0.1);
}
.aboutContainer .aboutRight .aboutItem:hover {
  cursor: default;
  -webkit-transform: translateY(0.3125rem);
          transform: translateY(0.3125rem);
  border-color: var(--color-secondary);
  -webkit-box-shadow: 1px 2px 15px hsla(0deg, 0%, 0%, 0.32);
          box-shadow: 1px 2px 15px hsla(0deg, 0%, 0%, 0.32);
}
.aboutContainer .aboutRight .aboutItem .abText {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.aboutContainer .aboutRight .aboutItem .abText .lgText {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary);
}
.aboutContainer .aboutRight .aboutItem .abText .smText {
  padding-left: 3rem;
  position: relative;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.125rem;
}
.aboutContainer .aboutRight .aboutItem .abText .smText::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9375rem;
  width: 2rem;
  height: 0.125rem;
  background-color: var(--color-grey-5);
}
.aboutContainer .aboutLeft {
  padding-right: 5rem;
}
@media (max-width: 63.9375em) {
  .aboutContainer .aboutLeft {
    padding: 0;
  }
}
.aboutContainer .aboutLeft p {
  padding: 1rem;
  color: var(--color-grey-1);
}
@media (max-width: 63.9375em) {
  .aboutContainer .aboutLeft p {
    text-align: justify;
  }
}
.aboutContainer .aboutLeft h4 {
  font-size: 2rem;
  text-transform: uppercase;
}
@media (max-width: 63.9375em) {
  .aboutContainer .aboutLeft h4 {
    text-align: center;
  }
}

.aboutStats {
  padding-bottom: 4rem;
}
.aboutStats .prgsBars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}
@media (max-width: 63.9375em) {
  .aboutStats .prgsBars {
    grid-template-columns: 1fr;
  }
}
.aboutStats .prgsBars .progBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.aboutStats .prgsBars .progBar .progTitle {
  text-transform: uppercase;
  font-weight: 500;
}
.aboutStats .prgsBars .progBar .progContr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aboutStats .prgsBars .progBar .progContr .progText {
  color: var(--color-grey-2);
}
.aboutStats .prgsBars .progBar .progContr .progress {
  width: 100%;
  height: 0.45rem;
  background-color: var(--color-grey-4);
  margin-left: 1rem;
  position: relative;
}
.aboutStats .prgsBars .progBar .progContr .progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-secondary);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 90%;
}
.aboutStats .prgsBars .progBar .progContr .progress #engBar {
  width: 90%;
}
.aboutStats .prgsBars .progBar .progContr .progress #htmlBar {
  width: 90%;
}
.aboutStats .prgsBars .progBar .progContr .progress #cssBar {
  width: 80%;
}
.aboutStats .prgsBars .progBar .progContr .progress #jsBar {
  width: 80%;
}

.staTitle {
  text-transform: uppercase;
  font-size: 1.4rem;
  text-align: center;
  padding: 3.5rem 0;
  position: relative;
}
.staTitle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 40%;
  height: 0.0625rem;
  background-color: var(--color-grey-5);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*Time line section*/
.timeLine {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  padding-top: 3rem;
}
@media (max-width: 63.9375em) {
  .timeLine {
    grid-template-columns: 1fr;
    padding-bottom: 6rem;
  }
}
.timeLine .timeLineItem {
  position: relative;
  padding-left: 3rem;
  border-left: 0.0625rem solid var(--color-grey-5);
}
.timeLine .timeLineItem .timeLineIcon {
  position: absolute;
  left: -1.4375rem;
  top: 0;
  background-color: var(--color-secondary);
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  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;
}
.timeLine .timeLineItem .timeLineIcon i {
  font-size: 1.3rem;
}
.timeLine .timeLineItem .tlDuration {
  padding: 0.2rem 0.6rem;
  background-color: var(--color-grey-5);
  border-radius: 0.9375rem;
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
}
.timeLine .timeLineItem h5 {
  padding: 1rem 0;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 600;
}
.timeLine .timeLineItem h5 span {
  color: var(--color-grey-2);
  font-weight: 500;
  font-size: 1.2rem;
}
.timeLine .timeLineItem p {
  color: var(--color-grey-2);
}

/*portfolio seccion*/
.portfText {
  padding: 2rem 0;
  text-align: center;
}

.portfolios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 63.9375em) {
  .portfolios {
    grid-template-columns: 1fr;
    padding-bottom: 6rem;
  }
}
.portfolios .portfolioItm {
  position: relative;
}
.portfolios .portfolioItm img {
  width: 100%;
  height: 18.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.portfolios .portfolioItm .hoverItm {
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.portfolios .portfolioItm .hoverItm h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}
.portfolios .portfolioItm .hoverItm .icons {
  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;
}
.portfolios .portfolioItm .hoverItm .icons .icon {
  background-color: var(--color-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  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;
  margin: 0 1rem;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}
.portfolios .portfolioItm .hoverItm .icons .icon i {
  color: var(--color-white);
  font-size: 1.5rem;
  margin: 0 1rem;
}
.portfolios .portfolioItm .hoverItm .icons .icon:hover {
  background-color: var(--color-white);
}
.portfolios .portfolioItm .hoverItm .icons .icon:hover i {
  color: var(--color-primary);
}
.portfolios .portfolioItm:hover .hoverItm {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.portfolios .portfolioItm h4 {
  text-align: center;
  margin: 0;
  max-width: 100%;
}

/*Blogs section*/
.blogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
@media (max-width: 63.9375em) {
  .blogs {
    grid-template-columns: 1fr;
    padding: 6rem 0;
  }
}
.blogs .blogItm {
  position: relative;
  background-color: var(--color-grey-5);
  border-radius: 0.3125rem;
  -webkit-box-shadow: 1px 1px 20px hsla(0deg, 0%, 0%, 0.1);
          box-shadow: 1px 1px 20px hsla(0deg, 0%, 0%, 0.1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.blogs .blogItm img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  width: 100%;
  height: 18.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.blogs .blogItm:hover {
  -webkit-box-shadow: 1px 1px 20px hsla(0deg, 0%, 0%, 0.3);
          box-shadow: 1px 1px 20px hsla(0deg, 0%, 0%, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.blogs .blogItm:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}
.blogs .blogText {
  margin-top: -7px;
  padding: 1rem;
  border-top: 8px solid var(--color-secondary);
}
.blogs .blogText h4 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.blogs .blogText h4:hover {
  color: var(--color-secondary);
}
.blogs .blogText p {
  color: var(--color-grey-2);
  padding-bottom: 1rem;
}

/*Contact Section*/
.contactContentCtnr {
  padding-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 63.9375em) {
  .contactContentCtnr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 6rem;
  }
}
.contactContentCtnr .leftContact {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.contactContentCtnr .leftContact h4 {
  margin-top: 1rem;
  font-size: 2rem;
  text-transform: uppercase;
}
@media (max-width: 63.9375em) {
  .contactContentCtnr .leftContact h4 {
    text-align: center;
  }
}
.contactContentCtnr .leftContact p {
  margin: 1rem 0;
}
.contactContentCtnr .leftContact .contactInf .contactItm {
  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;
}
.contactContentCtnr .leftContact .contactInf .contactItm p {
  margin: 0.3rem 0;
  padding: 0;
}
.contactContentCtnr .leftContact .contactInf .contactItm .icon {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
}
.contactContentCtnr .leftContact .contactInf .contactItm .icon i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
}
@media (max-width: 63.9375em) {
  .contactContentCtnr .leftContact .scontactIcons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contactContentCtnr .leftContact .scontactIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
}
@media (max-width: 63.9375em) {
  .contactContentCtnr .leftContact .scontactIcon {
    margin-bottom: 2.1rem;
  }
}
@media (max-width: 39.9375em) {
  .contactContentCtnr .leftContact .scontactIcon {
    margin-bottom: 0;
  }
}
.contactContentCtnr .leftContact .scontactIcon a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--color-white);
  background-color: var(--color-grey-5);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 0.4rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contactContentCtnr .leftContact .scontactIcon a:hover {
  background-color: var(--color-secondary);
}
.contactContentCtnr .leftContact .scontactIcon a:hover i {
  color: var(--color-primary);
}
.contactContentCtnr .leftContact .scontactIcon a i {
  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;
  font-size: 1.3rem;
}
.contactContentCtnr .rightContact {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  margin-left: 3rem;
}
@media (max-width: 63.9375em) {
  .contactContentCtnr .rightContact {
    margin-left: 0;
  }
}
.contactContentCtnr .rightContact .inpControl {
  margin: 1.5rem 0;
}
.contactContentCtnr .rightContact .inpControl input, .contactContentCtnr .rightContact .inpControl textarea {
  border-radius: 1.875rem;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  padding: 0.8rem 1.1rem;
  outline: none;
  border: none;
  background-color: var(--color-grey-5);
  width: 100%;
  color: var(--color-white);
  resize: none;
}
.contactContentCtnr .rightContact .ic-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 39.9375em) {
  .contactContentCtnr .rightContact .ic-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .contactContentCtnr .rightContact .ic-2 > input {
    margin: 1.5rem 0 0 0;
  }
}
.contactContentCtnr .rightContact .ic-2 :last-child {
  margin-left: 1.5rem;
}
@media (max-width: 39.9375em) {
  .contactContentCtnr .rightContact .ic-2 :last-child {
    margin-left: 0;
  }
}
.contactContentCtnr .rightContact button {
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.contactContentCtnr .rightContact .submitBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}/*# sourceMappingURL=style.css.map */