html{
    overflow-x:hidden; scroll-behavior: smooth;
}
body{
    margin: 0;   overflow-x:hidden;   
         font-family: 'TurismoCF';
scroll-behavior: smooth;
}p{
  font-family: "Roboto Flex", sans-serif;
}
a{
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;

}button{
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;

}
/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}
.milphone{
  width:70%;
  float:right;
  margin-top: 5px;
}
.head {
    width: 100%;
    float: left;
    padding-top: 45px;
}.logo {
    width: 30%;
    float: left;
    position: relative;
    z-index: 9;
}.logo img {
    width: 100%;
    float: left;
    position: relative;
    max-width: 140px;
}

:root {
  --color-primary: #59595c;
  --color-secondary: #59595c;
  --color-dark: #59595c;
  --color-light: #59595c;
  --td: 450ms;
  --te: cubic-bezier(0.250, 0.61, 0.355, 1);
}






.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  margin: 0 auto;
  max-width: 45rem;
  padding: 1rem;
}
.page-container > * + * {
  margin-top: 1.5rem;
}

.nav-main {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  z-index: 99;
  left: -100%;
  position: fixed;
  transition: left 0s calc(var(--td) * 2), transform 0s calc(var(--td) * 2);
  width: 100%;
  margin-top: -147px;
  height: 100% !important;
}
.nav-main::before, .nav-main::after {
  content: "";
  background-color: #111111;
  height: 50%;
  left: 0;
  position: absolute;
  transform: translateX(-110%);
  transform-origin: 0 50%;
  transition: transform calc(var(--td) * 2) var(--td) var(--te);
  width: 100%;
  z-index: -100;
}
.nav-main::before {
  top: 0;
}
.nav-main::after {
  bottom: 0;
}
.nav-main .menu__item {
  opacity: 0;
  transform: translateX(-1rem);
  transition: opacity var(--td) var(--te), transform var(--td) var(--te);
}

[id=main-navigation-toggle] {
  opacity: 0;
  position: fixed;
  top: -100%;
}
[id=main-navigation-toggle] ~ label {
  cursor: pointer;
  /* position: absolute; */
  /* right: 0; */
  top: 21px;
  /*z-index: 1000000;*/
}.thumb-top{
  float: right;
}
[id=main-navigation-toggle] ~ label span {
  display: block;
  /* height: 2rem; */
  /* padding: 0.5rem; */
  position: relative;
  /* transition: transform calc(var(--td) * 3) var(--te); */
  /* width: 2rem; */
  z-index: 999;
  transition: all ease-in-out .2s;
}
.nav-click img
{
  width: 100px;
}
[id=main-navigation-toggle] ~ label span::before, [id=main-navigation-toggle] ~ label span::after {
  /* background-color: #ca141c; */
  bottom: 0;
  content: "";
  height: 2px;
  left: 0px;
  transition: all ease-in-out .2s;
  margin: auto;
  position: absolute;
  right: 0;
  /* transition: transform calc(var(--td) * 3) var(--te); */
  top: 1px;
  transition: all ease-in-out .2s;
  /* width: calc(100% - 1rem); */
  width: 28px;
}
[id=main-navigation-toggle] ~ label span::before {
  transform: rotate(0) translateY(-280%);
}
[id=main-navigation-toggle] ~ label span::after {
  transform: rotate(0) translateY(280%);
}

[id=main-navigation-toggle]:checked ~ label span {
  /* transform: rotate(1turn); */
  background: #111111;
  border-radius: 50px;
  /* padding: 10px !important; */
  height: 100px;
  width: 100px;
  top: -20px;
}
[id=main-navigation-toggle]:checked ~ label span::before {
  transform: rotate(45deg);
  color: white;
  background-color: white;
  top: 0;
  left: 0;
}
[id=main-navigation-toggle]:checked ~ label span::after {
  transform: rotate(-45deg);
  color: white;
  background-color: #fff;
  top: 0;
  left: 0;
  transition: all ease-in-out .2s;
}

[id=main-navigation-toggle]:checked ~ .nav-main {
  left: 0;
  transition: transform 0s;
}
[id=main-navigation-toggle]:checked ~ .nav-main::before, [id=main-navigation-toggle]:checked ~ .nav-main::after {
  transform: translateX(0);
  transition-delay: 0s;
}
[id=main-navigation-toggle]:checked ~ .nav-main::after {
  transition-delay: calc(var(--td) / 2);
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item {
  opacity: 1;
  transform: translateX(0);
  transition: opacity calc(var(--td) * 2) var(--te), transform calc(var(--td) * 2) var(--te);
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(1) {
  transition-delay: calc(var(--td) * 2 * (1 * 0.25));
  /* z-index: -1; */
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(2) {
  transition-delay: calc(var(--td) * 2 * (2 * 0.25));
  z-index: -2;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(3) {
  transition-delay: calc(var(--td) * 2 * (3 * 0.25));
  z-index: -3;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(4) {
  transition-delay: calc(var(--td) * 2 * (4 * 0.25));
  z-index: -4;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(5) {
  transition-delay: calc(var(--td) * 2 * (5 * 0.25));
  z-index: -5;
}

.menu {
  /* position: relative; */
  /* text-align: center; */
  /* z-index: 1; */
  width: 100%;
  float: left;
  padding: 0;
}
.menu > .menu__item {
  font-family: var(--font-family-secondary);
  font-size: 10vmin;
}

.submenu {
  /* left: 0; */
  /* opacity: 0; */
  /* position: absolute; */
  /* transform: translateY(-10%); */
  top: 100%;
  /* width: 100%; */
  /* visibility: hidden; */
  /* z-index: 2; */
  /* background: #000000; */
}
.submenu .menu__item {
  font-family: var(--font-family-primary);
  font-size: 3.5vmin;
  width: 100%;
}
.submenu .menu__link {
  color: var(--color-secondary);
  text-shadow: 1px 1px 0 var(--color-primary), 2px 2px 0 var(--color-primary);
}
.submenu .menu__link::before, .submenu .menu__link::after {
  display: none;
}

.menu__item {
  display: block;
  position: relative;
}
.menu__item:hover .menu__link::before, .menu__item:hover .menu__link::after {
  animation: blink 1s var(--td) steps(1, end) forwards infinite;
  transform: translateX(calc(100% - 0.5rem));
  transition-duration: calc(var(--td) * 3);
}
.menu__item:hover .menu__link::after {
  transition-delay: calc(var(--td) / 2);
}
.menu__item:hover .submenu {
  opacity: 1;
  transform: translateY(0);
  transition: all ease-in-out .5s;
  visibility: visible;
}

.menu__link {
  color: var(--color-dark);
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  padding: 0.5rem 1rem 0.125rem;
  position: relative;
  text-decoration: none;
  transition: color var(--td) var(--te), opacity var(--td) var(--te), transform var(--td) var(--te);
  z-index: 1;
}
.menu__link::before, .menu__link::after {
  content: "";
  background-color: var(--color-light);
  height: 50%;
  left: 0;
  position: absolute;
  transform: translateX(-110%);
  transform-origin: 0 50%;
  transition: transform 0s var(--te);
  width: 100%;
  z-index: -1;
}
.menu__link::before {
  top: 0;
}
.menu__link::after {
  bottom: 0;
}

.menu:not(:focus-within):not(:hover) .menu__item .menu__link {
  opacity: 1;
  transform: translate(0, 0);
}

.menu__item {
  --pull: 30%;
}
.menu__item .menu__link {
  opacity: 0.25;
  transition-duration: calc(var(--td) * 3);
  transform: translate(0, calc(var(--pull) * -1));
}
.menu__item .submenu .menu__link {
  opacity: 1;
}
.menu__item:hover > .menu__link {
  color: var(--color-secondary);
  opacity: 1;
  transform: translate(0, 0);
}
.menu__item:hover > .menu__link:hover {
  color: var(--color-light);
  transition-delay: 0s;
}
.menu__item:hover ~ .menu__item > .menu__link {
  transition-duration: calc(var(--td) * 3);
  transform: translate(0, var(--pull));
}

@keyframes blink {
  50%, 100% {
    opacity: 0;
  }
}
.banner{

margin-top: -185px;

width: 100%;

float: left;

background: #111111;

height: 748px;
}
.ban-text{

width: 100%;

float: left;

padding-top: 250px;

height: 100vh;
}
.ban-text h2{font-size: 85px;color: #fff;font-weight: 700;}.ban-text h2 span{font-weight: 300;width: 100%;float: left;position: relative;padding-left: 75px;}.ban-text p{font-size: 15px;color: #fff;font-weight: 300;line-height: 200%;padding-left: 75px;width: 70%;margin-top: 10px;float: left;}
.ban-img{
  width: 100%;
  height: 748px;
  object-fit: cover;
}.ban-text h2 span:after{
  content:'';
  position:absolute;
  width: 68px;
  height: 1px;
  background: #fff;
  left: 0;
  top: 50px;
}
.bannerimg{

width: 46%;

float: right;

height: 748px;
}
.banner-text{

width: 54%;

float: left;

padding: 0 0 0 10%;

height: 748px;
}@font-face {
    font-family: 'TurismoCF';
    src: url('../fonts/TurismoCF-Bold.eot');
    src: url('../fonts/TurismoCF-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/fonts/urismoCF-Bold.woff2') format('woff2'),
        url('../fonts/TurismoCF-Bold.woff') format('woff'),
        url('../fonts/TurismoCF-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TurismoCF';
    src: url('../fonts/TurismoCF-DemiBold.eot');
    src: url('../fonts/TurismoCF-DemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TurismoCF-DemiBold.woff2') format('woff2'),
        url('../fonts/TurismoCF-DemiBold.woff') format('woff'),
        url('../fonts/TurismoCF-DemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TurismoCF';
    src: url('../fonts/TurismoCF-ExtraBold.eot');
    src: url('../fonts/TurismoCF-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TurismoCF-ExtraBold.woff2') format('woff2'),
        url('../fonts/TurismoCF-ExtraBold.woff') format('woff'),
        url('../fonts/TurismoCF-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TurismoCF';
    src: url('../fonts/TurismoCF-Heavy.eot');
    src: url('../fonts/TurismoCF-Heavy.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TurismoCF-Heavy.woff2') format('woff2'),
        url('../fonts/TurismoCF-Heavy.woff') format('woff'),
        url('../fonts/TurismoCF-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TurismoCF';
    src: url('../fonts/TurismoCF-Light.eot');
    src: url('../fonts/TurismoCF-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TurismoCF-Light.woff2') format('woff2'),
        url('../fonts/TurismoCF-Light.woff') format('woff'),
        url('../fonts/TurismoCF-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TurismoCF';
    src: url('../fonts/TurismoCF-Medium.eot');
    src: url('../fonts/TurismoCF-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TurismoCF-Medium.woff2') format('woff2'),
        url('../fonts/TurismoCF-Medium.woff') format('woff'),
        url('../fonts/TurismoCF-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TurismoCF';
    src: url('../fonts/TurismoCF-Regular.eot');
    src: url('../fonts/TurismoCF-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TurismoCF-Regular.woff2') format('woff2'),
        url('../fonts/TurismoCF-Regular.woff') format('woff'),
        url('../fonts/TurismoCF-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.owl-item.active img{
    animation: img-anim-top 1s forwards cubic-bezier(.645,.045,.355,1);
}
.owl-item.active .banner-text{
    animation: img-anim-left 1s forwards cubic-bezier(.645,.045,.355,1) .4s;
  }
.img-custom-anim-top {
  animation: img-anim-top 1s forwards cubic-bezier(.645,.045,.355,1);
  opacity: 0;
}
@keyframes img-anim-top {
  0% {
      transform: translateY(-5%);
      clip-path: inset(0 0 100% 0);
      opacity: 0;
  }

  100% {
      transform: translateY(0);
      clip-path: inset(0 0 0 0);
      opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1s forwards cubic-bezier(.645,.045,.355,1) .4s;
  opacity: 0;
}
@keyframes img-anim-left {
  0% {
      transform: translateX(-5%);
      clip-path: inset(0 100% 0 0);
      opacity: 0;
  }

  100% {
      transform: translateX(0);
      clip-path: inset(0 0 0 0);
      opacity: 1;
  }
}
.panel1{

width: 100%;

float: left;

background: #161616;

padding: 70px 0;

text-align: center;
}.panel1 h1 span{
  font-weight:700;
}
.panel1 h1{

margin: 0;

font-size: 60px;

color: #fff;

font-weight: 300;
}
.panel2
{

width: 100%;

float: left;

background: #111;
}
.panel2 h1{

font-size: 54px;

color: #fff;

padding-bottom: 15px;
}
.panel2 h6{
  position: relative;
  font-size: 14px;
  color: #2B2B2B;
  font-weight: 600;
  padding-top: 65px;
  padding-left: 62%;
  padding-bottom: 10px;
}
.panel2 h6:after{
  position: absolute;
  content: '';
  background: #2B2B2B;
  width: 68px;
  height: 2px;
  left: 54%;
  top: 70px;
}
.panel2 p{

font-size: 15px;

color: #fff;

line-height: 200%;

font-weight: 300;

margin: 0;
}.panel2 a img{filter: invert(1);transform: rotate(-75deg);width: 24px;margin-left: 10px;margin-top: -1px;}
.panel2 a{

width: 174px;

height: 56px;

float: left;

background: #2B2B2B;

text-align: center;

font-size: 15px;

color: #fff;

text-decoration: none;

font-weight: 300;

font-family: "Roboto Flex", sans-serif;

padding: 16px 0;

border-radius: 30px;

margin-top: 20px;
}
.panel2 a:hover{
  
background: #1e1e1e;
}
.p2-img{
  
width: 555px;
  
float: left;
  
margin-right: 40px;
}
.panel3{

width: 100%;

float: left;

background: #111111;

padding: 95px 0 50px;
}
.p3-box{

width: 100%;

float: left;

padding-bottom: 50px;
}.no-k{
  /* width: auto !important; */
  margin-right: 13% !important;
}.no-k1 {
    /* width: auto !important; */
    margin-right: 21% !important;
}
.p3-box h5{position: relative;font-size: 50px;color: #fff;float: left;margin-right: 16%;/* width: 167px; */font-weight: 300;}.p3-box p{
  
font-size: 15px;
  
color: #fff;
  
padding: 2px 0 0 0;
  
font-weight: 300;
  
line-height: 200%;
}
.p3-box h5:after{
  position: absolute;
  content: '';
}
.bdr-p3{
  border-bottom: 2px solid #D9D9D6;
}
.panel4{
  background: linear-gradient(180deg, rgba(17,17,17,1) 50%, rgba(22,22,22,1) 50%);
  width: 100%;
  float: left;
  padding: 45px 0;
  position: relative;
}
.p4-left{

width: 96%;

float: left;

margin-top: 35px;
}
.p4-left h6{
  position: relative;
  font-size: 14px;
  color: #2B2B2B;
  font-weight: 600;
  padding-left: 80px;
}
.p4-left h6:after{
  position: absolute;
  content: '';
  background: #2B2B2B;
  width: 68px;
  height: 2px;
  left: 0;
  top: 6px;
}
.p4-box{width: 100%;float: left;margin-top: 30px;}
.p4-left h1{
  font-size: 60px;
  color: #fff;
  margin-top: 20px;
  float: left;
  width: 100%;
}
.p4-img{position:relative;float: left;width: 100%;overflow: hidden;z-index: 99;}
.p4-img:hover::before{
      -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.p4-img:before{
      position: absolute;
      top: 0;
      left: -75%;
      z-index: 2;
      display: block;
      content: '';
      width: 50%;
      height: 100%;
      background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
      background: linear-gradient(to right, rgb(0 0 0 / 23%) 0%, rgb(2 2 2 / 31%) 100%);
      -webkit-transform: skewX(-25deg);
      transform: skewX(-25deg);
}
.p4-img img{width: 100%;height: 444px;object-fit: cover;}
.p4-box h2{font-size: 36px;color: #fff;margin-top: 20px;margin-bottom: 15px;float: left;width: 100%;}
.p4-box p{font-size: 15px;color: #fff;line-height: 200%;font-weight: 300;}
.p4-box a{width: 174px;height: 56px;float: left;background: #2B2B2B;text-align: center;font-size: 15px;color: #fff;text-decoration: none;font-weight: 300;font-family: "Roboto Flex", sans-serif;padding: 16px 0;border-radius: 30px;margin-top: 15px;}
.p4-box a img{

filter: invert(1);

transform: rotate(-75deg);

width: 24px;

margin-left: 10px;

margin-top: -3px;
}
.p4-box a:hover{
  
background: #141313;
}
.log-ovrly{
  
position: absolute;
  
left: 0;
  
bottom: 0;
  
max-width: 100%;
}
.panel5{

w;

width: 100%;

w
CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;

X;

X;

X;

X;

X;

X;

X;

X;

float: left;

background: #111;

padding: 60px 0;
}
.p5-box:last-child(3):after{
  display:none;
}
.p5-box:after{
  position:absolute;
  content:'';
  background: #1e1e1e;
  height: 69px;
  width: 1px;
  right: 15px;
  top: 9px;
}
.p5-box{
position:relative;
width: 100%;

float: left;
}
.p5-box img{

width: 72px;

height: 72px;

background: #2b2b2b;

padding: 16px 8px;

border-radius: 95%;

float: left;

margin-right: 10px;

object-fit: contain;
}
.p5-box h5{

font-size: 24px;

color: #fff;

padding-top: 3px;
}
.p5-box p{
  
font-size: 15px;
  
margin: 0;
  
color: #fff;
  
line-height: 200%;
  
font-weight: 300;
}
.panel6{

width: 100%;

float: left;

background-image: url('../images/cta-banner.webp');

background-size: cover;

padding: 65px 0;

text-align: center;

background-attachment: fixed;
}
.panel6 h6{

font-size: 14px;

color: #fff;

font-weight: 600;
}
.panel6 h1{

font-size: 60px;

color: #fff;
}
.panel6 a{

width: 174px;

height: 56px;

float: none;

background: #2B2B2B;

text-align: center;

font-size: 15px;

color: #fff;

text-decoration: none;

font-weight: 300;

font-family: "Roboto Flex", sans-serif;

padding: 15px 0;

border-radius: 30px;

margin-top: 15px;

display: table;

margin: 15px auto 0;
}
.panel6 a img{

filter: invert(1);

transform: rotate(-75deg);

width: 24px;

margin-left: 10px;

margin-top: -3px;
}
.panel6 a:hover{
  
background: #111111;
}
.footer{

width: 100%;

float: left;

background: #161616;

padding: 85px 0 50px;
}
.ftr-left{

}
.ftr-left h1{

font-size: 48px;

font-weight: 300;

color: #fff;
}.send-hi:hover{
  
opacity: .7;
  
letter-spacing: 3px;
}
.send-hi{

font-size: 48px;

color: #fff;

font-weight: 700;
}
.ftr-ico{

width: 100%;

float: left;

margin-top: 40px;
}
.ftr-ico a img:hover{
    transform: rotateY(360deg);
    transform-style: preserve-3d;
    transition: transform 0.8s;
}
.ftr-ico a img{

width: 40px;

height: 40px;

object-fit: contain;

margin-right: 10px;
}
.ftr-ico a:hover img{

}
.ftr-right{

width: 100%;

float: left;

/* margin-top: 20px; */
}
.ftr-right h2{

font-size: 24px;

color: #fff;
}
.ftr-right p{

font-size: 15px;

line-height: 200%;

color: #fff;

font-weight: 300;

margin: 0;
}
.rt-box{

width: 100%;

float: left;

margin-top: 25px;
}
.rt-box p{

}
.rt-box a{

font-size: 19px;

color: #fff;

text-decoration: none;
}
.rt-box a:hover{

}
.copy{

width: 100%;

float: left;

border-top: 2px solid #D9D9D6;

padding-top: 40px;

margin-top: 70px;

text-align: center;
}
.copy p{

margin: 0;

color: #E7E7E7;

font-size: 15px;

font-weight: 300;
}
.copy a{

margin: 0;

color: #E7E7E7;

font-size: 15px;

font-weight: 300;

/* text-decoration: none; */
}
.copy a:hover{

}
.ftr-last{
  
width: 100%;
  
float: left;
  
background: #111111;
  
height: 30px;
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate-icon{
  position: absolute;
  top: 48%;    width: 154px;
  left: 48%;
  animation: rotate 10s infinite linear;
  z-index: 8;
}                          
.newrymenu{width: 100%;float: left;}
.newrymenu a{

width: 100%;

float: left;

text-align: center;

color: #fff;

text-decoration: none;

font-size: 30px;

line-height: 55px;

/* display: flex; */

/* margin: auto; */

text-shadow: 0px 0 #fff, -1em 0 #0000;
}
.newrymenu a:hover{
      opacity: .7;
      text-shadow: 1em 0 #0000, 0px 0 #a59f97;
}
.innerban{
  width: 100%;
  float: left;
  background-color: #111111;
  height: 300px;
  margin-top: -180px;
  background-image: url('../images/logo-overlay.webp');
  background-position: 102% 101%;
  background-repeat: no-repeat;
  background-size: 270px;
}
.sub{
  
position: relative;
  
width: 100%;
}
.newrymenu ul{padding: 0;width: 100%;float: left;/* top: 0; *//* display: flex; *//* margin: auto; */}
.newrymenu ul li{list-style: none;width: 100%;float: left;/* position: relative; *//* margin: auto; *//* display: flex; */}.newrymenu .sub:hover .submenu
{
  /* opacity: 1; */
  /* height: auto; */
  /* visibility: visible; */
  /* width: 100%; */
  display: block;
}
.newrymenu .submenu{

position: absolute;

top: 50px;

background: #111111;

display: none;
}
.newrymenu .submenu li{

}.newrymenu .submenu li a{
  
}
.arrow{
      width: 20px;
    float: right;
    position: absolute;
    right: 20px;
}
.about-sec1{

background: #0e0d0d;

width: 100%;

float: left;

padding: 80px 0;
}
.about-sec1 h6{
    position: relative;
    font-size: 14px;
    color: #2B2B2B;
    font-weight: 600;
    padding-top: 45px;
    padding-left: 80px;
}
.about-sec1 h6:after{
    position: absolute;
    content: '';
    background: #2B2B2B;
    width: 68px;
    height: 2px;
    left: 0;
    top: 52px;
}
.about-sec1 h1{

font-size: 50px;

color: #fff;

padding-bottom: 15px;
}
.about-sec1 p{

font-size: 15px;

color: #fff;

line-height: 200%;

font-weight: 300;

margin: 0;
}
.abt-img1{

width: 500px;

float: right;

margin-left: 40px;
}
.abt-img1 img{
  
width: 100%;
}
.abt-sec2{

width: 100%;

float: left;

background: #1e1e1e;

padding: 80px 0;
}
.abt-box{width: 100%;float: left;margin-top: 30px;margin-bottom: 20px;}
.ico-abt{float: left;width: 80px;height: 80px;background: #111;text-align: center;padding: 13px 0;border-radius: 10px;transform: rotate(45deg);margin-right: 40px;margin-bottom: 40px;margin-top: 20px;}
.ico-abt img{width: 50px;height: 50px;transform: rotate(-45deg);filter: invert(1);}
.abt-box h5{

font-size: 30px;

color: #fff;
}
.abt-box p{
font-size: 15px;
    color: #fff;
    line-height: 200%;
    font-weight: 300;
    margin: 0;
}.abt-box2:before{
      position: absolute;
      top: 0;
      left: -75%;
      z-index: 2;
      display: block;
      content: '';
      width: 50%;
      height: 100%;
      background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
      background: linear-gradient(to right, rgb(0 0 0 / 34%) 0%, rgb(6 6 6 / 31%) 100%);
      -webkit-transform: skewX(-25deg);
      transform: skewX(-25deg);
}.abt-box2:hover::before{
      -webkit-animation: shine .75s;
    animation: shine .75s;
}
.abt-box2{

position: relative;

float: left;

width: 100%;

overflow: hidden;
}
.abt-box2 img{
  width: 100%;
  height: 570px;
  object-fit: cover;
}
.abt-sec3{

width: 100%;

float: left;

background: #111111;

padding: 70px 0;
}
.abt-box3{

width: 100%;

float: left;

position: relative;

background: #1e1e1e;

transition: all ease-in-out .3s;

-webkit-transition: all ease-in-out .3s;

-moz-tra: all ease-in-out .3s;
}
.abt-img3{position: relative;width: 100%;height: 445px;overflow: hidden;opacity: 0;transition: all ease-in-out .3s;-webkit-transition: all ease-in-out .3s;-moz-tra: all ease-in-out .3s;}
.abt-img3 img{width: calc(100% + 10px);height: 100vh;object-fit: cover;transition: all ease-in-out .3s;-webkit-transition: all ease-in-out .3s;-moz-tra: all ease-in-out .3s;}
.abt-img3:after{position: absolute;content: '';height: 100vh;width: 100%;background: #000000d6;top: 0;left: 0;}
.abt3-text{width: 100%;position: absolute;top: 75px;padding: 0 30px;transition: all ease-in-out .3s;-webkit-transition: all ease-in-out .3s;-moz-tra: all ease-in-out .3s;}.abt-box3:hover .abt-img3 img{
  backface-backface-visibility: visible;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
}
.abt3-text img{
    width: 64px;
    height: 64px;
filter: invert(1);

margin-bottom: 20px;
}
.abt3-text h5{

font-size: 30px;

color: #fff;
}
.abt3-text p{

font-size: 15px;

color: #fff;

margin: 0;

line-height: 200%;

font-weight: 300;

padding-top: 8px;
}
.abt-box3:hover .abt-img3{
  
opacity: 1;
}
.top-ct img{
  width: 40px;
  filter: invert(1);
  position: relative;
  z-index: 11;
  height: 40px;
}
.top-ct:before{
      content: "";
      position: absolute;
      top: -12px;
      left: 57px;
      border-width: 0 13px 12px 0;
      border-style: solid;
      border-color: #000;
      border-right-color: transparent !important;
      border-left-color: transparent !important;
      display: block;
      transition: all .4s;
      opacity: .7;
      border-color: #2B2B2B;
      z-index: 999;
}
.top-ct:after{
      position: absolute;
      content: "";
      left: 0;
      height: 20px;
      width: 100%;
      top: -9px;
      z-index: 9;
      transition: all .5s;
      background: #2B2B2B;
      transform: scale(1, 1.2);
      /* background-color: aliceblue; */
}
.top-ct{
      position: relative;
      height: 60px;
      width: 60px;
      display: block;
      margin: 0 auto;
      /* line-height: 60px; */
      background-color: #2B2B2B;
}
.ct-full{

background: #161616;

width: 100%;

float: left;

padding: 80px 0;
}
.ct-box{position: relative;width: 85%;float: none;text-align: center;background: #1e1e1e;padding: 0 20px;display: table;margin: 0 auto 30px;height: 210px;}
.ct-box h5{font-size: 20px;color: #fff;margin-top: 20px;}
.ct-box p{margin: 0;font-size: 15px;color: #fff;line-height: 195%;}
.ct-box:hover:after{
      transform: scaleX(1);
  }
  .ct-box:after{
        transform: scaleX(0);
        transition: transform 800ms ease-in-out;
        position: absolute;
        content: '';
        border-bottom: 5px solid #fff;
        height: 1px;
        width: 100%;
        left: 0;
        bottom: 0;
        opacity: .7;
  }
.ct-left{position: relative;width: 100%;float: left;margin-top: 30px;height: 547px;overflow: hidden;}
.ct-left img{

width: 100%;

float: left;

height: 100vh;

object-fit: cover;
}
.ct-left:after{position: absolute;content: '';background: linear-gradient(180deg, rgba(17, 17, 17, 0.06486344537815125) 0%, rgba(22, 22, 22, 0.8855917366946778) 55%, rgba(22, 22, 22, 0.8855917366946778) 72%, rgba(22, 22, 22, 1) 89%, rgba(22, 22, 22, 1) 91%, rgb(22 22 22) 93%);top: 0;height: 100vh;left: 0;width: 100%;}
.ct-left-text{

position: absolute;

z-index: 99;

bottom: 20px;

padding: 0 20px;
}
.ct-left-text h5{

color: #fff;

font-size: 22px;

margin-bottom: 10px;

font-weight: 700;
}
.ct-left-text p{

color: #fff;

font-size: 15px;

line-height: 197%;

margin: 0;

font-weight: 300;
}
.ct-right{

width: 100%;

float: left;

background: #1e1e1e;

margin-top: 30px;

padding: 30px 3% 30px 5%;
}
.ct-right form{

}
.ct-right h2{

font-size: 30px;

color: #fff;

margin-bottom: 40px;
}
.ct-field{

width: 48%;

float: left;

margin-right: 2%;

margin-bottom: 15px;
}
.ct-field label{

width: 100%;

float: left;

color: #fff;

font-family: "Roboto Flex", sans-serif;

font-size: 15px;
}
.ct-field input{width: 100%;float: left;background: #111111;padding: 12px;border: 1px solid #222;margin-top: 10px;font-family: "Roboto Flex", sans-serif;color: #fff;font-size: 15px;}
.ct-text{

}
.ct-text textarea{width: 100%;font-size: 15px;float: left;background: #111111;padding: 12px;border: 1px solid #242424;margin-top: 10px;height: 110px;color: #fff;font-family: "Roboto Flex", sans-serif;}
.ct-text label{

width: 100%;

float: left;

color: #fff;

font-family: "Roboto Flex", sans-serif;

font-size: 15px;
}
.ct-right button img{
      filter: invert(1);
    transform: rotate(-75deg);
    width: 24px;
    margin-left: 10px;
    margin-top: -1px;
}

.ct-right button{

width: 170px;

height: 56px;

float: left;

margin-top: 20px;

background: #111111;

border: 0;

font-size: 15px;

color: #fff;

font-family: "Roboto Flex", sans-serif;

border-radius: 30px;
}
.ct-right button:hover{

background: #161616;
}
.ct-field input:focus-visible{
  outline: none !important;
}.ct-text textarea:focus-visible{
  outline: none !important;
}.ct-field input:focus{
  outline: none !important;
}.ct-text textarea:focus{
  outline: :none !important;
}
.tbt-sec1{

background: #0e0d0d;

width: 100%;

float: left;

padding: 80px 0;
}
.tbt-sec1 h1{

font-size: 45px;

color: #fff;

padding-top: 20px;

margin-bottom: 15px;
}
.tbt-sec1 p{

font-size: 15px;

color: #fff;

line-height: 200%;

font-weight: 300;

margin-bottom: 10px;
}
.img-tbt{

width: 555px;

float: left;

margin-right: 40px;

height: 500px;

/* overflow: hidden; */
}
.img-tbt img{
  
width: 100%;
  
height: 500px;
  
object-fit: cover;
}
.tbt-sec2{

width: 100%;

float: left;

background: #1e1e1e;

padding: 80px 0;
}.tbt-box:hover .tbt-text{
  height: 100%;
  padding: 120px 25px;
}
.tbt-box {
    width: 100%;
    float: left;
    position: relative;
    background: #111111;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-tra: all ease-in-out .3s;
}.tbt-img {
    position: relative;
    width: 100%;
    height: 435px;
    overflow: hidden;
    /* opacity: 0; */
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-tra: all ease-in-out .3s;
}.tbt-img img {
    width: calc(100% + 10px);
    height: 100vh;
    object-fit: cover;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-tra: all ease-in-out .3s;
}.tbt-img:after {
    position: absolute;
    content: '';
    height: 100vh;
    width: 100%;
    /* background: #000000d6; */
    top: 0;
    left: 0;
}.tbt-text {
    width: 100%;
    background: #161616e8;
    position: absolute;
    overflow: hidden;
    height: 60px;
    /* float: left; */
    bottom: 0;
    padding: 20px 15px;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-tra: all ease-in-out .3s;
}.tbt-text h5 {
    font-size: 19px;
    color: #fff;
}.tbt-text p {
    font-size: 15px;
    color: #fff;
    margin: 0;
    line-height: 200%;
    font-weight: 300;
    padding-top: 8px;
}.tbt-box:hover .tbt-img img {
    backface-backface-visibility: visible;
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateY(-110px);
}.tbt-box:hover .tbt-img {
    opacity: 1;
}
.tbt-sec3{
    width: 100%;
    float: left;
    padding: 80px 0;
    background: #111111;
}
.tbt-sec3 p{

font-size: 40px;

color: #c3c2c2;
}.careerban2 {
    float: left;
    width: 100%;
    padding: 70px 0;
    background-color: #2B2B2B;
    position: relative;
    background-image: url('../images/ct-img57678.png');
    background-size: cover;
}.cr-wd {
    margin-right: auto;
    margin-left: auto;
    width: 770px;
    max-width: 100%;
}.cr-wd h2 {
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 45px;
    line-height: 60px;
    margin-bottom: 15px;
    padding: 0 100px;
}.cr-wd p {
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 300;
    color: #ffffff;
    font-size: 15px;
    line-height: 196%;
    padding: 0 70px;
    margin-bottom: 50px;
}.contact-label {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    display: none;
    margin-bottom: 20px;
}.mct_form {
    width: 100%;
    float: left;
    background: #122331;
    border: 2px solid #15293a;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
}.mct_form {
    width: 100%;
    float: left;
    background: #1c1c1c;
    font-family: "Roboto Flex", sans-serif;
    border: 2px solid #212122;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
}.contact-snd2:hover{
  background: #161616;
}
.contact-snd2 img{
      filter: invert(1);
    transform: rotate(-75deg);
    width: 24px;
    margin-left: 10px;
    margin-top: -1px;
}
.contact-snd2 {
    display: block;
    margin: auto;
    border: 1px solid #1c1c1c;
    background: transparent;
    width: 190px;
    height: 56px;
    font-size: 15px;
    color: #ffffff;
    background: #1c1c1c;
    text-align: center;
    padding: 4px 0;
    border-radius: 30px;
    font-family: "Roboto Flex", sans-serif;
}.mct_form:focus{
  outline: none !important;
}.mct_form:focus-visible{
  outline: none !important;
}
@media(max-width: 575px){
    .abt-box h5 {
    font-size: 25px;
    color: #fff;
}
    .p3-box {
    width: 100%;
    float: none;
    padding-bottom: 50px;
    max-width: 260px;
    display: block;
    margin: auto;
}
    .tbt-sec3 p {
    font-size: 30px;
    color: #c3c2c2;
    text-align: center;
}
  .banner .owl-nav{
    display: none;
  }
  .p5-box:after{
    display: none;
  }
  .ct-left {
    text-align: center;}.ct-right h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}.ct-field {
    width: 100%;
    float: left;
    margin-right: 0%;
    margin-bottom: 15px;
}.ct-right button
{
  float: none;
  display: table;
  margin: 20px auto;
}
.ct-text {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
  .careerban2 {
    background-position: 63% 30%;
}
  .cr-wd {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 100%;
}.cr-wd h2 {
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 33px;
    line-height: inherit;
    margin-bottom: 15px;
    padding: 0;
}.cr-wd p
{
  padding: 0;
}

  .tbt-text h5 {
    font-size: 16px;
    color: #fff;
    text-align: center;
}.tbt-text p
{
  text-align: center;
}

  .milphone {
    width: 50%;
    float: right;
}.img-tbt {
    width: 100%;
    float: left;
    margin-right: 0;
    height: auto;
    /* overflow: hidden; */
}.img-tbt img {
    width: 100%;
    height: auto;
    object-fit: cover;
}.tbt-sec1 h1 {
    font-size: 37px;
    color: #fff;
    padding-top: 20px;
    margin-bottom: 15px;
    width: 100%;
    float: left;
    text-align: center;
}.tbt-sec1 p{
  text-align: center;
}.tbt-box {
    margin-bottom: 30px;}
.logo {
    width: 50%;
    float: left;
    position: relative;
    z-index: 9;
}.head {
    width: 100%;
    float: left;
    padding-top: 20px;
}.logo img {
    width: 65%;
    float: left;
    position: relative;
    max-width: fit-content;
}
.nav-click img{
      width: 80px;
}.thumb-top {
    float: right;
    position: absolute;
    right: 20px;
}.banner-text {
    width: 100%;
    float: left;
    padding: 0 5%;
}.bannerimg {
          width: 100%;
        float: right;
        position: absolute;
        top: 60px;
        z-index: -1;
        height: 580px;
}.ban-text h2 {
    font-size: 45px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}.ban-text {
 height: 780px;
        width: 100%;
        float: left;
        padding-top: 230px;
}.ban-text h2 span:after{
  display: none;
}.ban-text h2 span {
    font-weight: 300;
    width: 100%;
    float: left;
    position: relative;
    padding-left: 0;
}.ban-text p {
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    line-height: 200%;
    padding-left: 0;
    width: 100%;
    margin-top: 10px;
    text-align: center;
    float: left;
}.banner {
    margin-top: -190px;
    width: 100%;
    float: left;
    background: #1E1E1E;
    height: 613px;
}
.rotate-icon {
    position: absolute;
    top: 58%;
    left: 40%;
    animation: rotate 10s infinite linear;
    z-index: 8;
    width: 100px;
}.ban-img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.bannerimg:after{
         position: absolute;
        content: '';
        background: #00000096;
        height: 100vh;
        width: 100%;
        top: 0;
}.panel1 h1 {
    margin: 0;
    font-size: 36px;
    color: #fff;
    font-weight: 300;
}.p2-img {
    width: 100%;
    float: left;
    margin-right: 0;
}.panel2 h6 {
    position: relative;
    font-size: 14px;
    color: #2B2B2B;
    font-weight: 600;
    padding-top: 35px;
    padding-left: 0;
    padding-bottom: 10px;
    text-align: center;
    float: left;
    width: 100%;
}.panel2 h6:after{
  display: none;
}.panel2 h1 {
    font-size: 37px;
    color: #fff;
    padding-bottom: 15px;
    text-align: center;
    float: left;
}.panel2 p{
  text-align: center;
}.panel2 a{
  float: none;
  display: table;
  margin: 20px auto;
}.panel3 {
    width: 100%;
    float: left;
    background: #111111;
    padding: 45px 0 50px;
  }.p3-box h5 {
    position: relative;
    font-size: 40px;
    color: #fff;
    float: left;
    /* padding-right: 12px; */
}.panel4{
  padding: 0 0 50px;
  text-align: center;
}.p4-left h6 {
    position: relative;
    font-size: 14px;
    color: #2B2B2B;
    font-weight: 600;
    padding-left: 0;
    text-align: center;
}.p4-left h6:after{
  display: none;
}.p4-left h1 {
    font-size: 36px;
  }.p4-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}.p4-box a{
  float: none;
  display: table;
  margin: auto;
}.p5-box {
    width: 100%;
    float: none;
    margin-bottom: 20px;
    max-width: 300px;
    display: block;
    margin: 15px auto;
}.panel6 h1 {
    font-size: 36px;
    color: #fff;
}.panel6 {
     background-attachment: inherit;
}.p4-box h2{
  font-size: 34px;
}.ftr-left h1 {
    font-size: 33px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}.send-hi {
    font-size: 32px;
    color: #fff;
    text-align: center;
    width: 100%;
    font-weight: 700;
    float: left;
}.ftr-ico {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 40px;
}.ftr-right {
    width: 100%;
    text-align: center;
    float: left;
    margin-top: 20px;
}.rt-box a {
    font-size: 17px;}

    [id=main-navigation-toggle]:checked ~ label span {
    /* transform: rotate(1turn); */
    background: #111111;
    border-radius: 50px;
    /* padding: 10px !important; */
    height: 70px;
    width: 70px;
    top: -10px;
}.nav-main {
    margin-top: -95px;

}.innerban h1 {
    font-size: 36px !important;
    color: #fff;
    text-align: center;
    margin-top: 185px !important; 
}.innerban {
    background-position: 113% 101%;
    background-size: 170px;
}.abt-img1 {
    width: 100%;
    float: right;
    margin-left: 0;
}.about-sec1 h6{
  text-align: center;
  width: 100%;padding-left: 0;
  float: left;
}.about-sec1 h6:after{
  display: none;
}.about-sec1 h1 {
    font-size: 37px;
    color: #fff;
    text-align: center;
    padding-bottom: 15px;
    float: left;
    width: 100%;
}.about-sec1 p{
  text-align: center;
}    .ico-abt {
        float: left;
        width: 80px;
        height: 80px;
        background: #111;
        text-align: center;
        padding: 13px 0;
        border-radius: 10px;
        transform: rotate(45deg);
        margin-right: 29px;
        margin-bottom: 100px;
        margin-top: 53px;
        margin-left: 12px;
    }.abt-box2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}.abt-box3{
  margin-bottom: 20px;
}
} 

@media (max-width: 350px) {
    .rotate-icon {
            left: 37% !important;
}}
.innerban h1{
      font-size: 40px;
    color: #fff;
    text-align: center;
    margin-top: 140px;
} 
@media(min-width: 450px) and (max-width: 574px){
  .innerban {
    margin-top: -193px !important;
  }
}
@media(min-width: 576px) and (max-width: 767px){
  .banner-text{
    height:520px;
  }
  .rotate-icon {
    position: absolute;
    top: 38%;
    left: 48%;
    animation: rotate 10s infinite linear;
    z-index: 8;
    width: 90px;
}.p4-left h1 {
    font-size: 50px;}
  .p3-box h5 {
    width: 100%;}.p5-box {
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 20px;
    margin-top: 20px;
}.p5-box:after

{
  display: none;
}
.ftr-right {
    width: 100%;
    float: left;
    margin-top: 0;
}

  .cr-wd h2
{
  padding: 0;
}
.ban-text {
    width: 100%;
    float: left;
    padding-top: 220px;
}
.ban-text h2 {
    font-size: 38px;
    color: #fff;
    font-weight: 700;
}.ban-text p {
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    line-height: 200%;
    padding-left: 0;
    width: 100%;
    margin-top: 10px;
    float: left;
}.ban-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}.bannerimg {
    width: 46%;
    float: right;
    height: 520px;
}.banner {
    margin-top: -185px;
    width: 100%;
    float: left;
    background: #111111;
    height: 520px;
}.banner .owl-nav {
    position: relative;
    bottom: 33px !important;
    left: 70px !important;
}.panel1 h1 {
    margin: 0;
    font-size: 40px;
    color: #fff;
    font-weight: 300;
}.p2-img {
    width: 100%;
    float: left;
    margin-right: 0;
}.panel2 h6 {
    position: relative;
    font-size: 14px;
    color: #2B2B2B;
    font-weight: 600;
    padding-top: 68px;
    padding-left: 0;
    padding-bottom: 10px;
    width: 100%;
    float: left;
}.panel2 h6:after{
  display: none;
}  .tbt-text h5 {
    font-size: 16px;
    color: #fff;
    text-align: center;
}.tbt-text p
{
  text-align: center;
}
  .img-tbt {
    width: 100%;
    float: left;
    margin-right: 0;
    height: auto;
    /* overflow: hidden; */
}.img-tbt img {
    width: 100%;
    height: auto;
    object-fit: cover;
}.tbt-sec1 h1 {
    font-size: 37px;
    color: #fff;
    padding-top: 20px;
    margin-bottom: 15px;
    width: 100%;
    float: left;
    text-align: center;
}.tbt-sec1 p{
  text-align: center;
}.tbt-box {
    margin-bottom: 30px;}
.logo img {
    width: 44%;
    float: left;
    position: relative;
    max-width: inherit;
}.logo {
    width: 50%;
    float: left;
}.milphone {
    width: 50%;
    float: right;
}
.nav-click img{
  
width: 70px;
}.innerban h1 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-top: 175px;
}.abt-img1 {
    width: 100%;
    float: right;
    margin-left: 0;
}.about-sec1 h6{
  text-align: center;
  width: 100%;
  float: left;
  padding-left: 0;
}.about-sec1 h6:after{
  display: none;
}.about-sec1 h1{
  text-align: center;
}
.about-sec1 p{
  text-align: center;
}.abt-box3{
  margin-bottom: 20px;
}.ftr-left h1 {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
}.send-hi {
    font-size: 25px;
  }.rt-box a {
    font-size: 15px;
  }
}
@media(min-width: 768px) and (max-width: 991px){
  .ban-text h2 {
    font-size: 54px;
    color: #fff;
    font-weight: 700;
}.bannerimg {
    width: 46%;
    float: right;
    height: 748px;
    object-fit: cover;
}.ban-img {
    width: 100%;
    height: 748px;
    object-fit: cover;
}.banner .owl-nav {
    position: relative;
    bottom: 130px !important;
    left: 140px !important;
}.p2-img {
    width: 315px;
    float: left;
    margin-right: 40px;
}.panel2 h1 {
    font-size: 37px;}.p3-box h5 {
    position: relative;
    font-size: 29px;
    color: #fff;
    float: left;
    margin-right: 13%;
    /* width: 167px; */
    font-weight: 300;
    margin-bottom: 40px;
}.p4-left h1 {
    font-size: 37px;
  }.p4-box h2 {
    font-size: 33px;
  }.p5-box img {
    margin-bottom: 50px;
}
  .ct-right h2 {
    font-size: 23px;
    color: #fff;
    margin-bottom: 40px;
}.ct-box p {
    margin: 0;
    font-size: 13px;
    color: #fff;
    line-height: 195%;
}
  .careerban2{
    background-position: 70%;
  }
  .img-tbt {
       width: 365px;
    float: left;
    margin-right: 30px;
height: auto;
}.img-tbt img {
    width: 100%;
    height: auto;
    object-fit: cover;
}.tbt-sec1 h1 {
    font-size: 35px;}.tbt-text h5 {
    font-size: 15px;
    color: #fff;
}
.milphone {
    width: 51%;
    float: right;
    position: absolute;
    right: 40px;
}.milphone img{
  width: 70px;
}.logo img {
    width: 50%;
    float: left;
    position: relative;
    max-width: inherit;
}.innerban h1 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-top: 155px;
}.abt-img1 {
    width: 400px;
    float: right;
    margin-left: 30px;
}.about-sec1 h1 {
    font-size: 30px;
    color: #fff;padding-bottom: 10px;
    
}.about-sec1 h6 {
      padding-top: 0;
 
}.abt-box h5 {
    font-size: 25px;
    color: #fff;
}.ico-abt {
    margin-bottom: 62px;
    margin-top: 52px;
}.abt3-text {
    width: 100%;
    position: absolute;
    top: 52px;
    padding: 0 10px;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-tra: all ease-in-out .3s;
}.ftr-left h1 {
    font-size: 30px;
  }.send-hi {
    font-size: 35px;
  }.rt-box a {
    font-size: 15px;
  }
}
@media(min-width: 992px) and (max-width: 1024px){
  .banner .owl-nav {
    position: absolute;
    bottom: 102px !important;
    left: 180px !important;
}
  .bannerimg {
    width: 46%;
    float: right;
    height: 748px;
}.ban-img {
    width: 100%;
    height: 748px;
    object-fit: cover;
}.p2-img {
    width: 415px;
    float: left;
    margin-right: 40px;
}.panel2 h1 {
    font-size: 55px;
}.p4-left h1 {
    font-size: 50px;
  }
  .tbt-text h5 {
    font-size: 14px;}
  .about-sec1 h1 {
    font-size: 46px;
  }.about-sec1 h6 {
    padding-top: 20px;
}.about-sec1 h6:after {
    top: 25px;
}.ico-abt{
  margin-top: 28px;
}.rt-box a {
    font-size: 19px;
  }
}
@media(min-width: 1025px) and (max-width: 1199px){
  .bannerimg{
    height: 748px;
    object-fit: cover;
  }.bannerimg img{
    height: 748px;
    object-fit: cover;
  }.banner .owl-nav {
    position: absolute;
    bottom: 81px !important;
    left: 162px !important;
}
  .about-sec1 h1 {
    font-size: 47px;
  }.ico-abt{
    margin-bottom: 60px;
  }
  .tbt-text h5 {
    font-size: 15px;
  }.p2-img {
    width: 455px;
    float: left;
    margin-right: 40px;
}.panel2 h1 {
    font-size: 47px;}

    .p4-left h1 {
    font-size: 50px;
  }
}

@media(max-width: 1024px){
  .newrymenu .submenu li a {
    font-size: 15px;
    line-height: 33px;
}
}
.banner .owl-nav{position: absolute;bottom: 122px;left: 205px;}
.banner .owl-prev{

margin-right: 5px;
}
.banner .owl-next{

}.banner .owl-prev img{

width: 64px;

filter: invert(1);

opacity: .7;

transform: rotate(180deg);

transition: all ease-in-out .5s;

-webkit-transition: all ease-in-out .5s;
}
.banner .owl-next img{
  
width: 64px;
  
filter: invert(1);
  
/* opacity: .7; */
  
/* transform: rotate(180deg); */
  
transform: scale(1.1);
  
transition: all ease-in-out .5s;
  
-webkit-transition: all ease-in-out .5s;
}
.p3-box h5:after{
  position: absolute;
  content: '+';
}
.p3-box.k h5:after{
  position: absolute;
  content: 'k+';
}
.no-bdr:after{
  display: none;
}

@media(min-width: 1200px) and (max-width: 1300px){
.banner .owl-nav {
    position: absolute;
    bottom: 98px;
    left: 186px;
}
.bannerimg {
    width: 46%;
    float: right;
    height: 748px;
}.bannerimg img {
   float: right;object-fit: cover;
    height: 748px;
}
}
.banner .owl-nav img:hover{

background: #e7e5e5;

border-radius: 100%;
}

/* Preloader */
.ctn-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgb(255 255 255 / 20%);
  border-top-color: #ffffff; /* No se identa por orden alfabetico para que no lo sobre-escriba */
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  font: bold 5em 'Montserrat', sans-serif;
  text-align: center;
  user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #ffffff;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgb(255 255 255 / 20%);
  position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.ctn-preloader .loader-section {
  background-color: #000000;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
  left: 0;
  background-color: #161616;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
  background-color: #111111;
}

/* Efecto de fade en la animaciÃƒÆ’Ã‚Â³n de cargando */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

/* Efecto de cortina */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

/* AnimaciÃƒÆ’Ã‚Â³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

/* AnimaciÃƒÆ’Ã‚Â³n de las letras cargando del preloader */
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* TamaÃƒÆ’Ã‚Â±o de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {
  /* Preloader */
  /* Spinner cargando */  
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }

  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 3.5em 'Montserrat', sans-serif;
  }
}

@media screen and (max-width: 500px) {
  /* Prelaoder */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 2em 'Montserrat', sans-serif;
  }
}
@media(min-width:1400px){
    .banner{
     height:100vh;
    }
    .bannerimg{
      height:100vh;
    }
    .bannerimg img{
     height:100vh;
    }.banner .owl-nav {
     left: 218px;        bottom: 170px;
}.rotate-icon {
    position: absolute;
    top: 42%;
    left: 49%;
}
}
.copy a:hover{
    color:#fff;
}

.hidden-input-field {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        height: 0;
        width: 0;
        z-index: -1;
    }
.grecaptcha-badge { 
    visibility: hidden;
}    