theme-default.scss 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. /* 1. Theme default css */
  2. @import 'varriable';
  3. @import 'mixins.scss';
  4. @import 'responsive';
  5. body {
  6. font-family: $font1;
  7. font-weight: normal;
  8. font-style: normal;
  9. }
  10. .img {
  11. max-width: 100%;
  12. @include transition(.3s);
  13. }
  14. a,
  15. .button {
  16. @include transition(.3s);
  17. }
  18. a:focus,
  19. .button:focus,button:focus {
  20. text-decoration: none;
  21. outline: none;
  22. }
  23. a:focus{
  24. text-decoration: none;
  25. }
  26. a:focus,
  27. a:hover,
  28. .portfolio-cat a:hover,
  29. .footer -menu li a:hover {
  30. text-decoration: none;
  31. }
  32. a,
  33. button {
  34. color: #1F1F1F;
  35. outline: medium none;
  36. }
  37. h1,h2,h3,h4,h5{
  38. font-family: $font2;
  39. color: #001D38;
  40. }
  41. h1 a,
  42. h2 a,
  43. h3 a,
  44. h4 a,
  45. h5 a,
  46. h6 a {
  47. color: inherit;
  48. }
  49. ul {
  50. margin: 0px;
  51. padding: 0px;
  52. }
  53. li {
  54. list-style: none
  55. }
  56. p {
  57. font-size: 16px;
  58. font-weight:400;
  59. line-height: 28px;
  60. color: #596672;
  61. margin-bottom: 0px;
  62. font-family: $font1;
  63. }
  64. label {
  65. color: #7e7e7e;
  66. cursor: pointer;
  67. font-size: 14px;
  68. font-weight: 400;
  69. }
  70. *::-moz-selection {
  71. background: #444;
  72. color: #fff;
  73. text-shadow: none;
  74. }
  75. ::-moz-selection {
  76. background: #444;
  77. color: #fff;
  78. text-shadow: none;
  79. }
  80. ::selection {
  81. background: #444;
  82. color: #fff;
  83. text-shadow: none;
  84. }
  85. *::-webkit-input-placeholder {
  86. color: #cccccc;
  87. font-size: 14px;
  88. opacity: 1;
  89. }
  90. *:-ms-input-placeholder {
  91. color: #cccccc;
  92. font-size: 14px;
  93. opacity: 1;
  94. }
  95. *::-ms-input-placeholder {
  96. color: #cccccc;
  97. font-size: 14px;
  98. opacity: 1;
  99. }
  100. *::placeholder {
  101. color: #cccccc;
  102. font-size: 14px;
  103. opacity: 1;
  104. }
  105. h3{
  106. font-size: 24px;
  107. }
  108. .mb-65{
  109. margin-bottom: 67px;
  110. }
  111. // default-bg-color
  112. .black-bg{
  113. background: #020c26 !important;
  114. }
  115. .white-bg{
  116. background: #ffffff;
  117. }
  118. .gray-bg{
  119. background: #f5f5f5;
  120. }
  121. .overlay{
  122. position: relative;
  123. z-index: 0;
  124. }
  125. .overlay::before{
  126. position: absolute;
  127. content: "";
  128. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#001d38+0,1a0d01+100&0.7+0,0.6+100 */
  129. background: -moz-linear-gradient(left, rgba(0,29,56,0.7) 0%, rgba(26,13,1,0.6) 100%); /* FF3.6-15 */
  130. background: -webkit-linear-gradient(left, rgba(0,29,56,0.7) 0%,rgba(26,13,1,0.6) 100%); /* Chrome10-25,Safari5.1-6 */
  131. background: linear-gradient(to right, rgba(0,29,56,0.7) 0%,rgba(26,13,1,0.6) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  132. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3001d38', endColorstr='#991a0d01',GradientType=1 ); /* IE6-9 */
  133. top: 0;
  134. left: 0;
  135. width: 100%;
  136. height: 100%;
  137. z-index: -1;
  138. }
  139. .overlay2{
  140. position: relative;
  141. z-index: 0;
  142. }
  143. .overlay2::before{
  144. position: absolute;
  145. content: "";
  146. background-color: #001D38;
  147. top: 0;
  148. left: 0;
  149. width: 100%;
  150. height: 100%;
  151. z-index: -1;
  152. opacity: 0.6;
  153. }
  154. .overlay_03{
  155. position: relative;
  156. z-index: 0;
  157. }
  158. .overlay_03::before{
  159. position: absolute;
  160. width: 100%;
  161. height: 100%;
  162. left: 0;
  163. top: 0;
  164. background: #001D38;
  165. opacity: .6;
  166. content: '';
  167. z-index: -1;
  168. }
  169. .bradcam_overlay{
  170. position: relative;
  171. z-index: 0;
  172. }
  173. .bradcam_overlay::before{
  174. position: absolute;
  175. content: "";
  176. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5db2ff+0,7db9e8+100&1+24,0+96 */
  177. background: -moz-linear-gradient(left, rgba(93,178,255,1) 0%, rgba(101,180,249,1) 24%, rgba(124,185,233,0) 96%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
  178. background: -webkit-linear-gradient(left, rgba(93,178,255,1) 0%,rgba(101,180,249,1) 24%,rgba(124,185,233,0) 96%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
  179. background: linear-gradient(to right, rgba(93,178,255,1) 0%,rgba(101,180,249,1) 24%,rgba(124,185,233,0) 96%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  180. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5db2ff', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 */
  181. top: 0;
  182. left: 0;
  183. width: 100%;
  184. height: 100%;
  185. z-index: -1;
  186. opacity: 1;
  187. }
  188. .section-padding{
  189. padding-top: 120px;
  190. padding-bottom: 120px;
  191. }
  192. .pt-120{
  193. padding-top: 120px;
  194. }
  195. /* button style */
  196. .owl-carousel {
  197. .owl-nav div {
  198. background: transparent;
  199. height: 50px;
  200. left: 0px;
  201. // opacity: 0;
  202. position: absolute;
  203. text-align: center;
  204. top: 50%;
  205. -webkit-transform: translateY(-50%);
  206. -ms-transform: translateY(-50%);
  207. transform: translateY(-50%);
  208. -webkit-transition: all 0.3s ease 0s;
  209. -o-transition: all 0.3s ease 0s;
  210. transition: all 0.3s ease 0s;
  211. // visibility: hidden;
  212. width: 50px;
  213. color: #707070;
  214. background-color: transparent;
  215. @include border-radius(50%);
  216. left: 50px;
  217. font-size: 15px;
  218. line-height: 50px;
  219. border: 1px solid #4D6174;
  220. left: 150px;
  221. color: #fff;
  222. }
  223. .owl-nav{
  224. div{
  225. &.owl-next{
  226. // left: 86px;
  227. // right: auto;
  228. left: auto;
  229. right: 150px;
  230. i{
  231. position: relative;
  232. right: 0;
  233. // top: 1px;
  234. }
  235. }
  236. &.owl-prev{
  237. i{
  238. position: relative;
  239. // right: 1px;
  240. top: 0px;
  241. }
  242. }
  243. }
  244. }
  245. &:hover{
  246. .owl-nav{
  247. div{
  248. opacity: 1;
  249. visibility: visible;
  250. &:hover{
  251. color: #fff;
  252. background: #001D38;
  253. border: 1px solid transparent ;
  254. }
  255. }
  256. }
  257. }
  258. }
  259. .mb-20px{
  260. margin-bottom: 20px;
  261. }
  262. .mb-55{
  263. margin-bottom: 55px;
  264. }
  265. .mb-75{
  266. margin-bottom: 75px;
  267. @media #{$mobile_device} {
  268. margin-bottom: 30px;
  269. }
  270. @media #{$tablet_device} {
  271. margin-bottom: 30px;
  272. }
  273. }
  274. .mb-40{
  275. margin-bottom: 40px;
  276. }
  277. .mb-20{
  278. margin-bottom: 20px;
  279. }
  280. .mb-60{
  281. margin-bottom: 50px !important;
  282. }