* {
  font-family: "Mukta", "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --secondary-color: #037d71;
  --nav-color: #343434;
  --text-color: #0b7a51;
  --nav-color: #212329;
}
/* ------------- NAV BAR STARTS HERE ------------ */

/* Navbar container */
.top-social-link {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px;
  background-color: #171c24;
}
.top-nav {
  background-color: #e8e6e6;
}
.social-media ul,
.tel-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.social-media li,
.tel-container li {
  display: inline-block;
}
.social-media a i,
.tel-container a i {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  text-align: center;
  line-height: 30px;
  background: #000;
  margin-right: 5px;
  color: #fff;
}
.tel-container a > span {
  color: whitesmoke;
}
.social-media a,
.tel-container a {
  text-decoration: none;
}
.social-media a i.fa-facebook {
  background-color: #3b5998;
}
.social-media a i.fa-twitter {
  background-color: #55acee;
}
.tel-container a i.phone {
  background-color: #0976b4;
}
.tel-container a .email {
  background-color: #b7242a;
}
.top-logo-container,
.logo-container {
  display: flex;
}
.top-logo-container {
  width: 85%;
  margin: 0 auto;
  padding: 5px;
  justify-content: space-between;
  margin: 0.5rem auto;
}
.logo-container {
  align-items: center;
}
.logo-container .logo {
  margin-right: 10px;
}
.logo-container .logo img {
  width: 145px;
  cursor: pointer;
}
.logo-container .logo img:hover {
  transform: translateY(-2px);
}
.company-title {
}
.company-title span {
  display: block;
}
.company-title span:first-child {
  margin: 0;
  color: #171c24;
  font-size: 24px;
  font-weight: 600;
  line-height: 45px;
}
.company-title span:nth-child(2) {
  font-size: 19px;
  color: #171c24;
  line-height: 22px;
  font-weight: 400;
}
.company-title span:hover {
  color: #12b87b;
}
.input-group {
  flex-direction: column !important;
  align-items: center !important;
}
.input-group > .form-control {
  width: 99% !important;
}
.search-box-cont {
  display: flex;
  align-items: center;
}
.search-box-top {
  display: flex;
  flex-direction: column;
}
.btn-danger {
  width: 80px !important;
  height: 30px;
  background-color: #12b87b;
  padding: 5px;
  margin: 0.5rem auto;
  outline: none;
  border: none;
  text-align: center;
}
.btn-danger:hover {
  background-color: #12b87b !important;
  transform: translateY(-1px);
}
.top-logo-container input {
  max-width: 200px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 2px;
}

.top-logo-container .search-btn {
  margin: 0 auto;
  padding: 5px;
  border-radius: 8px;
  outline: none;
  border: none;
  width: 80px;
  height: 30px;
  background-color: #000000d0;
  color: whitesmoke;
  cursor: pointer;
  text-align: center;
}
.top-logo-container .search-btn:hover {
  transform: translateY(-2px);
  color: #12b87b;
}
.flag-conta {
  flex: 1;
  margin-left: 10px;
  padding: 5px;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .social-media {
    display: none;
  }
}
@media (max-width: 890px) {
  .search-box-cont {
    display: none;
  }
  .logo-container .logo img {
    width: 100px;
  }
  .top-logo-container {
    width: 95%;
  }
}

.wrapper {
  background: #171c24;
  position: relative;
  width: 100%;
  height: 50px;
  z-index: 5;
}
.wrapper nav {
  position: relative;
  display: flex;
  max-width: calc(100% - 200px);
  margin: 0 auto;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}
nav .content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .content .links {
  margin-left: 80px;
  display: flex;
}
.content .logo a {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.content .links li {
  list-style: none;
  line-height: 70px;
}
.content .links li a,
.content .links li label {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 17px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.content .links li label {
  display: none;
}
.content .links li a:hover,
.content .links li label:hover {
  background: #323c4e;
  color: #60b135;
}
.wrapper .search-icon,
.wrapper .menu-icon {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}
.wrapper .menu-icon {
  display: none;
}
.wrapper #show-search:checked ~ .search-icon i::before {
  content: "\f00d";
}
.wrapper .search-box {
  position: absolute;
  height: 100%;
  max-width: calc(100% - 50px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.wrapper #show-search:checked ~ .search-box {
  opacity: 1;
  pointer-events: auto;
}
.search-box input {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  font-size: 17px;
  color: #fff;
  background: #171c24;
  padding: 0 100px 0 15px;
}
.search-box input::placeholder {
  color: #f2f2f2;
}
.search-box .go-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 60px;
  width: 70px;
  background: #171c24;
  border: none;
  outline: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.wrapper input[type="checkbox"] {
  display: none;
}
/* Dropdown Menu code start */
.links-hide {
  display: none;
}
.content .links ul {
  position: absolute;
  background: #171c24;
  top: 80px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.content .links li:hover > ul {
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.content .links ul li a {
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px !important;
}
.content .links ul ul {
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}
.content .links ul li {
  position: relative;
}
.content .links ul li:hover ul {
  top: 0;
}
.cross-nav {
  color: whitesmoke;
  font-size: 20px;
  padding: 5px;
  margin: 0 auto;
  cursor: pointer;
}
/* Responsive code start */
@media screen and (max-width: 1250px) {
  .wrapper nav {
    max-width: 100%;
    padding: 0 20px;
  }
  nav .content .links {
    margin-left: 30px;
  }
  .content .links li a {
    padding: 8px 13px;
  }
  .wrapper .search-box {
    max-width: calc(100% - 100px);
  }
  .wrapper .search-box input {
    padding: 0 100px 0 15px;
  }
}
@media screen and (max-width: 900px) {
  .wrapper .menu-icon {
    display: block;
  }
  .wrapper #show-menu:checked ~ .menu-icon i::before {
    content: "\f00d";
  }
  nav .content .links {
    display: block;
    position: fixed;
    background: #14181f;
    height: 100%;
    width: 100%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }
  nav #show-menu:checked ~ .content .links {
    left: 0%;
    z-index: 5;
  }
  .content .links li {
    margin: 15px 20px;
  }
  .content .links li a,
  .content .links li label {
    line-height: 40px;
    font-size: 20px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
  }
  .content .links li a.desktop-link {
    display: none;
  }
  /* dropdown responsive code start */
  .content .links ul,
  .content .links ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }
  .content .links #show-features:checked ~ ul,
  .content .links #show-services:checked ~ ul,
  .content .links #show-items:checked ~ ul {
    max-height: 100vh;
  }
  .content .links ul li {
    margin: 7px 20px;
  }
  .content .links ul li a {
    font-size: 18px;
    line-height: 30px;
    border-radius: 5px !important;
  }
}
@media screen and (max-width: 400px) {
  .wrapper nav {
    padding: 0 10px;
  }
  .content .logo a {
    font-size: 27px;
  }
  .wrapper .search-box {
    max-width: calc(100% - 70px);
  }
  .wrapper .search-box .go-icon {
    width: 30px;
    right: 0;
  }
  .wrapper .search-box input {
    padding-right: 30px;
  }
}

/* ------------- sWIPER Carsoel STARTS HERE ------------ */
.swiper-container {
  width: 100%;
  height: 100vh;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
}

/* .swiper-container::before {
  content: "";
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
} */

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-img {
  display: inline;
  position: relative;
  z-index: 0;
}
.swiper-img::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.swiper-img img {
  display: inline;
  width: 100vw !important;
  height: 100vh;
  object-fit: cover;
  overflow: hidden;
}
.swiper-title {
  z-index: 0;
  display: inline;
}
.swiper-title > h4 {
  position: absolute;
  display: inline;
  left: 10vw;
  top: 80vh;
  font-size: 30px;
  font-weight: 800;
  text-align: left;
  line-height: 35px;
  color: whitesmoke;
  transition-timing-function: ease-out;
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
}
.swiper-button-next {
  color: aqua;
}
.swiper-button-prev {
  color: aqua;
}
/* .swiper-button-next, .swiper-button-prev{
  z-index: 500 !important;
} */
/* ------------- COUNT UP STARTS HERE ------------ */
.about-data {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
  margin: 5rem auto;
  height: 25vh;
  align-items: center;
}
.help-data h6,
.closed-project-data h6 {
  text-align: center;
  font-size: 16px;
  font: 700;
}
.help-counter,
.project-counter {
  line-height: 100px;
  text-align: center;
  font-weight: bolder;
  font-size: 50px;
}
.js-counter:hover {
  color: #12b87b;
  transform: translateY(-3px);
}

/* About Us Media Querry */

@media (max-width: 550px) {
  .about-data {
    display: inherit;
    margin: 0 auto;
    height: auto;
    margin: 25px 0;
  }
}

/* ------------- PROJECT DONE STARTS HERE ------------ */

.section-name {
  width: 100%;
  height: 10vh;
  background-color: #1f1d1dd0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-img-con {
  background-color: whitesmoke;
  background: url("http://localhost/sunkoshi/wp-content/themes/sunkoshi/assets/images/imag5.jpg");
  background-repeat: none;
  background-size: cover;
}

.section-name h2 {
  text-align: center;
  font-size: 40px !important;
  font-weight: 500 !important;
  font-size: xx-large;
  color: whitesmoke;
  padding: 10px auto;
  word-break: keep-all;
}
.section-name > h2:hover {
  color: #12b87b;
  text-shadow: 0px 8px 15px rgba(195, 194, 194, 0.2);
  transform: translateY(-1px);
}
.project-container {
  padding: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px auto;
  background-color: #0a0a0ad0;
}
.project-container::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.71);
  position: absolute;
  left: 0;
  z-index: 1;
}
.project-details-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: whitesmoke;
  word-break: keep-all;
}

.project-image-container {
  display: flex;
  height: 100%;
  flex: 1;
  margin-left: 1rem;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 820px) {
  .project-details-container {
    padding: 10px;
  }
}
/* Project Done Media Querry */
@media (max-width: 750px) {
  .project-container {
    display: inherit;
    height: auto;
  }
  .project-image-container {
    margin-left: 0;
  }
}
.project-image-container img {
  width: 100%;
  max-width: 500px;
  height: 50vh;
}
.project-title {
  font-size: 30px;
  color: whitesmoke;
  text-align: center;
  line-height: 30px;
  margin: 1rem auto;
}
.project-title p {
  font-size: 16px;
  max-width: 450px;
}
.proj-btn {
  margin: 2rem auto;
  padding: 5px;
  border-radius: 8px;
  outline: none;
  border: none;
  width: 100px;
  height: 40px;
  background-color: #000000d0;
  color: whitesmoke;
  border: 2px solid #12b87b;
  line-height: 22px;
  cursor: pointer;
}
.proj-btn a {
  font-size: 16px;
  text-align: center;
  align-items: center;
}
.proj-btn a,
.tbl-title > h4 > a {
  text-decoration: none;
  color: #fff;
}
.proj-btn:hover {
  transform: translateY(-3px);
  background-color: #12b87bd0;
  color: whitesmoke;
  border: 2px solid #12b87b;
  cursor: pointer;
  border: none;
}

/* ------------- ASSOCIATE COMPANY STARTS HERE ------------ */
.heading__primary {
  text-align: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: #60b135;
  line-height: 27px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Roboto Slab;
  font-size: 25px;
}
.heading__primary span:nth-child(1) {
  width: 50%;
  display: table-cell;
  position: relative;
}
.heading__primary span:nth-child(2) {
  display: table-cell;
  white-space: nowrap;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 30px;
  font-weight: 600;
  line-height: 25px;
}
.heading__primary span:nth-child(3) {
  width: 50%;
  display: table-cell;
  position: relative;
}
.heading__primary span:nth-child(1):before,
.heading__primary span:nth-child(3):before {
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  height: 2px;
  background: #eee;
  display: block;
}
.associate-title {
  margin: 6rem auto;
}
.company-slider-container {
  width: 85%;
  height: auto;
  margin: 10px auto;
}
.logo-items {
  height: auto;
}

.logo-items img {
  width: 140px;
  transition: all 0.3s ease-in-out 0s;
}
.logo-items img:hover {
  transform: scale(1.2);
}
.latest-tbl-container {
  margin: 5rem auto;
}

/* ------------- LATEST UPDATES STARTS HERE ------------ */
.tbl-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 70%;
  margin: 1rem auto;
}
@media (max-width: 1000px) {
  .tbl-content {
    width: 80% !important;
  }
}
@media (max-width: 600px) {
  .tbl-content {
    width: 90% !important;
  }
}
@media (max-width: 400px) {
  .tbl-content {
    width: 95% !important;
  }
}
.tbl-title-container {
  background-color: #f2f2f2;
  height: 10vh;
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.tbl-cat-btn {
  width: 100px;
  height: 40px;
  border-radius: 10px;
  border: none;
  color: black;
  font-size: 17px;
  font-weight: 700;
  margin: 0 1rem;
  outline: none;
}
.tbl-cat-btn-active {
  width: 100px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background-color: #3c3d41;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin: 0 1rem;
  outline: none;
}
.tbl-content-items {
  display: flex;
  justify-content: flex-start;
  padding: 2rem;
  background-color: #3c3d41;
  color: #fff;
}

.white-bar {
  height: 20px;
  color: #fff;
}
.tbl-date-container {
  width: 150px;
  padding: 10px;
}
.date {
  font-size: 50px;
  font-weight: 400;
  text-align: center;
}
.month {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.tbl-content-titl-container {
  flex: 2;
  padding: 10px;
}
.tbl-title {
  margin: 5px auto;
}
.tbl-title h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}
.tbl-title > h4 > a:hover,
.tbl-icons:hover,
.tbl-des-container:hover {
  transition: all 0.3s;
  color: #60b135;
}
.tbl-des-container {
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  text-transform: uppercase;
  color: #898b92;
}
.tbl-icons {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  color: #898b92;
}

/* ------------- FOOTER STARTS HERE ------------ */
.animate-border {
  position: relative;
  display: block;
  width: 115px;
  height: 3px;
  background: #60b135;
}

.animate-border:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  left: 0;
  bottom: 0;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  -webkit-animation: animborder 2s linear infinite;
  animation: animborder 2s linear infinite;
}

@-webkit-keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px);
  }
}

@keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px);
  }
}

.animate-border.border-white:after {
  border-color: #fff;
}

.animate-border.border-yellow:after {
  border-color: #f5b02e;
}

.animate-border.border-orange:after {
  border-right-color: #007bff;
  border-left-color: #007bff;
}

.animate-border.border-ash:after {
  border-right-color: #eef0ef;
  border-left-color: #eef0ef;
}

.animate-border.border-offwhite:after {
  border-right-color: #f7f9f8;
  border-left-color: #f7f9f8;
}

/* Animated heading border */
@keyframes primary-short {
  0% {
    width: 15%;
  }
  50% {
    width: 90%;
  }
  100% {
    width: 10%;
  }
}

@keyframes primary-long {
  0% {
    width: 80%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}

.dk-footer {
  padding: 75px 0 0;
  background-color: #151414;
  position: relative;
  margin-top: 3rem;
}
.dk-footer .contact-us {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 80px;
}
.dk-footer .contact-us .contact-info {
  margin-left: 50px;
}
.dk-footer .contact-us.contact-us-last {
  margin-left: -80px;
}
.dk-footer .contact-icon i {
  font-size: 24px;
  top: -15px;
  position: relative;
  color: #60b135;
}

.dk-footer-box-info {
  position: absolute;
  top: -122px;
  background: #202020;
  padding: 40px;
}
.dk-footer-box-info .footer-social-link h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 25px;
}
.dk-footer-box-info .footer-social-link ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.dk-footer-box-info .footer-social-link li {
  display: inline-block;
}
.dk-footer-box-info .footer-social-link a i {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  background: #000;
  margin-right: 5px;
  color: #fff;
}
.dk-footer-box-info .footer-social-link a i.fa-facebook {
  background-color: #3b5998;
}
.dk-footer-box-info .footer-social-link a i.fa-twitter {
  background-color: #55acee;
}
.dk-footer-box-info .footer-social-link a i.fa-google-plus {
  background-color: #dd4b39;
}
.dk-footer-box-info .footer-social-link a i.fa-linkedin {
  background-color: #0976b4;
}
.dk-footer-box-info .footer-social-link a i.fa-instagram {
  background-color: #b7242a;
}

.footer-awarad {
  margin-top: 285px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-awarad p {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-left: 20px;
  padding-top: 15px;
}

.footer-info-text {
  color: whitesmoke;
  margin: 26px 0 32px;
}

.footer-left-widget {
  padding-left: 80px;
}
.footer-logo img {
  width: 100px;
}

.footer-widget .section-heading {
  margin-bottom: 35px;
}

.footer-widget h3 {
  font-size: 24px;
  color: #fff;
  position: relative;
  margin-bottom: 15px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.footer-widget ul {
  width: 50%;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-widget li {
  margin-bottom: 18px;
}

.footer-widget p {
  color: #fff;
  margin-bottom: 27px;
}

.footer-widget a {
  color: #878787;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-widget a:hover {
  color: #60b135;
}

.footer-widget:after {
  content: "";
  display: block;
  clear: both;
}

.dk-footer-form {
  position: relative;
}
.dk-footer-form input[type="email"] {
  padding: 14px 28px;
  border-radius: 50px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
}
.dk-footer-form input::-webkit-input-placeholder,
.dk-footer-form input::-moz-placeholder,
.dk-footer-form input:-ms-input-placeholder,
.dk-footer-form input::-ms-input-placeholder,
.dk-footer-form input::-webkit-input-placeholder {
  color: #878787;
  font-size: 14px;
}
.dk-footer-form input::-webkit-input-placeholder,
.dk-footer-form input::-moz-placeholder,
.dk-footer-form input:-ms-input-placeholder,
.dk-footer-form input::-ms-input-placeholder,
.dk-footer-form input::placeholder {
  color: #878787;
  font-size: 14px;
}
.dk-footer-form button[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 24px 12px 17px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border: 1px solid #007bff;
  background: #007bff;
  color: #fff;
}
.dk-footer-form button:hover {
  cursor: pointer;
}

/* ==========================

    Contact

=============================*/
.contact-us {
  position: relative;
  z-index: 2;
  margin-top: 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-icon {
  position: absolute;
  z-index: 0;
}
.contact-icon i {
  font-size: 36px;
  top: -5px;
  position: relative;
  color: #007bff;
}

.contact-info {
  margin-left: 75px;
  color: #fff;
}
.contact-info h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
}

.copyright {
  padding: 28px 0;
  margin-top: 55px;
  background-color: #202020;
}
.copyright span,
.copyright a {
  color: #878787;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.copyright a:hover {
  color: #60b135;
}

.copyright-menu ul {
  text-align: right;
  margin: 0;
}

.copyright-menu li {
  display: inline-block;
  padding-left: 20px;
}

.back-to-top {
  position: relative;
  z-index: 2;
}
.back-to-top .btn-dark {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2e2e2e;
  border-color: #2e2e2e;
  display: none;
  z-index: 999;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.back-to-top .btn-dark:hover {
  cursor: pointer;
  background: #fa6742;
  border-color: #fa6742;
}

/* Modal Starts From Here */
.modal-button {
  background: #428bca;
  padding: 1em 2em;
  color: #fff;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

.modal-buttonn:hover {
  background: #3876ac;
}

.modal {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  margin: 10% auto;
  width: 60%;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  animation-name: modalopen;
  animation-duration: var(--modal-duration);
  overflow: hidden;
}

.modal-header h2,
.modal-footer h3 {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  word-break: break-all;
}

.modal-header {
  background: var(--modal-color);
  padding: 15px;
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.modal-body {
  background: #fff;
  padding: 0 !important;
}
.modal-img-container {
  height: 55vh;
}
.modal-img-container > img {
  width: 100%;
  height: 99%;
  object-fit: contain;
}
.modal-content-cont {
  height: 10vh;
}
.modal-content-cont > p {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  word-break: break-all;
  line-height: 25px;
  padding: 5px;
}

.modal-footer {
  background: var(--modal-color);
  padding: 10px;
  color: #fff;
  text-align: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.close {
  color: #ccc;
  float: right;
  font-size: 30px;
  color: #000;
}

.close:hover,
.close:focus {
  color: var(--nav-color);
  text-decoration: none;
  cursor: pointer;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .modal-content {
    width: 70%;
  }
}
@media (max-width: 650px) {
  .modal-content {
    width: 85%;
  }
  .modal-img-container > img {
    width: 100%;
    height: 99%;
    object-fit: inherit;
  }
}
