@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@400;500&display=swap");

body {
  background: #fff;
  color: #666666;
  font-family: "Catamaran", sans-serif;
}
html {
  scroll-behavior: smooth;
}

a {
  color: #fff;
  transition: 0.5s;
}

:root {
  --link-color: #d10014;
  --title-color: #d10014;
}

a:hover,
a:active,
a:focus {
  color: #28a3c3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Catamaran", sans-serif;

  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.back-to-top {
  position: fixed;
  display: none;
  background: #1f3fa3c4;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #18d26e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.head-top {
  width: 100%;
  background-color: #1b6880;
  display: inline-block;
}

.head-top ul {
  width: fit-content;
  float: right;
  margin-right: 120px;
  margin-bottom: 0px;
  padding-bottom: 6px;
  padding-top: 3px;
}

.head-top ul li {
  list-style: none;
  float: left;
  color: #fff;
  margin-right: 35px;
}

.head-top ul li:last-child {
  margin-right: 0px;
}

.head-top ul li span {
  font-size: 14px;
}

.head-top ul li i {
  margin-right: 8px;
}

#header {
  position: fixed;
  overflow: hidden;
  height: auto;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background-color: #fff;
  border-top: 3px solid #00346c;
  padding-top: 0px !important;
}

#header.header-scrolled {
  background-color: #fff;
  padding: 20px 0;
  height: auto;
  transition: all 0.5s;
  padding-bottom: 0px;
  padding-top: 27px;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid #18d26e;
}

#logo a {
  display: block;
}

#header #logo img {
  padding: 5px 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.sticky-social {
  position: fixed;
  top: 365px;
  left: -40px;
  padding: 0px;
  margin: 0px;
  z-index: 999;
}

.social {
  list-style: none;
}

.social li {
  padding: 5px 10px;
  font-size: 22px;
  transition: all 0.8s ease-in-out;
  padding-left: 16px;
}

.social li:hover {
  margin-right: -30px;
  box-shadow: 2px 5px 10px grey;
}

.social li:hover .fa {
  margin-left: 20px;
}

.fa {
  color: #fff;
  transition: all 0.8s ease-in-out;
}

.fb {
  background-color: #3c5a98;
}

.twitter {
  background-color: #1ea1f2;
}

.insta {
  background-color: #dc4f42;
}

.whap {
  background-color: #25e366;
}

.you {
  background-color: #cb2128;
}

#intro {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
}

#intro .carousel-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 657px;
  overflow: hidden;
}

#intro .carousel-item::before {
  content: "";

  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-background img {
  max-width: 100%;
}

#intro .carousel-content {
  position: absolute;
  left: 325px;
  top: 50%;
}

.carousel-control-next,
.carousel-control-prev {
  top: 17%;
}

#intro h2 {
  color: #ffffffe0;
  margin-bottom: 65px;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 15px;
  line-height: 50px;
}

#intro p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #18d26e;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #18d26e;
}

.nav-menu,
.nav-menu * {
  margin: 0;
  padding-top: 16px;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

#nav-menu-container {
  position: relative;
  float: right;
  margin: 0;
  padding-right: 115px !important;
  padding-top: 20px;
}

.nav-menu a {
  margin: 0px 15px 0px 15px;
  text-decoration: none;
  color: var(--link-color);
  font-family: "Catamaran", sans-serif;
  font-weight: bolder;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  outline: none;
}

.nav-menu li:last-child a {
  border-right: 0px;
  margin-right: 0px;
}

.nav-menu li:last-child {
  padding-right: 0px;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
}

.nav-menu > li {
  margin-left: 5px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #18d26e;
}

.nav-menu ul ul {
  margin: 0;
}

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 35px 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid #464646;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

#mobile-nav ul li a:hover {
  color: indianred;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
  color: indianred;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #18d26e;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #18d26e;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

.section-header h3 {
  font-size: 27px;
  letter-spacing: 1px;
  color: var(--title-color);
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.section-headersub h3 {
  font-size: 32px;
  color: #006633;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  position: relative;
  padding-bottom: 25px;
}

.section-headercontact h3 {
  font-size: 32px;
  color: #006633;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  position: relative;
  padding-bottom: 25px;
}

.section-header img {
  float: left;
  margin-left: 40px;
  width: 250px;
}

.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-headersub h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-headercontact h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--title-color);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-headersub h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1b6880;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-headercontact h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1b6880;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: justify;
  color: #333;
  line-height: 30px;
  margin-bottom: 25px;
}

.section-headersub p {
  text-align: justify;
  padding-bottom: 20px;
  color: #333;
  line-height: 34px;
}

.section-headercontact p {
  text-align: center;
  font-weight: 500;
  padding-bottom: 20px;
  color: #333;
  line-height: 34px;
}

.button {
  color: #28a3c3;

  border-radius: 5px;
  padding: 6px;
}

.abt button {
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  border: none;
  margin-left: 500px;
  background-color: #28a3c3;
  padding-left: 15px;
  padding-right: 15px;
}

.section-bg {
  background: #f7f7f7;
}

#featured-services {
  background: #000;
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background-image: linear-gradient(
    0deg,
    #000000 0%,
    #242323 50%,
    #000000 100%
  );
}

#featured-services i {
  color: #18d26e;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: #18d26e;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

#about {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 45px 0 30px 0;
  position: relative;
}

.about-sub p {
  margin-bottom: 15px;
  padding-bottom: 0px;
}

#about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#about .container,
#career .container-fluid,
#career .container {
  position: relative;
  z-index: 10;
}

.full-landing-image {
  background-image: url(../img/services/s10.jpg);
}

#career .container-fluid {
  padding: 0;
}

.grid-gallery-container {
  display: flex;
  grid-area: 2px;
  gap: 15px;
  overflow: hidden;
  padding-top: 60px;
}
.grid-img {
  flex-shrink: 0;
  width: 145px;
  height: 270px;
}
.grid-img:nth-child(even) {
  margin-top: 80px;
  margin-bottom: -80px;
}
.grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.reveal {
  visibility: hidden;
  position: relative;

  overflow: hidden;
}
#scroll-to {
  top: -155px;
  position: relative;
}
#career {
  padding: 45px 0 0;
  background-image: url(../img/about-bg.jpg);
  background-size: cover;
  position: relative;
}
#career::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}
#services .about-col {
  position: relative;
  min-height: 415px;
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 50px;
}

#services .about-col .img {
  position: relative;
}

#services .about-col .img img {
  border-radius: 4px 4px 0 0;
  width: 100%;
}

#services .about-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  border-radius: 50%;
  border: 4px solid #fff;
  left: calc(50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#services .about-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#services .about-col:hover .icon {
  background: #fff;
  border: 3px solid #fb0000;
}

#services .about-col:hover i {
  color: var(--link-color);
}

#services .about-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  padding: 0;
  margin: 40px 10px 12px 10px;
}

#services .about-col h2 a {
  color: #003264;
}

#services .about-col:hover a {
}

#services .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
  text-align: justify;
}

#whyus {
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background-size: cover !important;
  background: url("../img/bg-why.jpg");
  background-repeat: no-repeat;
}

#whyus img {
  position: absolute;
  width: 100%;
  height: 580px;
  margin-top: -40px;
}

.why-choose-one__right ul li {
  background-color: #1f3fa3b0;
  padding: 15px;
  margin-bottom: 15px;
  padding-left: 40px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.why-choose-one__right ul li h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}

.why-choose-one__right ul li p {
  margin-bottom: 10px;
}

.why-choose-one__right ul li .text {
  color: #fff;
}

.why1 {
  animation-delay: 1s;
}

.why2 {
  animation-delay: 1.2s;
}

.why3 {
  animation-delay: 1.4s;
}

#services {
  background: #fff;
  background-size: cover;
  padding: 33px 0 20px 0;
}

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #fff;
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #28a3c3;
}

#services .box:hover .title a {
  color: #85aa3a;
}

#services .box:hover .icon i {
  color: #28a3c3;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)),
    url(../img/con-bg.jpg) fixed center center;
  background-size: cover;
  padding: 90px 0;
}

#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action p {
  color: #fff;
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #1b6880;
  border: 2px solid #1b6880;
}

#skills {
  padding: 60px 0;
}

#skills .progress {
  height: 35px;
  margin-bottom: 10px;
}

#skills .progress .skill {
  font-family: "Open Sans", sans-serif;
  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  text-transform: uppercase;
}

#skills .progress .skill .val {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}

#skills .progress-bar {
  width: 1px;
  text-align: left;
  transition: 0.9s;
}

#facts {
  background: url("../img/facts-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#facts::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 9;
}

#facts .container {
  position: relative;
  z-index: 10;
}

#facts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #18d26e;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#facts .facts-img {
  text-align: center;
  padding-top: 30px;
}

#portfolio {
  padding: 60px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.abt-ul li:before {
  content: url(../img/icons/abt-ul.png);
  display: inline-block;
  vertical-align: middle;
}
.abt-ul {
  list-style: none;
  padding: 0;
}

.abt-ul li {
  font-weight: 500;
  color: #000;
}

.section-header h2 {
  font-size: 22px;
  color: #dc3545;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 25px;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #18d26e;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#portfolio .portfolio-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}

#portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

#portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview,
#portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i,
#portfolio .portfolio-item figure .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover,
#portfolio .portfolio-item figure .link-details:hover {
  background: #18d26e;
}

#portfolio .portfolio-item figure .link-preview:hover i,
#portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

#portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 30px;
  height: 90px;
  border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #18d26e;
}

#portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#clients {
  padding: 60px 0;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #85aa3a;
}

#testimonials {
  padding: 35px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item {
  text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
  width: 75px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

#testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 17px auto;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #18307d;
}

#team {
  background: #fff;
  padding: 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #18d26e;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

#contact {
  padding: 0px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #18d26e;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #18d26e;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: #18d26e;
  border: 1px solid #18d26e;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: #28a3c3;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #85aa3a;
}

.row footer-info {
  background-color: aqua;
}

#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
  padding-bottom: 0px;
}

#footer .footer-top {
  padding: 35px 0 20px;
}

.footer-bottom {
  display: flex;
  width: 100%;
  background-color: #87000d;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: -5px;
}

#footer .footer-top .footer-info {
}

#footer .footer-top .footer-info h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-weight: 700;
  border-left: 4px solid #27c7f9;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #18d26e;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #27c7f9;
  width: 60px;
}

#footer .footer-top .footer-links {
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 3px 0;
}
#footer .footer-links ul li:last-child {
  border: none;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #dc3545;
}

#footer .footer-top .footer-contact {
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
  margin: 0;
}

#footer .footer-top .footer-newsletter {
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #18d26e;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #13a456;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 14px;
  color: #ddd;
}

.btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #1f3fa3;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #1f3fa3;
}

.btn:hover {
  background: #fff;
  color: #1f3fa3;
  border: 2px solid #1f3fa3;
  font-weight: 500;
}

.sub-ban,
.sub-ban .carousel-inner,
.sub-ban .carousel-item {
  height: 420px !important;
}

form {
  width: 450px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

input,
textarea,
select {
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100% !important;
  font-size: 15px;
}

form .btn {
  width: fit-content !important;
  margin: 0 auto;
  display: block;
  margin-top: 20px;
}

#con {
  margin-top: -150px;
  position: absolute;
}

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 100px;
    width: 335px;
    box-sizing: border-box;
  }

  #intro p {
    width: 60%;
  }

  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 15%;
  }

  #nav-menu-container {
    padding-right: 60px;
    margin-top: 6px;
  }
}

@media (max-width: 1024px) {
  .back-to-top {
    bottom: 15px;
  }

  #header #logo h1 {
    font-size: 28px;
  }

  #intro h2 {
    font-size: 28px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
}

@media (min-width: 1920px) and (max-width: 1920px) {
  .resume {
    font-size: 25px !important;
  }
  .grid-img {
    width: 210px;
  }
  .head-top ul {
    margin-right: 390px;
  }

  #nav-menu-container {
    padding-right: 385px !important;
  }

  #header #logo {
    padding-left: 380px !important;
  }
}

@media (min-width: 360px) and (max-width: 800px) {
  p {
    font-size: 13px;
    line-height: 28px !important;
  }
  #header #logo {
    float: left;
    width: 200px;
  }

  .head-top ul {
    width: 100%;
    float: none;
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
    padding-bottom: 6px;
    padding-top: 3px;
    padding-left: 0;
  }

  .head-top ul li {
    list-style: none;
    float: none;
    color: #fff;
    margin-right: auto;
    margin-left: auto;
    display: block;
    width: fit-content;
  }

  .head-top ul li:last-child {
    margin-right: auto;
  }

  .head-top ul li span {
    font-size: 12px;
  }

  #header #logo {
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 0px !important;
  }

  #header #logo img {
    width: 240px;
  }

  #mobile-nav-toggle {
    margin: 75px 20px 0 0;
  }

  #mobile-nav-toggle i {
    color: var(--link-color);
  }

  #intro .carousel-item,
  .carousel-inner,
  #intro {
    height: 460px;
  }

  #intro h2 {
    font-size: 20px;
  }

  .sticky-social .fa {
    font-size: 15px;
  }

  .social li {
    padding: 5px 10px;
    font-size: 20px;
    transition: all 0.8s ease-in-out;
    padding-left: 10px;
  }

  .section-header h3 {
    font-size: 17px;
  }

  .carousel-indicators {
    display: none;
  }

  .sticky-social {
    top: 250px;
  }

  #intro h2 {
    line-height: 28px;
  }

  #intro .carousel-control-next-icon {
    display: none;
  }

  .container {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }

  .section-header p {
    margin-bottom: 0px;
    color: #080808 !important;
  }

  .btn {
    padding: 5px 15px;
    font-size: 10px;
  }

  #about {
    padding: 30px 0 25px 0;
  }
  #career {
    padding-top: 30px;
  }

  #services .about-col h2 {
    font-size: 14px;
  }

  #services {
    padding: 33px 0 25px 0;
  }

  #services .about-col {
    margin-bottom: 30px;
  }

  #whyus {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  #whyus img {
    display: none;
  }

  .why-choose-one__right ul li h4 {
    font-size: 15px;
  }

  .why-choose-one__right p {
    color: #fff !important;
  }

  #call-to-action h3 {
    font-size: 17px;
  }

  #call-to-action {
    padding: 40px 0px;
  }

  #call-to-action .cta-btn {
    padding: 8px 15px;
    font-size: 10px;
    margin-top: 0px;
  }

  #testimonials {
    padding: 30px 0;
  }

  #testimonials .testimonial-item h3 {
    font-size: 14px;
  }

  #testimonials .testimonial-item h4 {
    font-size: 12px;
  }

  #testimonials .owl-nav,
  #testimonials .owl-dots {
    display: none;
  }

  #footer .footer-top .footer-info p {
    font-size: 12px;
    margin-bottom: 25px;
  }

  #footer .footer-top .footer-links ul a {
    font-size: 12px;
  }

  #footer .footer-top .footer-links ul {
    margin-bottom: 25px;
  }

  #footer .copyright,
  #footer .credits {
    float: none !important;
    font-size: 13px !important;
    text-align: center !important;
  }

  .section-headersub h3,
  .section-headercontact h3 {
    font-size: 17px;
  }

  form {
    width: 100%;
  }
}

@media (min-width: 640px) and (max-width: 850px) and (orientation: landscape) {
  p {
    font-size: 13px;
    line-height: 28px !important;
  }

  .head-top ul {
    width: fit-content;
    float: none;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
    padding-bottom: 0px;
    padding-top: 0;
  }

  .head-top ul li span {
    font-size: 12px;
  }

  .head-top ul li {
    margin-bottom: 3px;
  }

  #header #logo {
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 0px !important;
  }

  #header #logo img {
    width: 240px;
  }

  #intro {
    margin-top: 100px;
  }

  #mobile-nav-toggle {
    margin: 45px 20px 0 0;
  }

  #mobile-nav-toggle i {
    color: RED;
  }

  #intro .carousel-item,
  .carousel-inner,
  #intro,
  .sub-ban,
  .intro-container {
    height: 265px !important;
  }

  #intro h2 {
    font-size: 20px;
  }

  .sticky-social .fa {
    font-size: 15px;
  }

  .social li {
    padding: 5px 10px;
    font-size: 20px;
    transition: all 0.8s ease-in-out;
    padding-left: 10px;
  }

  .section-header h3 {
    font-size: 17px;
  }

  .carousel-indicators {
    display: none;
  }

  .sticky-social {
    top: 165px;
  }

  #intro h2 {
    line-height: 28px;
    margin-top: 0px;
  }

  #intro .carousel-control-next-icon {
    display: none;
  }

  .container {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }

  .section-header p {
    margin-bottom: 0px;
    color: #080808 !important;
  }

  .btn {
    padding: 5px 15px;
    font-size: 10px;
  }

  #about {
    padding: 30px 0 25px 0;
  }

  #services .about-col h2 {
    font-size: 14px;
  }

  #services {
    padding: 33px 0 25px 0;
  }

  #services .about-col {
    margin-bottom: 30px;
  }

  #whyus {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  #whyus img {
    display: none;
  }

  .why-choose-one__right ul li h4 {
    font-size: 15px;
  }

  .why-choose-one__right p {
    color: #fff !important;
  }

  #call-to-action h3 {
    font-size: 17px;
  }

  #call-to-action {
    padding: 40px 0px;
  }

  #call-to-action .cta-btn {
    padding: 8px 15px;
    font-size: 10px;
    margin-top: 0px;
  }

  #testimonials {
    padding: 30px 0;
  }

  #testimonials .testimonial-item h3 {
    font-size: 14px;
  }

  #testimonials .testimonial-item h4 {
    font-size: 12px;
  }

  #testimonials .owl-nav,
  #testimonials .owl-dots {
    display: none;
  }

  #footer .footer-top .footer-info p {
    font-size: 12px;
    margin-bottom: 25px;
  }

  #footer .footer-top .footer-links ul a {
    font-size: 12px;
  }

  #footer .footer-top .footer-links ul {
    margin-bottom: 0px;
  }

  #footer .copyright,
  #footer .credits {
    float: none !important;
    font-size: 13px !important;
    text-align: center !important;
  }

  .section-headersub h3,
  .section-headercontact h3 {
    font-size: 17px;
  }

  form {
    width: 100%;
  }
}

.top-info {
  position: absolute;
  display: inline-flex;
  list-style: none;
  right: 115px;
  gap: 15px;
  top: 15px;
}

.top-info li {
  font-size: 15px;
  color: #606060;
  letter-spacing: 1px;
}

.hover-1:before {
  left: 0;
  bottom: 0;
  width: 100%;
  top: 45px;
  height: 2px;
  background: #492059;
  transform: scaleX(0);
}

.hover-1:hover:before {
  transform: scaleX(1);
}

.nav-menu a:before,
.nav-menu a:after,
.nav-menu a > span:before,
.nav-menu a > span:after {
  content: "";
  position: absolute;
  transition: transform 0.5s ease;
}

.active .hover-1:before {
  animation: border-animation 1s linear 1s forwards;
}

@keyframes border-animation {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.float-img img:nth-child(1) {
  position: absolute;
  top: 15px;
  width: 95px;
  left: 27%;
}

.float-img img:nth-child(2) {
  position: absolute;
  top: 15px;
  width: 95px;
  left: 34%;
}

.float-img img:nth-child(3) {
  position: absolute;
  top: 15px;
  width: 95px;
  left: 41%;
}

.float-img {
  position: relative;
  margin-left: 60px;
}

.about-cols {
  margin-top: 45px;
  margin-bottom: -20px;
}

#serv-btn {
  align-items: center;
  background-color: transparent;
  color: var(--link-color);
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 7px;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  outline: 0;
  border: 0;
  padding: 1rem;
}

#serv-btn:before {
  background-color: var(--link-color);
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 10px;
  transition: all 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 0;
}

#serv-btn:hover:before {
  background-color: var(--link-color);
  width: 3rem;
}

.icon img {
  width: auto !important;
  filter: invert(1);
}

.ipad {
  padding: 13px 10px;
  height: 295px;
  background: black;
  border-radius: 15px;
  border: 4px solid #e5e5e5;
  box-shadow: 5px 19px 39px #adadad !important;
  transform: scale(0.9);
}

.camera {
  border-radius: 10px;
  width: 10px;
  height: 10px;
  position: absolute;
  background-color: #2654ed;
  border: 2px solid #1c1c1c;
  left: 19px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  box-sizing: border-box;
}

.home-btn {
  border-radius: 90px;
  width: 23px;
  height: 23px;
  position: absolute;
  background: linear-gradient(
    170deg,
    rgba(64, 65, 67, 1) 0%,
    rgba(64, 65, 67, 1) 25%,
    rgba(233, 234, 236, 1) 38%,
    rgba(233, 234, 236, 1) 63%,
    rgba(64, 65, 67, 1) 94%,
    rgba(64, 65, 67, 1) 100%
  );
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  box-sizing: border-box;
}

.home-btn::after {
  content: "";
  width: calc(90% - 1px);
  height: calc(90% - 1px);
  border-radius: 50%;
  background: black;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.ipad iframe {
  width: 100%;
  height: 100%;
}

#abt-btn {
  margin-right: unset;
  margin-left: auto;
  margin-top: 0px;
}

.abt h3 {
  text-align: left;
}

.abt h3::before {
  left: unset;
}

.abt h3::after {
  left: 40px;
}

.social-menu ul {
  position: absolute;
  top: 10px;
  right: 110px;
  padding: 0;
  margin: 0;
  display: flex;
}

.social-menu ul li {
  list-style: none;
  margin: 0 3px;
}

.social-menu ul li .fab {
  font-size: 30px;
  line-height: 60px;
  transition: 0.3s;
  color: #000;
}

.social-menu ul li .fab:hover {
  color: #fff;
}

.social-menu ul li a {
  position: relative;
  display: block;
  width: 30px;
  font-size: 15px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  transition: 0.6s;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5);
}

.top-info i {
  line-height: 30px;
}

.social-menu ul li a {
  transform: translate(0, -10%);
}

.social-menu ul li:nth-child(1) a {
  background-color: #3b5998;
}

.social-menu ul li:nth-child(2) a {
  background-color: #e4405f;
}

.social-menu ul li:nth-child(3) a {
  background-color: #00e676;
}

.social-menu ul li:nth-child(4) a {
  background-color: #0077b5;
}

.social-menu ul li:nth-child(5) a {
  background-color: red;
}

.about-col:hover .icon img {
  filter: unset;
}

.serviceBox {
  text-align: center;
  position: relative;
}

.serviceBox .service-icon {
  width: 130px;
  height: 140px;
  line-height: 145px;
  background: linear-gradient(to bottom, transparent 49%, #f00 50%);
  margin: 0 auto 15px;
  font-size: 35px;
  color: #fff;
  -webkit-clip-path: polygon(
    50% 0%,
    100% 25%,
    100% 75%,
    50% 100%,
    0% 75%,
    0% 25%
  );
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
  transition: all 0.3s ease 0s;
}

.serviceBox:hover .service-icon {
  font-size: 45px;
}

.serviceBox .service-icon:before,
.serviceBox .service-icon:after {
  content: "";
  width: 93%;
  height: 93%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-clip-path: polygon(
    50% 0%,
    100% 25%,
    100% 75%,
    50% 100%,
    0% 75%,
    0% 25%
  );
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transform: translate(-50%, -50%);
}

.serviceBox .service-icon:after {
  width: 85%;
  height: 85%;
  background: linear-gradient(
    90deg,
    rgb(2 0 36 / 75%) 0%,
    rgb(37 57 120) 35%,
    #ff0000ad 100%
  );
  transition: all 0.3s ease 0s;
}

.serviceBox:hover .service-icon:after {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2) inset;
}

.serviceBox .title {
  font-size: 20px;
  color: #003264;
  text-transform: capitalize;
  margin: 0 0 10px 0;
  position: relative;
  transition: all 0.3s ease 0s;
}

.serviceBox:hover .title {
  color: #b90000;
}

.serviceBox .title:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #3754af;
  background: #3754af;
  box-shadow: 0 0 0 3px #fff inset;
  position: absolute;
  top: -50px;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}

.serviceBox:hover .title:before {
  opacity: 1;
  top: -24px;
}

.serviceBox .description {
  font-size: 15px;
  color: #505050;
  line-height: 27px;
  margin: 0;
}

.serviceBox.blue .service-icon {
  background: linear-gradient(to bottom, transparent 49%, #1b87a4 50%);
}

.serviceBox.blue .service-icon:after {
  background: #1b87a4;
}

.serviceBox.blue:hover .title {
  color: #1b87a4;
}

.serviceBox.blue .title:before {
  border-color: #1b87a4;
  background: #1b87a4;
}

.serviceBox.darkblue .service-icon {
  background: linear-gradient(to bottom, transparent 49%, #4c3f8f 50%);
}

.serviceBox.darkblue .service-icon:after {
  background: #4c3f8f;
}

.serviceBox.darkblue:hover .title {
  color: #4c3f8f;
}

.serviceBox.darkblue .title:before {
  border-color: #4c3f8f;
  background: #4c3f8f;
}

.serviceBox.purple .service-icon {
  background: linear-gradient(to bottom, transparent 49%, #9f2369 50%);
}

.serviceBox.purple .service-icon:after {
  background: #9f2369;
}

.serviceBox.purple:hover .title {
  color: #9f2369;
}

.serviceBox.purple .title:before {
  border-color: #9f2369;
  background: #9f2369;
}

@media only screen and (max-width: 990px) {
  .serviceBox {
    margin-bottom: 10px;
  }
}

#other-services {
  padding: 0 0 20px;
}

#oth-btn {
  margin-bottom: 25px;
}

.why-choose-one__points {
  margin-top: 20px;
}

.banner-subpage {
  height: 100% !important;
}

.banner-subpage .carousel-inner {
  height: 425px;
}

.our-aim p {
  margin-bottom: 0;
}

.about-subpage span,
#career span,
#career a {
  color: #1f3fa3;
  font-weight: marg;
  font-weight: bold;
  margin: 0 4px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #9d000f;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}
.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded="true"] {
  color: #03b5d2;
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: max-content;
  padding: 20px 0;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion-content a {
  color: #860000;
  padding: 0 5px;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 15px;
}
.--mb-p {
  margin-bottom: 5px !important;
}

.service-content {
  padding-top: 15px;
}

.service-content h2 {
  font-size: 25px;
  color: var(--title-color);
}

.accordion span {
  font-size: 18px;
}

.testi-img img {
  width: 60px;
  border-radius: 50%;
  margin: 0 auto;
  margin-right: 25px;
  margin-bottom: 5px;
}

.testi-item {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  width: 100%;
  /* display: flex; */
  align-items: center;
  padding: 25px;
  background: #fff;
}
.testi-item p {
  font-style: italic;
  margin: 0;
  font-size: 16px;
  padding-left: 25px;
  line-height: initial;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 35px;
}

.test-content img {
  padding: 10px;
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 37px;
  float: unset;
  margin: unset;
}

.test-content h5 {
  float: right;
  color: #000;
  font-weight: bolder;
  font-size: 18px;
  margin: 0;
}
.test-content {
  flex: 1;
}

.test-content h5::before {
  content: "~";
  padding-right: 4px;
}

.--testimonials {
  padding-bottom: 35px !important;
}

.services-subpage {
  padding: 0 !important;
  background: transparent !important;
}

.map iframe {
  height: 100%;
  width: 100%;
}
.map {
  height: 100%;
}

.contact-block {
  padding: 30px;
  margin-top: 40px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background: #fff;
  margin-bottom: 15px;
}

.contact-details ul li {
  list-style-type: none;
  font-size: 17px;
  font-family: "Catamaran";
  color: #001b70 !important;
  font-weight: 500;
  border-bottom: 1px solid #dddddd;
  padding: 15px 0;
}
.contact-details li a{
  color: #001b70 !important;
}
.contact-details ul {
  padding-left: 0;
}
.c-icon {
  width: fit-content;
  background: #1f3fa3;
  width: 35px;
  display: inline-block;
  margin-right: 20px;
  height: 35px;
  vertical-align: middle;
  border-radius: 50%;
}

.c-icon i {
  color: #fff !important;
  display: flex;
  line-height: 35px;
  justify-content: center;
}

#enq-btn {
  float: right;
  margin: 0;
}

.contact-details ul li:last-of-type {
  border: none;
  padding-bottom: 0;
}

.accordion-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: #dc3545;
  margin: 15px 0;
}
.accordion-content li {
  color: #333;
  list-style-type: disclosure-closed;
  padding: 5px 0;
}

.accordion-content ul {
  margin: 0;
}
.accordion-content p span {
  font-size: 18px;
  font-weight: 500;
  color: #dc3545;
}
#content-ul {
  list-style-type: disclosure-closed;
  padding-left: 40px;
  margin: 20px 0;
}

#content-ul li {
  padding: 7px 0;
  font-size: 15px;
  list-style-position: inside;
  color: #000;
}

#content-ul strong {
  color: #1235a2;
  font-size: 18px;
  font-weight: 500;
  padding-right: 5px;
}
#content-heading {
  font-size: 25px;
  letter-spacing: 1px;
  color: var(--title-color);
  position: relative;
}
.float {
  display: none;
  --h: 44px;
  --w: 44px;
  position: fixed;
  width: var(--w);
  height: (var(--h));
  line-height: var(--h);
  bottom: 70px;
  right: 15px;
  background-color: #1f3fa3c4;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 100;
  transition: background 0.5s;
}

.float:hover,
.float:active,
.float:focus {
  color: #fff;
}
.float:hover {
  background: #1f3fa3;
}
.top-contact-info i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.top-contact-info {
  position: absolute;
  top: 15px;
  right: 370px;
}
.top-contact-info ul {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
}
.top-contact-info ul li {
  color: #1f3fa3;
  /* font-weight: 600; */
  /* font-size: 15px; */
  font-size: 14px;
  font-family: sans-serif;
}
.banner-subpage .carousel-item {
  background-position: bottom !important;
}

.sub-content-link {
  color: #860000;
  padding: 0 5px;
}
.sub-content-link:hover,
.sub-content-link:focus,
.sub-content-link:visited {
  color: #860000;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1f3fa3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  z-index: 9999;
}

.logo-loader {
  width: 100px; /* Adjust the size of your logo */
  height: 100px; /* Adjust the size of your logo */
  background-image: url("../img/loader.png"); /* Replace with your logo image */
  background-size: contain;
  background-repeat: no-repeat;
  animation: breathe-in 4s ease-in-out infinite;
}
.resume {
  font-size: 17px;
  font-weight: 600;
}
.content {
  display: none;
}

@keyframes breathe-in {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* media  query  */

@media (min-width: 360px) and (max-width: 800px) {
  .resume {
    font-size: 13px;
    font-weight: 600;
  }
  #scroll-to {
    /* top: 0; */
    display: none;
  }
  .grid-img {
    width: 65px;
    height: 120px;
  }
  .grid-img:nth-child(even) {
    margin-top: 35px;
    margin-bottom: -35px;
  }
  .grid-gallery-container {
    padding-top: 25px;
  }
  .top-contact-info {
    position: absolute;
    top: 43%;
    right: 0;
  }
  .top-contact-info ul li {
    color: #fff;
    padding-left: 20px;
  }
  .top-contact-info ul {
    flex-wrap: wrap;
    gap: 10px;
  }
  .back-to-top {
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 12px;
  }
  .float {
    --h: 35px;
    --w: 35px;
    font-size: 12px;
  }
  .home-btn {
    display: none;
  }
  #header #logo img {
    width: 100%;
    height: 100%;
  }

  #mobile-nav-toggle {
    margin: 39px 20px;
  }
  .social-menu ul li a {
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    font-size: -50px;
    line-height: 30px;
  }
  .social-menu ul {
    top: -15px;
    right: calc((100% - 240px) / 2);
  }
  #intro .carousel-content {
    left: 70px;
    top: 40%;
  }
  #services .about-col .img {
    height: 125px;
  }
  #services .about-col .img img {
    height: 100%;
    object-fit: cover;
  }
  .ipad {
    margin-top: 10px;
    transform: scale(1);
    height: 170px;
  }
  #services .about-col p {
    font-size: 13px;
    padding-bottom: 0;
  }
  .section-header h3 {
    font-size: 15px;
  }
  .section-header h2 {
    font-size: 16px;
  }
  #intro .carousel-item,
  .carousel-inner,
  #intro {
    height: 340px;
  }
  .abt-ul li {
    font-size: 12px;
  }
  #intro h2 {
    font-size: 18px;
  }
  #intro .carousel-control-next-icon,
  #intro .carousel-control-prev-icon {
    display: none;
  }
  #abt-btn {
    margin-right: auto;
    margin-left: auto;
    margin-top: 12px;
  }
  .about-col p {
    line-height: 25px !important;
  }
  #services .about-col {
    min-height: max-content;
  }
  .about-cols {
    margin-top: 30px;
  }
  #serv-btn {
    position: relative;
    margin: auto;
  }
  .icon img {
    height: 35px !important;
  }
  .serviceBox .service-icon {
    font-size: 20px;
    width: 95px;
    height: 115px;
    line-height: 115px;
  }
  .serviceBox .title {
    font-size: 15px;
  }
  #oth-btn {
    margin-bottom: 5px;
  }
  #whyus {
    padding-bottom: 20px;
  }
  .banner-subpage .carousel-inner {
    height: 100%;
  }
  .about-subpage h3 + p {
    text-align: justify !important;
    padding-bottom: 15px;
  }
  .testimonial-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .testi-item p {
    /* line-height: 20px !important; */
    font-size: 12px;
  }
  .test-content h5 {
    font-size: 15px;
  }
  .testi-img img {
    width: 50px;
    margin-bottom: 5px;
  }
  .contact-details ul li {
    font-size: 14px;
  }
  .contact-block {
    padding: 15px;
    width: 265px;
    margin: auto;
    margin-top: 35px !important;
  }
  .c-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .c-icon i {
    line-height: 30px;
    font-size: 12px;
  }
  #enq-btn {
    float: unset;
    margin: auto;
    margin-bottom: 20px;
  }
  h3 #serv-btn {
    display: none;
  }
  .service-content h2 {
    font-size: 17px;
    margin-bottom: 5px;
  }
  .accordion span {
    font-size: 14px;
  }
  .accordion button {
    padding: 9px 0;
  }

  .accordion-content li {
    font-size: 13px;
  }
  .accordion button .accordion-title {
    padding: 10px 30px 0 0;
    display: inline-block;
  }
  #content-ul {
    margin-top: 0;
    padding-left: 0;
    margin-bottom: 0;
  }
  #content-ul li {
    font-size: 13px;
    line-height: 25px;
  }
  #content-heading {
    font-size: 16px;
    margin: 7px 0;
  }
  #content-ul strong {
    font-size: 15px;
  }
  .accordion-content p span {
    font-size: 14px;
  }
  .accordion-content h4 {
    font-size: 14px !important;
    margin: 7px 0;
  }
  .accordion .accordion-content p {
    font-size: 13px;
    font-weight: 300;
    margin: 12px 0px;
    line-height: 25px !important;
    color: #4a4a4a !important;
    font-family: "Catamaran";
  }
  .our-aim h3 {
    text-align: center;
  }
  .our-aim h3::before {
    left: calc(50% - 60px);
  }
  .our-aim h3::after {
    left: calc(50% - 20px);
  }

  .--contact {
    padding-bottom: 35px !important;
  }
  .abt h3 {
    text-align: center;
  }
  .abt h3::before {
    left: calc(50% - 60px);
  }
  .abt h3::after {
    left: calc(50% - 20px);
  }
}

@media (min-width: 640px) and (max-width: 800px) and (orientation: landscape) {
  .resume {
    font-size: 13px;
    font-weight: 600;
  }
  .top-contact-info {
    bottom: -45px;
    top: unset;
  }
  #header #logo img {
    width: 100%;
    height: 85px;
  }
  #mobile-nav-toggle {
    margin: 39px 20px;
  }
  .social-menu ul li a {
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    font-size: -50px;
    line-height: 30px;
  }
  .social-menu ul {
    top: -15px;
    left: 10;
  }
  #intro .carousel-content {
    left: 70px;
  }
  .section-header h3 {
    font-size: 15px;
  }
  #intro .carousel-item,
  .carousel-inner,
  #intro {
    height: 340px;
  }
  #intro h2 {
    font-size: 18px;
  }
  #intro .carousel-control-next-icon,
  #intro .carousel-control-prev-icon {
    display: none;
  }
  #abt-btn {
    margin-right: auto;
    margin-left: auto;
    float: right;
    margin-top: 10px;
  }
  .about-col p {
    line-height: 25px !important;
  }
  #services .about-col {
    min-height: max-content;
  }
  .about-cols {
    margin-top: 30px;
  }
  .serviceBox .service-icon {
    font-size: 20px;
    width: 95px;
    height: 115px;
    line-height: 115px;
  }
  .serviceBox .title {
    font-size: 15px;
  }
  #oth-btn {
    margin-bottom: 5px;
  }
  #whyus {
    padding-bottom: 20px;
    background-position: right;
  }
  .banner-subpage .carousel-inner {
    height: 100%;
  }

  .about-subpage h3 + p {
    text-align: justify !important;
    padding-bottom: 15px;
  }
  .testimonial-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-item p {
    /* line-height: initial !important; */
    font-size: 12px;
  }
  .test-content h5 {
    font-size: 15px;
  }
  .testi-img img {
    width: 50px;
  }
  .contact-details ul li {
    font-size: 14px;
  }
  .contact-block {
    padding: 15px;
    width: 100%;
    margin: auto;
    margin-top: 35px !important;
  }
  .c-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .c-icon i {
    line-height: 30px;
    font-size: 12px;
  }
  #enq-btn {
    float: unset;
    margin: auto;
    margin-bottom: 20px;
  }
  h3 #serv-btn {
    display: none;
  }
  .service-content h2 {
    font-size: 17px;
  }
  .accordion span {
    font-size: 14px;
  }
  .accordion button {
    padding: 9px 0;
  }
  .accordion button .accordion-title {
    padding: 1em 2.5em 1em 0;
  }
  .accordion .accordion-content p {
    font-size: 13px;
    font-weight: 300;
    margin: 12px 0px;
    line-height: 23px !important;
    color: grey;
    font-family: "Catamaran";
  }
  .our-aim h3 {
    text-align: center;
  }
  .our-aim h3::before {
    left: calc(50% - 60px);
  }
  .our-aim h3::after {
    left: calc(50% - 20px);
  }

  .--contact {
    padding-bottom: 35px !important;
  }
  .abt h3 {
    text-align: center;
  }
  .abt h3::before {
    left: calc(50% - 60px);
  }
  .abt h3::after {
    left: calc(50% - 20px);
  }
  .ipad {
    margin-top: 35px;
    height: 250px;
  }
  .container {
    max-width: 650px;
  }
  .about-subpage .ipad {
    display: none;
  }
}

@media (min-width: 1600px) and (max-width: 1920px) {
  .container {
    max-width: 1500px;
  }
  #header #logo {
    padding-left: 150px !important;
  }
  #header #logo img {
    height: 150px;
  }
  .nav-menu a {
    font-size: 20px;
  }
  .social-menu ul li a {
    width: 40px;
    height: 40px;
  }
  .top-info i {
    line-height: 40px;
    font-size: 19px;
  }
  #nav-menu-container {
    padding-right: 215px !important;
    padding-top: 40px;
  }
  .top-contact-info {
    right: 525px;
    top: 25px;
  }
  .top-contact-info ul li {
    font-size: 18px;
  }
  .social-menu ul {
    top: 20px;
    right: 215px;
  }
  .hover-1:before {
    top: 55px;
  }
  .carousel-inner {
    height: 100%;
  }
  #intro {
    height: 970px;
  }
  .intro-container {
    height: 100%;
  }
  #introCarousel {
    height: 100%;
  }
  #intro h2 {
    font-size: 45px;

    line-height: 70px;
  }
  .accordion-content h4 {
    font-size: 25px;
  }
  .accordion-content li {
    font-size: 20px;
  }
  #content-ul strong {
    font-size: 25px;
  }
  .section-header h3 {
    font-size: 35px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .accordion-content p span {
    font-size: 25px;
  }
  .abt-ul li {
    font-size: 21px;
  }
  #content-ul li {
    font-size: 20px;
  }
  .section-header p {
    font-size: 21px;
    line-height: 39px;
  }
  #content-heading {
    font-size: 29px;
  }
  .ipad {
    height: 371px;
  }
  .btn {
    padding: 5px 14px;
    font-size: 17px;
  }
  #services .about-col h2 {
    font-size: 23px;
  }
  #services .about-col p {
    font-size: 19px;
    line-height: 30px;
  }
  #serv-btn {
    font-size: 18px;
  }
  .serviceBox .service-icon {
    width: 170px;
    height: 190px;
    line-height: 190px;
    font-size: 40px;
  }
  .serviceBox .title {
    font-size: 25px;
  }
  .why-choose-one__right ul li h4 {
    font-size: 25px;
  }
  .why-choose-one__right ul li p {
    font-size: 19px;
  }
  #testimonials .testimonial-item h3 {
    font-size: 25px;
  }
  #testimonials .testimonial-item p {
    font-size: 23px;
  }
  #services .about-col .icon {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    padding: 0;
    align-items: center;
  }
  #services .about-col {
    height: 530px;
  }
  #intro .carousel-content {
    left: 420px;
  }
  .back-to-top {
    width: 50px;
    height: 50px;

    line-height: 2;
    font-size: 23px;
  }
  .float {
    --h: 50px;
    --w: 50px;
    font-size: 23px;
    bottom: 80px;
  }
  #footer .copyright {
    font-size: 19px;
  }
  #footer .credits {
    font-size: 19px;
  }
  #footer .footer-top .footer-info h3 {
    font-size: 20px;
  }
  #footer .footer-top h4 {
    font-size: 20px;
  }
  #footer .footer-top .footer-info p {
    font-size: 17px;
    line-height: 35px;
    text-align: justify;
  }
  #footer .footer-top .footer-links ul li {
    font-size: 19px;
  }
  #footer .footer-top .footer-contact p {
    line-height: 35px;
    margin: 0;
    font-size: 19px;
  }
  .banner-subpage .carousel-inner {
    height: 710px;
  }
  .test-content p {
    line-height: 35px;
  }
  .test-content h5 {
    font-size: 20px;
  }
  .testi-img img {
    width: 85px;
  }
  .service-content h2 {
    font-size: 30px;
  }
  .accordion span {
    font-size: 21px;
  }
  .accordion .accordion-content p {
    font-size: 21px;
  }
  .contact-details ul li {
    font-size: 22px;
  }
  .c-icon {
    width: 45px;
    height: 45px;
  }
  .c-icon i {
    line-height: 45px;
  }
}

/* ipad */
@media (min-width: 768px) and (max-width: 1024px) {
  .grid-img {
    height: 140px;
    width: 120px;
  }
  .grid-img:nth-child(even) {
    margin-top: 50px;
    margin-bottom: -50px;
  }
  .top-info {
    position: relative !important;
    top: 0;
    left: calc((100% - 245px) / 2);
    gap: 10px;
  }
  .testi-img img {
    font-size: 45px;
  }
  .contact-details ul li {
    font-size: 15px;
  }
  .testi-item p {
    font-size: 13px;
  }
  .test-content h5 {
    font-size: 15px;
  }
  #content-heading {
    font-size: 19px;
  }
  .accordion-content p span {
    font-size: 14px;
  }
  #content-ul strong {
    font-size: 14px;
  }
  #mobile-nav ul li a {
    font-size: 15px;
  }
  .accordion-content li {
    font-size: 14px;
  }
  .accordion-content h4 {
    font-size: 15px;
  }
  .accordion .accordion-content p {
    font-size: 13px;
  }
  .service-content h2 {
    font-size: 20px;
  }
  .accordion span {
    font-size: 15px;
  }
  .top-info li a {
    width: 35px !important;
    height: 35px !important;
    padding: 0 !important;
    line-height: 35px;
  }
  #mobile-nav {
    /* width: 310p; */
  }

  #testimonials .testimonial-item .testimonial-img {
    width: 45px;
  }
  #testimonials .testimonial-item h3 {
    font-size: 15px;
  }
  #footer .footer-top .footer-links ul li {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
  }
  #footer .footer-top .footer-info p,
  #footer .footer-top .footer-contact p {
    font-size: 13px;
  }
  .head-top ul {
    width: fit-content;
    float: none;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
    padding-bottom: 27px;
    padding-top: 3px;
    padding-inline-start: 0px !important;
  }

  #mobile-nav-toggle i {
    color: #1f3fa3;
  }
  #intro h2 {
    font-size: 25px;
    line-height: 45px;
  }
  #intro .carousel-content {
    left: 250px;
  }
  #mobile-nav-toggle {
    margin: 40px 35px 0 0;
  }

  #header #logo {
    padding-left: 25px !important;
    margin-bottom: 0px;
  }

  #intro {
    margin-top: 0px;
    height: auto;
  }
  .carousel-inner {
    height: 485px;
  }

  .head-top ul li {
    margin-right: 15px;
  }

  .section-header h3 {
    font-size: 20px;
  }
  .abt-ul li {
    font-size: 15px;
  }
  .section-header h2 {
    font-size: 17px;
  }
  .section-header p {
    padding-bottom: 0px;
  }
  .serviceBox .title {
    font-size: 15px;
  }
  .serviceBox .service-icon {
    width: 115px;
    height: 130px;
    line-height: 130px;
    font-size: 30px;
  }

  .btn {
    padding: 5px 13px;
    font-size: 12px;
  }

  #about {
    padding: 30px 0 30px 0;
  }

  #services .about-col h2 {
    font-size: 15px;
  }

  #whyus img {
    display: none;
  }

  .why-choose-one ul {
    padding-left: 20px;
    padding-right: 20px;
  }

  .why-choose-one__right ul li h4 {
    font-size: 15px;
  }

  .why-choose-one__right ul li {
    padding-left: 25px;
  }

  #whyus {
    height: auto;
    background-position: right;
  }

  #call-to-action {
    padding: 50px 0;
  }

  #call-to-action h3 {
    font-size: 22px;
  }

  #testimonials {
    padding: 40px 0;
  }

  #call-to-action .cta-btn {
    font-size: 12px;
    padding: 8px 20px;
  }

  .section-headersub h3,
  .section-headercontact h3 {
    font-size: 22px;
  }

  .sticky-social .fa {
    font-size: 20px;
  }
}

@media (min-width: 1366px) and (max-width: 1680px) {
}
/* larger montitor */
