/*
Theme Name: Blank
Author: Kodbiro
Author URI: https://kodbiro.com
Description: Kodbiro simple starter theme
Version: 1
*/

@font-face {
  font-family: 'Myriad Pro';
  font-style: normal;
  font-weight: normal;
  src: local('Myriad Pro Regular'), url('./fonts/MYRIADPRO-REGULAR.woff') format('woff');
}
@font-face {
  font-family: 'Myriad Pro';
  font-style: normal;
  font-weight: bold;
  src: local('Myriad Pro Bold'), url('./fonts/MYRIADPRO-BOLD.woff') format('woff');
}



* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
	
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

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

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

header.blank-header {
  height: 65px;
  width: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 10;
}
header.blank-header .blank-header-content {
  max-width: 1400px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.blank-logo a {
  display: flex;
  background: transparent;
  margin-bottom: -50%;
  padding: 0px;
  margin-left: 15px;
}

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

nav.blank-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
nav.blank-nav ul li {
  padding: 0 15px;
}
nav.blank-nav ul li a {
  display: block;
  padding: 0px;
  text-decoration: none;
  font-size: 17px;
  color: #242424;
  font-weight: 300;
}
nav.blank-nav ul li.current-menu-item a {
  font-weight: bold;
  border-bottom: 1px solid #242424;
}

/* HOME HEADER */
.blank-home-hero {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blank-home-hero .main-info {
  width: 90%;
  max-width: 1330px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.blank-home-hero .main-info .title,
.blank-home-hero .main-info .subtitle {
  color: #fff;
  line-height: 1.2;
  text-align: center;
}
.blank-home-hero .main-info .title {
  font-weight: 900;
  padding-top: 65px;
  font-size: 80px;
}
.blank-home-hero .main-info .subtitle {
  font-weight: 500;
  padding-top: 50px;
  font-size: 30px;
  max-width: 900px;
}

.header-blur {
  position: absolute;
}

.header-blur.tl {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
.header-blur.tr {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.header-blur.bl {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}
.header-blur.br {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.header-blur img {
  -webkit-animation-name: animateBlur;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-name: animateBlur;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}
@-webkit-keyframes animateBlur {
  0% {transform: scale(1);}
  50% {transform: scale(1.5);}
  100% {transform: scale(1);}
}
@keyframes animateBlur {
  0% {transform: scale(1);}
  50% {transform: scale(1.5);}
  100% {transform: scale(1);}
}


.header-bg-box-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.header-bg-box {
  height: 650px;
  margin-top: 50px;
  background-size: cover;
  background-position: center;
  animation: bgSizeAN 20s infinite;
}
.header-content-box {
  height: 500px;
  top: 200px;
  padding-bottom: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  position: absolute!important;
}
.header-content-box>div {
  width: 100%;
}
@keyframes bgSizeAN {
  0% {transform: scale(1);}
  50% {transform: scale(1.05);}
  100% {transform: scale(1);}
}



/* HEADER QUERIES */

@media (max-width: 1024px) {
  .blank-home-hero .main-info .title {
    font-size: 50px;
  }
  .blank-home-hero .main-info .subtitle {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .header-bg-box {
    height: 500px;
  }
  .header-content-box {
    height: 400px;
    top: 100px;
    padding-bottom: 60px;
  }

  a.call-us {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #0092df;
    margin: auto;
  }
  a.call-us img {
    max-height: 40px;
    max-width: 40px;
  }
  a.call-us span {
    padding-left: 5px;
  }
  .blank-menu-trigger {
    margin-top: 5px;
    margin-right: 25px;
    margin-left: 15px;
  }

  nav.blank-header-nav {
    display: none;
  }
  nav.blank-header-nav.active {
    display: flex;
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
    padding: 15px;
	z-index: 100;
  }
  nav.blank-header-nav ul#menu-main-nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  nav.blank-header-nav.active ul li a {
    font-size: 26px;
    margin: 7px 0;
    border: none;
  }

  .mob-menu-close {
    width: 100%;
    text-align: right;
    padding: 0px 12px;
  }

  .mob-menu-call-us {
    text-align: center;
  }
  .mob-menu-call-us p {
    color: #0092df;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    padding: 0 15px;
  }
  .mob-menu-call-us img {
    max-width: 30%;
    margin: 35px 0px 25px;
  }

  .blank-home-hero .main-info .title {
    font-size: 40px;
  }
  .blank-home-hero .main-info .subtitle {
    font-size: 20px;
  }
  header.blank-header.low {
    display: none;
  }

  .menu-item a:focus,
  .menu-item a::-moz-focus-inner {
    border: 0;
	outline: 0;
  }
}

@media (min-width: 992px) {
  /* LOW NAV */
  header.blank-header.hide {
    display: none;
  }
  .mob-menu-close,
  .mob-menu-call-us {
    display: none;
  }

  nav.blank-header-nav.pad-left {
    padding-left: 80px;
  }

  header.blank-header.low {
    position: absolute;
    bottom: 0px;
    height: 125px;
  }

  header.blank-header.animate {
    -webkit-animation-name: anmateStickyNav; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 400ms; /* Safari 4.0 - 8.0 */
    animation-name: anmateStickyNav;
    animation-duration: 400ms;
  }

  /* Safari 4.0 - 8.0 */
  @-webkit-keyframes anmateStickyNav {
    from {transform: translate(0px, -125px);}
    to {transform: translate(0px, 0px);}
  }

  /* Standard syntax */
  @keyframes anmateStickyNav {
    from {transform: translate(0px, -125px);}
    to {transform: translate(0px, 0px);}
  }

  header.blank-header.low .current-menu-item a {
    border: none;
    font-weight: 300;
  }
  header.blank-header.low .left {
    order: 0;
    flex: 1;
    justify-content: flex-end;
    padding-left: 0px;
  }
  header.blank-header.low .blank-logo {
    order: 1;
    margin: 0 60px;
  }
  header.blank-header.low .blank-logo a {
    margin-bottom: 0;
  }
  header.blank-header.low .right {
    order: 2;
    flex: 1;
  }

  a.call-us {
    display: none;
  }
  .blank-menu-trigger {
    display: none;
  }
  .blank-mob-nav {
    display: none;
  }
}

/* END HEADER QUERIES */



/* CONTENT */
main.blank-main {
  flex-grow: 1;
}


.blank-content {
}

.blank-blog-container {
}

.blank-blog-sample {
}

#hero-bg-anim {
  background-position: center 40%;
}


.backdrop-blur {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.backdrop-blur-2 {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  height: 100%;
}
/* before-after-slider */
.blink-bas {
  width: 100%;
  padding-bottom: 66.66%;
  position: relative;
}
.blink-bas div#comparison { 
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  position: absolute;
}
.blink-bas div#comparison figure {
  background-size: cover;
  position: relative;
  font-size: 0;
  width: 100%; 
  height: 100%;
  margin: 0; 
}
.blink-bas div#comparison figure > img { 
  position: relative;
  width: 100%;
}
.blink-bas div#comparison figure div {
  background-size: cover;
  position: absolute;
  width: 60%; 
  box-shadow: 0 5px 0px 6px #0092df;
  overflow: hidden;
  bottom: 0;
  height: 100%;
}

.blink-bas input[type=range]{
  -webkit-appearance:none;
  -moz-appearance:none;
  position: relative;
  top: -160px;
  left: -1.2%;
  background-color: transparent;
  width: 102%;
}
.blink-bas input[type=range]:focus { 
  outline: none; 
}
.blink-bas input[type=range]:active { 
  outline: none;  
}

.blink-bas input[type=range]::-moz-range-track { 
  -moz-appearance:none;
  height: 85px;
  width: 98%;
  background-color: transparent; 
  position: relative;
  outline: none;
}
.blink-bas input[type=range]::active { 
  border: none; 
  outline: none;
}
.blink-bas input[type=range]::-webkit-slider-thumb {
  -webkit-appearance:none;
  width: 20px;
  height: 85px;   
  background: #0092df;
  border-radius: 50px;
  cursor: pointer;
}
.blink-bas input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
  width: 20px;
  height: 85px;
  background: #0092df;
  border-radius: 50px;
  cursor: pointer;
}   
.blink-bas input[type=range]:focus::-webkit-slider-thumb {
  background: #0092df;
  cursor: pointer;
}
.blink-bas input[type=range]:focus::-moz-range-thumb {
  background: #0092df;
  cursor: pointer;
}

.blink-bas input[type=range]::-moz-focus-outer {
  border: 0;
}
.blink-bas input[type=range]::-ms-tooltip {
    display: none;
}


.myriad-font p {
  font-family: 'Myriad Pro'!important;
}

.home-box-text p {
  font-family: 'Myriad Pro';
  line-height: 1.4;
  color: #232227;
  max-width: 300px;
  font-size: 22px;
}
.home-box-img {
  height: 200px;
}

.algon-list ul {
  list-style: none; /* Remove default bullets */
  font-family: 'Myriad Pro';
  font-size: 20px;
  color: #232227;
  line-height: 1.4;
  padding-bottom: 50px;
}
.algon-list ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #0092df; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */ 
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.lh-small .algon-list ul {
  line-height: 1.2;
}

.algon-carousel .elementor-swiper-button-prev {
  display: none;
}
.algon-carousel .elementor-swiper-button {
  width: 40px;
  height: 40px;
  margin-top: -40px;
  background-color: transparent;
  border-right: 3px solid #0092df;
  border-top: 3px solid #0092df;
  transform: rotate(45deg);
  outline: none;
}
.algon-carousel .elementor-swiper-button i {
  display: none;
}
.algon-carousel .elementor-widget-container {
  max-width: calc(100% - 50px);
}
.algon-carousel figcaption {
  text-align: left!important;
  font-family: 'Myriad Pro'!important;
  font-style: italic;
  color: #0092df;
  min-height: 40px;
}

.bg-img-zoom-anim {
  -webkit-animation-name: imgZoom;
  -webkit-animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  animation-name: imgZoom;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@-webkit-keyframes imgZoom {
  0% {background-size: 100% 100%;}
  50% {background-size: 120% 120%;}
  100% {background-size: 100% 100%;}
}
@keyframes imgZoom {
  0% {background-size: 100% 100%;}
  50% {background-size: 120% 120%;}
  100% {background-size: 100% 100%;}
}

.algon-timeline {

}
.algon-timeline-item {
  border-left: 4px solid #0092df;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: 50px;
  max-width: 760px;
  padding-bottom: 90px;
}
.algon-timeline-item h3 {
  font-family: 'Poppins';
  font-size: 34px;
  line-height: 1;
  color: #232227;
}
.algon-timeline-item h3:before {
  content: url('/wp-content/uploads/ellipse-1.png');
  position: absolute;
  z-index: 0;
  left: -16px;
  top: 0px;
}
.algon-timeline-item p {
  font-family: 'Myriad Pro';
  font-size: 22px;
  color: #232227;
  padding-top: 30px;
}

.sports-img-box {
  display: inline-block;
  max-width: 145px;
  padding: 0 10px;
  text-align: center;
}
.sports-img-box figure {
  text-align: center;
  padding-top: 30px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 145px;
}
.sports-img-box figcaption {
  color: #232227!important;
  font-size: 14px;
  font-family: 'Poppins'!important;
  font-weight: bold!important;
  line-height: 1.1;
}

.algon-cf {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.algon-cf-left,
.algon-cf-right {
  min-width: calc(50% - 65px);
  display: flex;
  flex-direction: column;
  padding: 0px 30px;
}
.algon-cf .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.algon-cf-submit-box {
  padding-right: 30px;
  margin-bottom: 40px;
  text-align: right;
}
.algon-cf-submit-box button {
  background: #fff;
  color: #232227;
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 600;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 5px 15px;
}
.algon-cf-submit-box button:hover {
  background: #eee;
}

.algon-cf label {
  color: #fff;
  font-size: 22px;
  font-family: 'Poppins';
  font-weight: 500;
  margin-bottom: 10px;
}
.algon-cf input {
  color: #fff;
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 200;
  background: #0092df;
  border: none;
  border-bottom: 2px solid #fff;
  box-shadow: none;
  outline: none;
}
.algon-cf textarea {
  color: #fff;
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 200;
  background: #0092df;
  border: 2px solid #fff;
  box-shadow: none;
  outline: none;
  min-height: 140px;
}
.algon-cf .error {
  color: #db261d;
  padding-top: 5px;
  visibility: hidden;
}
.algon-cf .error.show {
  visibility: visible;
}

.custom-select {
  position: relative;
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: 200;
  line-height: 1;
}
.custom-select select {
  display: none;
}
.select-selected {
  background-color: #0092df;
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}
.select-items div,.select-selected {
  color: #ffffff;
  padding: 5px 10px;
  border: 2px solid #fff;
  cursor: pointer;
}
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
.select-items div {
  border-top: 0px;
  color: #0092df;
}
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  background-color: #0092df;
  color: #fff!important;
}

#algon-mail-send-success,
#algon-mail-send-error {
  color: #fff;
  text-align: center;
  display: none;
}


.container-404 {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container-404 h2 {
  font-size: 80px;
}
.container-404 h3 {
  font-size: 30px;
}
.container-404 a {
  color: #232227;
  margin-top: 20px;
  font-size: 20px;
}
.container-404 a:hover {
  opacity: 0.8;
}

.carousel-on-mob,
.carousel-on-mob-2 {
  overflow: hidden;
  position: relative;
}
.carousel-on-mob .slick-prev{
  display: none!important;
}
.carousel-on-mob .algon-slick-next,
.carousel-on-mob-2 .algon-slick-next {
  right: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  height: auto;
  width: 50px;
  max-width: 15%;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}
.carousel-on-mob-2 .algon-slick-prev {
  left: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  height: auto;
  width: 50px;
  max-width: 15%;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  z-index: 1;
}
.carousel-on-mob-2 .algon-slick-next,
.carousel-on-mob-2 .algon-slick-prev {
}
.carousel-on-mob-2 .algon-slick-prev img {
  transform: rotate(180deg);
}

.carousel-on-mob .slick-slide>div {
  padding-right: 15% !important;
}

.carousel-on-mob button::-moz-focus-inner, 
.carousel-on-mob-2 button::-moz-focus-inner {
  border: 0;
}

.full-screen-h {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#algon-google-map {
  height: 500px;
}

.algon-contacts a {
  color: #232227;
}
.algon-contacts a:hover {
  opacity: 0.8;
}

footer.blank-footer {
  min-height: 50px;
  background-color: #232227;
  display: flex;
  align-items: center;
  padding: 7px 0px;
}
footer .foot-content {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Myriad Pro';
  font-size: 14px;
}
footer .foot-content p,
footer .foot-content a {
  padding: 7px 15px;
}



@media (max-width: 991px) {
  footer .foot-content {
    flex-direction: column;
  }
  footer .foot-content p {
    order: 1;
  }
}


@media (max-width: 991px) {
  .algon-timeline-item {
    padding-left: 30px;
    padding-right: 30px;
    margin-left: 35px;
  }
  .algon-timeline-item p {
    font-size: 18px;
  }

  .algon-cf {
    flex-direction: column;
    align-items: stretch;
  }

  .algon-cf label {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .sports-img-box {
    max-width: 50%;
  }
  .bg-img-zoom-anim {
    -webkit-animation: none;
    animation: none;
  }
  .blank-logo a {
    max-width: 80px;
    margin-bottom: -65%;
  }
  .blank-logo a img {
	max-width: 80px;
	height: 80px;
  }
}


