


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #015951;
  --secondary-color:              #01aa87;
  --tertiary-color:               #016987;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #01aa87;
  --custom-btn-bg-hover-color:    #015951;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             rgba(255,255,255,0.5);
  --green-color:                  #00AA87;
  --blue-color:                   #25AAE1;

  --body-font-family:             'Noto Sans Thai', sans-serif;

  --h1-font-size:                 60px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px;
  --btn-font-size:                14px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
  --font-weight-extrabold:        900;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  /*background-color: var(--dark-color);*/
  background: linear-gradient(180deg, rgba(1,89,81,0.75) 0%, rgba(0,105,135,0.55) 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 1/*0.35*/;
}
.section-vdo-mark-img{
  position: absolute;
  z-index: 3;
  bottom: 0;
  width: 100%;
  height: 279px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position:top center;
}
@media screen and (max-width: 1280px) {
  .section-vdo-mark-img{
    height: 200px;
  }
}
@media screen and (max-width: 991px) {
  .section-vdo-mark-img{
    height: 120px;
  }
}
@media screen and (max-width: 480px) {
  .section-vdo-mark-img{
    height: 100px;
  }
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;

  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px rgba(0, 0, 0, 0.14), 0px 1px 5px rgba(0, 0, 0, 0.12);
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}


.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}




/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  /*margin-top: 51px;*/
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--primary-color) /*var(--dark-color)*/;
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: rgba(255,255,255,0.5)/*var(--white-color)*/;
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.navbar-brand img{
  width: 184px;
  height: inherit;
}
@media screen and (max-width: 1368px){
  .navbar-brand img{
    width: 144px;
    height: inherit;
  }
  .navbar {
    --bs-navbar-padding-y: 0rem;
  }
}
@media screen and (max-width: 1024px){
  .navbar-brand img{
    width: 124px;
    height: inherit;
  }
}
@media screen and (max-width: 991px){
  .navbar-brand img{
    width: 107px;
    height: inherit;
  }
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
  min-height: calc(80vw / 1.5);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 1/*0.45*/;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

.text-header{
  margin-top: 20vh;
}

@media screen and (max-width: 1280px) {
  .text-header{
    margin-top: 15vh;
  }
}
@media screen and (max-width: 991px) {
  .hero-section {
    height: calc(100vh + 51px);
  }
}
@media screen and (max-width: 768px) {
  .hero-section {
    height: calc(95vh + 51px);
  }
  .text-header{
    margin-top: 20vh;
  }
}
@media screen and (max-width: 414px) {
  .hero-section {
    height: calc(90vh + 51px);
  }
  .text-header{
    margin-top: 10vh;
  }
}
@media screen and (max-width: 320px) {
  .hero-section {
    height: calc(100vh + 51px);
  }
  .text-header{
    margin-top: -5vh;
  }
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-image: url('../images/bg-blue-circle.png');
  background-color: var(--white-color);
  background-repeat: no-repeat;
  background-size: 10%;
  background-position: top right ;
  position: relative;
  padding-top: 50px;

  margin-top: -4px;
  z-index: 3;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}

.about-section-details{
  width: 100%;
  height: 100%;
}




.aboutus-img{
  width: 55%;
  height: auto;
  text-align: right;
  position: absolute;
  padding-top: 2.5%;
  padding-right: 5%;
  padding-bottom: 5%;

  background-position:25% 100%;
  background-repeat: no-repeat;
  background-size: 15%;
}

.aboutus-details{
  width: 60%;
  float: right;  
  padding: 120px 120px 120px 280px;
  background: #BEE1F3;
  border-radius: 41px 0 0 0;
}

.aboutus-img img{
  width: 70%;

  border: 1px solid #000000;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}

.about-section h2{
  font-weight: var(--font-weight-normal) !important;
}

.about-section h5{
  font-weight: var(--font-weight-normal);
  margin-top: 40px;
}


.aboutus-card{
  width: 100%;
  background: rgb(223,240,243);
  background: linear-gradient(180deg, rgba(223,240,243,1) 0%, rgba(223,236,243,1) 100%);
  padding-bottom: 50px;
}

.aboutus-card h3{
  margin-top: 240px;
  font-weight: var(--font-weight-normal);
}

.about-section .aboutus-card h2{
  color: var(--tertiary-color);
  font-weight: var(--font-weight-bold) !important;
}

.line-gradient{
  margin: 0 auto;
  width: 224px;
  height: 6px;
  background: linear-gradient(322.09deg, #53D2EA 17.71%, #7BE495 88.7%);
}


@media screen and (max-width: 1970px) {
  .aboutus-img{
    padding-top: 5.5%;
  }
  .aboutus-img img{
    width: 70%;
  }
}

@media screen and (max-width: 1837px) {
  .aboutus-img{
    padding-top: 6.5%;
    background-position:15% 100%;
  }
  .aboutus-img img{
    width: 75%;
  }
}

@media screen and (max-width: 1690px) {
  .aboutus-img{
    padding-top: 7%;
    background-position:10% 100%;
  }
  .aboutus-img img{
    width: 80%;
  }
}
@media screen and (max-width: 1649px) {
  .aboutus-img{
    padding-top: 8%;
    background-position:5% 100%;
  }
  .aboutus-img img{
    width: 90%;
  }
}
@media screen and (max-width: 1517px) {
  .aboutus-img{
    padding-top: 12%;
    background-position:2% 100%;
  }
  .aboutus-img img{
    width: 95%;
  }
}

@media screen and (max-width: 1368px) {
  .about-section {
    background-size: 15%;
    margin-top: -2px;
  }
  .aboutus-card h3{
    margin-top: 160px;
  }
  .aboutus-img{
    width: 50%;
    padding-top: 7%;
    padding-right: 2%;
    padding-bottom: 6%;
    background-size: 20%;
    background-position:2% 100%;
  }
  .aboutus-details{
    width: 60%; 
    padding: 100px 50px 100px 160px;
  }
  .aboutus-img img{
    width: 95%;
  }
}

@media screen and (max-width: 1280px) {
  .about-section {
    margin-top: -20px;
    background-position: 100% 1% ;
  }
}

@media screen and (max-width: 1180px) {
  .aboutus-img{
    padding-top: 15%;
    background-position:0% 100%;
  }
  .aboutus-img img{
    width: 95%;
  }
}

@media screen and (max-width: 1024px) {
  .aboutus-card h3{
    margin-top: 120px;
  }
  .aboutus-img{
    width: 45%;
    padding-top: 19%;
    background-position:0% 100%;
  }
  .aboutus-details{
    width: 70%; 
    padding: 100px 50px 100px 160px;
  }
}

@media screen and (max-width: 768px) {
  .about-section {
    margin-top: -10px;
    background-size: 23%;
  }
  .aboutus-img{
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    background-position:50% 50%;
    text-align: center;
    position: relative;
  }
  .aboutus-details{
    width: 100%; 
    margin-top: -100px;
    padding: 180px 40px 100px 40px;
    border-radius: 0;
  }
  .aboutus-img img{
    width: 90%;
  }
  .aboutus-card h3{
    margin-top: 100px;
  }
}

@media screen and (max-width: 414px) {
  .about-section {
    margin-top: -15px;
    background-size: 45%;
    background-position: 100% 0.7% ;
  }
  .line-gradient{
    width: 160px;
  }
}

@media screen and (max-width: 320px) {
  .about-section {
    background-size: 55%;
    background-position: 100% 2% ;
  }
}









/*---------------------------------------
  Card in About us               
-----------------------------------------*/


.owl-carousel .owl-stage, .owl-carousel-usecase .owl-stage {
  display: flex;
}
.owl-carousel .owl-item, .owl-carousel-usecase .owl-item {
  /*display: flex;*/
  flex: 1 0 auto;
}
.owl-carousel .thumbnail, .owl-carousel-usecase .thumbnail {
  display: flex;
  flex-direction: column;
  margin: 0 15px;
}
.owl-carousel .thumbnail .caption, .owl-carousel-usecase .thumbnail .caption {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}
.owl-carousel .thumbnail .caption .flex-text, .owl-carousel-usecase .thumbnail .caption .flex-text {
  flex-grow: 1;
}

#owl-aboutuscard article{
  padding: 40px 20px;
  background: var(--white-color);
  border-radius: 20px;
}




#owl-aboutuscard article .aboutus-icon{
  width: 100%;
  margin-bottom: 20px;
  padding-top: 16px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#owl-aboutuscard article .aboutus-icon img{
  height: 50px;
  width: inherit;
}

#owl-aboutuscard article .caption h5{
  color: var(--tertiary-color);
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  use cases -section              
-----------------------------------------*/
.usecases-section{
  width: 100%;
  background-color: rgba(223,236,243,1)/*linear-gradient(180deg, rgba(223,236,243,1) 100% , rgba(223,240,243,1) 0%)*/;
  background-position:bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 100px;
}

.usecases-section .usecases-section-bg{
  width: 90%;
  margin:0 auto;
  border-radius: 8px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #016987;
  background-position:bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

.usecases-section .owl-carousel .owl-item, .usecases-section .owl-carousel-usecase .owl-item {
    display: flex;
}

.usecases-section h5{
  color: #CAFEF8;
  font-weight: var(--font-weight-normal);
}

.usecases-section h2{
  color: var(--white-color);
}

.usecases-section h5.mt-5{
  color: var(--white-color);
}

.usecases-section h5.mt-5 span{
  font-weight: var(--font-weight-bold);
}



.usecases-card{
  width: 400px;
  
}
.usecases-card-header{
  width: 100%;
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius:20px 20px 0 0 ;
}
.usecases-card-detail{
  background: #DDE9F2;
  padding: 60px 20px 40px 20px;
  border-radius:0 0 20px 20px;
}
.usecases-card-header h5{
  font-weight: var(--font-weight-bold);
}

.usecases-card-header-mask{
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
  border-radius:20px 20px 0 0 ;
  padding:20px;
  text-align: center;

      display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.usecases-card-icon-frame{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.usecases-card-icon{
  width: 70px;
  height: 70px;
  background-color: var(--white-color);
  background-position:center;
  background-size: 50%;
  background-repeat: no-repeat;
  box-shadow: 0px 4.933px 7.39949px -1.23325px rgba(0, 0, 0, 0.1), 0px 2.4665px 4.933px -1.23325px rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .usecases-section{
    padding-bottom: 0px;
  }
  .usecases-section .usecases-section-bg{
    width: 100%;
    border-radius: 0px;
    padding-bottom: 80px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .usecases-section h5.usecases-section-subtitle{
    background: linear-gradient(322.09deg, #53D2EA 17.71%, #7BE495 88.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}

@media screen and (max-width: 414px) {
  .usecases-section .usecases-section-bg{
    padding-bottom: 35px;
  }
}





/*---------------------------------------
  products-section              
-----------------------------------------*/
.products-section{
  width: 100%;
  height: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
 
}
.products-section-mask{
  width: 100%;
  height: 72px;
  background-color: rgba(0,0,0,1);
  margin-top: -130px;
}

.products-section h5{
  color: #CAFEF8;
  font-weight: var(--font-weight-normal);
}

.products-section h2{
  color: var(--white-color);
}

.products-section h5.mt-5{
  color: var(--white-color);
}

.products-section .products-section-container{
  padding: 100px;
}

.products-section .line-gradient {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.products-section-icon-boxmain{
  margin-top: 70px;
}

.products-section-icon-box{
  margin-top: 30px;
}

.products-section .products-section-icon{
  width: 32px;
  height: 32px;
  float: left;
  margin-right: 20px;
}

.products-section .products-section-icon img{
  width: 100%;
  height: inherit;
}

.products-section h5.products-section-icon-details{
  font-weight: var(--font-weight-light);
  color: var(--white-color);
  padding-top: 2px;
}

.products-section  .products-section-img-box .products-section-img{
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

}

.products-section  .products-section-img img{
  width: 100%;
  height: auto;
}






@media screen and (max-width: 1773px) {
  .products-section h2 {
    font-size: var(--h3-font-size);
  }
  .products-section h5 {
    font-size: var(--h6-font-size);
  }
  .products-section h5.products-section-icon-details{
    font-size: var(--p-font-size);
  }
}




@media screen and (max-width: 1368px) {
  .products-section .products-section-container{
    padding: 100px 50px;
  }
  .products-section-icon-boxmain{
    margin-top: 60px;
  }
  .products-section-icon-box{
    margin-top: 20px;
  }
}

@media screen and (max-width: 1280px) {
  .products-section .products-section-container{
    padding: 100px 40px;
  }
  .products-section h5.products-section-icon-details{
    padding-top: 5px;
  }
  
  .products-section-mask{
    margin-top: -140px;
  }
}

@media screen and (max-width: 1199px) {
  .products-section-text-box{
    
  }
}

@media screen and (max-width: 1024px) {
  .products-section-mask{
    margin-top: -240px;
  }
}

@media screen and (max-width: 768px) {
  .products-section h5.products-section-subtitle{
    background: linear-gradient(322.09deg, #53D2EA 17.71%, #7BE495 88.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}

@media screen and (max-width: 414px) {
  .products-section .products-section-container{
    padding: 100px 12px;
  }
  .products-section-mask{
    margin-top: -220px;
  }
  .products-section h5.products-section-icon-details{
    padding-top: 6px;
  }
  .products-section .line-gradient {
    width: 120px;
  }
}




/*---------------------------------------
  CONTACT section              
-----------------------------------------*/

.contact-section{
  background: #16253B;
  padding-top: 100px;
  padding-bottom: 70px;
}
.contact-section h5{
  font-weight: var(--font-weight-light);
}


.contact-section button img{
  width: 20px;
  height: inherit;
  margin-left: 10px;
}


@media screen and (max-width: 414px) {
  .contact-section{
    padding-bottom: 20px;
  }
}








/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/


label.form-check-label{
  color: rgba(255, 255, 255, 0.7);
}


.custom-form .form-select {
    color: var(--white-color);
    margin-bottom: 24px;
    padding-top: 13px;
    padding-bottom: 13px;
    outline: none;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url('../images/contactus/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-small);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-form .form-select option { 
    color: black !important;
}




.custom-form .form-control{
  color: var(--white-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-small);
}
.custom-form .form-select:hover, 
.custom-form .form-select:focus,
.custom-form .form-control:hover, 
.custom-form .form-control:focus{
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 1);
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-small);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  padding-top: 60px;
  background: linear-gradient(293.99deg, #078A6E 22.9%, #006987 106.59%);
}


.site-footer-bottom {
  border-top: 1px solid var(--white-color);
  margin-top: 60px;
  width: 90%;
  margin: 0.5% auto;
}
@media screen and (max-width: 1024px) {
  .site-footer-bottom {
    width: 95%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contact-section {
    padding-bottom: 0px;
  }
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
  width: 100%;
}

.site-footer-links-partner{
  padding-left: 0;
}

.site-footer-links-partner .site-footer-link-item {
  width: auto;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}

.site-footer .site-footer-links-partner .site-footer-left-box{
  border-right: 1px solid var(--white-color);
  padding: 5px 40px 5px 0px;
}

.site-footer .site-footer-links-partner .site-footer-right-box{
  padding: 5px 20px;
}

.site-footer .site-footer-links-partner .site-footer-left-box img:hover, .site-footer .site-footer-links-partner .site-footer-right-box img:hover{
  opacity: 0.5;
}

.site-footer .site-footer-links-partner .site-footer-left-box img{
  height: 54px;
  width: auto;
}
.site-footer .site-footer-links-partner .site-footer-right-box img{
  height: 74px;
  width: auto;
}

.site-footer p , .site-footer a{
  font-weight: var(--font-weight-light);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  /*background: var(--secondary-color);*/
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

.social-icon-link img{
  height: 22px;
  width : inherit;
}
.social-icon-link img:hover{
  opacity: 0.5;
}

@media screen and (min-width: 1368px) {
  .site-footer-bottom .social-icon{
   margin-top: -5px;
  }
}

@media screen and (max-width: 1368px) {
  .site-footer-bottom .social-icon{
   margin-top: -8px;
  }
}

@media screen and (max-width: 1280px) {
  .site-footer-bottom .social-icon{
   margin-top: -10px;
  }
}

@media screen and (max-width: 1024px) {
  .site-footer-bottom .social-icon{
   margin-top: -12px;
  }
}

@media screen and (max-width: 768px) {
  .site-footer-bottom .social-icon{
   margin: 38px 0 0;
   padding: 0 12px;
   right: 0;
  }
  .justify-content-lg-end {
    justify-content: flex-end!important; /*right*/
  }
}

@media screen and (max-width: 414px) {
  .copyright-text{
    font-size: 12px;
  }
  .social-icon-link {
    width: 25px;
    height: 25px;
  }
  .social-icon-link img{
    height: 18px;
    width : inherit;
  }
  .site-footer-bottom .social-icon{
   margin: 34px 0 0;
  }
  .site-footer-bottom .row .col-sm-7{
    width: 60% !important;
  }
  .site-footer-bottom .row .col-sm-5{
    width: 40% !important;
  }
  .site-footer-bottom .justify-content-lg-end{
    padding-right: 0;
  }
}
@media screen and (max-width: 320px) {
  .copyright-text{
    font-size: 10px;
  }
  .social-icon-link {
    width: 18px;
    height: 18px;
  }
  .social-icon-link img{
    height: 14px;
    width : inherit;
  }
}




@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1280px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: transparent /*var(--dark-color)*/;
  }
  .navbar .navbar-collapse{
    background-color:  var(--primary-color);
  }
 

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 0/*30px*/;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }
}



#section_1 h5{
  font-weight: var(--font-weight-light);
}

.text-roboto{
  font-family: 'Roboto', sans-serif !important;
}

#section_2 h2{
  font-weight: var(--font-weight-normal);
}

.text-extrabold-green{
  font-weight: var(--font-weight-eatrabold) !important;
  color: var(--green-color);
}

.text-bold-green{
  font-weight: var(--font-weight-bold) !important;
  color: var(--green-color);
}


.text-green{
  color: var(--green-color);
}

.text-extrabold-blue{
  font-weight: var(--font-weight-extrabold) !important;
  color: var(--blue-color);
}

.text-bold-blue{
  font-weight: var(--font-weight-bold) !important;
  color: var(--blue-color);
}


