/* CSS Document */

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

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
em,
img,
strong,
sub,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #312e49;
}

html,
body {
    overflow-x: hidden;
}

ol,
ul {
    list-style: none;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none !important;
}

a,
button,
path,
svg {
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
}

.form-control:focus,
.form-control:active {
    box-shadow: none;
    outline: none;
}

.container {
    position: relative;
}

.aligner {
    align-items: center;
    justify-content: center;
}





/*############################# HEADER #############################*/

#header {
    padding: 40px 0 20px;
    background: #FFF;
}

#header.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 10px 0;
    box-shadow: 1px 0px 4px #AAA;
}

#header .logo {
    max-height: 93px;
    margin-top: 10px;
}

#main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

#main-menu li {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 0 0 0 35px;
    text-transform: uppercase;
}

#main-menu li.social {
    padding: 0 0 0 10px;
}

#main-menu li.social.first {
    padding: 0 0 0 30px;
}

#main-menu li a {
    color: #003a5d;
    display: flex;
    align-items: center;
}

#main-menu li a:hover,
#main-menu li a.active {
    color: #00acd7;
}

#main-menu li a:hover path {
    fill: #00acd7 !important;
}

#header .navbar-toggler {
    position: absolute;
    left: auto;
    right: 0;
    top: 35px;
    width: 32px;
    outline: none;
    padding: 0;
    display: none;
    z-index: 999;
}

.navbar-toggler span {
    background: #FFF;
    display: block;
    width: 100%;
    height: 2px;
    margin: 0 0 4px;
    width: 20px;
}

#header .navbar-toggler span:last-child {
    margin: 0;
}

#header .animated-icon {
    width: 25px;
    height: 26px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#header .animated-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 0px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#header .animated-icon span {
    background: #000;
}

#header .animated-icon span:nth-child(1) {
    top: 5px;
}

#header .animated-icon span:nth-child(2) {
    top: 12px;
}

#header .animated-icon span:nth-child(3) {
    top: 19px;
}

#header .animated-icon.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#header .animated-icon.open span:nth-child(2) {
    opacity: 0;
    left: 50px;
}

#header .animated-icon.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#header.active .navbar-toggler span {
    background: #000;
}






/*############################# CONTENT #############################*/

#main-banner {}

#main-banner .text {
    padding-top: 110px;
}

#main-banner .text h3 {
    color: #00acd8;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 24px;
    padding-bottom: 30px;
}

#main-banner .text img.logo {
    max-width: 215px;
}

#main-banner .text img.line {
    max-width: 180px;
    margin-top: 7px;
}

#main-banner .bottom {
    padding-top: 100px;
}

#main-banner .bottom h4 {}

#main-banner .bottom h4 span {
    display: block;
    text-transform: uppercase;
    font-size: 29px;
    line-height: 28px;
}

#main-banner .bottom h4 span.style1 {
    color: #003a5d;
    font-weight: bold;
}

#main-banner .bottom h4 span.style2 {
    font-weight: 300;
    color: #003a5d;
}

#main-banner .bottom h4 span.style3 {
    color: #00acd8;
    font-weight: bold;
}

#main-banner .bottom a.button {
    color: #FFF;
    font-weight: bold;
    padding: 8px 15px;
    background: #003a5d;
    border-radius: 30px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    margin: 30px 0 0 0;
}

#main-banner .bottom a.button:hover {
    background: #00acd8;
}

#main-banner img.float {
    position: absolute;
    left: -116px;
    bottom: 30px;
}

#about-section {
    position: relative;
    overflow: hidden;
}

#about-section .columns {
    display: flex;
    justify-content: center;
    align-items: center;
}

#about-section .columns .left {
    position: relative;
    width: 50%;
    order: 1;
}

#about-section .columns .left:after {
    position: absolute;
    top: 0;
    right: 0;
    background: #003a5d;
    width: 453px;
    height: 25px;
    content: '';
    z-index: 5;
}

#about-section .columns .right {
    width: 50%;
    order: 2;
}

#about-section:after {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #003a5d;
    width: 490px;
    height: 25px;
    content: '';
}

#about-section img.float {
    position: absolute;
    right: 15px;
    top: 15px;
}

#about-section .text {
  text-align: center;
  padding: 200px 0;
  margin: 0 auto;
  width: 70%;
    max-width: 455px;
}

h2.title {
    position: relative;
    font-weight: 300;
    color: #00acd8;
    font-size: 40px;
    margin-bottom: 60px;
}

h2.title strong {
    font-weight: bold;
}

#about-section h2:after {
    position: absolute;
    left: 52%;
    width: 1000px;
    height: 2px;
    background: #00acd8;
    content: '';
    bottom: -2px;
}

#about-section p {
    color: #003a5d;
    font-size: 20px;
    line-height: 25px;
    padding-bottom: 17px;
}

#about-section .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    text-align: center;
}

#about-section .owl-dot {
    border: none;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #FFF;
    border-radius: 100%;
    outline: none;
}

#about-section .owl-dot:hover,
#about-section .owl-dot.active {
    background: #003a5d;
}




#services-section .columns {
    display: flex;
    justify-content: center;
    align-items: center;
}

#services-section .columns .left {
    position: relative;
    width: 50%;
    text-align: center;
}

#services-section .columns .left ul {
}

#services-section .columns .left li {
    padding: 40px 0;
}

#services-section .columns .left li:nth-child(1) {
    background: #003a5d;
}

#services-section .columns .left li:nth-child(3) {
    background: #00acd7;
}

#services-section .columns .left li:nth-child(1) h4,
#services-section .columns .left li:nth-child(1) p,
#services-section .columns .left li:nth-child(3) h4,
#services-section .columns .left li:nth-child(4) p {
    color: #FFF;
}

#services-section .columns .left li:nth-child(2) h4,
#services-section .columns .left li:nth-child(2) p {
    color: #003a5d;
}


#services-section .columns .left li h4 {
    font-size: 28px;
    line-height: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

#services-section .columns .left li p {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#services-section .columns .right {
    width: 50%;
}

#services-section .columns .right img {
    width: 100%;
}




#equipment-section {
    position: relative;
    overflow: hidden;
}

#equipment-section .columns {
    display: flex;
    justify-content: center;
    align-items: center;
}

#equipment-section .columns .left {
    position: relative;
    width: 50%;
    order: 1;
}

#equipment-section .columns .left:after {
    position: absolute;
    top: 0;
    right: 0;
    background: #003a5d;
    width: 453px;
    height: 25px;
    content: '';
    z-index: 5;
}

#equipment-section .columns .right {
    width: 50%;
    order: 2;
}

#equipment-section:after {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #00bde8;
    width: 490px;
    height: 25px;
    content: '';
}

#equipment-section img.float {
    position: absolute;
    right: 15px;
    top: 15px;
}

#equipment-section .text {
  text-align: center;
  padding: 0;
  margin: 0 auto;
  width: 70%;
    max-width: 495px;
}

#equipment-section h2 {
    color: #003a5d;
}

#equipment-section h2:after {
    position: absolute;
    left: 52%;
    width: 1000px;
    height: 2px;
    background: #003a5d;
    content: '';
    bottom: -2px;
}

#equipment-section p {
    color: #003a5d;
    font-size: 20px;
    line-height: 25px;
    padding-bottom: 17px;
}

#equipment-section .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    text-align: center;
}

#equipment-section .owl-dot {
    border: none;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #FFF;
    border-radius: 100%;
    outline: none;
}

#equipment-section .owl-dot:hover,
#equipment-section .owl-dot.active {
    background: #003a5d;
}

#staff-section {
    background: #003a5d;
    padding: 150px 0;
    margin-top: -1px;
}

#staff-section .owl-item img {
    width: auto;
    margin: 0 auto -77px;
    border: 12px solid #003a5d;
    border-radius: 100%;
    display: block;
    z-index: 9;
    position: relative;
    max-width: 196px;
}

#staff-section h2 {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-weight: normal;
    border-bottom: 5px solid #00a9d5;
    display: table;
    margin: 0 auto 80px;
}

#staff-section .block {
    background: #FFF;
    border-radius: 15px;
    text-align: center;
    padding: 80px 15px 20px 15px;
    height: 260px;
    position: relative;
}

#staff-section .block h5 {
    font-size: 22px;
    color: #00acd8;
    font-weight: bold;
    height: 60px
}

#staff-section .block h6 {
    color: #003a5d;
    font-weight: 400;
    font-size: 19px;
}

#staff-section .block p {
    font-size: 12px;
    padding: 10px 0 0 0px;
    text-transform: uppercase;
    line-height: 16px;
}

#staff-section .block .button {
    color: #FFF;
    font-size: 11px;
    font-weight: bold;
    background: #003a5d;
    padding: 7px 0;
    border-radius: 20px;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    bottom: 15px;
    width: 200px;
    margin-left: -100px;
}

#staff-section .owl-nav {
    position: absolute;
    top: 59%;
    left: -70px;
    right: -70px;
}

#staff-section .owl-prev,
#staff-section .owl-next {
    position: absolute;
    top: 0;
    width: 55px;
    height: 55px;
    background: url('../img/carousel-nav.png');
    text-indent: 9999em;
    overflow: hidden;
}

#staff-section .owl-prev {
    left: 0;
}

#staff-section .owl-next {
    right: 0;
    transform: rotate(180deg);
}




#specialty-section .columns {
    display: flex;
    justify-content: center;
    align-items: center;
}

#specialty-section .columns .left {
    position: relative;
    width: 50%;
    text-align: center;
}

#specialty-section .columns .right {
    position: relative;
    width: 50%;
    z-index: 2;
}

#specialty-section h2:after {
    position: absolute;
    left: 52%;
    width: 1000px;
    height: 2px;
    background: #00acd8;
    content: '';
    bottom: -2px;
}

#specialty-section .columns .left .text {
    text-align: center;
  margin: 0 auto;
  width: 70%;
  max-width: 610px;
}

#specialty-section .columns .left p {
    font-size: 20px;
      line-height: 25px;
    padding-bottom: 45px;
}

#specialty-section .columns .left ul {
}

#specialty-section .columns .left li {
    text-align: left;
    position: relative;
    font-size: 20px;
    font-weight: 500;
}

#specialty-section .columns .left li:before {
    position: absolute;
    left: -21px;
    top: 10px;
    border-radius: 100%;
    background: #00acd7;
    content: '';
    width: 10px;
    height: 10px;
}


#video-section {
    background: #00acd7;
  padding: 100px 0 50px;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16/9 ratio */
    padding-top: 30px; /* IE6 workaround*/
    height: 0;
    overflow: hidden;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#contact-section {
    background: #00acd7;
    padding: 100px 0;
}

#contact-section iframe {
    border: none;
    width: 100%;
    height: 500px;
}

#contact-section .text {
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#contact-section .text h3 {
    color: #FFF;
    font-size: 36px;
    font-weight: 300;
}

#contact-section .text h3 strong {
    font-weight: bold;
}

#contact-section .text p {
    color: #FFF;
    font-size: 21px;
    padding: 30px 0 75px;
}

#contact-section .text p a {
    color: #FFF;
}

#contact-section .logo {
    max-width: 410px;
}

#contact-section .text .button {
    color: #FFF;
    font-size: 20px;
    color: #FFF;
    text-transform: uppercase;
    padding: 13px 23px;
    border-radius: 30px;
    background: #003a5d;
    margin: 27px 0 40px;
    font-weight: 600;
}

#contact-section .text .button:hover {
    color: #003a5d;
    background: #FFF;
}

#whatsapp-link {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9;
}

#whatsapp-link img {
    width: 80px;
}