:root{
  --font:  "Livvic", "Arial", sans-serif;
  --bg-color:#014E56;
  --coral:#F67E7E;
  --light:#fff;
  --state-green:#012F34;
  --dark-green:#002529;

}

/* livvic-600 - latin */
@font-face {
  font-family: "Livvic";
  font-style: normal;
  font-weight: 600;
  src: local(""),
  url("../fonts/livvic-v11-latin-600.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
  url("../fonts/livvic-v11-latin-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* livvic-700 - latin */
@font-face {
  font-family: "Livvic";
  font-style: normal;
  font-weight: 700;
  src: local(""),
  url("../fonts/livvic-v11-latin-700.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
  url("../fonts/livvic-v11-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* GLOBAL */
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  background-color: var(--bg-color);
  color: var(--light);
  z-index: 2;
  overflow-x: hidden;
}
ul{
  list-style: none;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}

a{
  text-decoration: none;
  color: inherit;
}

.btn{
  padding: 10px 32px;
  box-sizing: border-box;
  border-radius: 24px;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:active{
  opacity: 0.7;
}

.btn-light{
  border: 2px solid var(--light);
  color: var(--light);
}

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

.btn-dark{
  border: 2px solid var(--state-green);
  color: var(--state-green);
}
.btn-dark:hover{
  background-color:var(--state-green);
  color:var(--light);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1440px;
  padding-left: 165px;
  padding-right: 165px;
  margin-left: auto;
  margin-right: auto;
}


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

.header{
  padding-top: 75px;
  padding-bottom: 130px;
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin:0 auto;
  background-color: var(--bg-color);
  height: 700;

}

/* NAVBAR  */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.logo:hover{
  cursor: pointer;
  opacity:0.8;
}

.logo:active{
  opacity:0.6;
}

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


.nav {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.links:not(:last-child){
  margin-right: 40px;
  margin-left: 80px;

}
.links{
  text-transform: lowercase;
  font-size: 18px;
  line-height: 28px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.links:hover{
  opacity: 0.8;
}

.links:active{
  opacity: 0.6;
}


/* Hero part  */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1440px;
  width: 100%;
  overflow-x:hidden;
}
.hero-title {
  font-weight: bold;
  font-size: 100px;
  line-height: 100px;
}
.hightlighted {
  color: var(--coral);
}
.hero-content {
  width: 445px ;
}
.just-line {
  width: 50px;
  height: 4px;
  background-color: #79C8C7;
  margin-bottom: 79px;
}
.hero-text {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.hero-dec{
  position: absolute;
  bottom: 0;
  right: 165px;
  transform: translateY(50%);
  z-index:0;
}

.hero-dec-d{
  position: absolute;
  left: 0;
  top: 250px;
  transform: translateX(-50%);
  z-index: 0;
}


/* FEATURES  */

.features {
  z-index: 2;
  background-color: var(--state-green);
  max-width: 1440px;
  width: 100%;
  margin:0 auto;
  padding: 140px 0;
  position: relative;


}

.just-line-light{
  background-color: var(--coral);
  width: 50px;
  height: 4px;
  margin-bottom: 54px;
}
.features-wrapper {
  display: flex;
  justify-content: space-between;
}
.features-title {
  font-weight: bold;
  font-size: 48px;
  line-height: 48px;

}

.detail-content {
  display: flex;
  align-items: center;
}
.details {
  margin-left: 23px;
}
.detail-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: var(--coral);
}
.detail-text {
  width: 445px;
  opacity: 0.8;
  font-weight: 600;
  font-size: 15px;
  line-height: 25px;
}

.feature-dec{
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(50%);
}


/* INDEX_ABOUT Stylesheets */
.index-about {
  max-width: 1440px;
  width: 100%;
  margin:0 auto;
  padding-top: 140px;
  padding-bottom: 150px;
  position: relative;
}

.index-about-title {
  font-weight: bold;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 92px;
}

.special-text{
  color: #79C8C7
  ;
}
.index-about-content {
  display: flex;
  justify-content: space-between;
}
.index-about-data {
  text-align: center;
  position: relative;
  width: 350px;
}
.data-text {
  margin:0;
  font-weight: 600;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 24px;
}
.data-owner-name {
  display: block;
  color: #79C8C7;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
}
.owner-position {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  margin-top: 2px;
  margin-bottom: 32px;
}
.person {
  border-radius:50%;
}
.index-about-dec {
  position: absolute;
  top: 0;
  left: 40%;
  transform: translateY(-90%);
}
.index-about-top {
  position: absolute;
  top: 0;
  left: 0;
}
.index-about-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
}



/* Footer part  */


/* index-offer  */
.offer {
  max-width: 1440px;
  width: 100%;
  margin:0 auto;

  background-color: var(--coral);
  position: relative;
  height: 200px;

}

.offer-wrapper{
  display: flex;
  justify-content: space-around;
  align-items: center;

}

.offer-title {
  font-weight: bold;
  font-size: 48px;
  line-height: 48px;
  /* identical to box height, or 100% */
  color: #012F34;
  margin:0;
  padding: 76px 0;
}

.offer-dec{
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(25%);

}


/* Footer bar style  */
.footer-bar {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--dark-green);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-data {
  display: flex;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.logo {
  z-index: 1;
}
.foot-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

}
.f-links {
  margin-right: 40px;
  cursor: pointer;
}
.f-links:hover{
  opacity: 0.7;
}
.footer-details {
  margin-left: 125px;
  opacity: 0.6;
  font-weight: 600;
  font-size: 15px;
  line-height: 25px;
}
.social-media {
  text-align: end;
}

/* Yemagan joyi  */

.svg-social {
  margin-left: 15px;
  cursor: pointer;
}
.svg-social:active{
  opacity: 0.7;
}

.svg-icons{
  padding: 5px;
  margin-left: 16px;
}

.svg-icons:hover .svg-social{
  fill: var(--coral);
}
.copyright {
  opacity: 0.6;
  margin-top: 51px;
}

/* ABOUT PAGE  */

.about {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 120px;
}

.about-wrapper {
  display: flex;
  justify-content: space-between;
}
.about-page-title {
  font-weight: bold;
  font-size: 64px;
  line-height: 100px;

}
.about-content {
  width: 720px;
}

.about-text {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;

}

.about-dec{
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(50%);
}

/* directors */
.directors {
  background-color:#004047;
  padding-bottom: 168px;
  padding-top: 140px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.directors-dec-l {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
}
.directors-dec-r {
  position: absolute;
  bottom: 0;
  right: 0;

}

.directors-title {
  font-weight: bold;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 64px;
}

.directors-main-wrapper{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.directors-wrapper {
  width: 320px;
  height: 253px;
  position: relative;
  perspective: 1000px;
  margin-bottom: 76px ;



}
.d-cards-front , .d-card-back {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 48px;
  background-color: var(--dark-green);
  text-align: center;
  padding-top: 32px;
  position: absolute;
  backface-visibility: hidden;
  transition: 1s;


}

.d-card-back{
  transform: rotateY(180deg);
}

.directors-wrapper:hover .d-cards-front{
  transform: rotateY(180deg);
}
.directors-wrapper:hover .d-card-back{
  transform: rotateY(360deg);
}

.person-img {
  width: 96px;
  height: 96px;
  border-radius:50%;
}
.person-name {
  margin: 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color:  #79C8C7;;
}
.person-position {
  margin: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
}
.more-less {
  width: 56px;
  height: 56px;
  background-color: var(--coral);
  position: absolute;
  bottom: 0;
  border-radius:50%;
  left: 137px;
  transform: translateY(50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all ease 0.3s;
}

.more-less:hover{
  background-color: #79C8C7;

}

/* CLIENTS  */
.clients {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 0 ;
  position: relative;
  background-color: var(--state-green);
}

.clients-title {
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
}
.clients-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clients-dec {
  position: absolute;
  top: 0;
  left: 0;
}


/* CONTACT PAGE  */
.contact-text{
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
}

.contact {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 120px;
  position: relative;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;}

.contact-title {
  font-weight: bold;
  font-size: 64px;
  line-height: 100px;
  margin: 0;

}

.contact .hightlighted{
  font-weight: bold;
font-size: 32px;
line-height: 48px;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.in {
  width: 500px;
  background-color:rgba(0, 0, 0, 0);
  outline: none;
  border:none;
  padding: 16px 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid #fff;
  color: #fff;
  cursor: pointer;
}
.in::placeholder , .message::placeholder{
  font-weight: 600;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.115385px;
  color: #FFFFFF;
  mix-blend-mode: normal;
  opacity: 0.6;

}
.message {
  max-width: 500px;
  min-height: 140px;
  padding: 18px 10px;
  resize: none;
  background-color: rgba(0, 0, 0, 0);
  border:none;
  outline: none;
  color: #fff;
}

.contact-dec-l {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
}
.contact-dec-r {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}