@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Cabin", sans-serif;
  font-weight: 400;
  color: #333333;
  background: #FFFFFF;
  overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
}

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

a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #0b5798;
}

:focus {
  outline: none !important;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  max-width: 100%;
}

.form-col {
  position: relative;
  margin-bottom: 15px;
}

.form-col i {
  font-size: 14px;
  color: #000;
  position: absolute;
  top: 17px;
  right: 18px;
}

.form-col:has(textarea) i {
  font-size: 14px;
  color: #000;
  position: absolute;
  top: 20px;
  right: 18px;
}

label {
  display: inline-block;
}

.checkbox label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  color: #383838;
}

.checkbox label {
	height: auto;
}

.form-col-btn .btns {
	padding: 16px 35px;
	height: auto;
}
.form-col-btn .btns input {
	border: none;
}

.select {
  position: relative;
}

.select::after {
  content: "\e91b";
  font-family: "Syd";
  color: #000;
  font-size: 14px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 18px;
  pointer-events: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  border: #e3e3e3 1px solid;
  padding: 9px 14px;
  font-family: "Cabin", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: #6c6b6b;
}

select:focus,
textarea:focus {
  border-color: #309A98;
}

textarea {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  border: #e3e3e3 1px solid;
  transition: 0.2s ease all;
  resize: none;
  padding: 9px 14px;
  font-family: "Cabin", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: #6c6b6b;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  border: #e3e3e3 1px solid;
  outline: none;
  padding: 9px 14px;
  font-family: "Cabin", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: #6c6b6b;
  transition: 0.2s ease all;
}

[type="text"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="email"]:focus,
[type="month"]:focus,
[type="number"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="url"]:focus,
[type="week"]:focus,
[type="date"]:focus {
  border-color: #309A98;
}

select,
input {
  height: 50px;
}

textarea {
  height: 70px;
}

input::-webkit-input-placeholder {
  color: #707070;
  opacity: 1;
}

textarea::placeholder,
input::placeholder {
  font-family: "Cabin", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: #6c6b6b;
  opacity: 100;
}

[type="submit"] {
  border: 1px solid #292929;
  outline: none;
  padding: 13px 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  color: #292929;
  border-radius: 0px;
  transition: 0.2s ease all;
  background: #fff;
  text-align: center;
  display: inline-block;
}

[type="submit"]:hover {
  background: #ea3319;
}

@media (min-width: 768px) {
  .form-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .form-col {
    width: 100%;
    margin-bottom: 20px;
  }
	
	.form-col i {
		top: 30px;
	}

  .form-col-6 {
    width: calc(50% - 10px);
  }

  select {
    height: 78px;
    padding: 20px;
  }

  [type="text"],
  [type="date"],
  [type="datetime"],
  [type="datetime-local"],
  [type="email"],
  [type="month"],
  [type="number"],
  [type="password"],
  [type="search"],
  [type="tel"],
  [type="url"],
  [type="week"],
  [type="date"] {
    height: 78px;
    padding: 20px;
  }

  textarea {
    height: 145px;
    padding: 20px;
  }
}

.btns {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.1578947368421053em;
  font-style: normal;
  font-weight: bold;
  color: #FFFFFF;
  text-transform: capitalize;
  padding: 15px 58px 15px 20px;
}

.btns::after {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  background: #FFFFFF;
  border-radius: 50%;
  content: "\e907";
  font-family: 'Syd';
  font-size: 16px;
  line-height: 1;
  color: #1F485F;
}

.primary-btn {
  background: #1F485F;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.12);
  border-radius: 30px;
}

.primary-btn:hover {
  background: #267877;
}



h1 {
  font-weight: 400;
  font-size: 32px;
  color: #fff;
  text-transform: capitalize;
}

h2 {
  font-size: 28px;
  line-height: 1.1428571428571428em;
  font-weight: 700;
  color: #000000;
}

p {
  font-size: 16px;
  line-height: 1.412em;
  font-weight: 400;
  font-style: italic;
  margin: 0;
}

.container {
  max-width: 100%;
  padding: 0 20px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 35px;
  }

  p {
    font-size: 17px;
  }

  .btns {
    font-size: 17px;
  }
}

@media (min-width: 1200px) {
  h2 {
    font-size: 42px;
  }

  .btns {
    font-size: 19px;
    padding: 16px 80px 16px 35px;
  }
}

@media (min-width: 1366px) {
  .container {
    position: relative;
    max-width: 1345px;
    margin: 0 auto;
    padding: 0 15px;
  }
}


/* Icons here */
@font-face {
  font-family: 'Syd';
  src:
    url('../icons/Syd.ttf?dfnvhp') format('truetype'),
    url('../icons/Syd.woff?dfnvhp') format('woff'),
    url('../icons/Syd.svg?dfnvhp#Syd') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Syd' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-1:before {
  content: "\e900";
}

.icon-2:before {
  content: "\e901";
}

.icon-3:before {
  content: "\e902";
}

.icon-4:before {
  content: "\e903";
}

.icon-5:before {
  content: "\e904";
}

.icon-6:before {
  content: "\e905";
}

.icon-7:before {
  content: "\e906";
}

.icon-8:before {
  content: "\e907";
}

.icon-9:before {
  content: "\e908";
}

.icon-10:before {
  content: "\e909";
}

.icon-11:before {
  content: "\e90a";
}

.icon-12:before {
  content: "\e90b";
}

.icon-13:before {
  content: "\e90c";
}

.icon-14:before {
  content: "\e90d";
}

.icon-15:before {
  content: "\e90e";
}

.icon-16:before {
  content: "\e90f";
}

.icon-17:before {
  content: "\e910";
}

.icon-18:before {
  content: "\e911";
}

.icon-19:before {
  content: "\e912";
}

.icon-20:before {
  content: "\e913";
}

.icon-21:before {
  content: "\e914";
}

.icon-22:before {
  content: "\e915";
}

.icon-23:before {
  content: "\e916";
}

.icon-24:before {
  content: "\e917";
}

.icon-25:before {
  content: "\e918";
}

.icon-26:before {
  content: "\e919";
}

.icon-27:before {
  content: "\e91a";
}

.icon-28:before {
  content: "\e91b";
}

.icon-29:before {
  content: "\e91c";
}

.icon-30:before {
  content: "\e91d";
}

.icon-31:before {
  content: "\e91e";
}

.icon-32:before {
  content: "\e91f";
}

/* Icons End here */



/* header css start */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: 0.3s;
}

.header.sticky {
  background: #FFFFFF;
  box-shadow: 0 0 15px #267877a2;
}

.header.sticky .top-header {
  margin-top: -39px;
  margin-bottom: 0;
}

.header.sticky .header-wrapper {
  padding: 12px 0;
}

.top-header {
  position: relative;
  transition: 0.3s linear;
  padding: 10px 0 15px 0;
  margin-bottom: 10px;
}

.top-header::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/top-header-shape.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

.top-header-flex {
  display: flex;
  justify-content: flex-end;
}

.top-header ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.top-header ul li:first-child {
  display: none;
}

.top-header ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1;
  color: #FFFFFF;
  font-style: normal;
  font-weight: 700;
}

.top-header ul li a {
  color: #FFFFFF;
}

.top-header ul li p {
  font-size: 14px;
  font-style: normal;
}

.header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

.logo a {
  display: block;
  max-width: 125px;
}

.header-right {
  display: flex;
  align-items: center;
}

.menu-bar {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99;
  height: 100%;
  width: 300px;
  background: #267877;
  opacity: 0;
  transition: 0.4s;
  padding: 30px 0 0 30px;
}

.menu-bar.show {
  left: 0;
  opacity: 1;
}

.menu-bar li {
  margin-bottom: 15px;
}

.menu-bar li a {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #FFFFFF;
}

.toggle-btn {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 7px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  padding: 0;
}

.toggle-btn span {
  width: 100%;
  height: 3px;
  background: #267877;
  border-radius: 2px;
  transition: 0.2s ease-in-out;
}

.toggle-btn.active {
  row-gap: 0;
}

.toggle-btn.active span:first-child {
  transform: rotate(45deg) translate(1px, 1px);
}

.toggle-btn.active span:nth-child(2) {
  display: none;
}

.toggle-btn.active span:last-child {
  transform: rotate(-45deg) translate(1px, -1px);
}

@media (min-width: 768px) {
  .header.sticky .top-header {
    margin-top: -41px;
  }

  .header.sticky .logo {
    margin-top: 0;
  }

  .top-header {
    margin-bottom: 0;
  }

  .top-header ul {
    gap: 0;
  }

  .top-header ul li {
    font-size: 16px;
    border-right: 1px solid rgba(255, 255, 255, 26%);
    padding: 0 20px;
  }

  .top-header ul li:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .logo {
    transition: 0.3s linear;
    margin-top: -30px;
  }

  .logo a {
    max-width: 170px;

  }

  .header-right {
    margin-top: 10px;
  }

  .menu-bar {
    width: 70%;
  }

  .menu-bar li a {
    font-size: 18px;
  }

  .search-bar {
    padding-right: 35px;
  }
}

@media (min-width: 1200px) {
  .header {
    padding: 0;
  }

  .top-header {
    overflow-x: hidden;
    padding: 16px 0;
  }

  .top-header::after {
    right: -15px;
    width: calc(100% + 15px);
  }

  .header.sticky .top-header {
    margin-top: -54.5px;
  }

  .top-header ul li {
    gap: 15px;
    padding: 0 30px;
  }

  .top-header ul li:first-child {
    display: flex;
    padding-left: 0;
  }

  .top-header ul li p {
    font-size: 16px;
  }

  .top-header ul li a:hover {
    text-decoration: underline;
  }

  .header.sticky .header-wrapper {
    padding: 15px 0;
  }

  .logo a {
    max-width: 255px;
  }

  .header.sticky .logo a {
    max-width: 200px;
  }

  .menu-bar {
    position: relative;
    left: unset;
    top: unset;
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    gap: 20px;
    opacity: 1;
    padding: 0;
  }

  .menu-bar li {
    margin-bottom: 0;
  }

  .menu-bar li a {
    position: relative;
    color: #000000;
    transition: color 0.2s;
    padding: 4px 18px;
  }

  .menu-bar li a span {
    display: block;
  }

  .menu-bar li a::before,
  .menu-bar li a::after,
  .menu-bar li a span::before,
  .menu-bar li a span::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid #309A98;
    opacity: 0;
    transition: 0.3s ease;
  }

  .menu-bar li a:hover,
  .menu-bar li a.active {
    color: #309A98;
  }

  /* Top-left */
  .menu-bar li a::before {
    top: 0;
    left: 0;
    border-bottom: none;
    border-right: none;
  }

  /* Top-right */
  .menu-bar li a::after {
    top: 0;
    right: 0;
    border-bottom: none;
    border-left: none;
  }

  /* Bottom-left */
  .menu-bar li a span::before {
    bottom: 0;
    left: 0;
    border-top: none;
    border-right: none;
  }

  /* Bottom-right */
  .menu-bar li a span::after {
    bottom: 0;
    right: 0;
    border-top: none;
    border-left: none;
  }

  .menu-bar li a:hover::before,
  .menu-bar li a:hover::after,
  .menu-bar li a.active::before,
  .menu-bar li a.active::after,
  .menu-bar li a:hover span::before,
  .menu-bar li a:hover span::after,
  .menu-bar li a.active span::before,
  .menu-bar li a.active span::after {
    opacity: 1;
  }

  .toggle-btn {
    display: none;
  }
}

@media (min-width: 1366px) {
  .top-header ul li {
    padding: 0 45px;
  }
}

/* header css end */

/* banner start */
.banner {
  position: relative;
  padding: 50px 0 80px;
  margin: 105px 0 0 0;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.banner-content {
  position: relative;
  max-width: 846px;
  background: linear-gradient(90.14deg, rgba(6, 78, 105, 0) 0.14%, rgba(6, 78, 105, 0.67) 28.1%, #064E69 48.1%, rgba(6, 78, 105, 0.62) 71.62%, rgba(6, 78, 105, 0) 99.89%);
  padding: 20px 15px;
}

.banner-content::before,
.banner-content::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, rgba(217, 217, 217, 0) 0%, #00A9E8 46.5%, rgba(115, 115, 115, 0) 100%);
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.banner-content::after {
  top: unset;
  bottom: 0;
}

.banner-content h1 {
  font-size: 32px;
  line-height: 1.1538461538461537em;
  font-weight: 700;
  color: #FFFFFF;
}

.banner-content p {
  line-height: 1.25em;
  color: #FFFFFF;
  font-weight: 500;
  font-style: normal;
  margin: 12px 0 0 0;
}

@media (min-width: 768px) {
  .banner {
    padding: 80px 0 100px 0;
    margin: 95px 0 0 0;
  }

  .banner-content {
    padding: 40px;
  }

  .banner-content::before,
  .banner-content::after {
    height: 4px;
  }

  .banner-content h1 {
    font-size: 48px;
  }
}

@media (min-width: 1200px) {
  .banner {
    padding: 150px 0 210px 0;
    margin: 132px 0 0 0;
  }

  .banner-content h1 {
    font-size: 48px;
  }

  .banner-content p {
    font-size: 20px;
    margin: 18px 0 0 0;
  }
}


.card-icon-text {
  margin-top: -40px;
}

.card-icon-text .row {
  justify-content: center;
  gap: 20px 0;
}

.card-icon-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 0px 65px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 20px;
  padding: 15px;
}

.card-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(48, 154, 152, 0.2);
  border-radius: 50%;
  font-size: 35px;
  line-height: 1;
  color: #309A98;
}

.card-icon-detl {
  width: calc(100% - 70px);
  padding-left: 20px;
}

.card-icon-detl h5 {
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 500;
  color: #143C50;
  margin: 0 0 12px 0;
}

.card-icon-detl a {
  font-size: 20px;
  line-height: 1.1333em;
  font-weight: 700;
  color: #309A98;
}

@media (min-width: 768px) {
  .card-icon-text {
    margin-top: -55px;
  }
}

@media (min-width: 1200px) {
  .card-icon-text {
    margin-top: -70px;
  }

  .card-icon-inner {
    padding: 30px;
  }

  .card-icon-box {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }

  .card-icon-detl {
    width: calc(100% - 80px);
  }

  .card-icon-detl h5 {
    font-size: 20px;
    margin: 0 0 12px 0;
  }

  .card-icon-detl a {
    font-size: 25px;
  }

  .card-icon-detl a:hover {
    text-decoration: underline;
    color: #1F485F;
  }
}


.half-image-half-text {
  margin: 50px 0;
}

.half-image-text-flex {
  gap: 30px 0;
}

.half-image-col {
  position: relative;
  padding: 0 0 50px 0;
}

.half-image-one img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 45px;
}

.half-image-two {
  position: absolute;
  bottom: 0;
  right: 15px;
  width: 250px;
  background: #FFFFFF;
  border-radius: 45px;
  padding: 7px;
  overflow: hidden;
}

.half-image-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 45px;
}

.float-logo {
  position: absolute;
  bottom: 140px;
  right: 75px;
  width: 70px;
  height: 70px;
}

.half-text-col p {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  margin: 15px 0;
}

.half-text-col span {
  display: block;
  color: #2D3437;
  margin: 10px 0;
}

.half-text-col ul {
  margin: 15px 0;
}

.half-text-col ul li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3888888888888888em;
  color: #000000;
  padding: 0 0 0 34px;
  margin: 0 0 12px 0;
}

.half-text-col ul li:last-child {
  margin-bottom: 0;
}

.half-text-col ul li::before {
  position: absolute;
  left: 0;
  content: "\e905";
  font-family: 'Syd';
  font-size: 22px;
  line-height: 1;
  color: #309A98;
}

@media (min-width: 768px) {
  .half-image-half-text {
    margin: 80px 0;
  }

  .half-text-col ul {
    margin: 30px 0;
  }
}

@media (min-width: 1200px) {
  .half-image-half-text {
    margin: 120px 0;
  }

  .half-image-text-flex {
    align-items: center;
  }

  .half-text-col {
    margin-left: -25px;
  }

  .half-text-col p {
    font-size: 20px;
    line-height: 28px;
  }

  .half-text-col span {
    font-size: 18px;
    line-height: 26px;
  }

  .half-text-col ul li {
    font-size: 18px
  }

  .half-image-col {
    padding: 0 230px 200px 0;
  }

  .half-image-one img {
    height: 394px;
  }

  .half-image-two {
    right: 65px;
    width: 410px;
    height: 290px;
  }

  .float-logo {
    bottom: 242px;
    right: 180px;
    width: 108px;
    height: 108px;
  }

  .half-text-col h2 {
    font-size: 50px;
  }
}


.column-icon {
  margin: 50px 0;
}

.column-icon__col i {
  font-size: 60px;
  line-height:1;
  color: #309A98;
  margin: 0 0 22px;
  display: block;
}

.column-icon__col.add-icon-new i{
	font-size: 49px;
}

.column-icon__col {
  text-align: center;
  position: relative;
}

.column-icon__col h3 {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px;
  text-transform: capitalize;
}

.column-icon__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px
}

.column-icon__col:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 40px);
  height: 1px;
  background: rgba(48, 154, 152, 0.39);
  bottom: -25px;
}

.column-icon__col:last-child:after {
  display: none;
}

.column-icon__heading {
  margin: 0 0 30px;
}

.column-icon__heading p {
  font-family: 'Cabin';
  margin: 15px 0 0;
}

@media(min-width: 768px) {
  .column-icon__col {
    width: calc(50% - 20px);
  }

  .column-icon__list {
    gap: 40px
  }

  .column-icon__col:before {
    content: "";
    position: absolute;
    right: -21px;
    transform: translate(0, -50%);
    height: calc(100% - 40px);
    width: 1px;
    background: rgba(48, 154, 152, 0.39);
    top: 50%;
  }

  .column-icon__col:last-child:after,
  .column-icon__col:nth-child(3):after {
    display: none;
  }

  .column-icon__col:nth-child(2):before,
  .column-icon__col:nth-child(4):before {
    display: none;
  }

  .column-icon {
    margin: 80px 0;
  }
}

@media(min-width: 1200px) {
  .column-icon__col:after {
    display: none;
  }

  .column-icon__col:before {
    display: block !important;
    height: calc(100% - 52px);
    right: -40px;
  }

  .column-icon__col:last-child:before {
    display: none !important;
  }

  .column-icon__col {
    text-align: left;
    width: calc(25% - 59px);
  }

  .column-icon__list {
    gap: 78px
  }

  .column-icon__heading {
    margin: 0 0 50px;
  }

  .column-icon {
    margin: 120px 0;
  }

  .column-icon__heading p {
    font-size: 20px;
  }
}


/* tab-accordion */

.tab-accordion {
  background: rgba(48, 154, 152, 0.1);
  position: relative;
  z-index: 1;
  padding: 50px 0;
}


.tab-accordion__tabs {
  display: flex;
  margin-bottom: 1rem;
}

.tab-accordion__tab {
  flex: 1;
  padding: 1rem;
  background: #f0f0f0;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
}

.tab-accordion__tab.is-active {
  border-bottom: 2px solid #007bff;
  background: #fff;
}

.tab-accordion__panel {
  border-top: none;
  margin-bottom: 15px;
}

.tab-accordion__panel:last-child {
  margin-bottom: 0;
}

.tab-accordion__panel__toggle {
  width: 100%;
  padding: 0 20px;
  background: #CCF0F0;
  height: 56px;
  border: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: bold;
  display: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  position: relative;
}


.tab-accordion__panel__toggle:after {
  content: "\e916";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%) rotateX(180deg);
  font-family: 'Syd';
  font-weight: normal;
  color: #2C9896;
  font-size: 18px;
  transition: all ease 0.3s;
}

.tab-accordion__panel__toggle i {
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 22px;
  color: #2C9896;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.05);
}

.tab-accordion__panel__toggle.is-active {
  background: #fff;
}

.tab-accordion__panel__toggle.is-active i {
  background: #2C9896;
  color: #fff;
}

.tab-accordion__panel__toggle.is-active:after {
  transform: translate(0, -50%) rotateX(0);
}

.tab-accordion__panel__content {
  display: none;
  padding: 20px;
  background: #fff;
}

.tab-accordion__panel.is-active .tab-accordion__panel__content {
  display: block;
}

.tab-accordion__panel.is-active {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .tab-accordion__tabs {
    display: none;
  }

  .tab-accordion__panel__toggle {
    display: flex;
  }
}

@media (min-width: 1200px) {
  .tab-accordion__panel__toggle {
    display: none;
  }

  .tab-accordion__panel {
    display: none;
  }

  .tab-accordion__panel.is-active {
    display: block;
  }
}

.tab-content-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}

.tab-content-wrapper__image {
  padding: 30px 30px 0 0;
  position: relative;
  z-index: 1;
  max-width: 434px;
}


.tab-content-wrapper__image:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: calc(100% - 30px);
  border-radius: 30px;
  background: #309A98;
  z-index: -1;
}

.tab-content-wrapper__image__main {
  aspect-ratio: 2 / 1.63;
  border-radius: 30px;
  overflow: hidden;
}

.tab-content-wrapper__image__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-content-wrapper__text h3 {
  font-size: 24px;
  margin: 0 0 15px;
}

.tab-content-wrapper__text p {
  margin: 0 0 10px;
}

.tab-content-wrapper__text p:last-child {
  margin: 0;
}

.tab-content-wrapper__text .btns {
  margin-top: 20px;
}

.tab-accordion__heading {
  margin: 0 0 30px;
}

.tab-accordion-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.tab-accordion__heading p {
  margin-top: 15px;
  color: #000;
}

@media(min-width: 768px) {
  .tab-content-wrapper__text h3 {
    font-size: 30px;
    line-height: 21px;
    margin: 0 0 28px;
  }

  .tab-accordion__panel__content {
    padding: 35px 30px;
  }

  .tab-accordion__panel__toggle {
    padding: 0 70px 0 30px;
    height: 74px;
  }

  .tab-accordion__panel__toggle:after {
    right: 30px;
  }

  .tab-accordion__panel__toggle i {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }

  .tab-accordion__heading {
    margin: 0 0 40px;
  }
}

@media(min-width: 1200px) {

  .tab-accordion__tabs {
    margin-bottom: 42px;
    gap: 25px;
  }

  .tab-accordion__tab {
    padding: 0 0 18px;
    background: #CCF0F0;
    border: none;
    border-top: 2px solid transparent;
    border-radius: 10px;
    height: 87px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    font-size: 17px;
    transition: all ease 0.3s;
  }

  .tab-accordion__tab i {
    width: 58px;
    height: 58px;
    font-size: 30px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: -29px;
    background: #fff;
    border-radius: 50px;
    background: #fff;
    color: #2C9896;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.3s;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.05);
  }

  .tab-accordion__tab.is-active i {
    background: #2C9896;
    color: #fff;
  }

  .tab-accordion__tab.is-active {
    border-bottom: none;
    border-top: 2px solid #309A98;
    background: #fff;
    border-radius: 0 0 15px 15px;
  }

  .tab-accordion__tab:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 16px;
    background-color: #ffffff;
    height: 18px;
    width: calc(100% - 11px);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    transition: all ease 0.3s;
    z-index: 1;
    opacity: 0;
  }

  .tab-accordion__tab:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 20px;
    background-color: #ccc;
    height: 18px;
    width: calc(100% - 31px);
    transition: all ease 0.3s;
    z-index: -1;
    opacity: 0;
    clip-path: polygon(100% 0, 100% 16%, 50% 100%, 0 16%, 0 0);
    background: linear-gradient(90deg, rgba(48, 154, 152, 0) 0%, rgba(48, 154, 152, 1) 50%, rgba(48, 154, 152, 0) 100%);
  }


  .tab-accordion__tab.is-active:before {
    bottom: -19px;
    opacity: 1;
  }

  .tab-accordion__tab.is-active:after {
    bottom: -16px;
    opacity: 1;
  }

  .tab-accordion__panel__content {
    padding: 0;
    background: transparent;
  }

  .tab-accordion__panel {
    margin-bottom: 0;
  }


  .tab-accordion__panel.is-active {
    background: transparent;
    border-radius: 0;
  }

  .tab-content-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
  }

  .tab-content-wrapper__image {
    padding: 34px 34px 0 0;
    max-width: 434px;
    width: calc(35% - 22px);
  }

  .tab-content-wrapper__text {
    width: calc(65% - 22px);
    max-width: 822px;
  }

  .tab-content-wrapper__text p {
    margin: 0 0 18px;
  }

  .tab-content-wrapper__text .btns {
    margin-top: 10px;
  }

  .tab-content-wrapper__image:after {
    width: calc(100% - 161px);
    height: calc(100% - 48px);
  }

  .tab-accordion {
    padding: 70px 0;
  }

  .tab-accordion__heading {
    margin: 0 0 81px;
  }

  .tab-accordion__heading p {
    font-size: 20px;
  }
}

/* tab-accordion */


/* Footer */

footer {
  position: relative;
  margin-top: 50px;
}

.footer-top {
  background: linear-gradient(96.43deg, #267877 -1.5%, #1F485F 100%);
  border-radius: 20px;
  position: relative;
  padding: 50px 0;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-top__wrapper {
  position: relative;
  z-index: 1;
}

.company-info {
  margin-bottom: 30px;
}

.company-info img {
  width: 200px;
  margin: 0 auto 20px;
}

.company-info p {
  color: #fff;
}

.quick-links {
  margin-bottom: 30px;
}

footer h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  margin-bottom: 23px;
}

footer h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #FFFFFF;
  margin-right: 30px;
}

.quick-links ul li {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  margin-bottom: 15px;
  position: relative;
  padding-left: 28px;
}

.quick-links ul li:last-child {
  margin-bottom: 0;
}

.quick-links ul li a {
  color: #FFFFFF;
  line-height: 21px;
}

.quick-links ul li i {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 18px;
  color: #fff;
}

.follow-us {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.follow-us ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.follow-us ul li a {
  color: #fff;
  font-size: 22px;
}

.map {
  margin-bottom: 20px;
}

.map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 153px;
  border-radius: 10px;
}

.back-to-top {
  padding: 20px 0;
}

.back-to-top-link {
  background: #1F485F;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 17px;
  margin: 0 auto;
}

.footer-nav {
  padding: 25px 0;
  border-top: #CCF0F0 1px solid;
  border-bottom: #CCF0F0 1px solid;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-nav ul li {
  margin-bottom: 0;
}

.footer-nav ul li:last-child {
  margin-bottom: 0px;
}

.footer-nav ul li a {
  font-family: 'Times New Roman Cyr';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
}

.copyright__wrapper {
  max-width: 1170px;
  margin: 0 auto;
  padding: 30px 0 20px;
}

.copyright__wrapper ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: max-content;
  margin-bottom: 15px;
}

.copyright__wrapper ul li {
  margin-right: 38px;
  line-height: 11px;
}

.copyright__wrapper ul li a {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 11px;
  color: #000000;
}

.copyright__wrapper p {
  font-family: 'Times New Roman Cyr';
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 11px;
  color: #000000;
}

@media (min-width:768px) {
  footer {
    margin-top: 70px;
  }

  footer h3 {
    font-size: 30px;
  }

  .footer-top__right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .quick-links {
    width: 242px;
    margin-right: 60px;
    margin-bottom: 0;
  }

  .map-wrapper {
    width: calc(100% - 302px);
  }

  .map {
    margin-bottom: 40px;
  }

  .map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: unset;
    border-radius: 10px;
  }

  .quick-links ul li {
    margin-bottom: 23px;
  }

  .company-info img {
    width: unset;
    margin: 0 auto 40px;
  }

  .back-to-top {
    padding: 30px 0;
  }

  .footer-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-nav ul li {
    margin: 0 11px;
  }

  .copyright__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright__wrapper ul {
    margin: 0;
  }


}

@media (min-width:1200px) {
  footer {
    margin-top: 120px;
  }

  .company-info img {
    margin: 0 0 40px;
  }

  .company-info {
    margin: 0 119px 0 0;
    width: 470px;
  }

  .footer-top__right {
    width: calc(100% - 589px);
    max-width: 695px;
    padding: 47px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-top__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .company-info p {
    font-size: 20px;
    line-height: 27px;
  }

  .map-wrapper {
    max-width: 315px;
  }

  .footer-top {
    padding: 80px 0;
  }

  .footer-nav ul li {
    margin: 0 16px;
  }

  footer a:hover {
    color: #309A98;
  }

  .copyright__wrapper ul li a:hover,
  .footer-nav ul li a:hover,
  .follow-us ul li a:hover,
  .quick-links ul li a:hover {
    color: #5ECECC;
  }

  .back-to-top-link:focus,
  .back-to-top-link:hover {
    color: #fff;
    background: #309A98;
  }

}

.instagram-gallery {
  margin: 50px 0;
}

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

.section-heading h2 {
  margin-bottom: 10px;
}

.instagram-gallery__image {
  position: relative;
  margin: 30px 0;
}

.instagram-gallery__image a {
  width: 100%;
  height: 100%;
  display: block;
}

.instagram-gallery__image i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 60px;
}

.instagram-gallery__image:hover i {
  color: #309A98;
}

.instagram-gallery__image video,
.instagram-gallery__image img {
  border-radius: 30px;
  width: 100%;
  height: 325px;
  object-fit: cover;
}

.group-btn a {
  font-size: 19px;
  line-height: 13px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 20px 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #309A98;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  height: 53px
}

.group-btn a i {
  margin-right: 10px;
}

.group-btn a+a {
  margin-top: 15px
}

.group-btn {
  margin-top: 35px
}

.group-btn a:hover {
  background: #1F485F
}

@media (min-width:768px) {
  .instagram-gallery {
    margin: 50px 0;
  }

  .instagram-gallery-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -30px;
  }

  .instagram-gallery__image {
    margin: 15px;
    width: calc(50% - 30px);
  }

  .group-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .group-btn a {
    width: max-content
  }

  .group-btn a+a {
    margin-top: 0px;
    margin-left: 15px
  }

}

@media (min-width:1200px) {
  .instagram-gallery {
    margin: 120px 0;
  }

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

  .section-heading p {
    font-size: 20px;
  }


  .instagram-gallery__image {
    position: relative;
    margin: 15px;
    width: calc(33.333% - 30px);
  }
}


/* about css start */
.our-team-title {
  text-align: center;
  margin: 0 0 30px;
}

.our-team-title h2 {
  margin: 0 0 6px;
}

.our-team-title p {
  color: #2D3437;
}

.member-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
}

.member-details {
  text-align: center;
}

.member-details h5 {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  text-transform: capitalize;
  color: #000000;
  margin: 15px 0 7px 0;
}

.member-details p {
  color: #2D3437;
}

.member-details ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 7px 0 0 0;
}

.member-details ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #83829C;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
  color: #FFFFFF;
}

.js-team-slider {
  margin: 0 -15px;
  padding: 0 0 65px;
}

.team-slider-col {
  margin: 0 15px;
}

@media (min-width: 768px) {
  .our-team-title {
    margin: 0 0 50px 0;
  }

  .member-image img {
    height: 415px;
  }
}

@media (min-width: 992px) {
  .member-image img {
    height: 365px;
  }
}

@media (min-width: 1200px) {
  .our-team-title p {
    font-size: 20px;
  }

  .member-image img {
    height: 320px;
  }

  .member-details ul {
    padding: 10px 0 0 0;
  }

  .member-details ul li a:hover {
    background: #309A98;
  }

  .js-team-slider {
    padding: 0 0 90px;
  }
}

@media (min-width: 1440px) {
  .js-team-slider {
    padding: 0 75px 90px 75px;
  }
}

/* about css end */

/* service css start */
.service-area {
  margin: 50px 0 0;
}

.service-items {
  display: none;
}

.service-panel {
  position: relative;
  background: rgba(48, 154, 152, 0.05);
  border: 1px solid rgba(48, 154, 152, 0.15);
  border-radius: 20px;
  padding: 25px 15px;
  margin: 0 0 20px;
}

.service-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 274px;
  height: 274px;
  padding: 32px;
  margin: 0 auto;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.service-image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/service-image-border-bg.png) no-repeat center center;
}

.service-text {
  text-align: center;
}

.service-col__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 15px 0 20px 0;
}

.service-col__title span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px dashed #309A98;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: #2C9896;
}

.service-col__title h4 {
  font-size: 25px;
  line-height: 0.7em;
  font-weight: 700;
  text-transform: capitalize;
  color: #000000;
}

.service-text p {
  margin: 10px 0;
}

.service-text p:last-child {
  margin-bottom: 0;
}

.load-more-box {
  text-align: center;
  margin: 30px 0 0;
}

.load-more-box a {
  font-size: 16px;
  line-height: 1.15753em;
  font-weight: 700;
  font-family: 'Cabin';
  color: #FFFFFF;
  background: #309A98;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 16px 35px;
}

@media (min-width: 768px) {
  .service-area {
    margin: 80px 0 0;
  }

  .service-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 30px;
    margin: 60px 0 0;
  }

  .service-panel::before {
    position: absolute;
    content: "";
    top: -45px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: 30px;
    background: url(../images/service-col-border-arrow.png) no-repeat center center;
    background-size: contain;
  }

  .service-items:first-child .service-panel::before {
    display: none;
  }

  .service-items:nth-child(2) .service-panel::before {
    background: url(../images/service-col-border-arrow-first.png) no-repeat center center;
    background-size: contain;
  }

  .service-items.last-visible .service-panel::before {
    background: url(../images/service-col-border-arrow-last.png) no-repeat center center;
    background-size: contain;
  }

  .service-items:nth-child(even) .service-panel {
    flex-direction: row-reverse;
  }

  .service-items:first-child .service-panel {
    margin: 0;
  }

  .service-text {
    width: calc(100% - 274px);
    text-align: left;
    padding-left: 30px;
  }

  .service-col__title h4 {
    font-size: 30px;
  }

  .service-items:nth-child(even) .service-panel .service-text {
    padding-left: 0;
    padding-right: 30px;
  }

  .service-col__title {
    justify-content: flex-start;
    gap: 20px;
    margin: 0 0 20px;
  }

  .load-more-box {
    margin: 40px 0 0;
  }
}

@media (min-width: 1200px) {
  .service-area {
    margin: 120px 0 0;
  }

  .service-panel {
    max-width: 1154px;
    padding: 30px;
    margin: 68px auto 0 auto;
  }

  .service-items:first-child .service-panel {
    margin: 0 auto 0 auto;
  }

  .service-items:nth-child(2) .service-panel,
  .service-items.last-visible .service-panel {
    margin: 74px auto 0 auto;
  }

  .service-panel::before {
    top: -53px;
    height: 38px;
  }

  .service-items:nth-child(2) .service-panel::before,
  .service-items.last-visible .service-panel::before {
    top: -59px;
    height: 44px;
  }

  .service-text {
    padding-left: 90px;
  }

  .service-items:nth-child(even) .service-panel .service-text {
    padding-right: 90px;
  }

  .load-more-box a {
    font-size: 19px;
  }

  .load-more-box a:hover {
    background: #267877;
  }
}

/* service css end */

/* Sanjoy   */
.banner.inner-banner {
  background: linear-gradient(90.03deg,rgba(20, 60, 80, 0.8) 12.98%,rgba(2, 2, 43, 0) 69.96%);
  padding: 50px 0;
}

.inner-banner-bottombg {
  position: absolute;
  bottom: 0;
  left: 0;
}

.inner-banner .banner-content {
  max-width: 762px;
  display: inline-block;
}

.icon-card-wrapper {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.icon-card {
  padding: 30px 20px;
  background: linear-gradient(180deg,
      rgba(44, 152, 150, 0.15) 58.85%,
      rgba(255, 255, 255, 0) 100%);
  border-radius: 19px;
  text-align: center;
}

.icon-card-block {
  margin: 50px 0;
}

.icon-card h3 {
  font-size: 22px;
  line-height: 28px;
  color: #000;
  margin-bottom: 20px;
}

.icon-card h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 21px;
  color: #000;
  margin-bottom: 16px;
}

.icon-card h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  color: #309a98;
}

.icon-card p {
  font-family: 'Cabin';
  color: #2d3437;
}

.icon-card__title__icon {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.icon-card__title__icon img {
  position: relative;
  z-index: 2;
}

.icon-card__title__icon::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 80px;
  height: 80px;
  background: #ccf0f0;
  border-radius: 100%;
}

@media (min-width: 768px) {
  .banner.inner-banner {
    padding: 70px 0;
  }

  .icon-card-block {
    margin: 70px 0;
  }

  .icon-card-wrapper {
    flex-direction: unset;
    flex-wrap: wrap;
    justify-content: center;
  }

  .icon-card {
    width: calc(50% - 10px);
  }
}

@media (min-width: 1200px) {
  .banner.inner-banner {
    min-height: 420px;
    padding: 112px 0;
  }

  .banner.about-banner {
    padding: 85px 0;
  }

  .icon-card-block {
    margin: 120px 0;
  }

  .icon-card h3 {
    font-size: 25px;
    line-height: 32px;
    color: #000;
  }

  .icon-card-wrapper {
    gap: 40px;
  }

  .icon-card {
    width: calc(33.333% - 27px);
  }
}

.contact-block {
  margin: 50px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  gap: 15px;
  background: rgba(48, 154, 152, 0.05);
  border: 1px solid rgba(48, 154, 152, 0.07);
  border-radius: 10px;
}

.contact-info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 15px;
  gap: 15px;
  background: #ffffff;
  box-shadow: 0px 0px 65px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11px);
  border-radius: 20px;
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  background: #309a98;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 25px;
}

.contact-info__details {
  width: calc(100% - 40px);
}

.contact-info__details h4 {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.contact-info__details h4 a {
  font-family: "Cabin", sans-serif;
  color: #000000;
}

.contact-info__details h6 {
  font-weight: 500;
  font-size: 12px;
  line-height: 21px;
  color: #309a98;
}

.contact-form__area {
  width: 100%;
}

.contact-info__wrapper {
  gap: 15px;
  display: flex;
  flex-direction: column;
  margin: 30px 0;
}

.contact-info h2 {
  margin-bottom: 10px;
}

.contact-block__map {
  margin-top: 50px;
}

@media (min-width: 768px) {
  .contact-block {
    margin: 70px 0;
  }

  .contact-block__map {
    margin-top: 70px;
  }
}

@media (min-width: 1200px) {
  .contact-block {
    margin: 120px 0;
  }

  .contact-block__map {
    margin-top: 120px;
  }

  .contact-block__map {
    margin-top: 120px;
  }

  .contact-block__map iframe {
    border-radius: 40px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 36px;
    gap: 0px;
    background: rgba(48, 154, 152, 0.05);
    border: 1px solid rgba(48, 154, 152, 0.07);
    border-radius: 30px;
  }

  .contact-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 30px;
    gap: 25px;
    background: #ffffff;
    box-shadow: 0px 0px 65px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11px);
    border-radius: 20px;
  }

  .contact-info__details h4 {
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    font-style: italic;
  }

  .contact-info__details h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #309a98;
  }

  .contact-info__details h4 a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
  }

  .contact-block__flex {
    display: flex;
    justify-content: space-between;
  }

  .contact-form {
    width: calc(100% - 635px);
    max-width: 684px;
    margin-left: 93px;
  }

  .contact-info {
    width: 542px;
  }

  .contact-form h2 {
    margin-bottom: 30px;
  }

  .contact-form p {
    font-size: 18px;
    line-height: 26px;
  }

  .contact-form__area {
    margin-top: 40px;
  }

  .contact-info__wrapper {
    gap: 30px;
  }

  .contact-info__icon {
    width: 80px;
    height: 80px;
    font-size: 30px;
  }

  .contact-info__details {
    width: calc(100% - 105px);
  }

  .contact-info__details h6 {
    margin-bottom: 6px;
  }

  .contact-info p {
    max-width: 470px;
  }
}

.testimonial{
  display: none;
}
.terms-condition{
	padding: 50px 0 0 0;
}

.terms-condition p{
	margin-bottom:15px;
}
.terms-condition h4{
	margin-bottom:5px;
	font-weight: 600;
}

@media (min-width: 768px) {
.terms-condition{
	padding: 70px 0 0 0;
}
}


@media (min-width: 1200px) {
.terms-condition{
	padding: 120px 0 0 0;
}
}

.up-file-wrap {
	position: relative;
}

.up-file-wrap p {
	font-size: 14px;
	line-height: 1.2em;
	font-style: normal;
	color: #309a98;
	margin: 15px 0 0;
}

.up-file-wrap p b {
	color: red;
}

.up-file-wrap span {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.upload-btn {
	border: none;
	max-width: 265px;
	text-overflow: ellipsis;
	white-space: nowrap;
    overflow: hidden;
	padding: 15px 30px;
	cursor:pointer;
}

.upload-btn p {
	font-size: 17px;
	line-height: 1.1578947368421053em;
    font-style: normal;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: capitalize;
	margin: 0;
}

.upload-btn.file-added {
	background: #309a98;
}

.upload-btn:after {
	display: none;
}

.checkbox span {
	margin: 0;
}

@media (min-width: 768px) {
	.upload-btn {
		max-width: 360px;
	}
	
	.up-file-wrap p {
		font-size: 15px;
	}
	
	.upload-btn p {
	font-size: 19px;
}
	.wpcf7 form.invalid .wpcf7-response-output{
		border-color: red !important;
	}