@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

body {
    font-size: 15px;
}
.circle-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  box-sizing: border-box;
}
.circle-cursor--outer {
  width: 30px;
  height: 30px;
  /* border: 1px solid black; */
  z-index: 12000;
  background: rgba(255, 255, 255, 0.35)
}
.circle-cursor--inner {
  width: 8px;
  height: 8px;
  left: -4px;
  top: -4px;
  z-index: 11000;
  background: white;
}

::selection 
{
    color: #000;
    background: #e8e8e8;
}

a {
    text-decoration: none;
    color: var(--third);
}
a:hover
{
    color: var(--primary);
}

button:focus {
    outline: none!important;
    box-shadow: none!important;
}

:root {
    --primary: #0076BB;
    --secondary: #50AF48;
    --third: #00131F;
}

.navbar-toggler
{
        background-color: #ffffff;
    border-radius: 100px;
    height: 35px;
    width: 35px;
}

#loading{
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    margin-top: 0px;
    top: 0px;
}
#loading-center{
    width: 100%;
    height: 100%;
    position: relative;
    }
#loading-center-absolute {
position: absolute;
    left: 0;
    right: 0;
    top: 44%;
    margin: auto;
    text-align: center;

}
#loading img
{
    width: 70px;
}


button
{
    width: auto;
}
.rounded-6
{
    border-radius: 12px;
}
.border_2
{
    border: 2px solid #0076bb;
}
.text_primary
{
    color: var(--primary);
}
.bg_primary
{
    background-color: var(--primary);
}
.bg_secondary
{
    background-color: var(--secondary);
}
.text_secondary
{
    color: var(--secondary);
}
.text_third
{
    color: var(--third);
}
.bg_third
{
    background-color: var(--third);
}

.b_400
{
    font-weight: 400;
}
.b_500
{
  font-weight: 500;  
}
.b_600
{
   font-weight: 600; 
}
.b_700
{
    font-weight: 700;
}
.pb-6 
{
    padding-bottom: 5rem!important;
}
.pt-6 
{
    padding-top: 5rem!important;
}
.px-6 
{
    padding-top: 5rem!important;
    padding-bottom: 5rem!important;
}
.pb-7 
{
    padding-bottom: 7rem!important;
}
.pt-7 
{
    padding-top: 7rem!important;
}
.px-7 
{
    padding-top: 7rem!important;
    padding-bottom: 7rem!important;
}
ul.custom li
{
    margin-bottom: 10px;
    position: relative;
}
ul.custom li::before
{
    content: "";
    background-image: url(../graphics/bullet.svg);
    display: inline-block;
    width: 15px;
    height: 10px;
    position: absolute;
    left: -25px;
    top: 4px;
    background-size: contain;
    background-repeat: no-repeat;
}
.form-control
{
        padding: 15px 20px;
    background-color: #EFF4F7;
    border: none;
    border-radius: 13px;
    font-size: 14px;
}




/* width */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f8f8f8;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #50AF48;
    border-radius: 10px;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #50AF48;
}


/*Header start*/

header
{
    position: relative;
    z-index: 99;

    /*background: rgb(255,255,255);
    background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);*/
}
header nav .navbar-brand .logo {
    width: 130px;
}

header nav .nav-item {
    margin: 0 3px;
}

header nav .nav-link {
    transition: all ease 0.3s;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

header nav .nav-item:not(:last-child) .nav-link:hover,
header nav .nav-item:not(:last-child) .nav-link.active {

	color: white;
}

header .navbar-nav .nav-link span {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

header .navbar-nav .nav-link.active span {
    /*background-clip: text;
    -webkit-background-clip: text;
    color: transparent;*/
}

header .navbar-nav .nav-link span:after {
    content: "";
    width: 5px;
    border-radius: 100px;
    height: 0;
    bottom: 25px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
    transition: height .6s cubic-bezier(.25, .8, .25, 1) 0s;
    background: #ffffff;
    margin: auto;
}

header .navbar-nav .nav-link:hover span:after,
header .nav-item .nav-link.active span:after {
    height: 45px;
}

.navbar-light .navbar-toggler {
    color: var(--primary);
    border: none;
}

.navbar-light .navbar-toggler i:before {
    font-size: 24px;
}

header .contact button
{
    max-width: 150px;
}
header .contact .active button
{
    background-color: var(--primary)!important;
    color: #fff;
}
header .dropdown-menu
{
    padding: 25px 16px;
    border: none;
    border-radius: 1rem;
    box-shadow: 0px 5px 10px 0px #0006;
        font-size: 15px;
}

/*Header end*/

#return-to-top {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: #333333;
    width: 35px;
    height: 35px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 100px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: rotate(270deg);
    padding: 7px 10px;
}

#return-to-top i:before {
    font-size: 15px;
    font-weight: bold;
    color: white;
}



/*home*/
.home_page .main_3d
{
  width: 100%;
  height: 100%;
  position: absolute;
    top: 0;
    left: 0;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    background: #222222;
    overflow: hidden;
}
.home_page .main_3d .main_page
{
  width: 100%;
  height: 100%;
  position: absolute;
    top: 0;
    left: 0;
-webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: translateZ(0);
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.home_page .main_3d .main_page .layers
{
    position: absolute;
    left: -4.166vw;
    top: -4.166vw;
    right: -4.166vw;
    bottom: -4.166vw;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    transform-origin: center;
}

.home_page .main_3d .main_page .layers.forest
{
  /*background-image: url(../graphics/3d/forest.jpg);
  z-index: 0;*/
}
.home_page .main_3d .main_page .butterfly
{
  z-index: 8;
  position: absolute;
  bottom: 10%;
  left: 17%;
  transform: translateZ(168px) translateY(-28px);
}
.home_page .main_3d .main_page .layers.forest2
{
    /*background-image: url(../graphics/3d/forest2.png);
    z-index: 2;
    transform: translateZ(80px) scale(.9);
    -moz-transform: translateZ(80px) scale(.9);
    -webkit-transform: translateZ(80px) scale(.9);*/
}

.home_page .main_3d .main_page .layers.chakram
{
    /*background-image: url(../graphics/3d/chakram.png);
    z-index: 3;
    transform: translateZ(139px) translateX(-15px) scale(0.9);
    -moz-transform: translateZ(139px) translateX(-15px) scale(0.9);
    -webkit-transform: translateZ(139px) translateX(-15px) scale(0.9);*/
}


.home_page .main_3d .main_page .layers.river
{
    /*background-image: url(../graphics/3d/river.png);
    z-index: 4;
    transform: translateZ(168px) translateY(-28px) scale(0.9);
    -moz-transform: translateZ(168px) translateY(-28px) scale(0.9);
    -webkit-transform:translateZ(168px) translateY(-28px) scale(0.9);*/
}

.home_page .main_3d .main_page .content
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    font-size: 100px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    transform: translateZ(320px) scale(0.6);

}
.home_page .main_3d .main_page .content span
{
  width: 100%;
  text-transform: uppercase;
  line-height: 1;
}
.home_page .main_3d .main_page .layers.drops
{
    /*background-image: url(../graphics/3d/drops.png);
    z-index: 6;
    transform: translateZ(380px);
    -moz-transform: translateZ(380px);
    -webkit-transform: translateZ(380px);*/
}

.home_page .main_3d .main_page .hover_3d
{
  transition: all ease 0.05s;
  transform-style: preserve-3d;
}








.home_page .main_3d .main_page .layers.forest
{
  background-image: url(../graphics/3d2/forest.jpg);
  z-index: 0;
  transform: translateZ(0) scale(1);
      filter: blur(1px);
}
.home_page .main_3d .main_page .layers.chakram
{
    background-image: url(../graphics/3d2/chakram.png);
    z-index: 2;
    transform: translateZ(30px) scale(.9);
    -moz-transform: translateZ(30px) scale(.9);
    -webkit-transform: translateZ(30px) scale(.9);
}
.home_page .main_3d .main_page .layers.tree
{
    background-image: url(../graphics/3d2/tree.png);
    z-index: 2;
    transform: translateZ(210px) scale(.8);
    -moz-transform: translateZ(210px) scale(.8);
    -webkit-transform: translateZ(210px) scale(.8);
}
.home_page .main_3d .main_page .layers.leaves
{
    background-image: url(../graphics/3d2/leaves.png);
    z-index: 5;
    transform: translateZ(500px) scale(0.45);
    -moz-transform: translateZ(500px) scale(0.45);
    -webkit-transform: translateZ(500px) scale(0.45);
    pointer-events: none;
    background-size: cover;
    background-position: center;
}
.home_page .main_3d .main_page .layers.smoke
{
    background-image: url(../graphics/3d2/smoke.png);
    z-index: 5;
    transform: translateZ(390px) scale(0.6);
    -moz-transform: translateZ(390px) scale(0.6);
    -webkit-transform: translateZ(390px) scale(0.6);
    pointer-events: none;
    background-size: cover;
    background-position: center;
}

















.home_page
{
    margin-top: -108px;
}
.home_page .section1
{
    position: relative;
    height: 100vh;
}
.home_page .section1 .scroll_down
{
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
    width: 130px;
    height: 48px;
    background-image: url(../graphics/shape1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
}
.home_page .section1 .scroll_down i
{
    animation: down;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
@keyframes down {
  from {
    transform: translate(0px, -20px);
    opacity: 0;

    }
  to {
    transform: translate(0px, 12px);
    opacity: 1;
    }
}

.home_page .section2
{
    background-image: url(../graphics/bg_dot.gif);
    background-size: 193%;
    background-repeat: no-repeat;
    background-position: center;
}

.home_page .section2 #morph {
    /* Center the text in the viewport. */
    /*position: absolute;*/
    margin: auto;
    width: 100%;
    /*height: 80pt;*/
    top: 0;
    bottom: 0;
    /* This filter is a lot of the magic, try commenting it out to see how the morphing works! */
    filter: url(#threshold) blur(0.4px);
}

/* Your average text styling */
.home_page .section2 #text1, .home_page .section2 #text2 {
    position: absolute;
    width: 100%;
    display: inline-block;
    color: var(--third);
    font-size: 75pt;
    font-weight: 900;
    text-align: center;
    user-select: none;
}
.home_page .section3 .swiper
{
    height: 500px;
    max-width: 400px;
}
.home_page .section3 .swiper .swiper-slide img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home_page .section3 .swiper .swiper-slide
{
    height: 500px !important;
    max-width: 500px;
}

.home_page .section3 .swiper .swiper-slide .content
{
    position: absolute;
    bottom: 0;
    backdrop-filter: blur(4px);
    padding: 15px 20px;
    background-color: #0000007a;
    line-height: 1.2;
    padding-right: 35px;
}
.home_page .section3 .swiper .swiper-slide .content i
{
    font-size: 22px;
    position: absolute;
    right: 16px;
}
.home_page .section3 .inf-gradient::after
{
    content: "";
    background: rgb(0,19,31);
    background: -moz-linear-gradient(180deg, rgba(0,19,31,0) 15%, rgba(0,19,31,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,19,31,0) 15%, rgba(0,19,31,1) 100%);
    background: linear-gradient(180deg, rgba(0,19,31,0) 15%, rgba(0,19,31,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00131f",endColorstr="#00131f",GradientType=1);

    width: 100%;
    height: 50px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.home_page .section3 .inf-gradient::before
{
    content: "";
    background: rgb(0,19,31);
    background: -moz-linear-gradient(0deg, rgba(0,19,31,0) 15%, rgba(0,19,31,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,19,31,0) 15%, rgba(0,19,31,1) 100%);
    background: linear-gradient(0deg, rgba(0,19,31,0) 15%, rgba(0,19,31,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00131f",endColorstr="#00131f",GradientType=1);
    width: 100%;
    height: 50px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index:2;
}


.home_page .section4 .swiper-slide
{
    max-width: 460px;
    background: #f8f8f8;
    padding: 30px;
}
.home_page .section4 .swiper-slide h1
{
    -webkit-text-stroke-color: var(--third);
    -webkit-text-stroke-width: 1px;
    color: transparent;
    font-weight: 900;
}
.home_page .section4 .swiper-slide li
{
    font-size: 14px;
    line-height: 1.3;
}
.home_page .section4 .swiper-scrollbar 
{
    background: transparent;
}



.home_page .section5
{
    background-image: url(../graphics/bg1.jpg);
    background-size: cover;
    background-position: center;
}
.home_page .section5::before
{
content: "";
    background: rgb(255 255 255 / 26%);
 
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
/*home*/

/*footer*/
footer .section1::before
{
    content: "";
    background-image: url(../graphics/icon.svg);
    width: 380px;
    height: 380px;
    display: block;
    position: absolute;
    right: 0;
    top: 7%;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    mix-blend-mode: luminosity;
}
footer .section2
{
   background-color: #eff4f7 ;
       margin-left: 8%;
    margin-top: -115px;
    padding: 0 60px;
}

/*footer*/

/*about*/
.about_page
{
    margin-top: -98px;
}
.about_page .section1
{
    position: relative;
    height: 80vh;
}

.about_page .main_3d
{
  width: 100%;
  height: 100%;
  position: absolute;
    top: 0;
    left: 0;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    background: #222222;
    overflow: hidden;
}
.about_page .main_3d .main_page
{
  width: 100%;
  height: 100%;
  position: absolute;
    top: 0;
    left: 0;
-webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: translateZ(0);
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.about_page .main_3d .main_page .layers
{
    position: absolute;
    left: -4.166vw;
    top: -4.166vw;
    right: -4.166vw;
    bottom: -4.166vw;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    transform-origin: center;
}

.about_page .main_3d .main_page .layers.bg
{
  background-image: url(../graphics/about/bg.jpg);
  z-index: 0;
}
.about_page .main_3d .main_page .butterfly
{
  z-index: 8;
  position: absolute;
  bottom: 10%;
  left: 17%;
  transform: translateZ(168px) translateY(-28px);
}
.about_page .main_3d .main_page .layers.forest2
{
  background-image: url(../graphics/3d/forest2.png);
  z-index: 2;
transform: translateZ(80px) scale(.9);
    -moz-transform: translateZ(80px) scale(.9);
    -webkit-transform: translateZ(80px) scale(.9);
}

.about_page .main_3d .main_page .layers.chakram
{
  background-image: url(../graphics/3d/chakram.png);
  z-index: 3;
transform: translateZ(139px) translateX(-15px) scale(0.9);
    -moz-transform: translateZ(139px) translateX(-15px) scale(0.9);
    -webkit-transform: translateZ(139px) translateX(-15px) scale(0.9);
}


.about_page .main_3d .main_page .layers.river
{
    background-image: url(../graphics/3d/river.png);
    z-index: 4;
    transform: translateZ(168px) translateY(-28px) scale(0.9);
    -moz-transform: translateZ(168px) translateY(-28px) scale(0.9);
    -webkit-transform:translateZ(168px) translateY(-28px) scale(0.9);
}

.about_page .main_3d .main_page .content
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    transform: translateZ(180px) scale(0.8);

}

.about_page .main_3d .main_page .layers.leaves
{
  background-image: url(../graphics/3d/leaves.webp);
  z-index: 5;
  transform: translateZ(300px);
    -moz-transform: translateZ(300px);
    -webkit-transform: translateZ(300px);
    pointer-events: none;
    background-size: cover;
    background-position: center;
}
.about_page .main_3d .main_page .layers.drops
{
  background-image: url(../graphics/3d/drops.webp);
  z-index: 6;
  transform: translateZ(380px);
    -moz-transform: translateZ(380px);
    -webkit-transform: translateZ(380px);
}

.about_page .main_3d .main_page .hover_3d
{
  transition: all ease 0.05s;
  transform-style: preserve-3d;
} 
.about_page .section1 .main_3d .bg::before
{
    background: rgb(0,0,0);
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9951330874146533) 89%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9951330874146533) 89%);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9951330874146533) 89%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);

    content: "";
        display: block;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.about_page .section2
{
    margin-top: -140px;
    background: rgb(239,244,247);
    background: -moz-linear-gradient(180deg, rgba(239,244,247,0) 37%, rgba(239,244,247,1) 51%);
    background: -webkit-linear-gradient(180deg, rgba(239,244,247,0) 37%, rgba(239,244,247,1) 51%);
    background: linear-gradient(180deg, rgba(239,244,247,0) 37%, rgba(239,244,247,1) 51%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eff4f7",endColorstr="#eff4f7",GradientType=1);
}
.about_page .section2 .swiper-slide 
{
        background-position: center;
        background-size: cover;
        width: 500px;
        height: 320px;
}
.about_page .section2 .swiper-slide img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_page .section2 .swiper
{
    padding: 15px 0;
}
.about_page .section2 .swiper .swiper-slide .content
{
    position: absolute;
    bottom: 0;
    backdrop-filter: blur(4px);
    padding: 15px 20px;
    background-color: #0000007a;
    line-height: 1.2;
    padding-right: 35px;
}
.about_page .section2 .swiper .swiper-slide .content i
{
    font-size: 22px;
    position: absolute;
    right: 16px;
}

.about_page .section5 .swiper-slide 
{
        background-position: center;
        background-size: cover;
        width: 500px;
        height: 350px;
}
.about_page .section5 .swiper-slide img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_page .section5 .swiper .swiper-slide .content
{
    position: absolute;
    bottom: 0;
    backdrop-filter: blur(4px);
    padding: 15px 20px;
    background-color: #0000007a;
    line-height: 1.2;
    padding-right: 35px;
}
.about_page .section5 .swiper .swiper-slide .content i
{
    font-size: 22px;
    position: absolute;
    right: 16px;
}
.about_page .section5 .swiper
{
    top: -90px;
}
.about_page .section5
{
    padding-left: 9%;
}
.about_page .section5 .swiper .swiper-pagination
{
    left: 0;
    transform: none;
    bottom: 0;
}
.about_page .section5 .swiper .swiper-pagination-bullet
{
    width: 10px;
    height: 10px;
    background-color: #fff;
}
.about_page .section5 .swiper .swiper-pagination-bullet-active
{
    background-color: var(--secondary);
}
/*about*/

/*product*/
.products_page
{
    margin-top: -108px;
}
.products_page .section1
{
    position: relative;
    height: 80vh;
}
.products_page .section1 img
{
        position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products_page .section1 .container
{
    z-index: 1;
}

.products_page .section1::before
{
    background: rgb(0,0,0);
    background: -moz-linear-gradient(180deg, rgb(0 0 0 / 20%) 0%, rgba(0,0,0,0.9951330874146533) 89%);
    background: -webkit-linear-gradient(180deg, rgb(0 0 0 / 20%) 0%, rgba(0,0,0,0.9951330874146533) 89%);
    background: linear-gradient(180deg, rgb(0 0 0 / 20%) 0%, rgba(0,0,0,0.9951330874146533) 89%);

    content: "";
        display: block;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.products_page .section2
{
    margin-top: -140px;
    background: rgb(239,244,247);
    background: -moz-linear-gradient(180deg, rgba(239,244,247,0) 37%, rgba(239,244,247,1) 51%);
    background: -webkit-linear-gradient(180deg, rgba(239,244,247,0) 37%, rgba(239,244,247,1) 51%);
    background: linear-gradient(180deg, rgba(239,244,247,0) 37%, rgba(239,244,247,1) 51%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eff4f7",endColorstr="#eff4f7",GradientType=1);
}
.products_page .section2 .swiper-slide 
{
        background-position: center;
        background-size: cover;
        width: 500px;
        height: 320px;
}
.products_page .section2 .swiper 
{
    padding: 15px 0;
}
.products_page .section2 .swiper-slide img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/*product*/

/*contact*/
.contact_page
{
    margin-top: -98px;
}
.contact_page .section1
{
    background-image: url(../graphics/bg_dot.gif);
    min-height: 80vh;
        background-size: 190%;
    background-repeat: no-repeat;
    background-position: center;

}
/*contact*/

/*team*/
.team_page
{
    margin-top: -98px;
}
.team_page .section1
{
    background-image: url(../graphics/bg_dot.gif);
    min-height: 80vh;
        background-size: 190%;
    background-repeat: no-repeat;
    background-position: center;

}
.team_page .content
{
    position: absolute;
    bottom: 0;
    padding: 15px 20px;
    background-color: #000000a3;
    line-height: 1.2;
    padding-right: 35px;
    left: 0;
    width: 100%;
}
/*contact*/



.products_page.haritha_graham .video iframe,
.products_page.haritha_graham .image img
{
    border-radius: 15px;
    overflow: hidden;
}
.products_page.haritha_graham .video iframe
{
    /*max-width: 663px;*/
    height: 368px;
    width: 100%;
}

.products_page.haritha_graham .image img
{
    width: 100%;
    /*max-width: 600px;*/
}
