/*----------- BASIC PAGE STYLES ----------------------*/
@import "hero-slider.css";



/*------ BASIC INFO -------------------------------------------*/
section.basic-information {
  /*padding-left: 400px;*/
  /*padding-right: 400px;*/
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

section.basic-information .main-elements{
  flex-basis: 0;
  flex-grow: 1;
}

section.basic-information .main-elements h1 {
  margin-top: 0.275rem;
}

section.basic-information .additional-elements{
  flex-basis: 0;
  flex-grow: 0.5;
}

section.basic-information .additional-elements img{
  width: 100% !important;
  height: auto !important;
}

@media (max-width: 768px) {

  section.basic-information {
    display: block;
  }

}

/*------ FEATURES & FEATURES SLIDER -----------------------------------------------*/

section.features {
  background-color: #fff;
  display: flex;
}

section.features .features-description{
  width: 40%;
  display: flex;
  align-items: center;
  padding: 0 50px 0 0;
  background-color: #fff /*#06131a #6e1336 #06131a #a82044*/;
  color: #000;
  height: calc( 0.6 * 900px);
}

@media (max-width: 1024px) {
  section.features .features-description{
    padding: 0 30px 0 0;
  }
}

section.features .features-description h1,
section.features .features-description h2,
section.features .features-description h3,
section.features .features-description h4,
section.features .features-description h5,
section.features .features-description h6{
  color: #000;
  font-size: 2rem;
}

/*section.features .features-description{*/
/*  width: 40%;*/
/*}*/

section.features .features-slider{
  width: 60%;
}

.features-slider .owl-stage {
  display: -webkit-box;
  display: -moz-box;
  /*border-top: 20px solid #f3f1ea;*/
  /*border-bottom: 30px solid #f3f1ea;*/
}

.features-slider .owl-item .paragraph img {
  /*DECREASE OF THE HEIGHT OF THE ELEMENT ANALOG TO THE WIDTH OF THE VIEW BASED ON A FACTOR*/
  /*height: calc((900 / 1920) * (1920px + (100vw - 1920px)));*/
  height: calc( 0.6 * 900px);
  object-fit: cover;
}

@media (orientation: portrait) {
  .features-slider .owl-item .paragraph img {
    /*
    INCREASE OF THE HEIGHT OF THE ELEMENT INVERSE ANALOG TO THE WIDTH OF THE VIEW
    height: calc((600 / 1920) * (1920px + (1920px - 100vw)));
     */

    /*DECREASE OF THE HEIGHT OF THE ELEMENT ANALOG TO THE WIDTH OF THE VIEW BASED ON A FACTOR*/
    /*height: calc((900 / 1920) * (1920px + (100vw - 1920px) / 1.5));*/
    height: calc( 0.6 * 900px);
  }
}

.features-slider .caption-section {
  background-color: #011925; /*#6e1336 #06131a #a82044*/;
  /*background-color: rgba(7, 38, 47, 0.25) !important;*/
  /*background: linear-gradient(rgba(1, 56, 86, 0.25), rgba(3, 115, 176, 0.05));*/
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  color: #fff;
  padding: 30px;
}

.features-slider .caption-section .read-more {
  margin-top: 10px;
  display: inline-block;
  /*background-color: rgba(6, 19, 26, 0.5);*/
  /*box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.5);*/
  padding: 5px 8px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background-color: rgba(6, 19, 26, 0);
  transition: background-color 0.2s ease-out, border 0.2s ease-out;
}

.features-slider .caption-section .read-more a {
  color: #fff;
  font-weight: 400;
  /*text-transform: uppercase;*/
}

.features-slider .caption-section .read-more:hover {
  background-color: rgba(6, 19, 26, 0.75);
  border: 2px solid rgba(255, 255, 255, 1);
}

.features-slider .owl-nav {
  position: absolute;
  top: calc(50% - 70px / 2);
  right: 0;
  width: 70px;
  height: 70px;
}

.features-slider .owl-nav button {
  width: 70px;
  height: 70px;
  /*background: rgba(0, 0, 0, 0.25) !important;*/
  background: rgba(7, 38, 47, 0.25) !important;
  -webkit-transition: .2s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  transition: .2s ease-in;
}

.features-slider .owl-nav button:hover {
  /*background: unset !important;*/
  background: rgba(7, 38, 47, 0.75) !important;
}

.features-slider .owl-nav button.owl-prev::before {
  border-style: solid;
  border-color: #fff;
  border-width: 2px 2px 0 0;
  content: '';
  display: inline-block;
  height: 0.65em;
  position: relative;
  top: 0.15em;
  vertical-align: top;
  width: 0.65em;
  left: 0.25em;
  transform: rotate(-135deg);
}

.features-slider .owl-nav button.owl-next::before {
  border-style: solid;
  border-color: #fff;
  border-width: 2px 2px 0 0;
  content: '';
  display: inline-block;
  height: 0.65em;
  position: relative;
  top: 0.15em;
  vertical-align: top;
  width: 0.65em;
  left: 0;
  transform: rotate(45deg);
}

.features-slider .owl-nav button::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 24px;
  z-index: 2;
}

.features-slider .owl-nav button.owl-prev::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  /*background: #07213F;*/
  -webkit-transition: .2s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  transition: .2s ease-in;
}

.features-slider .owl-nav button.owl-next::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  /*background: #07213F;*/
  -webkit-transition: .2s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  transition: .2s ease-in;
}

.features-slider .owl-nav button:hover::after {
  width: 100%;
  background: rgba(0, 0, 0, 0.5) !important;
}

.features-slider .owl-nav button.owl-prev {
  position: absolute;
  top: 0;
  right: 70px;
}

.features-slider .owl-nav button.owl-next {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1024px) {
  section.features {
    display: block;
    margin: 0;
  }

  section.features .features-description {
    width: 100%;
    padding: 0;
    height: auto;
  }

  section.features .features-slider {
    width: 100%;
  }

  .features-slider .owl-item .paragraph img {
    /*
    INCREASE OF THE HEIGHT OF THE ELEMENT INVERSE ANALOG TO THE WIDTH OF THE VIEW
    height: calc((600 / 1920) * (1920px + (1920px - 100vw)));
     */

    /*DECREASE OF THE HEIGHT OF THE ELEMENT ANALOG TO THE WIDTH OF THE VIEW BASED ON A FACTOR*/
    height: auto;
    width: 100vw;
  }

  .features-slider .caption-section {
    /*background-color: #011925; !*#6e1336 #06131a #a82044*!*/
    /*color: #fff;*/
    /*background-color: rgba(7, 38, 47, 0.25) !important;*/
    /*background: linear-gradient(rgba(1, 56, 86, 0.25), rgba(3, 115, 176, 0.05));*/
    position: relative;
    display: block;
    width: 100vw;
    padding: 20px;
    box-sizing: border-box;
    height: 170px;
  }

  /*.features-slider h3,*/
  /*.features-slider h4 {*/
  /*  color: #fff;*/
  /*}*/

  .features-slider .owl-nav {
    display: none;
  }
}

/*------ FEATURES & FEATURES SLIDER END -----------------------------------------------*/


/*------ ADDITIONAL INFORMATION SECTION -----------------------------------------------*/
section.additional-information img{
  width: 100%;
  height: auto;
}

/*------ ADDITIONAL INFORMATION SECTION END -------------------------------------------*/
