/* globle css */
@font-face {
  font-family: "Varela Round";
  src: url("../fonts/VarelaRound-Regular.woff2") format("woff2"),
    url("../fonts/VarelaRound-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("../fonts/DMSerifDisplay-Regular.woff2") format("woff2"),
    url("../fonts/DMSerifDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("../fonts/DMSerifDisplay-Italic.woff2") format("woff2"),
    url("../fonts/DMSerifDisplay-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

html {
  font-weight: 400;
  font-family: "Varela Round", sans-serif;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  padding-top: 70px;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Serif Display", serif;
}
section{
  overflow-x: hidden;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  display: inline-block;
  color: #000000;
  text-decoration: unset;
}

ul,
ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
}
.logo {
  font-size: 0;
}
.content .logo a {
  font-size: 0;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(0 0 0 / 80%);
  width: 100%;
  height: 100%;
}

.btn {
  min-width: 160px;
  width: fit-content;
  width: -moz-fit-content;
  background-color: white;
  padding: 0 30px;
  height: 50px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  color: #11235a;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 0;
  /* btn text */
}
.btn span {
  z-index: 1;
  text-align: center;
}

.btn:before,
.btn:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0;
  transition: all 0.4s ease;
  background-color: #11235a;
}

.btn:before {
  left: 0;
}

.btn:after {
  right: 0;
}

.btn:hover {
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn:hover:before,
.btn:hover:after {
  width: 51%;
}

.tow-column-section.wide {
  padding: 40px 0;
}

.tow-column-section.w-bg {
  position: relative;
}

.tow-column-section.w-bg .container {
  position: relative;
}

.tow-column-section.w-bg h2 {
  color: #ffffff;
}

.tow-column-section.w-bg p {
  color: #ffffff;
}

/* Header css */
.header {
  background: #4f6cc7;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
}

.header nav {
  position: relative;
  display: flex;
  max-width: calc(100% - 200px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

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

nav .content .links {
  margin-left: 80px;
  display: flex;
}

.content .logo a {
  color: #fff;
  font-size: 0px;
  font-weight: 600;
  background: #4f6cc7;
  border-radius: 9px 0 15px 0;
  overflow: hidden;
}

.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;
}

.header .search-icon,
.header .menu-icon {
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}

.header .menu-icon {
  display: none;
}

.header #show-search:checked ~ .search-icon i::before {
  content: "\f00d";
}

.header .search-box {
  position: absolute;
  height: 100%;
  max-width: calc(100% - 50px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.header #show-search:checked ~ .search-box {
  opacity: 1;
  pointer-events: auto;
}

.search-box input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  color: #fff;
  background: #11235a;
  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: #11235a;
  border: none;
  outline: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.header input[type="checkbox"] {
  display: none;
}
.t-center {
  text-align: center;
}
.head-lg {
  font-size: 25px;
  letter-spacing: 1px;
}
.head-lg span {
  color: #0070c0;
  text-decoration: underline;
}
.bg-white {
  background-color: #ffffff !important;
}
.inspaction-section .container {
  max-width: 1166px

}
.inspaction-section .head-lg{
  margin-bottom: 25px;
}
.inspaction-section .img-fl {
  float: left;
  max-width: 39%;
  margin-right: 25px;
  margin-bottom: 25px;
}
.inspaction-section .img-fl img {
  width: 100%;
}
.inspaction-section .text-fr {
  float: right;
  max-width: 58%;
}
.clear {
  clear: both;
}
.inspaction-section ul {
  margin-bottom: 40px;
}
.inspaction-section ul li {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
}
.inspaction-section p {
  font-size: 14px !important;
  margin-bottom: 10px !important;
}
.inspaction-section b {
  font-weight: 700;
  font-family: math;
  font-size: 18px;
}
/* Dropdown Menu code start */
.content .links ul {
  position: absolute;
  background: #11235a;
  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;
}

.dummy-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: -1;
  padding: 0 20px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.dummy-text h2 {
  font-size: 45px;
  margin: 5px 0;
}

/* header css */

/* banner css  */
.banner.slider .slick-slide {
  border: 0;
  z-index: 1;
  height: 70vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: flex;
  align-items: center;
}

.banner.slider .slick-slide:before {
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}

.banner.slider .slick-slide h1 {
  font-size: 60px;
  font-weight: 700;
}

.banner.slider .slick-slide p {
  margin: 0 0 15px;
}

.banner.slider .slick-slide.text-left:before {
  background: linear-gradient(to left, rgba(249, 245, 245, 0) 20%, #596fb7);
}

.banner.slider .slick-slide.text-right:before {
  background: linear-gradient(to right, rgba(249, 245, 245, 0) 20%, #596fb7);
}

.slick-arrow {
  width: 50px;
  height: 50px;
  font-size: 0;
  border-radius: 50%;
  border: 2px solid white;
  background-color: #11235ac7;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(-50%);
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-next {
  left: auto;
  right: 5%;
  transform: translate(50%);
}

.slick-arrow::after {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  display: block;
  transform: translateX(2px) rotate(-45deg);
}

.slick-next::after {
  border-top: unset;
  border-left: unset;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateX(-2px) rotate(-45deg);
}

.slick-dots {
  text-align: left;
  position: absolute;
  top: calc(50% - 15px);
}

.slick-dots li {
  width: 15px;
  height: 30px;
  display: block;
  margin: 0 0 5px;
  background: #000000;
  transition: all 0.5s ease;
  cursor: pointer;
}

.slick-dots li.slick-active {
  width: 25px;
}

.slick-dots li button {
  display: none;
}

.simple-banner {
  font-size: 0;
}
.simple-banner img {
  width: 100%;
}
.ban_sec {
  width: 100%;
  padding: 120px 15px;
  background-size: cover;
}
.ban_img {
  width: 100%;
  position: relative;
}
.ban_img img {
  width: 100%;
}

.ban_text strong {
  font: 800 62.22px/70px "Montserrat", sans-serif;
  color: #fff;
  text-transform: uppercase;
}
.ban_text strong span {
  font: 400 44.44px/52px "Montserrat", sans-serif;
  letter-spacing: 3px;
}
.ban_text p {
  font: 400 25px/30px "Montserrat", sans-serif;
  color: #fff;
  margin: 7px 0 25px;
}
.btn-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* banner css  */
.tow-column-section .title-row,
.title-row {
  width: 100%;
  flex: 0 0 100%;
  text-align: center;
  margin-bottom: 30px;
}
.title-row h2 {
  font-size: 50px;
  line-height: 1.2;
  color: #000000;
}
.title-row p {
  font-size: 30px;
  line-height: 1.2;
  color: #000000;
}
/* Tow column section */
.tow-column-section {
  padding: 150px 15px 135px;
  background-color: #eef5ff;
}

.tow-column-section > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.tow-column-section > div > div {
  width: 48%;
  flex: 0 0 48%;
}

.logos-section h2 ,
.tow-column-section h2 {
  font-size: 45px;
  color: #11235a;
  line-height: 1.3;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.tow-column-section .right-col {
  border: 2px solid #000;
  box-shadow: 0px 0px 3px #000;
  background-color: #3e3e3e;
  min-height: 400px;
}
.tow-column-section .right-col.full-img {
  min-height: auto;
}

.tow-column-section .right-col img {
  width: 100%;
}
.list-i {
  list-style-type: circle;
  padding-left: 20px;
  margin-bottom: 40px;
}
.list-i li {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1;
}

.tow-column-section p {
  font-size: 18px;
  line-height: 1.3;
  color: #000000de;
  margin-bottom: 24px;
}

.simple-text {
  padding: 60px 15px 75px;
}
#whatwedo{
  padding: 180px 15px 75px;
  margin-top: -100px;
  z-index: -2;
  position: relative;
}
.simple-text .left-col {
  width: 100%;
  flex: 0 0 100%;
}

/* Gird Section */
.gird-section {
  padding: 160px 15px;
  position: relative;
  overflow: hidden;
}

.gird-section::after {
  content: "";
  width: 300%;
  height: 300%;
  position: absolute;
  top: -90%;
  left: -90%;
  background-image: url(../images/g-bg-img.png);
  z-index: 0;
  opacity: 0.4;
  -webkit-animation: rotate 90s normal linear infinite;
  animation: rotate 90s normal linear infinite;
}

.gird-section .grid-inner {
  display: flex;
  background-color: #fff;
  box-shadow: 0px 0px 7px 2px #00000040;
  border-radius: 18px;
  overflow: hidden;
  max-width: 1150px;
  margin: 0 auto 15px;
  position: relative;
  z-index: 1;
}

.grid-inner .c-left {
  font-size: 0;
  min-height: 446px;
  width: 50%;
  overflow: hidden;
  border-right: 4px solid #ffffff;
}

.grid-inner .c-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gird-section .grid-inner .c-right {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 50%;
  border-left: 6px solid #11235a;
}

.tow-col-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
}

.gird-section .g2-inner {
  width: 50%;
  flex-direction: column;
  aspect-ratio: 1/1;
}

.gird-section .g2-inner .c-left {
  border-bottom: 4px solid #ffffff;
}

.gird-section .g2-inner .c-left,
.gird-section .g2-inner .c-right {
  width: 100%;
  border-left: none;
  border-right: none;
  transition: 0.9s all ease-in-out;
  height: calc(100% + 4px);
  aspect-ratio: 1/1;
}

.gird-section .g2-inner .c-right {
  margin-bottom: calc(-100% - 8px);
  background-color: #ffffff;
  transition: 0.9s all ease-in-out;
  border-top: 6px solid #11235a;
}

.gird-section .g2-inner:hover .c-right {
  margin-bottom: calc(0% + 14px);
}

.gird-section .g2-inner:hover .c-left {
  margin-top: calc(-100% + 4px);
}

.footer {
  background-color: #24262b;
  padding: 70px 0;
}

.footer .row {
  display: flex;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #596fb7;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

.footer-col .social-links {
  display: flex;
}

.contact-links {
  padding: 0 0 15px;
}

ul.contact-links li a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.contact-links a i {
  padding: 2px;
  border: 1px solid #fff;
  width: 28px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-section {
  padding: 60px 0;
  background-color: #eef5ff;
}

.social-section .social-inner {
  display: flex;
  gap: 30px;
}

.social-section .social-inner small {
  font-size: 14px;
  z-index: 0;
}

.social-section .social-inner .col-left {
  width: 40%;
  background: #192e41;
  background-color: #5d72b8;
  color: #fff;
  font-size: 32px;
  line-height: 36px;
  height: 596px;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-top: 15px;
  margin-left: 15px;
}

.social-section .social-inner .col-left::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #192e41;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-14px, -14px);
}

.social-section .social-inner .col-left .the-text {
  position: relative;
}

.social-section .social-inner .col-left .the-text::before {
  content: "";
  width: 58px;
  height: 53px;
  background-image: url(../images/blockquote-white.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -56px;
  left: -25px;
}

.social-section .social-inner .col-left a {
  font-size: 28px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -1px;
}

.social-section .social-inner .col-right {
  width: 58%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 35px;
  color: #ffffff;
}

.social-section .social-inner .col-right {
  color: #ffffff;
}

.social-section .social-inner .col-right h2 a {
  color: #ffffff;
  margin-top: 65px;
  font-size: 45px;
}

.client-logos {
  padding: 70px 0;
  background-color: #ffffff;
}
.client-logos img {
  width: 100%;
}

.client-logos ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 10px;
  max-width: 874px;
  width: 100%;
  margin: 0 auto;
}

.client-logos ul li {
  width: 24%;
  text-align: center;
}

.client-logos .bottom-text {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.employee-section {
  padding: 100px 0;
  text-align: center;
}

.employee-section h2 {
  font-size: 38px;
  line-height: 1.4;
  color: #11235a;
  margin-bottom: 20px;
}

.employee-section p {
  font-size: 18px;
  line-height: 1.4;
  color: #11235a;
  margin-bottom: 30px;
}

.employee-section .btn {
  margin: 0 auto;
}

.tc-card {
  padding: 20px 30px;
  background: #23005f;
  margin: 0 10px;
  min-height: 475px;
}
.black-cards .tc-card {
  background-color: #24262b;
  min-height: 565px;
}
.employee-section .tc-card .c-img {
  max-width: 200px;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 0 auto;
}

.employee-section .tc-card .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.employee-section .tc-card h3 {
  font-size: 27px;
  margin: 20px 0 10px;
  color: #fff;
}

.employee-section .tc-card p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0px 0 10px;
  color: #fff;
  min-height: 135px;
}

.employee-section .slick-arrow {
  transform: translate(-280%);
}

.employee-section .slick-next {
  transform: translate(280%);
}

.full-image .tc-card .c-img {
  overflow: hidden;
  aspect-ratio: 2/1.5;
  max-width: 100%;
  width: 100%;
  border-radius: 0;
}
.contact-banner {
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.56) 0%,
      rgba(0, 0, 0, 0.56) 100%
    ),
    url(https://steinolsolutions.com/wp-content/uploads/2023/03/Lifting.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 115px 15px;
}

.contact-banner h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  font-family: "Playfair Display";
}

.contact-banner ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 125px;
}

.contact-banner ul li a {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-family: "Oswald";
  text-transform: uppercase;
}

.contact-banner li {
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  font-weight: 500;
}

.contact-us {
  padding: 50px 15px;
  background-color: #eef5ff;
}

.contact-us .box-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
  padding: 50px 0;
  flex-wrap: wrap;
}

.contact-us .box-wrapper .box {
  max-width: 25%;
  width: 100%;
}

.contact-us .box-wrapper .box h3 {
  color: #333333;
  font-size: 21px;
  line-height: 1.8em;
  font-weight: 500;
  font-family: "Oswald";
}

.contact-us .box-wrapper .box p {
  font-size: 19px;
  line-height: 1.8em;
  color: #0070c0;
  font-weight: 500;
  font-family: "Oswald";
}

.contact-us .box-wrapper .box a {
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 300;
  color: #333333;
  display: block;
}

.contact-us .contact-form-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.contact-us .contact-form-wrapper .contact-form-left,
.contact-us .contact-form-wrapper .contact-form-right {
  max-width: 49%;
  width: 100%;
}

.contact-us .contact-form-wrapper .contact-form-left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  flex-direction: column;
}

.contact-us .contact-form-wrapper .contact-form-left h3 {
  font-size: 1.75rem;
  line-height: 1.5em;
  color: #333333;
  margin-bottom: 20px;
  font-family: "Playfair Display";
  font-weight: 900;
}

.contact-us .contact-form-wrapper .contact-form-left h3 span {
  font-weight: 300;
  color: #000000;
}

.contact-us .contact-form-wrapper .contact-form-left p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
  color: #333333;
}

.contact-us .contact-form-wrapper .contact-form-left p {
  padding-bottom: 20px;
}

.contact-us .contact-form-wrapper .contact-form-left .social-links {
  max-width: 130px;
  width: 100%;
}

.contact-us .contact-form-wrapper .contact-form-left .social-links ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-us .contact-form-left .social-links ul i {
  color: #0070c0;
  font-size: 40px;
  font-weight: 500;
}

.contact-us .contact-form-wrapper .contact-form-right form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}

.contact-us .contact-form-wrapper .contact-form-right {
  padding: 60px 40px;
  background-color: #ffffff;
  box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
}

.contact-us .contact-form-wrapper .contact-form-right form input,
.contact-us .contact-form-wrapper .contact-form-right form textarea {
  border: none;
  border-bottom: 1px solid #dddddd;
  padding: 16px;
  margin-bottom: 18px;
  width: 100%;
  resize: none;
}

.contact-us .contact-form-wrapper .contact-form-right form input::placeholder,
.contact-us
  .contact-form-wrapper
  .contact-form-right
  form
  textarea::placeholder {
  font-size: 18px;
  line-height: 1.1em;
  color: #333333;
  font-family: "Roboto";
}

input#form-btn {
  margin-left: auto;
  background-color: #c00000;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1em;
  max-width: 137px;
}

.our-services .container {
  flex-direction: row-reverse;
  margin-bottom: 73px;
}
.our-services .container .right-col {
  max-width: 440px;
  font-size: 0;
}
.our-services .container .left-col {
  width: 58%;
  flex: 0 0 58%;
}
.our-services .container h2 {
  font-size: 27px;
  font-family: "Varela Round";
  text-decoration: underline;
}
.our-services .container p {
  font-size: 16px;
}


.tab-content {
  display: none;
  background: transparent;
  color: white;
  padding: 15px;
  margin-top: 25px;
}

.tab-content.current {
  display: inherit;
}
.tab-content img{
  width: 100%;
}
.link-list{
  display: flex;
  align-items: center;
}
.projects_select {
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  color: white;
  background: #11235a;
  padding: 12px 10px;
  width: 25%;
  cursor: pointer;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 735px) {
  .link-list{
    flex-direction: column;
  }
  .projects_select {
    width: 100%;
    margin: 0 0 1px;
    float: none;
  }
  .tab-content {
    margin-top: 25px;
  }
}

.projects_select.current {
  font-weight: 500;
  position: relative;
  color: #333333;
  background: #FFF;
}

.projects_select.current:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: #FFF;
  border-width: 20px;
  margin-left: -20px;
  z-index: 101;
}
@media screen and (max-width: 735px) {
  .projects_select.current:after {
    display: none;
  }
}
@media (min-width: 768px) {
  .responsive-tabs > input:checked + label + section {
    display: block;
    margin: 30px 0;
  }
}
.responsive-tabs > label {
  position: relative;
  cursor: pointer;
  padding: 20px;
  font-weight: normal;
  margin: 0;
  display: block;
  transition: background-color 0.5s linear, color 0.5s linear;
}
@media (min-width: 768px) {
  .responsive-tabs > label {
    display: inline-block;
    padding: 12px 24px;
    margin-left: -2px;
    font-size: 18px;
    font-weight: 700;
  }
}
.responsive-tabs > label{
  border-bottom: 1px solid #000;
  
}
.responsive-tabs > label::after {
  content: '';
  position: absolute;
  top: 26px;
  right: 25px;
  border-color: #4d4d4d transparent transparent transparent;
  border-style: solid;
  border-width: 5px;
  /* Flipping arrow
			transform: rotateY(180deg);
			transition: transform 0.3s linear; */
  transition: opacity 0.5s linear;
}
@media (min-width: 768px) {
  .responsive-tabs > label::after {
    content: none;
  }
}
.responsive-tabs > section {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
  width: 100%;
  background-color: transparent;
  display: block;
}
@media (min-width: 768px) {
  .responsive-tabs > section {
    float: left;
    display: none;
  }
}

.logos-section .item{
  min-height: 190px;
  padding: 16px;
  display: flex;
  align-items: center;
    justify-content: center;
}
.logos-section{
  padding: 90px 0;
}
.logos-section h2{
  text-align: center;
}

.search-section  {
  background-color: #eee;
  color: #a1a1a1;
  padding: 80px 0;
}
.search-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.search-section  .heading {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.search-section  .searchInputWrapper {
  position: relative;
}

.search-section  .searchInput {
  width: 60rem;
  height: 2rem;
  padding: 0 1rem; 
  border-radius: 2rem;
  border: none;
  transition: transform 0.1s ease-in-out;
}

.search-section  .searchInput::placeholder {
  color: #a1a1a1;
}

/* hide the placeholder text on focus */
.search-section  .searchInput:focus::placeholder {
  text-indent: -999px
}

.search-section .searchInput:focus {
  outline: none;
  transform: scale(1.1);
  transition: all 0.1s ease-in-out;
}

.search-section .searchInputIcon {
  position: absolute;
  right: 0.8rem;
  top: 0.5rem;
  color: #a1a1a1;
  transition: all 0.1s ease-in-out;
}

.search-section .container:focus-within > 
.search-section .searchInputWrapper > .searchInputIcon {
  right: 0.2rem;
}
header .social-links{
  display: flex;
  gap: 9px;
  margin-left: 15px;
}
header .social-links li,
header .social-links a{
  font-size: 20px;
  color: #fff;
}
.bottom-footer{
  padding: 16px 0 0px;
  border-top: 1px solid #fff;
  margin-top: 25px;
  text-align: center;
}
.bottom-footer p a,
.bottom-footer p{
  font-size: 14px;
  color: #ffffff47;
}
.bottom-footer p a{
  color: #ffffff;
  margin-left: 5px;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }

  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }

  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
