/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #FFFFFF;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: #00FFFF;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #00FFFF;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background-color: #00FFFF;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #00FFFF;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.9);
}
#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: white;
  box-shadow: 1px 1px 5px #f6f6f6;
  padding: 10px 0;
  text-rendering: optimizeLegibility;
  font-size: 28px;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;

}
#header.header-scrolled .logo a{
  color: #999999;
  text-rendering: optimizeLegibility;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
}

#header .logo {
  font-size: 34px;
  line-height: 1;
    padding: 0;
    margin-left: 0;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  padding-left: 15px;
  border-left: 4px solid transparent;
  border-color: #00FFFF;
  border-image-slice: 1;
}
#header img{
  padding-right: 0px;
  margin-right: 0px;

}
#header .whitelogo{
  display: none;
}
#header.header-scrolled .whitelogo{
  display: inline-block;
}
#header.header-scrolled .blacklogo{
  display: none;
}
@media screen and (max-width: 1200px)
{ #header .logo{
  padding-left: 10px;
}
  #header img{
    display: none;
  }
  #header .whitelogo{
  display: none;
    }
    #header .blacklogo{
  display: none;
    }
    #header.header-scrolled .whitelogo{
        display: none;
    }
}
#header h6 {
  font-size: 12px;
  margin-top: 0px;
  margin-left: 130px;
  text-decoration: underline; 
  line-height: 1;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
   
}
#header .logo a {
  font-size: 25px;
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;

}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.1s;
  font-size: 15px;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
  
  font-weight: 525;
}
#header.header-scrolled .nav-menu a{
  color: #999999;
  text-rendering: optimizeLegibility;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
	
 border-bottom: 2px solid #00FFFF;

}
.nav-menu .drop-down ul {
  display: block;
  text-align: center;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: black;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #00FFFF;
  border-bottom: none;
}
#header.header-scrolled .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #00FFFF;
  border-bottom: none;
}
.nav-menu .drop-down > a:after {
  content: "";
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "";
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle i {
  color: #00FFFF;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #333333;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #00FFFF;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(26, 26, 26, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #00FFFF;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#bg1{

}
#bg1 .bg1{
  background-image: linear-gradient(to bottom left , #0A0A0A,#0A0A0A);
  border-bottom: 1px solid rgba(102, 102, 102, .2);
} 
#bg1 .bg1 .bg11{
 
}
#bg1 .bg1 .bg12{
 
}
#bg1  .bg1 .bg123{
  padding: 21%;

 }

 @media (max-width: 1366px)
 {
  #bg1  .bg1 .bg123{
  padding: 18%;
 }
 }

#bg1 .bg1 .bg13 {
 
}
@media (max-width: 768px){
  #bg1 .bg1 .bg13 p {
visibility: hidden;
}
}
#bg1 .bg1 #p1{
  text-align: center;
  position: relative;
  
  letter-spacing: 1px;
  word-spacing: 5px;
  
  color: white;
  font-size: 45px;
  font-family: Brush Script MT;
  /*font-family:  proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;*/
}
#bg1 .bg1  a{
  display: inline-block;  
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  transition: 0.3s;
  margin: 10px;
  color: black;
  background-color: #00FFFF;
  font-weight: 500;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}
#bg1 .bg1 #p2{
  text-align: center;
  position: relative;
  letter-spacing: 1px;
  word-spacing: 1px;
  font-size: 15px;
 font-family:  proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}


.videophone{
 display: flex;
 background-image: linear-gradient(to top, #f8f8f8 50% , white 50%);
}


.b1{
  position: relative;

}

.image {
  position: relative;
  top: 35px;
  left: 0px;
  padding-top: 4.8%;
  padding-bottom:5%;
  padding-right: 18.9%;
  padding-left: 19%;
  z-index: 1;
}

.videocontainer{
  padding-top: 27.2%;
  padding-right: 16.5%;
  padding-left: 36%;
  padding-bottom: 15%;
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 25px;
}
@media (max-width: 768px){
 .b1-col{
display: none;
 }
 
.b1{
display: none;
}

.videophone .col-md-7{
      flex: 0 0 100%;
    max-width: 100%;

}

.image {
  padding-top: 50px;
  width: 100%;
  height: 100%;
  display: none;
}

.videocontainer{
  padding-top: 50px;
  position: absolute;
  display: none;
  bottom: 40px;
  right: 72px;
  width: 30px;
  height: 40px;
}

}
@media (max-width: 1400px){
.b1{
  position: relative;
}

.image {
  position: relative;
  top: 35px;
  left: 0px;
  padding-top: 4.8%;
  padding-bottom:5%;
  padding-right: 18.9%;
  padding-left: 19%;
  z-index: 1;
}

.videocontainer{
  padding-top: 27.4%;
  padding-right: 16.6%;
  padding-left: 35%;
  padding-bottom: 15%;
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 25px;
}
}

@media (max-width: 1250px){
.b1{
  position: relative;
}

.image {
  position: relative;
  top: 35px;
  left: 0px;
  padding-top: 4.8%;
  padding-bottom:5%;
  padding-right: 18.9%;
  padding-left: 19%;
  z-index: 1;
}

.videocontainer{
  padding-top: 28%;
  padding-right: 16.8%;
  padding-left: 34.4%;
  padding-bottom: 15%;
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 25px;
}
}

@media (max-width: 1100px){
.b1{
  position: relative;
}

.image {
  position: relative;
  top: 35px;
  left: 0px;
  padding-top: 4.8%;
  padding-bottom:5%;
  padding-right: 18.9%;
  padding-left: 19%;
  z-index: 1;
}

.videocontainer{
  padding-top: 28.5%;
  padding-right: 17%;
  padding-left: 34%;
  padding-bottom: 15%;
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 25px;
}

}
@media (max-width: 1000px){
.b1{
  position: relative;
}

.image {
  position: relative;
  top: 35px;
  left: 0px;
  padding-top: 4.8%;
  padding-bottom:5%;
  padding-right: 18.9%;
  padding-left: 19%;
  z-index: 1;
}

.videocontainer{
  padding-top: 28.6%;
  padding-right: 17%;
  padding-left: 33.6%;
  padding-bottom: 15%;
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 25px;
}

}
@media (max-width: 952px){
.b1{
  position: relative;

}

.image {
  position: relative;
  top: 35px;
  left: 0px;
  padding-top: 4.8%;
  padding-bottom:5%;
  padding-right: 18.9%;
  padding-left: 19%;
  z-index: 1;
}

.videocontainer{
  padding-top: 28.8%;
  padding-right: 17%;
  padding-left: 33.1%;
  padding-bottom: 15%;
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 25px;
}

}
@media (max-width: 862px){
.b1{
  position: relative;
}

.image {
  position: relative;
  top: 35px;
  left: 0px;
  padding-top: 4.8%;
  padding-bottom:5%;
  padding-right: 18.9%;
  padding-left: 19%;
  z-index: 1;
}

.videocontainer{
  padding-top: 28.9%;
  padding-right: 17%;
  padding-left: 32.6%;
  padding-bottom: 15%;
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 25px;
}

}
@media (max-width: 810px){
.b1{
  position: relative;
}

.image {
  position: relative;
  top: 35px;
  left: 0px;
  padding-top: 4.8%;
  padding-bottom:5%;
  padding-right: 18.9%;
  padding-left: 19%;
  z-index: 1;
}

.videocontainer{
  padding-top: 30%;
  padding-right: 17.4%;
  padding-left: 32%;
  padding-bottom: 14.8%;
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 25px;
}

}


.b2{
  position: relative;
  float: right; 
  padding-top: 7%;
}
.b2 .b21{
   
  padding-bottom: 5%;
}
.b2 .b21 .b21-head h2{
padding-left: 10%;
font-weight: 700;
font-family: proxima-nova,Helvetica Neue.Helvetica,Arial,sans-serif;
padding-top: 10%;
}

.b2 .b21 .b21-content{
  border-left: 4px solid #00FFFF;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 10%;
  padding-left: 3%;
}
.b1 img{
  margin-left: 20%;
}



.b2-part2{
  padding-top: 8%;
  


}
@media (max-width: 512px){
  .b2-part2{
  padding-top: 10%;
  padding-left: 3%;
}
}
.b22{

  
}
.b22 p{
   font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
}
.b22 .b221{
  color: blue;
  float: left;
  padding: 10%;


  padding-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
}
.b22 .b221 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b221 div{
  width: 60%;
}
.b222 div{
  width: 60%;
}
.b22 .b222 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b22 .b222{
  color: red;
  float: right;
  padding: 10%;
  padding-right: 20%;
  padding-left: 0%;
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
}
@media(max-width: 768px){
  .b22{

  
}
.b22 p{
   font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
}
.b22 .b221{
  color: blue;
  float: left;
  padding: 10%;
  padding-top: 5%;
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
}
.b22 .b221 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b221 div{
  width: 60%;
}
.b222 div{
  width: 60%;
}
.b22 .b222 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b22 .b222{
  color: red;
  float: right;
  padding: 10%;
  padding-top: 5%;
  padding-right: 10%;
  padding-left: 10%;
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
}

}
@media (max-width: 767px){
  .b22{

  
}
.b22 p{
   font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
}
.b22 .b221{
  color: blue;
  float: left;
  padding: 10%;
  padding-top: 20%;
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
}
.b22 .b221 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b221 div{
  width: 60%;
}
.b222 div{
  width: 60%;
}
.b22 .b222 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b22 .b222{
  color: red;
  float: right;
  padding: 10%;
  padding-top: 5%;
  padding-right: 10%;
  padding-left: 10%;
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
}
}
.b23{

  
}
.b23 .b231 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b231 div{
  width: 60%;
}
.b232 div{
  width: 60%;
}
.b23 .b232 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b23 .b231{
  
  color: brown;
  padding: 10%;
  padding-bottom: 0;
  float: left;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
  
}
.b23 .b232{
 
  float: right;
  color: green;
  padding: 10%;
  padding-right: 20%;
  padding-left: 0%;
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
  
}
@media (max-width: 768px){
.b23{

  
}
.b23 .b231 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b231 div{
  width: 60%;
}
.b232 div{
  width: 60%;
}
.b23 .b232 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b23 .b231{
  
  color: brown;
  padding: 10%;
  padding-bottom: 0;
  padding-top: 5%;
  float: left;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
  
}
.b23 .b232{
 
  float: right;
  color: green;
  padding: 10%;
  padding-top: 5%;
  padding-right: 10%;
  padding-left: 10%;
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
  
}  
}
.b24{

}

.b24 .b241 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b241 div{
  width: 60%;
}
.b242 div{
  width: 60%;
}
.b24 .b242 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b24 p{
   font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
}
.b24 .b241{
  color: purple;
  float: left;
  padding: 10%;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
}
.b24 .b242{
  color: orange;
  float: right;
  padding: 10%;
  padding-left: 0%;
  padding-right: 20%;
  font-size: 20px;
  font-weight: 500;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  
}
@media (max-width:768px){
 .b24{

}

.b24 .b241 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b241 div{
  width: 60%;
}
.b242 div{
  width: 60%;
}
.b24 .b242 #p1{
  color: #999;
  font-size: 13px;
  text-align: justify;

}
.b24 p{
   font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
}
.b24 .b241{
  color: purple;
  float: left;
  padding: 10%;
  padding-bottom: 0%;
  padding-top: 5%;
  font-size: 20px;
  font-weight: 500;
  
  
}
.b24 .b242{
  color: orange;
  float: right;
  padding: 10%;
  padding-top: 5%;
  padding-bottom: 0%;
  padding-left: 10%;
  padding-right: 10%;
  font-size: 20px;
  font-weight: 500;
 
  
} 
}


#intro .intro-container {
  width: 50%;
  margin-top: 20px;
  height: 45vh;
  background: #fff;
  overflow: hidden;
  position: relative;
}


#intro .carousel, #intro .carousel-inner, #intro .carousel-item, #intro .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0);
}


#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#intro .text0  h2 {
  left: 100%;
  color: #1C1E21;
  text-align: left;
  font-size: 36px;
  font-weight: 600;
  font-family: franklin-gothic demi cond,Helvetica Neue,Helvetica,Arial,sans-serif;
}

#intro .text0 p {
  left: 100%;
  font-color:#999999;
  font-size: 16px;
  font-weight: 100;
  text-align: left;
  font-family:proxima-nova,"Helvetica Neue" Helvetica,Arial,sans-serif;
  text-rendering: optimizeLegibility;
}



#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right
{
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right 
{
  opacity: 1;
  transition: 0.2s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev, #intro .carousel-control-next {
  width: 10%;
}


#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon 
{
  background: none;
  color: #00FFFF;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .text0 .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: white;
  background-color: #00FFFF;
  background-size: 400%;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
 .section-header h3 {
  font-size: 32px;
  color: #111;
  /*text-transform: uppercase;*/
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #00FFFF;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

/* About Us Section
--------------------------------*/
#about {
 /* background: url("../img/about-bg.jpg") center top no-repeat fixed;*/
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}


#about::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#about .container {
  position: relative;
  z-index: 10;
}
#about .container .section-header h3{
  font-weight: normal;
  	font-family:  proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
} 
#about .container .section-header p{
  color: #999;
  text-rendering: optimizeLegibility;
  font-size: 16px;
	font-family:  proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
} 

#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #00FFFF;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#about .about-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#about .about-col:hover .icon {
  background-color: #fff;
}

#about .about-col:hover i {
  color: #00FFFF;
}

#about .about-col h2 {
  color: #000;
  font-family: 'proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif';
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#about .about-col h2 a {
  color: #000;
  font-weight: 600;
  font-family: 'proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif';
}

#about .about-col h2 a:hover {
  color: #00FFFF;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #999;
  margin-bottom: 0;
  text-align: center;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
  padding: 0 20px 20px 20px;
}

/* Services Section
--------------------------------*/
#services {
  background: #f8f8f8;
  background-size: cover;
  padding: 60px 0 40px 0;
}
#services .services-header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  font-family:  proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
  padding-bottom: 1%;
 
}
 #services .services-header h3 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 500;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
  position: relative;
  padding-bottom: 15px;
}

#services .services-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

#services .services-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #00FFFF;
  bottom: 0;
  left: calc(50% - 20px);
}
#services .services{

}


#services .services .services-title{
  margin: 5%;
  background-color: #f8f8f8;
}

@media (max-width: 1024px){
  #services .services .services-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 15%;
}
}
@media (max-width: 850px){
  #services .services .services-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 35%;
}
}


/*-----Change Start-----*/
@media (max-width: 768px){
  #services .services .services-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 10%;
}
}
/*-----Change End-----*/
.services-title div{
  
   

}
.services-pages{
  margin: 5%;
  justify-content: center;
}
.services-pages .services-pages-main{

  display: flex;
  flex-direction: column;
  
  
}
 .services-pages .services-pages-main p{
 
  font-size: 16px;
  text-align: justify;
  line-height: 30px;
    text-rendering: optimizeLegibility;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
 }
 .services-pages .services-pages-main .services-pages-main-head{

  text-align: center;
 
 }
 .services-pages .services-pages-main .services-pages-main-content{
  border-left: 4px solid #00FFFF;
  padding-left: 3%;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  font-family:  proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
 }
 .Responsive{
  height: auto;
  width: 100%; 
 }
 @media (max-width: 1024px)
 {
.services-pages{
  
  justify-content: center;
}
  }

/*----------web devlopment-------*/

#services .web-devlopment{
  
  
}
#services .web-devlopment .web-title{
  background-color: #f8f8f8;
    margin: 5%;
    padding-top: 7%;
  
}
.web-title div{

  
}
@media (max-width: 1024px){
  #services .web-devlopment .web-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 15%;
}
}
@media (max-width: 850px){
  #services .web-devlopment .web-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 35%;
}
}

/*-----Change Start-----*/
@media (max-width: 768px){
  #services .web-devlopment .web-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 10%;
}
}
/*-----Change End-----*/
.web-pages{
  margin: 5%;
  
  background-color: #f8f8f8;
}
.web-pages .web-pages-main{

  flex-direction: column;
  
  align-items: center;
  background-color: #f8f8f8;
}
.web-pages .web-pages-main h2{
  text-align: center;
}
 .web-pages .web-pages-main p{
  font-size: 16px;
  line-height: 30px;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
 }
 .web-pages .web-pages-main-content .web-pages-main-content-r1{
  padding-bottom: 5%;
 }
 .web-pages .web-pages-main .web-pages-main-content{
  text-align: justify;
 }
 .web-pages .web-pages-main .web-pages-main-content1{
 
 }
  .web-pages .web-pages-main .web-pages-main-content2{
 
 }
  .web-pages .web-pages-main .web-pages-main-content3{
  
 }
  .web-pages .web-pages-main .web-pages-main-content4{
 
 }
 .web-pages .web-pages-main .web-pages-main-content1 div{
  border-left: 4px solid #00FFFF;
  padding-left: 3%;
  font-size: 15px;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
 }
  .web-pages .web-pages-main .web-pages-main-content2 div{
  border-left: 4px solid #00FFFF;
  padding-left: 3%;
  font-size: 15px;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
 }
  .web-pages .web-pages-main .web-pages-main-content3 div{
  border-left: 4px solid #00FFFF;
  padding-left: 3%;
  font-size: 15px;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
 }
  .web-pages .web-pages-main .web-pages-main-content4 div{
  border-left: 4px solid #00FFFF;
  padding-left: 3%;
  font-size: 15px;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
 }
 @media (max-width: 767px)
 {
  .web-devlopment1{
  order: 1;
}
.web-devlopment2{
  order: 2;
}
.webr1c1{
  padding-bottom: 5%;
}
.webr2c1{
  padding-bottom: 5%;
}

 }
/*-------Digital Marketing------*/

#services .digital{

}
#services .digital .digital-title{
  
  background-color: #f8f8f8;
  margin: 5%;
  padding-top: 5%;  
}

@media (max-width: 1024px){
  #services .digital .digital-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 15%;
}
}
@media (max-width: 850px){
  #services .digital .digital-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 35%;
}
}
/*-----Change Start-----*/
@media (max-width: 768px){
  #services .digital .digital-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 10%;
}
}
/*-----Change End-----*/
.digital-pages{
 margin: 5%;
}
.digital-pages .digital-page1{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #f8f8f8;
  align-items: center;
}
.digital-pages .digital-page2{
  
  display: flex;
 
  font-size: 16px;
  flex-direction: column;
  background-color: #f8f8f8;
  text-rendering: optimizeLegibility;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.digital-pages .digital-page2-content{
  border-left: 4px solid #00FFFF;
  font-weight: 500;
  padding-left: 3%;
  font-size: 15px;
  text-rendering: optimizeLegibility;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
  
}
.digital-pages div> h2{
	text-align: center;
}
 .digital-pages div> p{
 
  text-align: justify;
  font-size: 16px;
  
  font-weight: 500;
  line-height: 30px;
 }
/*-------QA services--------*/
#services .qa{

}
#services .qa .qa-title{
 margin: 5%;  
}
@media (max-width: 1024px){
  #services .qa .qa-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 15%;
}
}
@media (max-width: 850px){
  #services .qa .qa-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 35%;
}
}

/*-----Change Start-----*/
@media (max-width: 768px){
  #services .qa .qa-title{
  margin: 5%;
  background-color: #f8f8f8;
  padding-top: 10%;
}
}
/*-----Change End-----*/
.qa-pages{
 margin: 5%;
  background-color: #f8f8f8;
  
  flex-direction: column;
  text-align: center;
  text-rendering: optimizeLegibility;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
  
 
}
.qa-pages div{
  background-color: #f8f8f8;
}
.qa-pages .qa-pages-content .qa-pages-content0{
    
  font-size: 15px;
  text-align: justify;
  text-rendering: optimizeLegibility;
  font-weight:100;
  
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.qa-pages .qa-pages-content .qa-pages-content2{

  font-size: 15px;
  text-align: justify;
  font-weight:100;
  text-rendering: optimizeLegibility;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.qa-pages .qa-pages-content .qa-pages-content1{
  border-left: 4px solid #00FFFF;
  font-size: 15px;
  padding-left: 3%;
  text-align: justify;
 text-rendering: optimizeLegibility;
  font-size: 15px;
  font-weight:100;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.qa-pages .qa-pages-head{
  
  text-align: center;
  justify-content: flex-start;

  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}
 .qa-pages .qa-pages-content p{
  text-align: justify;
  font-size: 16px;
  line-height: 30px;
  text-rendering: optimizeLegibility;
   
 }
@media  (max-width: 767px){
.qa1{
  order: 1;
}
.qa2{
  order: 2;
}
.qa-pages-content0{
  padding-bottom: 5%;
}
.qa-pages .qa-pages-content .qa-pages-content0{
    
  font-size: 15px;
  text-align: justify;
  text-rendering: optimizeLegibility;
  font-weight:100;
  
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.qa-pages .qa-pages-content .qa-pages-content2{

  font-size: 15px;
  text-align: justify;
  font-weight:100;
  text-rendering: optimizeLegibility;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.qa-pages .qa-pages-content .qa-pages-content1{
  border-left: 4px solid #00FFFF;
  font-size: 15px;
  padding-left: 3%;
  text-align: justify;
 text-rendering: optimizeLegibility;
  font-size: 15px;
  font-weight:100;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 60px 0;
  background: white;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
   color: #00FFFF;
}
#contact .container .section-header h3{
	font-weight: normal;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;

}
#contact .container .section-header p{
  font-weight: normal;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #999;
}

#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #999;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}

#contact .contact-info h3 {
  font-size: 16px;
  margin-bottom: 15px;
  /*text-transform: uppercase;*/
  color: #999;
}

#contact .contact-info a {
  color: #999;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}

#contact .contact-info a:hover {
  color: #00FFFF;
}

#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
/*
#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}


#contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
*/

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #00FFFF;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #00FFFF;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input, #contact .php-email-form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
  background-color: #00FFFF;
}

#contact .php-email-form button[type="submit"] {
   background-color: #00FFFF;
  border: 0;
  padding: 10px 30px;
  color: #999;
  transition: 0.4s;
  cursor: pointer;
  font-family:  proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
}

#contact .php-email-form button[type="submit"]:hover {
  background: #00FFFF;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #999;
  font-size: 14px;
}

#footer .footer-top {
  background: #f9f9f9;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family:proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #00FFFF;
  font-color: #999 ;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  color: #999;
}
@media screen and (max-width: 650px){
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  margin-left: 3%;
  margin-right: 4%;
  font-family: proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
  color: #999;
}
}

#footer .footer-top .social-links a {

  font-size: 18px;
  display: inline-block;
  transition: 0.3s;
}
  #footer .footer-top .social-links .fa-facebook {
  background: #3B5998;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 1;
  padding: 8px 0;
  text-align: center;
  margin-right: 4px;

}

#footer .footer-top .social-links .fa-twitter {
  background: #55ACEE;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 1;
  padding: 8px 0;
  text-align: center;
  margin-right: 4px;

}
#footer .footer-top .social-links .fa-linkedin {
  background: #007bb5;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 1;
  padding: 8px 0;
  text-align: center;
  margin-right: 4px;
  }
  
 #footer .footer-top .social-links .fa-instagram {
  background: linear-gradient(red,orange);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 1;
  padding: 8px 0;
  text-align: center;
  margin-right: 4px;
}



#footer .footer-top .social-links a:hover {
  color: #999;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #999;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before, #footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #00FFFF;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  margin-left: 65px
}

@media screen and (max-width: 768px){
#footer .footer-top .footer-links {
  margin-bottom: 30px;
 margin-left: 3%;
      margin-right: 4%;

}
}


#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #999;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #999;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #999;
}

#footer .footer-top .footer-links ul a:hover {
  color: #00FFFF;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  margin-left: 85px; 
}
@media screen and (max-width: 768px){

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  margin-left: 3%;
  margin-right: 4%;

}
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}
 /* <!-- SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google 
SagurIT SagurITTechnologies SagurITTechnologiesPvtLtd sagurit sagurittechnologies sagurit.com https://www.sagurit.com/ Software Company Product Development Software Development Quality Assurance Digital Marketing
Mobile Application Development Web Application Development Website Development Wordpress PHP HTML CSS JavaScript Android ios Swift Google --> */