* {
    margin: 0;
    padding: 0;
    font-family: "Exo", sans-serif !important;
    font-optical-sizing: auto;
    line-height: normal;
    font-style: normal;
    /*color: #000000 !important;*/
    font
}

.header {
  /* min-height: 100vh; */
  width: 100%;
  background-image: linear-gradient(rgba(255, 255, 255)), (rgba(255,255,255));
  background-position: center;
  /*background-size: cover;*/
  position: relative;

}

nav {
  display: flex;
  padding: 10px 2px;
  justify-content: space-between;
  align-items: center;

}

 nav img {
  width: 150px;

} 

.nav-links {
  flex: 1;
  text-align: right;
  margin-top: 85px;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.nav-links ul li a {
  color: hsl(258, 94%, 19%);
  text-decoration: none;
  font-size: 23px;
}

.nav-links ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background: hsl(258, 94%, 19%);
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  
  
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #000;
}

.separator::before {
  margin-right: .25em;
  flex: 0;  
}

.separator::after {
  margin-left: .25em;
}

.separator > span {
  position: relative;
  z-index: 1;
  padding: 0 .25em;
  background: #fff; 
}

.text-about{
  font-size: 20px;
  color: #b32b2b;
  letter-spacing: 0em;
}

/* .hero-btn{
    display: inline-block;
    text-decoration: none;
    color:  hsl(258, 94%, 19%);
    border: 1px solid hsl(258, 94%, 19%);
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    justify-items: center;
    align-items: center;
    margin-top: 5px;
    margin-left: 900px;
} */
.hero-btn:hover {
    border: 1px solid hsl(258, 94%, 19%);
    background: #0e0994;
    transition: 1s;
}

nav .fa {
  display: none;
}


@media(max-width:700px) {

  .text-box h1 {
    font-size: 20px;
  }

  .nav-links ul li {
    display: block;
  }

  .nav-links {
    position: absolute;
    background: #f44336;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }

  nav .fa {
    display: block;
    color: hsl(258, 94%, 19%);
    margin: 10px;
    font-size: 20px;
    cursor: pointer;
  }

  .nav-links ul {
    padding: 30px;
  }
}

/*-----------------------------------------------SOLUTION-INDEX-------------------------------------------*/

.course {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
  h1 {
    font-size: 36px;
   /* font-weight: 600;*/
  }

  p {
    color: #000000;
    font-size: 14px;
   /* font-weight: 300;*/
    line-height: 22px;
    padding: 10px;
  }

  .row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
  }

  .course-col {
    flex-basis: 31%;
    

    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
  }

  h3 {
    text-align: center;
    /*font-weight: 600;*/
    margin: 10px 0;
  }

  .course-col:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
  }

  @media(max-width:700px) {

    .row {
      flex-direction: column;
    }
  }

.page-center{
  width: 80%;
  margin: auto;
   text-align: justify; 
  padding-top: 50px;
}

.card-body_ {
    width: 80%;
    margin: auto;
   /* text-align: justify;*/
    padding-top: 50px;
}
---------------------------------------------------CONTACT-INDEX--------------------------------------------------------------------*/
.contact {
    width: 80%;
    margin: 100px auto;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/sc.png);
    background-position: center;
    /*background-size: contain;*/
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.contact h1 {
  color: #fff;
 /* margin-bottom: 40px;*/
  padding: 0;
}

.con-btn {
  color: #fff;
  font-size: large;
  border: 15px solid hsl(258, 94%, 19%);
  background: hsl(258, 94%, 19%);
  transition: 1s;
}

@media(max-width: 700px) {
  .contact h1 {
    font-size: 24px;
  }
}


/*--------------------------------------------------------about us page------------------------------------------------------------------*/

.sub-header {
  height: 40vh;
  width: 100%;
  background-image: url(images/img11.jpeg);
  /* linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), */
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
  position: relative;
}

.sub-header h1 {
  /* margin-top: 100px; */
  margin: auto;
  width: 50%;
  padding: 250px 0;
}

/*.about-us {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}

.about-us .card {
  border: none;
}

.about-col {
  flex-basis: 48%;
  padding: 30px 3px;
}

.about-col img {
  width: 50%;
}

.about-col h1 {
  padding-top: 0;
}

.about-col p {
  padding: 15px 0 25px;
}

.red-btn {
  border: 1px solid #f44336;
  background: transparent;
  color: #f44336;
}

.red-btn:hover {
  color: #fff;

}

.card-title h5 {
  font-size: 500%;*/
 /* font-weight: 100;*/
/*}*/
/*----------------------------------------------------------solution PAGE---------------------------------------------------------------------------*/
.subb_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-90%, -80%);
    font-size: 50px;
    color: #000 !important;
}
.sub-header {
    height: 38vh;
    width: 100%;
    background-image: url(images/img11.jpeg);
    /* linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), */
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #000;
    position: relative;
    
}
.divider {
    font-size: 30px;
    display: flex;
    align-items: center;
    padding-bottom:2.5%;
}

    .divider::before, .divider::after {
        flex: 1;
        content: '';
        padding: 3px;
        background-color: #000099;
        margin: 5px;
    }

/*----------------------------------------------------------CONTACT US PAGE---------------------------------------------------------------------------*/
.sub-heading {
    height: 25vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(images/cus.webp);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff !important;
    position: relative;
}

.sub_title_heading{
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  font-size: 50px;
  color: #fff !important;
}

.sub-heading h3 {
  font-size: 1.3rem;
  font-weight: 400;
  padding: 10px;
  text-align: center;
  padding-top: 250px;

}

.sub-header1 h2 {
  font-size: 3rem;
  text-transform: uppercase;
  padding: 0.4rem 0;
  letter-spacing: 4px;
  text-align: center;

}

.location {
  width: 80%;
  margin: auto;
  padding: 80px 0;

}

.location iframe {
  width: 100%;
}

.contact-us {
  width: 80%;
  margin: auto;
}

.contact-col {
  flex-basis: 48%;
  margin-bottom: 30px;
}

.contact-col div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.contact-col div .fa {
  font-size: 28px;
  color: #f44336;
  margin: 10px;
  margin-right: 30px;
}

.contact-col div p {
  padding: 0;
}

.contact-col div h5 {
  font-size: 2opx;
  margin-bottom: 5px;
  color: #555;
  font-weight: 400;
}

.contact-col input,
.contact-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
}

/*--------------------------------------video----------------------------video--------------------------------------------------------*/


.back-video {
  position: center;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (min-aspect-ratio: 21/9) {
  .back-video {
    width: 100%;
    height: auto;
  }

}

@media (max-aspect-ratio:21/9) {
  .back-video {
    width: auto;
    height: 100%;
  }
}


.heropanel--video {
  font-family: 'Open Sans', sans-serif;
  height: 450px;

}

@keyframes gm-slidein {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    -webkit-transform: none;
    opacity: 1;
    transform: none;
  }
}

.heropanel__content {
  -moz-animation: gm-slidein 3s 1;
  -ms-animation: gm-slidein 3s 1;
  -o-animation: gm-slidein 3s 1;
  -webkit-animation: gm-slidein 3s 1;
  animation: gm-slidein 3s 1;
  border-bottom: 1px solid #FFF;
  margin: 0 auto;
  max-width: 50%;
  padding: 4em 0 2em;
  text-align: center;
  /* background-color: rgba(0, 0, 0, 0.5); */
}

.heropanel__content h1 {
  margin: 0 0 .5em;
  margin-top: 40px;
  text-transform: uppercase;
  font-size: 50px;
  color: #FFF !important;

}

.heropanel__content h1 a {
  color: #FFF !important;
  text-decoration: none;
}

.heropanel__content p {
  color: #fff !important;
  margin: 0;
  /* text-transform:uppercase; */
  font-size: 25px;
}

.heropanel__content a {
  text-decoration: none;
  display: inline-block;
  color: #f1f1f1 !important;
  font-size: 12px;
  border: 2px solid #f1f1f1;
  padding: 14px 70px;
  margin-top: 20px;
  border-radius: 50px;
}

/*--------------------------------------dropdown button-------------------------------------------------------*/
/* Dropdown Button */
/* .dropbtn {
    background-color: #04AA6D;
    color: rgb(17, 10, 124);
    padding: 16px;
    font-size: 16px;
    border: none;
  } */

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: hsl(258, 94%, 19%);
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {

  display: block;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;


}

/* Links inside the dropdown */
.dropdown-content a {

  color: rgb(26, 13, 139);
  font-size: 10px;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


/* Change color of dropdown links on hover
  .dropdown-content a:hover {background-color: #ddd;} */
/* .dropdown-menu {
    display: none; */
/* } */
/* Show the dropdown menu on hover */
/* .dropdown:hover .dropdown-content {display: block;} */


.dropdown-menu {
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown
  .dropdown:hover .dropbtn {background-color: #3e8e41;} */


/*------------------------------------------------------GALLERY-IMAGE SLIDER-GAMBAR LOGO SYARIKAT-------------------------------------------------------------------*/
/*#ourpartner .carousel-inner .carousel-item img {
  max-height: 400px; 
  width: auto; 
  max-width: 100%; 
  object-fit: contain; 
}


#frame {
  margin: 0 auto;
  width: 1500px;
  text-align: center;

}

#frame input[type=radio] {
  display: none;
}

#frame label {
  cursor: pointer;
  text-decoration: none;
}

#slides {
  padding: 10px;

  position: relative;
  z-index: 1;
}

#overflow {
  width: 100%;
  overflow: hidden;
}

#frame1:checked~#slides .inner {
  margin-left: 0;
}

#frame2:checked~#slides .inner {
  margin-left: -100%;
}

#frame3:checked~#slides .inner {
  margin-left: -200%;
}

#frame4:checked~#slides .inner {
  margin-left: -300%;
}

#slides .inner {
  transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
  width: 400%;
  line-height: 0;
  height: 300px;
}

#slides .frame {
  width: 25%;
  float: left;
  display: flex;*/
  /*justify-content: center;*/
  /*align-items: center;
  height: 100%;
  color: #FFF;
}

#slides .frame_1 {
  background-image: url(images/dubai.png);

}

#slides .frame_2 {
  background-image: url(images/pttep.jpg);
}

#slides .frame_3 {
  background-image: url(images/shell.png);
}

#slides .frame_4 {
  background-image: url(images/t7.png);
}

#controls {
  margin: -180px 0 0 0;
  width: 100%;
  height: 50px;
  z-index: 3;*/
  /*position: relative;*/
/*}

#controls label {
  transition: opacity 0.2s ease-out;
  display: none;
  width: 50px;
  height: 50px;
  opacity: .4;
}

#controls label:hover {
  opacity: 1;
}

#frame1:checked~#controls label:nth-child(2),
#frame2:checked~#controls label:nth-child(3),
#frame3:checked~#controls label:nth-child(4),
#frame4:checked~#controls label:nth-child(1) {
  background:
    url(https://image.flaticon.com/icons/svg/130/130884.svg) no-repeat;
  float: right;
  margin: 0 -50px 0 0;
  display: block;
}

#frame1:checked~#controls label:nth-last-child(2),
#frame2:checked~#controls label:nth-last-child(3),
#frame3:checked~#controls label:nth-last-child(4),
#frame4:checked~#controls label:nth-last-child(1) {
  background:
    url(https://image.flaticon.com/icons/svg/130/130882.svg) no-repeat;
  float: left;
  margin: 0 0 0 -50px;
  display: block;
}

#bullets {
  margin: 150px 0 0;
  text-align: center;
}

#bullets label {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #ccc;
  margin: 0 10px;
}

#frame1:checked~#bullets label:nth-child(1),
#frame2:checked~#bullets label:nth-child(2),
#frame3:checked~#bullets label:nth-child(3),
#frame4:checked~#bullets label:nth-child(4) {
  background: #444;
}

@media screen and (max-width: 900px) {

  #frame1:checked~#controls label:nth-child(2),
  #frame2:checked~#controls label:nth-child(3),
  #frame3:checked~#controls label:nth-child(4),
  #frame4:checked~#controls label:nth-child(1),
  #frame1:checked~#controls label:nth-last-child(2),
  #frame2:checked~#controls label:nth-last-child(3),
  #frame3:checked~#controls label:nth-last-child(4),
  #frame4:checked~#controls label:nth-last-child(1) {
    margin: 0;
  }

  #slides {
    max-width: calc(100% - 140px);
    margin: 0 auto;
  }
}*/


/*-----------------------------------------------ABOUT US------------------------------------------------------------------*/
/** {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  padding: 64px;
}

.row:after {
  content: "";
  display: table;
  clear: both
}

.column-66 {
  float: left;
  width: 66.66666%;
  padding: 20px;
}

.column-33 {
  float: left;
  width: 33.33333%;
  padding: 20px;
}

.large-font {
  font-size: 48px;
}

.xlarge-font {
  font-size: 64px
}

.button {
  border: none;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  background-color: #04AA6D;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

@media screen and (max-width: 1000px) {

  .column-66,
  .column-33 {
    width: 100%;
    text-align: center;
  }

  img {
    margin: auto;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: tahoma;
}

.content-container {
  padding: 75px;
  width: 80%;
  margin: auto;*/
  /* text-align: center; */
  /*padding-top: 100px;
}

.col-container:after {
  content: "";
  display: table;
  clear: both;
}

.column-one {
  float: left;
  width: 66.66666%;
  padding: 25px;
}

.column-two {
  float: left;
  width: 33.33333%;
  padding: 25px;
}*/

/*.l-font {
    font-size: 5px;
    color: #03071e;
}*/

/*.xl-font{
    font-size: 50px;
    color: #03071e;
}

.button {
  border: 5px solid #03071e;
  background-color: transparent;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  color: #03071e;
  font-weight: bold;
  transition: .2s;
}

.button:hover {
  background-color: #03071e;
  color: white;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

@media screen and (max-width: 800px) {

  .column-one,
  .column-two {
    width: 100%;
    text-align: center;
  }

  img {
    margin: auto;
  }
}*/

/*----------------------------------------------------test zigzag - ABOUT US page---------------------------------------------------------------------------*/

/** {
  box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif !important;
}

.content-container {
  padding: 75px;
}

.col-container:after {
  content: "";
  display: table;
  clear: both;
}

.column-one {
  float: left;
  width: 66.66666%;
  padding: 50px;
}

.column-two {
  float: left;
  width: 30%;
  padding: 50px;
}

.l-font {
  font-size: 35px;
  color: #03071e;
}

.xl-font {
  font-size: 50px;
  color: #03071e;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

@media screen and (max-width: 1000px) {

  .column-one,
  .column-two {
    width: 100%;
    text-align: center;
  }

  img {
    margin: auto;
  }
}*/


/*------------------------------------------------------------------index--contact-------------------------------------------------------------------------------------------------*/
.conus {
   /* width: 80%;
    margin: auto;*/
    text-align: center;
    padding-top: 150px;
    
}
 /* h1 {
    font-size: 36px;
    font-weight: 600;
  }
*/

/*------------------------------------------------------------------gallery-------------------------------------------------------------------------------------------------*/
.subhead h1 {
  text-align: center;
  font-size: 50px;

}

.section-header h1{
  text-align: center;
  font-size: 50px;
}

.subhead h3 {
  text-align: center;
}

/*------------------------------------------------------------------Cathodic protection PAGE-------------------------------------------------------------------------------*/
.sub-head {
    height: 40vh;
    width: 100%;
    background-image: url(images/img4.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #000;
    position: relative;
}

.sub-title {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    /*font-weight: bold;*/
    font-size: 50px;
    color: #000 !important;
}

hr.seperator {
    height: 0px !important;
    border: none;
    border-top: 10px solid #333399;
    margin: 10px 0;
}
hr.rounded {
    border-top: 8px solid #bbb;
    border-radius: 5px;
    margin-right:50px;
}
/*------------------------------------------------------------------PRODUCT PAGE-------------------------------------------------------------------------------*/
.sub_head {
  height: 40vh;
  width: 100%;
  background-image: url(images/img7.jpeg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color:#000;
  position: relative;
}

.sub_title {
    position: absolute;
    top: 45%;
    left: 55%;
    transform: translate(-50%, -50%);
    /*font-weight: bold;*/
    font-size: 45px;
    color: #000 !important;
}

 .product img{
  width: 100%;
  height: auto;
 }

/*------------------------------------------------------------------ENGINEering PAGE-------------------------------------------------------------------------------*/
.subheads {
    height: 40vh;
    width: 100%;
    background-image: url(images/img12.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #000;
    position: relative;
}

.subtitle {
    position: absolute;
    top: 45%;
    left: 25%;
    transform: translate(-50%, -50%);
    /*font-weight: bold;*/
    font-size:50px;
    color: #000 !important;
}




/* Contact Section
--------------------------------*/
#contact {
/*   padding: 30px 0; */
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 20px;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #f44336;
}

#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: #50d8af;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact #google-map {
  height: 290px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  #contact #google-map {
    margin-top: 20px;
  }
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #50d8af;
}

#contact .php-email-form button[type=submit] {
  background: #50d8af;
  border: 0;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .php-email-form button[type=submit]:hover {
  background: #2dc899;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Our Portfolio Section
--------------------------------*/
#portfolio {
  background: #fff;
  padding: 30px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f7f7f7;
  border-radius: 4px;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #50d8af;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

#portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

    #portfolio .portfolio-item .portfolio-info {
        opacity: 0;
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: -50px;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: #152F4F;
        padding: 15px 20px;
    }

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

#portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info .preview-link,
#portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: rgba(255, 255, 255, 0.6);
  transition: ease-in-out 0.3s;
}

#portfolio .portfolio-item .portfolio-info .preview-link:hover,
#portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

#portfolio .portfolio-item:hover img {
  top: -30px;
}

#portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #50d8af;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #50d8af;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(12, 46, 138, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*test client section*/
h2 {
  text-align: center;
  padding: 20px;
}

/* Slider */

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
/*--------------------------------------------------------client section/logo slider----------------------------------------*/
/*h2 {
    text-align: center;
    padding: 20px;
}*/
/* Slider */

/*h2 {
    text-align: center;
    padding: 20px;
}*/

/* Slider */

.slick-slide {
    margin: 0px 20px;
    margin-top:20px;
}

    .slick-slide img {
        width: 100%;
    }

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.subhhead_ {
    height: 15vh;
    width: 100%;
    background-color: #003399;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}

.subtitle_ {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   /* font-weight: bold;*/
    font-size: 32px;
    color: #fff !important;
}
.fa {
    font-family: var(--fa-style-family,"Font Awesome 6 Free") !important;
    font-weight: var(--fa-style,900) !important
}

.sub_head_ {
    height: 15vh;
    width: 100%;
    background-color: #003399;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}

.sub_title_ {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   /* font-weight: bold;*/
    font-size: 32px;
    color: #fff !important;
}

.fa {
    font-family: var(--fa-style-family,"Font Awesome 6 Free") !important;
    font-weight: var(--fa-style,900) !important
}


/*-------------why chose us -index---------------------*/
* {
    box-sizing: border-box;
}

/*body {
    margin: 0;
    font-family: Arial;
}*/

.header {
    text-align: center;
    padding: 30px 0px;
}

.row_ {
    display: -ms-flexbox;  IE10 
    display: flex;
    -ms-flex-wrap: wrap;  IE10 
    flex-wrap: wrap;
    padding: 0 4px;
}

 Create four equal columns that sits next to each other 
.column {
    -ms-flex: 25%;  IE10 
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

    .column img {
        margin-top: 8px;
        vertical-align: middle;
        width: 100%;
    }

 Responsive layout - makes a two column-layout instead of four columns 
@media screen and (max-width: 800px) {
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
}

 Responsive layout - makes the two columns stack on top of each other instead of next to each other 
@media screen and (max-width: 600px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
}

/*----------------about us page----------------- */
/*h1,
h2,
h3,
h4,
h5,
h6 {
}
*/
/*a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}
*/
    a,
    a:active,
    a:focus {
        color: #6f6f6f;
        text-decoration: none;
        transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -webkit-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-duration: .2s;
        -ms-transition-duration: .2s;
        -moz-transition-duration: .2s;
        -webkit-transition-duration: .2s;
        -o-transition-duration: .2s;
    }

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*section {
    padding: 60px 0;
     min-height: 100vh;
}*/

.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

    .sec-title .title {
        position: relative;
        display: block;
        font-size: 18px;
        line-height: 24px;
        color: #00aeef;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .sec-title h2 {
        position: relative;
        display: block;
        font-size: 40px;
        line-height: 1.28em;
        color: #222222;
        font-weight: 600;
        padding-bottom: 18px;
    }

        .sec-title h2:before {
            position: absolute;
            content: '';
            left: 0px;
            bottom: 0px;
            width: 50px;
            height: 3px;
            background-color: #d1d2d6;
        }

    .sec-title .text {
        position: relative;
        font-size: 16px;
        line-height: 26px;
        color: #848484;
        font-weight: 400;
        margin-top: 35px;
    }

    .sec-title.light h2 {
        color: #ffffff;
    }

    .sec-title.text-center h2:before {
        left: 50%;
        margin-left: -25px;
    }

.list-style-one {
    position: relative;
}

    .list-style-one li {
        position: relative;
        font-size: 16px;
        line-height: 26px;
        color: #222222;
        font-weight: 400;
        padding-left: 35px;
        margin-bottom: 12px;
    }

        .list-style-one li:before {
            content: "\f058";
            position: absolute;
            left: 0;
            top: 0px;
            display: block;
            font-size: 18px;
            padding: 0px;
            color: #ff2222;
            font-weight: 600;
            -moz-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1.6;
            font-family: "Font Awesome 5 Free";
        }

        .list-style-one li a:hover {
            color: #44bce2;
        }

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: #00aeef;
}

    .btn-style-one:hover {
        background-color: #0794c9;
        color: #ffffff;
    }

.about-section {
    position: relative;
    padding: 120px 0 70px;
}

    .about-section .sec-title {
        margin-bottom: 45px;
    }

    .about-section .content-column {
        position: relative;
        margin-bottom: 50px;
    }

        .about-section .content-column .inner-column {
            position: relative;
            padding-left: 30px;
        }

    .about-section .text {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 26px;
        color: #848484;
        font-weight: 400;
    }

    .about-section .list-style-one {
        margin-bottom: 45px;
    }

    

    .about-section .image-column {
        position: relative;
    }

        .about-section .image-column .text-layer {
            position: absolute;
            right: -110px;
            top: 50%;
            font-size: 325px;
            line-height: 1em;
            color: #ffffff;
            margin-top: -175px;
            font-weight: 500;
        }

        .about-section .image-column .inner-column {
            position: relative;
            padding-left: 80px;
            padding-bottom: 0px;
        }

            .about-section .image-column .inner-column .author-desc {
                position: absolute;
                bottom: 16px;
                z-index: 1;
                background: #0d8fbf;
                padding: 10px 15px;
                left: 96px;
                width: calc(100% - 152px);
                border-radius: 50px;
            }

                .about-section .image-column .inner-column .author-desc h2 {
                    font-size: 21px;
                    letter-spacing: 1px;
                    text-align: center;
                    color: #fff;
                    margin: 0;
                }

                .about-section .image-column .inner-column .author-desc span {
                    font-size: 20px;
                    letter-spacing: 6px;
                    text-align: center;
                    color: #fff;
                    display: block;
                    font-weight: 400;
                }

            .about-section .image-column .inner-column:before {
                content: '';
                position: absolute;
                width: calc(50% + 80px);
                height: calc(100% + 160px);
                top: -80px;
                left: -3px;
                background: transparent;
                z-index: 0;
                border: 44px solid #145770;
            }

        .about-section .image-column .image-1 {
            position: relative;
        }

        .about-section .image-column .image-2 {
            position: absolute;
            left: 0;
            bottom: 0;
        }

            .about-section .image-column .image-2 img,
            .about-section .image-column .image-1 img {
                box-shadow: 0 30px 50px rgba(8,13,62,.15);
                border-radius: 46px;
            }

        .about-section .image-column .video-link {
            position: absolute;
            left: 70px;
            top: 170px;
        }

            .about-section .image-column .video-link .link {
                position: relative;
                display: block;
                font-size: 22px;
                color: #191e34;
                /*font-weight: 400;*/
                text-align: center;
                height: 200px;
                width: 100px;
                line-height: 100px;
                background-color: #ffffff;
                border-radius: 50%;
                box-shadow: 0 30px 50px rgba(8,13,62,.15);
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

                .about-section .image-column .video-link .link:hover {
                    background-color: #191e34;
                    color: #f;
                }


/*------------------------engineeringselangseli----------------------*/

.we-are-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 1000px;
}

@media screen and (max-width: 860px) {
    .we-are-block {
        height: 2200px;
    }
}

@media screen and (max-width: 500px) {
    .we-are-block {
        height: 2300px;
    }
}

#about-us-section {
    background: #0c4c91;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media screen and (max-width: 860px) {
    #about-us-section {
        flex-direction: column;
        justify-content: space-between;
    }
}

.about-us-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
}

@media screen and (max-width: 860px) {
    .about-us-image {
        position: relative;
        width: 100%;
        height: 45%;
    }
}

@media screen and (max-width: 747px) {
    .about-us-image {
        height: 35%;
    }
}

@media screen and (max-width: 644px) {
    .about-us-image img {
        position: absolute;
        left: -220px;
    }
}

.about-us-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-evenly;
    width: 40%;
    height: 80%;
    margin-right: 850px;
    margin-left: 12px;
    z-index: 2;
}

@media screen and (max-width: 1353px) {
    .about-us-info {
        margin-right: 400px;
        width: 60%;
        background: #0c4c9199;
        padding: 0px 25px 0px 0px;
    }
}

@media screen and (max-width: 1238px) {
    .about-us-info {
        margin-right: 340px;
        width: 100%;
    }
}

@media screen and (max-width: 1111px) {
    .about-us-info {
        margin-right: 270px;
    }
}

@media screen and (max-width: 910px) {
    .about-us-info {
        margin-right: 150px;
    }
}

@media screen and (max-width: 860px) {
    .about-us-info {
        margin: 0px 0px 0px 0px !important;
        padding: 0px 20px 0px 20px !important;
        width: 100%;
        height: 55%;
        align-items: center;
    }
}

@media screen and (max-width: 747px) {
    .about-us-info {
        height: 65%;
    }
}

.about-us-info h2 {
    color: white;
    font-size: 40pt;
    text-align: right;
}

@media screen and (max-width: 860px) {
    .about-us-info h2 {
        text-align: center;
    }
}

.about-us-info p {
    color: white;
    font-size: 14pt;
    text-align: right;
}

@media screen and (max-width: 860px) {
    .about-us-info p {
        text-align: center;
    }
}

.about-us-info a {
    background-color: white;
    color: #0c4c91;
    width: 180px;
    text-align: center;
    padding: 15px 0px 15px 0px;
    font-size: 14pt;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

    .about-us-info a:hover {
        background: #404140;
        color: white;
        box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
        transform: translateY(10px);
    }

#history-section {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media screen and (max-width: 860px) {
    #history-section {
        flex-direction: column;
        justify-content: space-between;
    }
}

.history-image {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 820px;
    height: 100%;
    overflow: hidden;
}

@media screen and (max-width: 860px) {
    .history-image {
        position: relative;
        width: 100%;
        height: 40%;
    }
}

@media screen and (max-width: 747px) {
    .history-image {
        height: 35%;
    }
}

@media screen and (max-width: 644px) {
    .history-image img {
        position: absolute;
        right: -220px;
    }
}

.history-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    width: 40%;
    height: 80%;
    margin-left: 850px;
    margin-right: 12px;
    z-index: 2;
}

@media screen and (max-width: 1353px) {
    .history-info {
        margin-left: 400px;
        width: 60%;
        background: #ffffff99;
        padding: 0px 0px 0px 25px;
    }
}

@media screen and (max-width: 1238px) {
    .history-info {
        margin-left: 340px;
        width: 100%;
    }
}

@media screen and (max-width: 1111px) {
    .history-info {
        margin-left: 270px;
    }
}

@media screen and (max-width: 910px) {
    .history-info {
        margin-left: 150px;
    }
}

@media screen and (max-width: 860px) {
    .history-info {
        margin: 0px 0px 0px 0px !important;
        padding: 0px 40px 0px 40px !important;
        width: 100%;
        height: 60%;
        align-items: center;
    }
}

@media screen and (max-width: 747px) {
    .history-info {
        height: 65%;
    }
}

.history-info h2 {
    color: #0c4c91;
    font-size: 40pt;
    text-align: left;
}

@media screen and (max-width: 860px) {
    .history-info h2 {
        text-align: center;
    }
}

.history-info p {
    color: #0c4c91;
    font-size: 14pt;
    text-align: left;
}

@media screen and (max-width: 860px) {
    .history-info p {
        text-align: center;
    }
}

.history-info a {
    background-color: #0c4c91;
    color: white;
    width: 180px;
    text-align: center;
    padding: 15px 0px 15px 0px;
    font-size: 14pt;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

    .history-info a:hover {
        background: #404140;
        color: white;
        box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
        transform: translateY(10px);
    }




/*----------------testgallery---------------------*/
/** {
    box-sizing: border-box;
}

body {
    line-height: 1.618em;
    background: #ecf0f1;
    color: #444;
}

img {
    max-width: 100%;
    height: auto;
}

.wrapper {
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
}

.slider {
    background: #fff;
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
    padding-bottom: 2.5rem;
    border: 0.25rem solid #95a5a6;
}

    .slider::after {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        content: '';
        display: block;*/
        /*background: #34495e;*/
        /*height: 3rem;
    }

.slide-switch {
    display: none;
}

.slide-label {
    position: absolute;
    bottom: 1rem;
    display: block;
    z-index: 5;
    height: 1rem;
    width: 1rem;
    text-indent: 1rem;
    overflow: hidden;
    background: #2980b9;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s;
}

    .slide-label:nth-of-type(1) {
        left: 1rem;
    }

    .slide-label:nth-of-type(2) {
        left: 2.5rem;
    }

    .slide-label:nth-of-type(3) {
        left: 4rem;
    }

    .slide-label:nth-of-type(4) {
        left: 5.5rem;
    }

    .slide-label:nth-of-type(5) {
        left: 7rem;
    }

.padded {
    padding: 1rem 2rem;
}

.slide-content {
    width: 100%;
    background: #fff;
    float: left;
    margin-right: -100%;
}

.slide-switch:checked + .slide-label {
    background: #3498db;
}

.slide-switch:not(:checked) + .slide-label + .slide-content {
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.slide-switch:checked + .slide-label + .slide-content {
    animation: slide 1s;
}

@keyframes slide {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}*/
/*--------------footer---------------*/
/*.footer {*/
    /*position: fixed;*/
    /*left: 0;
    bottom: 0;
    width: 100%;
    background-color: blue;
    color: white;
    text-align: center;
}
a {
    color: #fff;
    text-decoration: none;
}

.pg-footer {
    font-family: 'Roboto', sans-serif;
}


.footer {
    background-color: #004658;
    color: #fff;
}

.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}

.footer-wave-path {
    fill: #fffff2;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

    .footer-content-column ul li a {
        color: #fff;
        text-decoration: none;
    }

.footer-logo-link {
    display: inline-block;
}

.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}

    .footer-menu-list li {
        margin-top: 5px;
    }

.footer-call-to-action-description {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-call-to-action-button:hover {
    background-color: #ffffff;
    color: #00bef0;
}

.button:last-of-type {
    margin-right: 0;
}

.footer-call-to-action-button {
    background-color: #027b9a;
    border-radius: 21px;
    color: #ffffff;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}

.footer-call-to-action {
    margin-top: 30px;
}

.footer-call-to-action-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #ffffff;
    text-decoration: none;
}

    .footer-call-to-action-link-wrapper a {
        color: #fff;
        text-decoration: none;
    }



.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: #027b9a;
}

.footer-social-link.linkedin {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 26px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 28px;
    left: 62px;
    top: 3px;
    width: 28px;
}

.footer-social-link.youtube {
    height: 24px;
    left: 123px;
    top: 12px;
    width: 24px;
}

.footer-social-link.github {
    height: 34px;
    left: 172px;
    top: 7px;
    width: 34px;
}

.footer-copyright {
    background-color: #027b9a;
    color: #fff;
    padding: 15px 30px;
    text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}*/







/* Media Query For different screens */
/*@media (min-width:320px) and (max-width:479px) {*/ /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    /*.footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:480px) and (max-width:599px) {*/ /* smartphones, Android phones, landscape iPhone */
    /*.footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:600px) and (max-width: 800px) {*/ /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
    /*.footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:801px) {*/ /* tablet, landscape iPad, lo-res laptops ands desktops */

/*}

@media (min-width:1025px) {*/ /* big landscape tablets, laptops, and desktops */

/*}

@media (min-width:1281px) {*/ /* hi-res laptops and desktops */

/*}




@media (min-width: 760px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 450px;
        position: relative;
    }

    .footer-wave-svg {
        height: 50px;
    }

    .footer-content-column {
        width: 24.99%;
    }
}

@media (min-width: 568px) {*/
    /* .footer-content-column {
      width: 49.99%;
  } */
/*}*/
/*---------------------footer------------------------------*/
.footer {
    background: #152F4F;
    color: white;
}

/*.links{
    ul{list-style-type: none;}

li a {
    color: white !important;
    transition: color .2s;
    &:hover{
    text-decoration: none;
    color: #4180CB;
}
}*/
/*}

.about-company {
    i{font-size: 40px;}

a {
    color: white;
    transition: color .2s;
    &:hover{color: #4180CB}

}
}

.location {
    i{font-size: 18px;}
}

.copyright p {border-top: 1px solid rgba(255,255,255,.1);}
}*/

.galleryy {
    --g: 6px; /* the gap */

    display: grid;
    width: 550px; /* the size */
    aspect-ratio: 1;
    grid: auto-flow 1fr/repeat(3,1fr);
    gap: var(--g);
    place-content: center;
   
    display: grid;
   /* background: #81A8B8;*/
}

    .galleryy img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale();
        cursor: pointer;
        transition: .5s
    }

        .galleryy img:hover {
            filter: grayscale(0);
        }

        .galleryy img:nth-child(2) {
            grid-area: 1/2/span 2/span 2;
            clip-path: polygon(0 0,100% 0,100% 100%,calc(50% + var(--g)/4) 100%,0 calc(50% - var(--g)/4))
        }

        .galleryy img:nth-child(3) {
            grid-area: 2/1/span 2/span 2;
            clip-path: polygon(0 0,calc(50% - var(--g)/4) 0,100% calc(50% + var(--g)/4),100% 100%,0 100%);
        }

/*.galleryy  {
    
}*/

/*---------------------------------------*/


.checklist{
    font-size:25px;
}
.card-text {
    line-height: normal;
    font-family: "Exo", sans-serif !important;
}
.about-us-info p {
    line-height: normal !important;
}

@media (max-width: 767px) {
    // Style for devices have width <= 767px;
}

@media (max-width: 1023px) and (min-width: 768px) {
    // Style for devices have width > = 768px and <= 1023px;
}

@media (min-width: 1024px) {
    // Style for devices have width > = 1024px;
}