@charset "UTF-8";

:root {
  --primary: #00286A;
  --secondary: #D7FF36;
  --tertiary: #A0C7F8;
  --border: #3D3D3D;
  --body-bg: #1B1B1B;
  --sub-bg: #232323;
  --dark: #1B1B1B;
  --medium: #F4F4F4;
  --light: #B9B9B9;
  --white: #FFFFFF;
  --color-white: #FFFFFF;
  --bg-white: #FFFFFF;
  --success: #22CE2D;
  --info: #596AFF;
  --warning: #FFB800;
  --danger: #EC4848;
  --transition: all .3s;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-oswald: 'Oswald', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-montserrat);
  overflow-x: hidden !important;
  background: var(--body-bg);
  color: var(--medium);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

hr {
  background: var(--border);
  opacity: 1;
}

a,
a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

.btn:hover,
.btn:focus,
.btn:active {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

p {
  color: var(--medium);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.01em;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  transition: var(--transition);
  background: var(--body-bg);
  border-bottom: 1px solid var(--border);
  padding: 21px 0px;
}

.header .navbar {
  padding: 0;
  margin: 0;
}

.header .navbar .navbar-brand {
  padding: 0;
  margin: 0;
}

.header .navbar .navbar-brand img {
  width: 230px;
}

.header .navbar .nav-item {
  margin: 0px 35px;
}

.header .navbar .nav-item:nth-last-child(1) {
  margin-right: 0;
}

.header .navbar .nav-item .nav-link {
  color: var(--medium);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0px !important;
  transition: var(--transition);
}

.header .navbar .nav-item .nav-link:hover {
  color: var(--secondary);
}

.navbar-toggler {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  color: transparent;
}

.navbar-toggler-icon {
  background: url(../imgs/icons/menu.png) center no-repeat;
  width: 40px;
  height: 40px;
  background-size: 40px;
}

.section {
  position: relative;
  overflow-x: hidden;
  overflow: hidden;
}

.section_spacing {
  padding: 140px 0px;
}

.border {
  border: 1px solid var(--border);
}

.border_bottom {
  border-bottom: 1px solid var(--border);
}

.border_top {
  border-top: 1px solid var(--border);
}

.border_left {
  border-left: 1px solid var(--border);
}

.border_right {
  border-right: 1px solid var(--border);
}

.hero_section {
  padding-top: 100px;
}

.hero_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 140px 0px;
}

.hero_text h1 {
  color: var(--color-white);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero_text h1 span {
  width: 20px;
  height: 2px;
  background-color: var(--secondary);
  display: inline-block;
  margin-left: 6px;
}

.hero_text h2 {
  color: var(--color-white);
  font-weight: 700;
  font-size: 64px;
  line-height: 74px;
}

.hero_text h2 span {
  color: var(--secondary);
}

.hero_text p {
  margin: 0px 0px 10px;
}

.cmnbtn {
  position: relative;
  z-index: 1;
  box-shadow: none;
  outline: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 0px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 15px 34px;
  padding-right: 0;
  height: 56px;
  overflow: hidden;
  transition: var(--transition);
}

.btn_secondary {
  border-color: var(--white);
  background-color: var(--body-bg);
  color: var(--color-white);
}

.btn_secondary:hover {
  border-color: var(--secondary);
  background-color: transparent;
  color: var(--dark);
}

.cmnbtn span {
  width: 57px;
  height: 56px;
  min-width: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0px -1px 0px 34px;
  transition: var(--transition);
}

.btn_secondary span {
  background: var(--secondary);
  color: var(--dark);
}

.btn_secondary:hover span {
  background: var(--body-bg);
  color: var(--secondary);
}

.cmnbtn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  transition: var(--transition);
}

.cmnbtn:hover::before {
  left: 0;
  opacity: 1;
}

.hero_content {
  position: relative;
}

.hero_img {
  position: absolute;
  z-index: 4;
  right: 0%;
  bottom: 0%;
  width: 540px;
}

.hero_img img {
  width: 100%;
}

.hero_section_bg {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 25%;
  background-color: var(--tertiary);
}

.section_heading {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section_heading h1 {
  color: var(--color-white);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section_heading h1 span {
  width: 20px;
  height: 2px;
  background-color: var(--secondary);
  display: inline-block;
  margin-left: 6px;
}

.section_heading h2 {
  color: var(--color-white);
  font-weight: 700;
  font-size: 64px;
  line-height: 74px;
}

.section_heading h2 span {
  color: var(--secondary);
}

.section_heading h3 {
  font-family: var(--font-oswald);
  font-size: 150px;
  font-weight: 700;
  line-height: 130px;
  color: var(--secondary);
  margin-top: -10px;
}

.section_heading h6 {
  color: var(--medium);
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0.01em;
}

.section_heading.text-center {
  padding: 0% 10%;
}

.section_heading.text-center a.cmnbtn {
  margin-left: auto;
  margin-right: auto;
}

.about_img {
  position: relative;
}

.about_img img {
  width: 100%;
  border-radius: 40px;
  position: relative;
}

.about_img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2px solid var(--secondary);
  bottom: -20px;
  right: -20px;
  position: absolute;
  border-radius: 40px;
}

.family_section .section_heading h2 span {
  display: none;
}

.family_container {
  padding-left: 3.5%;
}

.family_section .section_heading {
  padding-right: 0px;
}

.family_slider {
  padding-left: 30px;
}

.family_slider .slick-list {
  margin: 0px -40px;
}

.family_slider .slick-slide {
  margin: 0px 40px;
}

.family_box_img img {
  width: 100%;
}

.family_box_text {
  padding: 20px 0px 0px;
}

.family_box_text h3 {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.18px;
  margin: 0px 0px 15px;
  position: relative;
}

.family_box_text h3 span {
  background: var(--body-bg);
  position: relative;
  z-index: 4;
  padding-right: 20px;
}

.family_box_text h3::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--border);
}

.family_box_text h2 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.paginator {
  position: relative;
  float: right;
  margin-bottom: 20px;
}

.paginator li {
  margin-top: 20px;
  position: relative;
  float: left;

  margin-right: 20px;
}

.paginator li.prev {
  display: block;
  height: 20px;
  width: 20px;
  background: url('../img/back.png') no-repeat;
}

.paginator li.next {
  display: block;
  height: 20px;
  width: 20px;
  background: url('../img/next.png') no-repeat;
}

.family_slider_control {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0px 0px;
}

.family_slider_control .slick-list.draggable {
  display: none;
}

.family_slider_control .slick-arrow {
  box-shadow: none;
  outline: none;
  border: none;
  background: transparent;
  color: var(--color-white);
  font-size: 36px;
  padding: 0px 10px;
  transition: var(--transition);
}

.family_slider_control .slick-arrow:hover {
  color: var(--secondary);
}

.service_box_col {
  padding-left: 0;
  padding-right: 0;
}

.service_box_col:nth-child(even) .service_box {
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
}

.service_box {
  position: relative;
  background-color: var(--sub-bg);
  padding: 100px 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service_box span {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 180px;
  font-weight: 700;
  line-height: 200px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--black);
  font-family: var(--font-oswald);
  opacity: 0.1;
}

.service_box img {
  width: 70px;
  height: 70px;
  object-fit: scale-down;
}

.service_box h2 {
  font-family: var(--font-oswald);
  color: var(--color-white);
  font-size: 46px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
}

.service_box p {
  color: var(--medium);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.18px;
}

.work_item_row {
  gap: 24px 0px;
}

.work_item {
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 30px;
}

.work_item img {
  width: 150px;
  height: 150px;
  object-fit: scale-down;
}

.story_img {
  position: relative;
}

.story_img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2px solid var(--secondary);
  bottom: -20px;
  right: -20px;
  position: absolute;
  z-index: -1;
  border-radius: 40px;
}

.story_img img {
  width: 100%;
  border-radius: 40px;
}

.story_img span {
  background: var(--primary);
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story_img span small {
  font-size: 23px;
  line-height: 24px;
}

.story_section .story_text {
  padding-left: 100px;
}

.story_boxes {
  margin-top: 30px;
}

.story_box h2:after {
  content: "+";
  display: inline-block;
}

.story_box h2 {
  color: var(--secondary);
  font-size: 90px;
  font-weight: 700;
  line-height: 90px;
  font-family: var(--font-oswald);
  margin: 0px 0px 20px;
}

.story_box h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: var(--color-white);
}

.contact_section .section_heading.text-center a.cmnbtn {
  margin-top: 20px;
}

.contact_section {
  background: url(../imgs/background/graph.png) center no-repeat var(--body-bg);
  background-size: cover;
}

.footer {
  border-top: 1px solid #222;
  ;
  background: #0C0C0C;
}

.footer_about {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 40px;
}

.footer_about img {
  width: 230px;
}

.footer_social ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid #222;
  border-right: 1px solid #222;
}

.footer_social ul li {
  border-bottom: 1px solid #222;
  width: 100%;
}

.footer_social ul li a {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 40px 20px;
  display: block;
  width: 100%;
  transition: var(--transition);
}

.footer_social ul li a:hover {
  color: var(--secondary);
}

.footer_info {
  text-align: left;
  padding: 0px 0px 0px 80px;
}

.footer_info h1 {
  color: var(--secondary);
  font-family: var(--font-oswald);
  font-size: 120px;
  font-weight: 700;
  line-height: 170px;
  text-transform: uppercase;
}

.footer_info ul {
  display: flex;
  flex-direction: column;
  gap: 10px 0px;
}

.footer_info ul li {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.4px;
  font-family: var(--font-montserrat);
  text-transform: lowercase;
  display: flex;
  gap: 0px 15px;
}

.footer_info ul li span {
  color: var(--secondary);
}

.footer_copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0px;
  border-top: 1px solid #222;
}

.footer_copyright h4 {
  color: var(--light);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.32px;
}