You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

224 lines
4.8 KiB

  1. @import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic,900,900italic);
  2. @import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500,700,900);
  3. @import url('bootstrap.min.css');
  4. p {
  5. font-family: 'Lato', sans-serif;
  6. color:#777777;
  7. line-height:21px;
  8. }
  9. .nav-section .nav-cvr {
  10. transition: all 0.5s ease-in-out 0s;
  11. }
  12. .nav-cvr {
  13. background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  14. box-shadow: none;
  15. margin: 0;
  16. padding: 23px 0;
  17. }
  18. .navbar-brand {
  19. height: auto;
  20. padding: 0;
  21. }
  22. .nav-section .navbar-brand img {
  23. max-height: 60px;
  24. transition: all 0.5s ease-in-out 0s;
  25. }
  26. /*-- banner
  27. -----------*/
  28. .banner-section{
  29. position:relative;
  30. background:#262262;
  31. overflow: hidden;
  32. }
  33. .banner-section .over-bg{
  34. padding:0 0;
  35. background: rgba(0, 0, 0, 0) url("../images/3.png") repeat scroll 0 0;
  36. background-size: cover;
  37. background-position: 50% 100% !important;
  38. padding: 50px 0;
  39. }
  40. .banner-section .dest-detail{
  41. padding-top: 50px;
  42. }
  43. .banner-section .section-padding {
  44. padding: 95px 0 0 0 ;
  45. }
  46. .banner-section .services-list{
  47. margin-bottom: 20px;
  48. }
  49. .banner-section .services-list h5{
  50. font-size: 17px;
  51. color: #fff;
  52. line-height: 17px;
  53. padding: 10px 0;
  54. font-weight: 500;
  55. }
  56. .banner-section .carousel-inner .item {
  57. opacity: 0;
  58. transition-property: opacity;
  59. }
  60. .banner-section .carousel-inner .active {
  61. opacity: 1;
  62. }
  63. .banner-section .carousel-inner .active.left,
  64. .banner-section .carousel-inner .active.right {
  65. left: 0;
  66. opacity: 0;
  67. z-index: 1;
  68. }
  69. .banner-section .carousel-inner .next.left,
  70. .banner-section .carousel-inner .prev.right {
  71. opacity: 1;
  72. }
  73. .banner-section .carousel-control {
  74. z-index: 2;
  75. }
  76. @media not all, not all {
  77. .banner-section .carousel-inner > .item.next,
  78. .banner-section .carousel-inner > .item.active.right {
  79. opacity: 0;
  80. transform: translate3d(0px, 0px, 0px);
  81. }
  82. .banner-section .carousel-inner > .item.prev,
  83. .banner-section .carousel-inner > .item.active.left {
  84. opacity: 0;
  85. transform: translate3d(0px, 0px, 0px);
  86. }
  87. .banner-section .carousel-inner > .item.next.left,
  88. .banner-section .carousel-inner > .item.prev.right,
  89. .banner-section .carousel-inner > .item.active {
  90. opacity: 1;
  91. transform: translate3d(0px, 0px, 0px);
  92. }
  93. }
  94. .banner-section .item {
  95. background-size: cover;
  96. height: 500px;
  97. }
  98. .banner-section .item span img{
  99. margin-top: 50px;
  100. }
  101. .banner-section .item .carousel-caption {
  102. left: 10%;
  103. right: 10%;
  104. text-shadow: none;
  105. top: 22%;
  106. }
  107. .banner-section .item .carousel-caption h2 {
  108. animation-duration: 0.8s;
  109. animation-name: fadeInDown;
  110. font-family: "Ubuntu",sans-serif;
  111. font-size: 60px;
  112. font-weight: 700;
  113. margin: 20px 0;
  114. text-transform: uppercase;
  115. }
  116. .banner-section .item .carousel-caption h3 {
  117. animation-duration: 0.8s;
  118. animation-name: fadeInUp;
  119. font-family: "Roboto",sans-serif;
  120. font-size: 20px;
  121. font-weight: 100;
  122. }
  123. .banner-section .item .carousel-caption .btn {
  124. animation-duration: 0.8s;
  125. animation-name: fadeInUp;
  126. margin: 30px 15px;
  127. }
  128. .banner-section .active {
  129. opacity: 1;
  130. }
  131. .banner-section .active.left,
  132. .banner-section .active.right {
  133. left: 0;
  134. opacity: 0;
  135. z-index: 1;
  136. }
  137. .banner-section .carousel-control {
  138. background-image: none;
  139. box-shadow: none;
  140. height: 55px;
  141. margin-top: -35px;
  142. padding: 10px 5px;
  143. text-shadow: none;
  144. top: 50%;
  145. width: 35px;
  146. z-index: 10;
  147. }
  148. .banner-section .carousel-control i {
  149. border: 2px solid #fff;
  150. border-radius: 100%;
  151. height: 50px;
  152. padding: 15px;
  153. width: 50px;
  154. }
  155. .banner-section .carousel-control i:hover {
  156. background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0;
  157. }
  158. .banner-section .left.carousel-control {
  159. left: 2%;
  160. }
  161. .banner-section .right.carousel-control {
  162. right: 4%;
  163. }
  164. .banner-section .carousel-indicators {
  165. bottom: 45px;
  166. }
  167. .banner-section .carousel-indicators li {
  168. border-radius: 4px;
  169. height: 8px;
  170. margin: 0 5px;
  171. opacity: 0.5;
  172. width: 40px;
  173. }
  174. .banner-section .carousel-indicators li:hover,
  175. .banner-section .carousel-indicators li.active {
  176. opacity: 1;
  177. }
  178. .banner-section:hover .carousel-control {
  179. display: block;
  180. }
  181. .banner-section i {
  182. margin-right: 10px;
  183. }
  184. .revolutionary{
  185. letter-spacing:16.5px;
  186. text-transform:uppercase;
  187. }
  188. .banner-section .titles h1{
  189. font-family:"Raleway", "Helvetica Neue", sans-serif;
  190. color:#fff;
  191. font-size:40px;
  192. margin:3px 0px;
  193. text-transform: uppercase;
  194. font-weight: 600;
  195. }
  196. .banner-section .grow{
  197. font-family:"Raleway", "Helvetica Neue", sans-serif;
  198. text-transform:uppercase;
  199. font-size:25px;
  200. font-weight:400;
  201. color:#fff;
  202. }
  203. .banner-section p{
  204. font-size:18px;
  205. padding: 20px 0px 10px;
  206. color:#fff;
  207. font-weight: 400;
  208. line-height: 30px;
  209. }
  210. .banner-section .btn{
  211. font-size: 18px;
  212. font-weight: 500;
  213. padding: 7px 28px;
  214. text-transform: uppercase;
  215. height: 55px;
  216. }
  217. /* ends slider */