@import url('https://fonts.googleapis.com/css2?family=Anton&family=Josefin+Sans&display=swap');
html,body
{
    margin:0%;
    box-sizing: border-box;
    overflow-x: hidden;
     font-family: 'Josefin Sans', sans-serif;
}
/* *************Global Classes************* */
a{
    text-decoration: none;
    color: #fff;
}
.flex-row
{
display: flex;
flex-direction: row;
flex-wrap: wrap;
color: #fff;
}
ul{
    list-style-type: none;
}
/* ******X******Global Classes******X****** */
/* *********Navbar*************** */
.nav{
    padding: 0 2rem;
    height: 0rem;
    min-height: 10vh;
    background: black;
    overflow: hidden;
    transition: height 1s ease-in-out;
    padding-left: 15px;
    padding-right: 15px;
}

.nav .nav-menu
{
    justify-content: space-between;
}

.nav .toggle-collapse{
    position: absolute;
    top: 0;
    width: 90%;
    cursor: pointer;
    display: none;
}

.nav .toggle-collapse .toggle-icons{
    display: flex;
    justify-content: flex-end;
    padding: 1.7rem 0;
}

.nav .toggle-collapse .toggle-icons i{
    font-size: 1.4rem;
    color: black;
}
@media only screen and (min-width: 320px) and (max-width: 765px)
{
   .nav .toggle-collapse .toggle-icons i {
    font-size: 1.4rem;
    color: white;
    padding: 0px 25px;
}
}
.collapse{
    height: 30rem;
}

.nav .nav-items{
    display: flex;
    margin: 0;
}

.nav .nav-items .nav-link{
    padding: 1.6rem 1rem;
    font-size: 1.1rem;
    position: relative;
    text-transform: uppercase;
    border-radius: 3px;
}

.nav .social{
  padding: 1.4rem 3rem;
    letter-spacing: 5px;
}
.nav .nav-brand a
{
    font-size: 1.6rem;
    padding: 1rem 0;
    display: block;
    color: white;
    font-size: 1.6rem;
} 
.nav .nav-bar .nav-items .nav-link a:hover{
background:#BFAFB2;/*nav hover*/

padding: 10px 10px;
border-radius: 3px;
transition: .5s;
}

.nav .social i{
    padding: 0.2rem;
}
.nav .social i:hover{
    color: #BFAFB2;/*nav hover*/
}
.sticky
{
  position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.815);
    color: white;
    z-index: 9999;
    transition: all 1.5s ease;
}
.nav .social .sticky
{
  padding: 1.4rem 3rem;
}
@media only screen and (min-width: 650px) and (max-width: 938px)
{
  .sticky{
    width: 100%;
    height: 10vh;
    background:  rgba(0, 0, 0, 0.815);
    overflow: hidden;
  }
  .nav .toggle-collapse .toggle-icons i
  {
    margin-top: -5px;
    font-size: 1.4rem;
    color: white;
  }
  .nav .nav-items .nav-link
  {
    margin-top: 0px;
  }
  .collapse
  {
    height: 30rem;
    background: rgba(0, 0, 0, 0.815);
    overflow: hidden;
  }
}
@media only screen and (min-width: 400px) and (max-width: 648px)
{
  .sticky
  {
    width: 95%;
    height: 10vh;
    background:  rgba(0, 0, 0, 0.815);
    overflow: hidden;
  }
  .nav .toggle-collapse .toggle-icons i
  {
    margin-top: -5px;
    font-size: 1.4rem;
    color: white;
  }
  .nav 
  {
    min-height: 10vh;
  }
  .collapse
  {
    height: 30rem;
    background: rgba(0, 0, 0, 0.815);
    overflow: hidden;
  }
}
@media only screen and (min-width: 640px) and (max-height: 360px)
{
  .sticky
  {
    width: 95%;
    height: 10vh;
    background:  rgba(0, 0, 0, 0.815);
    overflow: hidden;
  }
  .nav .toggle-collapse .toggle-icons i
  {
    margin-top: -5px;
    font-size: 1.4rem;
    color: white;
  }
  .nav 
  {
    min-height: 15vh;
    overflow: hidden;
  }
  .collapse
  {
    height: 30rem;
    background: rgba(0, 0, 0, 0.815);
    overflow: hidden;
  }
}
@media only screen and (min-width: 320px) and (max-width: 399px)
{
  .sticky{
    width: 95%;
    height: 10vh;
    background:  rgba(0, 0, 0, 0.815);
    overflow: hidden;
  }
  .nav .toggle-collapse .toggle-icons i
  {
    margin-top: -5px;
    font-size: 1.4rem;
    color: white;
  }
  .collapse
  {
    height: 30rem;
    background: rgba(0, 0, 0, 0.815);
    overflow: hidden;
  }
}
@media only screen and (min-width: 751px) and (max-width: 1440px)
{
  .sticky
  {
    width: 100%;
    background:  rgba(0, 0, 0, 0.815);
    height: 10vh;
    overflow: hidden;
  }
  .nav
  {
    min-height: 10vh;
  }
  .collapse
  {
    height: 30rem;
    background: rgba(0, 0, 0, 0.815);
    overflow: hidden;
  }
}
@media only screen and (min-width: 667px) and (max-height: 375px)
{
  .sticky
  {
    width: 100%;
    background:  rgba(0, 0, 0, 0.815);
    height: 15vh;
    overflow: hidden;
  }
  .nav
  {
    min-height: 12vh;
  }
  .collapse
  {
    height: 30rem;
    background: rgba(0, 0, 0, 0.815);
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-height: 1024px)
{
  .sticky
  {
    width: 100%;
    overflow: hidden;
  }
  .nav{
      min-height: 10vh;
      overflow: hidden;
  }
  .collapse
  {
    height: 30rem;
    background: rgba(0, 0, 0, 0.815);
    overflow: hidden;
  }
}
/********X********** Nav bar *********X*******/
/*  *********viewport lessthan or equal to 750px************ */
@media only screen and (max-width: 938px){
    .nav .nav-menu, .nav .nav-items{
    flex-direction: column;
    }
    .nav .toggle-collapse{
        display: initial;
    }
}
/*  *****X****viewport lessthan or equal to 750px*****X******* */


.contactbody{
	display:flex;
	justify-content: center;
	align-items:center;
	/*min-height: 100vh;*/
	background: black;
	margin: 0;
}

.containercontact{
	width:80%;
	padding:20px;
	border:2px solid black;
}

.containercontact h2{
	width:100%;
	/*color:#45f3ff;*/
  color: black;
    font-size: 50px;
    text-shadow: 2px -1px #F0FFF0;
	font-size:36px;
	text-align: center;
	margin-bottom: 10px;

}

.containercontact .row100{
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
}

.containercontact .row100 .col{
	position: relative;
	width:100%;
	padding: 0 10px;
	margin: 30px 0 10px;
	transition: 0.5s;
}

.containercontact .row100 .inputBox{
	position: relative;
	width:100%;
	height: 40px;
	/*color:#45f3ff;*/
  color:#F0FFF0;/*input name color*/

}

.containercontact .row100 .inputBox input,
.containercontact .row100 .inputBox.textarea textarea
{
	position: absolute;
	width:100%;
	height: 100%;
	background: transparent;
	box-shadow: none;
	border:none;
	outline: none;
	font-size: 18px;
	padding: 0 10px;
	z-index: 1;
	color:#000;
  font-family: 'Josefin Sans', sans-serif;/* font family submit */
}

.containercontact .row100 .inputBox .text{
	position: absolute;
	top:0;
	left:0;
	line-height: 40px;
	font-size: 18px;
	padding: 0 10px;
	display: block;
	transition: 0.5s;
	pointer-events: none;
}

.containercontact .row100 .inputBox input:focus + .text,
.containercontact .row100 .inputBox input:valid + .text
{
   top:-35px;
   left:-10px;
}

.containercontact .row100 .inputBox .line{
	position: absolute;
	bottom: 0;
	display: block;
	width: 90%;
	height: 2px;
	/*background: #45f3ff;*/
  background: #F0FFF0;/* line color*/
	transition: 0.5s;
	border-radius: 2px;
	pointer-events: none;
}

.containercontact .row100 .inputBox input:focus ~ .line,
.containercontact .row100 .inputBox input:valid ~ .line
{
	height: 100%;
}

.containercontact .row100 .inputBox.textarea{
	position: relative;
	width:100%;
	height: 100px;
	padding: 10px 0;
}

.containercontact .row100 .inputBox.textarea textarea{
	height: 100%;
	resize:none;
}

.containercontact .row100 .inputBox textarea:focus + .text,
.containercontact .row100 .inputBox textarea:valid + .text
{
   top:-35px;
   left:-10px;
}
.containercontact .row100 .inputBox textarea:focus ~ .line,
.containercontact .row100 .inputBox textarea:valid ~  .line
{
	height: 100%;
}

.iframes
{
    width: 100%;
    height: 90vh;
}
input[type="submit"]
{
	border:none;
	padding: 7px 35px;
	cursor: pointer;
	outline: none;
	background:#F0FFF0;/*button color*/
	color:black;
	font-size: 18px;
	border-radius: 2px;
  font-family: 'Josefin Sans', sans-serif;/* font family submit */
}


.anibody{
    margin:0;
    margin-top: -2px;
	padding:0;
	display: flex;
	justify-content: space-between;
	align-items: center;
    min-height: 70vh;
    /*background: #002225;*/
    background:linear-gradient(0deg, black, transparent);

    width: 100%;
	
}
.textcontainer{
	width: 100%;
	display:flex;
	justify-content: space-between;
}
.textcontainer .inner{
    text-align: center;
    width: 100%;
}
.textcontainer .inner .icons .fa{
	font-size: 80px;
	cursor: pointer;
}
.anibody .textcontainer .inner .icons i 
{
    font-size: 80px;
    color: white;
    top: 50%;
    /*border: 2px solid blue;*/
    padding: 20px 40px 20px 40px;
    border-radius: 50%;
}
.anibody .textcontainer .inner .icons i:hover
{
  color:#ff4d4d;
} 
.textcontainer .inner .icons  h3,
.textcontainer .inner .icons h4{
	position: relative;
	font-weight: 400;
	margin: 0;
	padding: 2px 5px;
	font-size: 24px;
	overflow: hidden;
	transition-delay: 0.3333s;
	color: transparent;
}
.textcontainer .inner .fa:hover ~ h3,
.textcontainer .inner .fa:hover ~ h4{
	color: white;
}
.textcontainer .inner .icons h4{
	font-weight: 600;
	margin: 5px 0;
	font-size: 30px;

}
.textcontainer .inner .icons  h3:before,
.textcontainer .inner .icons  h4:before{
	content: '';
	position: absolute;
	top:0;
	left:100%;
	width:100%;
	height: 100%;
	/*background: #00bcd4;*/
 /* background-color: #FAD961;
background-image: linear-gradient(180deg, #FAD961 0%, #F76B1C 100%);*/

/*background-color: #FA8BFF;
background-image: linear-gradient(180deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%);*/
/*background-image: linear-gradient( 45deg,  rgba(255,220,163,1) 21.2%, rgba(129,255,239,1) 90.7% );*/

/*background-image: linear-gradient( 112.1deg,  rgba(32,38,57,1) 11.4%, rgba(63,76,119,1) 70.2% );*/

/*background-color: #990000;
background-image: linear-gradient(0deg, #990000 0%, #ff0000 74%);*/

background:  #ff4d4d;
	transition: 1s;

}
.textcontainer .inner .icons h4:before{
	left:initial;
	right: 100%;
	/*background: #9c27b0;*/
}
.textcontainer .inner .fa:hover ~ h3:before{
	left:-100%;
}
.textcontainer .inner .fa:hover ~ h4:before{
	left:initial;
	right: -100%;
}
   





/*****icons1*******/


.textcontainer .inner .icons1 .fa{
  font-size: 80px;
  cursor: pointer;
}
.anibody .textcontainer .inner .icons1 i 
{
    font-size: 80px;
    color: white;
    top: 50%;
    /*border: 2px solid blue;*/
    padding: 20px 40px 20px 40px;
    border-radius: 50%;
}
.anibody .textcontainer .inner .icons1 i:hover
{
  color:#70db70;
}
.textcontainer .inner .icons1  h3,
.textcontainer .inner .icons1 h4{
  position: relative;
  font-weight: 400;
  margin: 0;
  padding: 2px 5px;
  font-size: 24px;
  overflow: hidden;
  transition-delay: 0.3333s;
  color: transparent;
}
.textcontainer .inner .fa:hover ~ h3,
.textcontainer .inner .fa:hover ~ h4{
  color: white;
}
.textcontainer .inner .icons1 h4{
  font-weight: 600;
  margin: 5px 0;
  font-size: 30px;

}
.textcontainer .inner .icons1  h3:before,
.textcontainer .inner .icons1  h4:before{
  content: '';
  position: absolute;
  top:0;
  left:100%;
  width:100%;
  height: 100%;
  /*background: #00bcd4;*/
 /* background-color: #FAD961;
background-image: linear-gradient(180deg, #FAD961 0%, #F76B1C 100%);*/

/*background-color: #FA8BFF;
background-image: linear-gradient(180deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%);*/
/*background-image: linear-gradient( 45deg,  rgba(255,220,163,1) 21.2%, rgba(129,255,239,1) 90.7% );*/

/*background-image: linear-gradient( 112.1deg,  rgba(32,38,57,1) 11.4%, rgba(63,76,119,1) 70.2% );*/


/*background-image: linear-gradient( 45deg,  rgba(112,128,152,1) 10.6%, rgba(242,227,234,1) 32.9%, rgba(234,202,213,1) 52.7%, rgba(220,227,239,1) 72.8%, rgba(185,205,227,1) 81.1%, rgba(154,180,212,1) 102.4% );*/



background: #70db70;
  transition: 1s;

}
.textcontainer .inner .icons1 h4:before{
  left:initial;
  right: 100%;
  /*background: #9c27b0;*/
}
.textcontainer .inner .fa:hover ~ h3:before{
  left:-100%;
}
.textcontainer .inner .fa:hover ~ h4:before{
  left:initial;
  right: -100%;
}
   
/********icons2*******/

.textcontainer .inner .icons2 .fa{
  font-size: 80px;
  cursor: pointer;
}
.anibody .textcontainer .inner .icons2 i 
{
    font-size: 80px;
    color: white;
    top: 50%;
    /*border: 2px solid blue;*/
    padding: 20px 40px 20px 40px;
    border-radius: 50%;
}
.anibody .textcontainer .inner .icons2 i:hover
{
  color:#6699ff;
}
.textcontainer .inner .icons2  h3,
.textcontainer .inner .icons2 h4{
  position: relative;
  font-weight: 400;
  margin: 0;
  padding: 2px 5px;
  font-size: 24px;
  overflow: hidden;
  transition-delay: 0.3333s;
  color: transparent;
}
.textcontainer .inner .fa:hover ~ h3,
.textcontainer .inner .fa:hover ~ h4{
  color: white;
}
.textcontainer .inner .icons2 h4{
  font-weight: 600;
  margin: 5px 0;
  font-size: 30px;

}
.textcontainer .inner .icons2  h3:before,
.textcontainer .inner .icons2  h4:before{
  content: '';
  position: absolute;
  top:0;
  left:100%;
  width:100%;
  height: 100%;
  /*background: #00bcd4;*/
 /* background-color: #FAD961;
background-image: linear-gradient(180deg, #FAD961 0%, #F76B1C 100%);*/

/*background-color: #FA8BFF;
background-image: linear-gradient(180deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%);*/
/*background-image: linear-gradient( 45deg,  rgba(255,220,163,1) 21.2%, rgba(129,255,239,1) 90.7% );*/

/*background-image: linear-gradient( 112.1deg,  rgba(32,38,57,1) 11.4%, rgba(63,76,119,1) 70.2% );*/


/*background-image: linear-gradient( 45deg,  rgba(112,128,152,1) 10.6%, rgba(242,227,234,1) 32.9%, rgba(234,202,213,1) 52.7%, rgba(220,227,239,1) 72.8%, rgba(185,205,227,1) 81.1%, rgba(154,180,212,1) 102.4% );*/



background: #6699ff;
  transition: 1s;

}
.textcontainer .inner .icons2 h4:before{
  left:initial;
  right: 100%;
  /*background: #9c27b0;*/
}
.textcontainer .inner .fa:hover ~ h3:before{
  left:-100%;
}
.textcontainer .inner .fa:hover ~ h4:before{
  left:initial;
  right: -100%;
}

@media only screen and (min-width: 320px) and (max-width: 767px)
{
  .anibody
  {
    display: block;
  }
  .textcontainer
  {
    display: block;
  }
}
@media only screen and (min-width: 640px) and (max-height: 360px)
{
  .anibody
  {
    display: block;
  }
  .textcontainer
  {
    display: block;
  }
}




/* **********footer************* */
a{
    text-decoration: none!important;
    outline: none!important;
  }
  img{
    border: none;
  }
  .mainfooter{
    width: 100%;
    height: auto;
    justify-content: space-between;
    display: flex;
    /*background: #545562;*/
    /*background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: 50% 0%;*/
    background-image: linear-gradient(0deg, #534b5b, #6d6d7c, #88919e, #a3b6c2);
    padding: 80px 0;
    position: relative;
  }
  .footerbox{
    width: 100%;
    height: auto;
    margin-right: 15px;
    margin-left: 50px;
  }
  .footerbox img{
    width: 180px;
    height: auto;
    margin-bottom:20px;
  }
  .footerbox h2{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: black;/*names in footer*/
    text-align: left;
  }
  .footerbox hr{
    background:gold;
    width: 80px;
    height: 3px;
    border:none;
    margin: 5px 0px 15px 0px;
  }
  .footerbox p{
    font-size: 14px;
    color:white;
    margin-bottom: 20px;
    line-height: 24px;
    text-align: justify;
  }
  .footerbox ul{
    margin: 0px;
    padding: 0px;
  }
  .footerbox ul li{
    list-style-type: none;
  }
  .footerbox ul li a{
    font-size: 13px;
    color: white;
    display: block;
    padding: 8px 0px;
    line-height: 24px;
    border-bottom: 1px solid gold;
    transition: .5s;
    text-align: left;
  }
  .footerbox ul li a:hover{
    padding-left: 5px;
    color: gold;
  }
  .footeraddress{
    width: 100%;
    height: auto;
    margin-top: 45px;
  }
  .footeraddress h6{
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin: 0px;
    margin-top: 20px;
  }
  .footeraddress h6 a{
    color: white;
    display: block;
    text-align: left;
  }
  .footeraddress h6 a p
  {
    margin-top: -35px;
    margin-left: 50px;
    text-align: left;
  }
  .footeraddress h6 a i{
    font-size: 14px;
    width: 30px;
    height: 30px;
    color: white;
    border-radius: 5px;
    border:1px solid white;
    text-align: center;
    line-height: 26px;
    margin-right: 10px;
  }
  .footeraddress h6 a:hover{
    color: gold;
  }
  .footeraddress h6 a p:hover{
    color: gold;
  }
  .footericons{
    width: 100%;
    height: auto;
  }
  .footericons ul{
    margin: 0px;
    padding: 0px;
  }
  .footericons ul li{
    display: inline-block;
    margin-top: 20px;
    margin-right: 5px;
  }
  .footericons ul li a{
    width: 30px;
    height: 30px;
    display: block;
    background:gold;
    color: #fff;
    text-align: center;
    border:none;
    padding: 0px;
  }
  .footericons ul li a i{
    font-size: 14px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    display: block;
    -moz-transition:all 0.8s;
    -o-transition:all 0.8s;
    -ms-transition:all 0.8s;
    transition: all 0.8s;
  }
  .footericons ul li a:hover i{
     -moz-transform:rotate(360deg);
     -o-transform:rotate(360deg);
     -ms-transform:rotate(360deg);
     transform: rotate(360deg);
     color: #fff;
  }
  .footericons ul li a:hover{
    background:black;
  }
  .footerbottom{
    width: 100%;
    height: 2vh;
    background:black;
    padding: 25px 0px;
  }
  .footerbottom p{
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin: 0px;
    margin-left: 10%;
  }
  .footerbottom p a{
    font-size: 13px;
    font-weight: 500;
    color:gold;
  }
  .footerbottom .left,.footerbottom .right
  {
    justify-content: space-between;
  }
  .footerbottom .text-right
  {
    margin-left: 50%;
  }
  .footerposition{
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
  }
  .footerposition h1{
    font-size: 40px;
    text-align: center;
    color: #232323;
    padding-bottom: 55px;
    text-transform: uppercase;
    font-weight: 800;
  }
  .footerposition h1 em{
    font-style: normal;
    color: #01bea2;
  }
  @media only screen and (min-width:992px) and (max-width:1199px){
     .footerposition{
      position: relative;
    }
    .footerposition h1{
      font-size: 50px;
      padding-bottom: 30px;
      padding-top: 30px;
    }
    .mainfooter{
      padding: 40px 0px;
    }
  }
  @media only screen and (min-width:769px) and (max-width: 992px){
     .footerposition{
      position: relative;
    }
    .footerposition h1{
      font-size: 40px;
      padding-bottom: 30px;
      padding-top: 30px;
    }
    .mainfooter{
      padding: 40px 0px;
    }
    .footerbox{
      text-align: center;
    }
    .footerbox p{
      font-size: 13px;
      margin-bottom: 0px;
    }
    .footerbox h2{
      font-size: 16px;
      text-align: left;
      margin-top: 20px;
    }
    .footerbox ul li{
      text-align: left;
    }
    .footeraddress h6{
      text-align: left;
      font-size: 13px;
    }
  }
  @media only screen and (min-width:576px) and (max-width: 768px){
    .footerposition{
      position: relative;
    }
    .footerposition h1{
      font-size: 20px;
      padding-bottom: 20px;
      padding-top: 30px;
    }
    .mainfooter{
      padding: 40px 0px;
      width: 100%;
      height: auto;
      display: block;
    }
    .footerbox h2{
      padding-top: 20px;
    }
    .footerbox p 
    {
      width: 70%;
      text-align: justify;
  
    }
    .footerbox ul li a 
    {
      width: 70%;
    }
    .footerbox ul li a i
    {
      width: 70%;
    }
    .footerbox .footericons ul li a
    {
      width: 100%;
      padding: 5px 0px 0px 5px;
    }
    .footerbox hr{
      width: 50px;
    }
    .footeraddress{
      margin-top: 30px;
    }
    .footerbottom p{
      text-align: center;
      font-size: 12px;
    }
    .footerbottom p .textryt{
      text-align: center!important;
    }
  }
  @media only screen and (min-width: 320px) and (max-width: 575px){
    .footerposition{
      position: relative;
    }
    .footerposition h1{
      font-size: 20px;
      padding-bottom: 20px;
      padding-top: 30px;
    }
    .mainfooter{
      padding: 40px 0px;
      width: 100%;
      height: auto;
      display: block;
    }
    .footerbox h2{
      padding-top: 20px;
    }
    .footerbox p 
    {
      width: 70%;
      text-align: justify;
  
    }
    .footerbox ul li a 
    {
      width: 70%;
    }
    .footerbox ul li a i
    {
      width: 70%;
    }
    .footerbox .footericons ul li a
    {
      width: 100%;
      padding: 5px 0px 0px 5px;
    }
    .footerbox hr{
      width: 50px;
    }
    .footeraddress{
      margin-top: 30px;
    }
    .footerbottom p{
      text-align: center;
      font-size: 12px;
    }
    .footerbottom p .textryt{
      text-align: center!important;
    }
  }
  @media only screen and (max-width: 319px){
  
    .footerposition{
      position: relative;
    }
    .footerposition h1{
      font-size: 20px;
      padding-bottom: 20px;
      padding-top: 30px;
    }
    .mainfooter{
      padding: 40px 0px;
    }
    .footerbox h2{
      padding-top: 20px;
    }
    .footerbox hr{
      width: 50px;
    }
    .footeraddress{
      margin-top: 30px;
    }
    .footerbottom p{
      text-align: center;
      font-size: 12px;
    }
    .footerbottom p .textryt{
      text-align: center!important;
    }
  }
  /* *****X*****footer*******X****** */
  