/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");

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

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.13)
    ),
    #000;
  font-family: "Manrope", sans-serif;
}

/* Tags */
a,
p {
  color: #f6f6f6cc;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  line-height: 32px;
}

a {
  color: #fff;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 1000px) {
  a,
  p {
    font-size: 12px;
    line-height: 30px;
  }

  a {
    font-weight: 500;
    line-height: normal;
  }
}

/* Go to Top Btn */
#top-btn {
  bottom: 30px;
  display: none;
  position: fixed;
  right: 30px;
  z-index: 10;
}

#top-btn a {
  background: url("../images/home/icon-goToTop.png") center/cover no-repeat;
  border-radius: 300px;
  display: block;
  height: 40px;
  transition: all 0.3s;
  width: 40px;
}
#top-btn a:hover {
  background: url("../images/home/icon-goToTopHover.png") center/cover no-repeat;
}

@media screen and (max-width: 400px) {
  #top-btn {
    bottom: 20px;
    right: 20px;
  }

  #top-btn a:hover {
    background: url("../images/home/icon-goToTop.png") center/cover no-repeat;
  }
}

/* Navigation Bar */
.navbar {
  align-items: center;
  animation: divAppearAnimation 1s forwards;
  border: 1px solid #ffffff1a;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  margin: 40px 50px 0px 50px;
  padding: 15px 30px;
}

.navbar-menu {
  display: none;
}

.navbar-logo {
  background: url("../images/home/logo.png") no-repeat center/cover;
  height: 40px;
  width: 58px;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 20px;
}
.navbar ul li:first-of-type {
  margin-left: 0px;
}

.navbar ul li a {
  border-radius: 10px;
  color: #f6f6f6cc;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
}
.navbar ul li a:hover {
  background: #2940d3;
  transform: scale(1.1);
}

.navbar ul li a.navbar-active {
  background-color: #2940d3;
}

.navbar-btn {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 15px 28px;
  text-decoration: none;
  transition: all 0.3s;
}
.navbar-btn:hover {
  background: #2940d3;
  border: 1px solid #2940d3;
}

@media screen and (max-width: 1000px) {
  .navbar {
    margin: 40px 30px 0px 30px;
    padding: 20px 25px;
  }

  .navbar-item {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .navbar-menu {
    cursor: pointer;
    display: block;
  }

  .navbar-logo {
    height: 30px;
    width: 48px;
  }

  .navbar-menu-btn {
    background: #f6f6f6cc;
    margin-bottom: 5px;
    padding: 1px 0px;
    width: 25px;
  }

  .navbar-menu-btn-half {
    display: flex;
    width: 25px;
  }

  .navbar-menu-btn3 {
    background: inherit;
    margin-bottom: 0px;
    width: 50%;
  }

  .navbar-menu-btn4 {
    margin-bottom: 0px;
    width: 50%;
  }

  .navbar ul,
  .navbar a {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .navbar {
    margin: 40px 10px 0px 10px;
  }
}

/* Responsive Navbar */
.resbar {
  opacity: 0;
  position: fixed;
  transform: translateY(-1000px);
  z-index: 11;
}

@keyframes resbarAppear {
  from {
    display: none;
    opacity: 0;
    position: absolute;
    transform: translateY(-1000px);
  }

  to {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes resbarDisappear {
  from {
    display: block;
    opacity: 1;
    transform: translateY(0%);
  }

  to {
    display: none;
    opacity: 0;
    transform: translateY(-1000px);
  }
}

@media screen and (max-width: 1000px) {
  .resbar {
    background: linear-gradient(
        rgba(255, 255, 255, 0.13),
        rgba(255, 255, 255, 0.13)
      ),
      #000;
    height: 100vh;
    left: 0;
    top: 0;
    width: 100%;
  }

  .resbar-heading {
    align-items: center;
    border: 1px solid #ffffff1a;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    margin: 40px 10px 20px 10px;
    padding: 15px 30px;
  }

  .resbar-menu {
    cursor: pointer;
  }

  .resbar-menu-btn {
    background: #f6f6f6cc;
    margin-bottom: 5px;
    padding: 1px 0px;
    width: 25px;
  }

  .resbar-menu-btn3 {
    margin-bottom: 0px;
  }

  .resbar-menu-btn-half {
    display: flex;
    width: 25px;
  }

  .resbar-menu-btn3 {
    background: inherit;
    margin-bottom: 0px;
    width: 50%;
  }

  .resbar-menu-btn4 {
    margin-bottom: 0px;
    width: 50%;
  }

  .resbar ul {
    list-style: none;
  }

  .resbar ul li {
    margin-bottom: 10px;
  }
  .resbar ul li:last-of-type {
    margin-bottom: 0px;
  }

  .resbar ul li a {
    color: #f6f6f6cc;
    display: block;
    padding: 20px 0px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
  }
  .resbar ul li a:hover {
    transform: scale(1.1);
  }

  .resbar ul li a.resbar-active {
    color: #fff;
  }

  .resbar ul li:last-of-type a {
    display: flex;
    align-items: center;
    background-color: #2940d3;
    justify-content: center;
    width: 100%;
  }
}

/* General Section */
.section-general {
  border: 1px solid #ffffff1a;
  border-radius: 30px;
  margin: 50px 50px 0px 50px;
  padding: 70px 50px;
  text-align: center;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h1 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.32px;
  margin-top: 10px;
}

.section-general h1,
.section-general h2,
.section-general h3,
.section-general h4,
.section-general h5,
.section-general h6 {
  color: #fff;
}

.section-txtbox {
  text-align: left;
}

.section-txtbox h3,
.sect2-hidden-txtbox h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}

.section-btn {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 15px 17px;
  text-decoration: none;
  transition: all 0.3s;
}
.section-btn:hover {
  background: #2940d3;
  border: 1px solid #2940d3;
}

.section-icon {
  height: 16px;
  margin-left: 5px;
  width: 16px;
}

.icon-phone {
  background: url("../images/home/icon-phone.png") center/cover no-repeat;
  margin-left: 0px;
  margin-right: 5px;
}

.icon-arrowDown {
  background: url("../images/home/icon-arrowDown.png") center/cover no-repeat;
}

.icon-arrowUp {
  background: url("../images/home/icon-arrowUp.png") center/cover no-repeat;
}

@media screen and (max-width: 1300px) {
  .section-general {
    margin: 30px 30px 0px 30px;
    padding: 30px 20px;
  }

  .section-general br {
    display: none;
  }

  .section-heading h1 {
    font-size: 25px;
    margin-top: 10px;
  }

  .section-txtbox h3,
  .sect2-hidden-txtbox h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .section-btn {
    padding: 12px 14px;
  }
}
@media screen and (max-width: 400px) {
  .section-general {
    margin: 30px 10px 0px 10px;
  }
}

/* Section One - Introduction */
.section-one {
  animation: divAppearAnimation 1s forwards;
  padding: 0px;
  text-align: left;
}

@keyframes divAppearAnimation {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.sect1-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 70px 50px;
}

.sect1-txtbox h1 {
  font-size: 36px;
  letter-spacing: 0.72px;
  line-height: 50px;
  margin: 10px 0px;
}

.sect1-txtbox .section-btn {
  margin-top: 30px;
  width: 150px;
}

.sect1-line {
  background: #ffffff1a;
  height: 500px;
  width: 1px;
}

.sect1-imgbox {
  background: url("../images/home/sect1-img1.png") center/cover no-repeat;
  height: 468px;
  width: 468px;
}

.sect1-imgboxMobile {
  display: none;
}

@media screen and (max-width: 1000px) {
  .section-one {
    padding: 30px 20px;
    text-align: center;
  }

  .sect1-container {
    display: block;
    padding: 0px;
  }

  .sect1-imgboxMobile {
    background: url("../images/about/sect1-img1b.png") center/cover no-repeat;
    display: block;
    height: 120px;
    margin: auto;
    width: 120px;
  }

  .sect1-txtbox {
    margin-top: 15px;
  }

  .sect1-txtbox h1 {
    font-size: 20px;
    line-height: 30px;
    margin: 8px 0px;
  }

  .sect1-txtbox .section-btn {
    background: #2940d3;
    border: 1px solid #2940d3;
    margin-top: 30px;
    width: 100%;
  }
  .sect1-txtbox .section-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .sect1-line {
    display: none;
  }

  .section-one .section-btn {
    margin: auto;
    margin-top: 20px;
  }

  .sect1-imgbox {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .sect1-imgbox {
    height: 400px;
  }
}

/* Section Two - My Portfolio */
.section-two {
  opacity: 0;
  padding: 70px 0px;
  transform: translate(-100px, 0);
  transition: all 1s;
}

.section-two-scrolled {
  opacity: 1;
  transform: translate(0, 0);
}

.sect2-container {
  display: grid;
  padding: 0px 50px;
  grid-gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 30px;
}

.sect2-card {
  border: 1px solid #ffffff1a;
  border-radius: 20px;
  padding: 20px 15px;
  transition: all 0.3s;
}
.sect2-card:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: scale(1.01);
}

.sect2-imgbox {
  background: rgba(255, 255, 255, 0.1);
  height: 188px;
  margin: auto;
  margin-bottom: 30px;
  width: 100%;
}

.sect2-liveImgSlide,
.sect2-caseImgSlide,
.sect2-designImgSlide {
  background: rgba(255, 255, 255, 0.1);
  display: none;
  margin: auto;
  margin-bottom: 30px;
  width: 100%;
}

.sect2-img4 {
  background: url("../images/home/sect2-img4.png") center/cover no-repeat;
}

.sect2-img5 {
  background: url("../images/home/sect2-img5.png") center/cover no-repeat;
}

.sect2-img6 {
  background: url("../images/home/sect2-img6.png") center/cover no-repeat;
}

.sect2-img7 {
  background: url("../images/home/sect2-img7.png") center/cover no-repeat;
}

.sect2-img8 {
  background: url("../images/home/sect2-img8.png") center/cover no-repeat;
}

.sect2-img9 {
  background: url("../images/home/sect2-img9.png") center/cover no-repeat;
}

.sect2-img10 {
  background: url("../images/home/sect2-img10.png") center/cover no-repeat;
}

.sect2-img11 {
  background: url("../images/home/sect2-img11.png") center/cover no-repeat;
}

.sect2-img12 {
  background: url("../images/home/sect2-img12.png") center/cover no-repeat;
}

.docketImgSlides,
.coinsackImgSlides,
.budgetproImgSlides {
  display: none;
}

#go-to-liveprojects-card,
#go-to-caseStudy-card,
#go-to-design-card {
  display: block;
  text-decoration: none;
}

.fade {
  animation: fade 1s forwards;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateX(10%);
  }

  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

.sect2-btn1 {
  margin: auto;
  width: 130px;
}

.sect2-btn2 {
  display: none;
  margin: auto;
  width: 150px;
}

/* Hidden part */
.sect2-hidden {
  display: none;
}

.sect2-box {
  border-top: 1px solid #ffffff1a;
  padding: 70px 50px;
  position: relative;
  text-align: left;
}

.sect2-box2 {
  text-align: right;
}

.sect2-hidden-header {
  margin-bottom: 50px;
}

.sect2-hidden-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sect2-hidden-icon {
  border-radius: 300px;
  cursor: pointer;
  height: 40px;
  transition: all 0.3s;
  width: 40px;
}
.sect2-hidden-icon:hover {
  background-color: rgba(255, 255, 255, 0.13);
}

.sect2-arrow {
  align-items: center;
  bottom: 97px;
  display: flex;
  position: absolute;
}

.sect2-arrow1 {
  left: 200px;
}

.sect2-arrow2 {
  left: 280px;
}

.sect2-arrow3 {
  left: 210px;
}

.icon-arrowLeft1,
.icon-arrowLeft2,
.icon-arrowLeft3 {
  background: url("../images/home/icon-arrowLeft.png") center/cover no-repeat;
  margin-right: 9px;
}

.icon-arrowRight1,
.icon-arrowRight2,
.icon-arrowRight3 {
  background: url("../images/home/icon-arrowRight.png") center/cover no-repeat;
}

.sect2-hidden-content {
  border: 1px solid #ffffff1a;
  border-radius: 20px;
  padding: 20px;
}

.sect2-myslides1,
.sect2-myslides2,
.sect2-myslides3 {
  display: none;
}

.sect2-hidden-imgbox {
  vertical-align: middle;
  width: 100%;
}

.sect2-box1 .sect2-hidden-imgbox {
  height: 631px;
}

.sect2-box2 .sect2-hidden-imgbox {
  height: auto;
}

.sect2-box2 .sect2-hidden-imgbox .docketImgSlides img {
  height: 630px;
  width: 100%;
}

.sect2-box2 .sect2-hidden-imgbox .coinsackImgSlides img {
  height: 630px;
  width: 100%;
}

.sect2-box2 .sect2-hidden-imgbox .budgetproImgSlides img {
  height: 630px;
  width: 100%;
}

.sect2-box3 .sect2-hidden-imgbox {
  height: 614px;
}

.sect2-hidden-txtbox {
  margin: 30px 0px 20px 0px;
  text-align: left;
}

.sect2-hidden-txtbox h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}

.sect2-hidden-itmbox {
  align-items: center;
  display: flex;
}

.sect2-hidden-itmbox a {
  display: block;
}

.section-two .section-btn {
  background-color: rgba(255, 255, 255, 0.05);
}
.section-two .section-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 1000px) {
  .section-two {
    padding: 30px 20px;
  }

  .sect2-heading {
    padding: 0px;
  }

  .sect2-container {
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0px;
  }

  .sect2-card {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0px;
  }
  .sect2-card:hover {
    transform: scale(0.99);
  }

  .sect2-container .sect2-txtbox {
    padding: 20px;
  }

  .sect2-imgbox {
    height: 188px;
    margin-bottom: 0px;
  }

  .sect2-liveImgSlide,
  .sect2-caseImgSlide,
  .sect2-designImgSlide {
    margin: auto;
    width: 100%;
  }

  .section-two .section-gen-txtbox {
    padding: 20px 15px;
  }

  .sect2-btn1,
  .sect2-btn2 {
    width: 100%;
  }

  /* Hidden part */
  .sect2-box {
    padding: 30px 0px;
  }

  .sect2-hidden-header {
    margin-bottom: 30px;
  }

  .sect2-hidden-header h2 {
    font-size: 20px;
  }

  .sect2-hidden-content {
    padding: 0px;
    padding-bottom: 30px;
  }

  .sect2-box .sect2-hidden-imgbox {
    height: 188px;
    width: 100%;
  }

  .sect2-box2 .sect2-hidden-imgbox .docketImgSlides img,
  .sect2-box2 .sect2-hidden-imgbox .coinsackImgSlides img,
  .sect2-box2 .sect2-hidden-imgbox .budgetproImgSlides img {
    height: 188px;
    width: 100%;
  }

  .sect2-box3 .sect2-hidden-imgbox {
    height: 180px;
  }

  .sect2-hidden-txtbox {
    padding: 0px 20px;
  }

  .sect2-hidden-itmbox {
    padding: 0px 20px;
  }

  .sect2-arrow {
    bottom: 65px;
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .sect2-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .sect2-btn1 {
    margin-top: 0px;
  }
}

/* Section Three - Services */
.section-three {
  opacity: 0;
  transform: translate(-100px, 0);
  transition: all 1s;
}

.section-three-scrolled {
  opacity: 1;
  transform: translate(0, 0);
}

.sect3-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sect3-card {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 25px 20px;
}

.sect3-mid-card {
  border-left: 1px solid #ffffff1a;
  border-right: 1px solid #ffffff1a;
}

.sect3-icnbox {
  height: 49px;
  width: 48px;
}

.sect3-icon1 {
  background: url("../images/home/sect3-icon1.png") center/cover no-repeat;
}

.sect3-icon2 {
  background: url("../images/home/sect3-icon2.png") center/cover no-repeat;
  grid-area: icnMid;
}

.sect3-icon3 {
  background: url("../images/home/sect3-icon3.png") center/cover no-repeat;
}

.sect3-txtbox {
  margin-left: 20px;
  text-align: left;
  width: calc(100% - 68px);
}

@media screen and (max-width: 1000px) {
  .sect3-container {
    display: block;
  }

  .sect3-card {
    border-left: 2px solid #2940d3;
    border-right: 2px solid rgba(255, 255, 255, 0);
    justify-content: left;
    margin-bottom: 20px;
  }
  .sect3-card:last-of-type {
    margin-bottom: 0px;
  }

  .sect3-mid-card {
    border-left: 2px solid rgba(255, 255, 255, 0);
    border-right: 2px solid #2940d3;
    flex-direction: row-reverse;
  }

  .sect3-mid-card .sect3-txtbox {
    margin-right: 10px;
    margin-left: 0px;
  }
}

/* Section Four - Testimonials */
.section-four {
  opacity: 0;
  transform: translate(-100px, 0);
  transition: all 1s;
}

.section-four-scrolled {
  opacity: 1;
  transform: translate(0, 0);
}

.sect4-container {
  align-items: center;
  display: flex;
  justify-content: center;
}

.sect4-item {
  position: relative;
}

.sect4-myslides {
  display: none;
}

.sect4-arrow {
  align-items: center;
  bottom: 30px;
  display: flex;
  position: absolute;
  right: 20px;
  z-index: 9;
}

.sect4-icon {
  border-radius: 300px;
  cursor: pointer;
  height: 40px;
  transition: all 0.3s;
  width: 40px;
}
.sect4-icon:hover {
  background-color: rgba(255, 255, 255, 0.13);
}

.icon-arrowLeft4 {
  background: url("../images/home/icon-arrowLeft.png") center/cover no-repeat;
  margin-right: 9px;
}

.icon-arrowRight4 {
  background: url("../images/home/icon-arrowRight.png") center/cover no-repeat;
}

.sect4-box {
  border: 1px solid #ffffff1a;
  border-radius: 30px;
  height: 400px;
  text-align: left;
}

.sect4-txtbox {
  background: #fff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  height: 300px;
  padding: 20px;
}

.sect4-txtbox p {
  color: #000;
}

.sect4-footer {
  align-items: center;
  background: #2940d3;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  display: flex;
  padding: 20px;
  height: 100px;
}

.sect4-imgbox {
  border-radius: 300px;
  height: 32px;
  width: 32px;
}

.sect4-img1 {
  background: url("../images/home/sect4-img1.png") no-repeat center/cover;
}

.sect4-img2 {
  background: url("../images/home/sect4-img2.png") no-repeat center/cover;
}

.sect4-img3 {
  background: url("../images/home/sect4-img3.png") no-repeat center/cover;
}

.sect4-img4 {
  background: url("../images/home/sect4-img4.png") no-repeat center/cover;
}

.sect4-nambox {
  margin-left: 12px;
}

.sect4-nambox h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.sect4-nambox p {
  font-size: 12px;
  line-height: normal;
}

@media screen and (max-width: 600px) {
  .sect4-arrow {
    align-items: center;
    bottom: 50%;
    display: flex;
    justify-content: space-between;
    right: 0px;
    transform: translateY(-50%);
    width: 100%;
  }

  .sect4-icon {
    height: 30px;
    width: 30px;
  }

  .icon-arrowLeft4 {
    background: url("../images/home/icon-arrowLeftMobile.png") center/cover
      no-repeat;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    margin-left: 5px;
    margin-right: 0px;
    opacity: 0.5;
    transition: all 0.3s;
  }

  .icon-arrowRight4 {
    background: url("../images/home/icon-arrowRightMobile.png") center/cover
      no-repeat;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    margin-right: 5px;
    opacity: 0.5;
    transition: all 0.3s;
  }

  .icon-arrowLeft4:hover,
  .icon-arrowRight4:hover {
    opacity: 1;
  }

  .sect4-box {
    height: 520px;
  }

  .sect4-txtbox {
    height: 450px;
  }

  .sect4-nambox span {
    display: none;
  }

  .sect4-footer {
    height: 70px;
  }
}

/* Section Five - Contact */
.section-five {
  opacity: 0;
  transform: translate(-100px, 0);
  transition: all 1s;
}

.section-five-scrolled {
  opacity: 1;
  transform: translate(0, 0);
}

.sect5-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sect5-container a {
  transition: all 0.3s;
}
.sect5-container a:hover {
  background: #2940d3;
}

.sect5-card {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 25px 0px;
}

.sect5-mid-card {
  border-left: 1px solid #ffffff1a;
  border-right: 1px solid #ffffff1a;
}

.sect5-divider {
  display: none;
}

.sect5-txtbox p {
  margin-bottom: 10px;
}

.sect5-txtbox a {
  align-items: center;
  border: 1px solid #ffffff33;
  border-radius: 10px;
  color: #f6f6f6cc;
  display: flex;
  justify-content: center;
  padding: 12px 15px;
  text-decoration: none;
}

.sect5-mid-card a {
  margin: auto;
  width: 170px;
}

.sect5-icnbox a {
  display: inline-block;
  margin-left: 5px;
  padding: 10px 10px;
}
.sect5-icnbox a:first-of-type {
  margin-left: 0px;
}

.sect5-icnbox .section-icon {
  margin: 0px;
}

.icon-phone2 {
  background: url("../images/home/icon-phone2.png") center/cover no-repeat;
  margin-right: 10px;
}

.icon-whatsapp {
  background: url("../images/home/icon-whatsapp.png") center/cover no-repeat;
}

.icon-twitter {
  background: url("../images/home/icon-twitter.png") center/cover no-repeat;
}

.icon-linkedIn {
  background: url("../images/home/icon-linkedIn.png") center/cover no-repeat;
}

.icon-behance {
  background: url("../images/home/icon-behance.png") center/cover no-repeat;
}

@media screen and (max-width: 900px) {
  .sect5-container {
    grid-gap: 40px;
    grid-template-columns: repeat(1, 1fr);
  }

  .sect5-card {
    border: none;
    display: block;
    padding: 0px;
  }

  .sect5-card:first-of-type a {
    margin: auto;
    width: 250px;
  }

  .sect5-divider {
    background: #2940d3;
    border-radius: 300px;
    display: block;
    height: 2px;
    margin: auto;
    width: 100px;
  }

  .sect5-mid-card a {
    background: #2940d3;
    border: 1px solid #2940d3;
    width: 100%;
  }
  .sect5-mid-card a:hover {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid #ffffff1a;
  }
}

/* Footer */
footer {
  border: 1px solid #ffffff1a;
  border-radius: 20px;
  color: #f6f6f6cc;
  margin: 50px;
  opacity: 0;
  padding: 70px 50px 20px 50px;
  transform: translate(-100px, 0);
  transition: all 1s;
}

.footer-scrolled {
  opacity: 1;
  transform: translate(0, 0);
}

.fter-container {
  display: grid;
  grid-row-gap: 40px;
  grid-template-areas:
    "ft1 ft2 ft3"
    "ft4 ft4 ft4";
}

.fter-card {
  padding-left: 40%;
}

.fter-card h3 {
  color: #f6f6f6;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.fter-card ul {
  list-style: none;
}

.fter-card ul li {
  margin-bottom: 5px;
}
.fter-card ul li:last-of-type {
  margin-bottom: 0px;
}

.fter-card ul li a {
  color: #f6f6f6cc;
  display: inline-block;
  padding: 10px 0px;
  text-decoration: none;
  transition: all 0.3s;
}
.fter-card ul li a:hover {
  background: #2940d3;
  border-radius: 10px;
  padding: 10px 20px;
  transform: scale(1.05);
}

.fter-logo {
  background: url("../images/home/logo.png") no-repeat center/cover;
  height: 40px;
  margin-bottom: 10px;
  width: 58px;
}

.fter-card1 {
  grid-area: ft1;
}

.fter-card2 {
  grid-area: ft2;
}

.fter-card3 {
  grid-area: ft3;
}

.fter-card3 ul li {
  margin-bottom: 5px;
}

.fter-card3 ul li a {
  align-items: center;
  display: inline-flex;
  justify-content: left;
}

.fter-icon {
  height: 16px;
  margin-right: 10px;
  width: 16px;
}

.fter-icon1 {
  background: url("../images/home/icon-twitter.png") center/cover no-repeat;
}

.fter-icon2 {
  background: url("../images/home/icon-linkedIn.png") center/cover no-repeat;
}

.fter-icon3 {
  background: url("../images/home/icon-behance.png") center/cover no-repeat;
}

.fter-icon4 {
  background: url("../images/home/icon-whatsapp.png") center/cover no-repeat;
}

.fter-card4 {
  border-top: 1px solid #ffffff1a;
  grid-area: ft4;
  padding: 40px 0px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  footer {
    margin: 30px;
    padding: 50px 20px;
  }

  .fter-container {
    grid-template-areas:
      "ft1"
      "ft2"
      "ft3"
      "ft4";
  }

  .fter-card {
    padding-left: 0px;
  }

  .fter-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .fter-card1 {
    grid-area: ft1;
  }

  .fter-card2 {
    grid-area: ft2;
  }

  .fter-card3 {
    grid-area: ft3;
  }

  .fter-card4 {
    grid-area: ft4;
    padding: 20px 0px 0px 0px;
  }
}
@media screen and (max-width: 400px) {
  footer {
    margin: 30px 10px;
  }
}
