main.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  1. /*//////////////////////////////////////////////////////////////////
  2. [ FONT ]*/
  3. @font-face {
  4. font-family: Poppins-Regular;
  5. src: url('../fonts/poppins/Poppins-Regular.ttf');
  6. }
  7. @font-face {
  8. font-family: Poppins-Medium;
  9. src: url('../fonts/poppins/Poppins-Medium.ttf');
  10. }
  11. @font-face {
  12. font-family: Poppins-Bold;
  13. src: url('../fonts/poppins/Poppins-Bold.ttf');
  14. }
  15. /*//////////////////////////////////////////////////////////////////
  16. [ RESTYLE TAG ]*/
  17. * {
  18. margin: 0px;
  19. padding: 0px;
  20. box-sizing: border-box;
  21. }
  22. body, html {
  23. height: 100%;
  24. font-family: Poppins-Regular, sans-serif;
  25. }
  26. /*---------------------------------------------*/
  27. a {
  28. font-family: Poppins-Regular;
  29. font-size: 14px;
  30. line-height: 1.7;
  31. color: #666666;
  32. margin: 0px;
  33. transition: all 0.4s;
  34. -webkit-transition: all 0.4s;
  35. -o-transition: all 0.4s;
  36. -moz-transition: all 0.4s;
  37. }
  38. a:focus {
  39. outline: none !important;
  40. }
  41. a:hover {
  42. text-decoration: none;
  43. color: #57b846;
  44. }
  45. /*---------------------------------------------*/
  46. h1,h2,h3,h4,h5,h6 {
  47. margin: 0px;
  48. }
  49. p {
  50. font-family: Poppins-Regular;
  51. font-size: 14px;
  52. line-height: 1.7;
  53. color: #666666;
  54. margin: 0px;
  55. }
  56. ul, li {
  57. margin: 0px;
  58. list-style-type: none;
  59. }
  60. /*---------------------------------------------*/
  61. input {
  62. outline: none;
  63. border: none;
  64. }
  65. textarea {
  66. outline: none;
  67. border: none;
  68. }
  69. textarea:focus, input:focus {
  70. border-color: transparent !important;
  71. }
  72. input::-webkit-input-placeholder { color: rgba(255,255,255,0.8);}
  73. input:-moz-placeholder { color: rgba(255,255,255,0.8);}
  74. input::-moz-placeholder { color: rgba(255,255,255,0.8);}
  75. input:-ms-input-placeholder { color: rgba(255,255,255,0.8);}
  76. textarea::-webkit-input-placeholder { color: rgba(255,255,255,0.8);}
  77. textarea:-moz-placeholder { color: rgba(255,255,255,0.8);}
  78. textarea::-moz-placeholder { color: rgba(255,255,255,0.8);}
  79. textarea:-ms-input-placeholder { color: rgba(255,255,255,0.8);}
  80. /*---------------------------------------------*/
  81. button {
  82. outline: none !important;
  83. border: none;
  84. background: transparent;
  85. }
  86. button:hover {
  87. cursor: pointer;
  88. }
  89. iframe {
  90. border: none !important;
  91. }
  92. .header_area{
  93. background-color: gary;
  94. }
  95. /*//////////////////////////////////////////////////////////////////
  96. [ Contact 2 ]*/
  97. .bg-contact3 {
  98. width: 100%;
  99. background-repeat: no-repeat;
  100. background-position: center center;
  101. background-size: cover;
  102. }
  103. .container-contact3 {
  104. width: 100%;
  105. min-height: 100vh;
  106. display: -webkit-box;
  107. display: -webkit-flex;
  108. display: -moz-box;
  109. display: -ms-flexbox;
  110. display: flex;
  111. flex-wrap: wrap;
  112. justify-content: center;
  113. align-items: center;
  114. padding: 15px;
  115. background: rgba(255,255,255,0);
  116. }
  117. .wrap-contact3 {
  118. width: 900px;
  119. background: #adc7e4;
  120. background: -webkit-linear-gradient(45deg, #343a40, #343a40);
  121. background: -o-linear-gradient(45deg, #343a40, #343a40);
  122. background: -moz-linear-gradient(45deg, #343a40, #343a40);
  123. background: linear-gradient(45deg, #343a40, #343a40);
  124. border-radius: 10px;
  125. overflow: hidden;
  126. padding: 72px 55px 65px 55px;
  127. }
  128. /*------------------------------------------------------------------
  129. [ ]*/
  130. .contact3-form {
  131. width: 100%;
  132. }
  133. .contact3-form-title {
  134. display: block;
  135. font-family: Poppins-Bold;
  136. font-size: 39px;
  137. color: #fff;
  138. line-height: 1.2;
  139. text-align: center;
  140. text-transform: uppercase;
  141. padding-bottom: 70px;
  142. }
  143. /*------------------------------------------------------------------
  144. [ ]*/
  145. .wrap-input3 {
  146. width: 70%;
  147. position: relative;
  148. display: flex;
  149. border-bottom: 2px solid rgba(255,255,255,0.24);
  150. margin-bottom: 27px;
  151. margin-left: 100px;
  152. }
  153. .input3 {
  154. display: block;
  155. width: 100%;
  156. background: transparent;
  157. font-family: Poppins-Regular;
  158. font-size: 18px;
  159. color: #fff;
  160. line-height: 1.2;
  161. }
  162. .focus-input3 {
  163. position: absolute;
  164. display: inline-block;
  165. width: 100%;
  166. height: 100%;
  167. top: 0;
  168. left: 0;
  169. pointer-events: none;
  170. }
  171. .focus-input3::before {
  172. content: "";
  173. display: block;
  174. position: absolute;
  175. bottom: -2px;
  176. left: 0;
  177. width: 0;
  178. height: 2px;
  179. -webkit-transition: all 0.4s;
  180. -o-transition: all 0.4s;
  181. -moz-transition: all 0.4s;
  182. transition: all 0.4s;
  183. background: #fff;
  184. }
  185. /*---------------------------------------------*/
  186. input.input3 {
  187. height: 20px;
  188. }
  189. textarea.input3 {
  190. min-height: 115px;
  191. padding-top: 13px;
  192. padding-bottom: 13px;
  193. }
  194. .input3:focus + .focus-input3::before {
  195. width: 100%;
  196. }
  197. .has-val.input3 + .focus-input3::before {
  198. width: 100%;
  199. }
  200. /*------------------------------------------------------------------
  201. [ ]*/
  202. .container-contact3-form-btn {
  203. padding-top: 23px;
  204. margin-left: 70px;
  205. }
  206. .contact3-form-btn {
  207. font-family: Poppins-Medium;
  208. font-size: 16px;
  209. color: #555555;
  210. line-height: 1.2;
  211. text-transform: uppercase;
  212. display: -webkit-box;
  213. display: -webkit-flex;
  214. display: -moz-box;
  215. display: -ms-flexbox;
  216. display: inline-block;
  217. justify-content: center;
  218. align-items: center;
  219. padding: 0 50px;
  220. min-width: 120px;
  221. margin-left: 10%;
  222. height: 50px;
  223. border-radius: 2px;
  224. position: relative;
  225. z-index: 1;
  226. background: #fff;
  227. background: -webkit-linear-gradient(45deg, #f89d13, #f89d13);
  228. background: -o-linear-gradient(45deg, #f89d13, #f89d13);
  229. background: -moz-linear-gradient(45deg, #56ab2f, #a8e063);
  230. background: linear-gradient(45deg, #f89d13, #f89d13);
  231. -webkit-transition: all 0.4s;
  232. -o-transition: all 0.4s;
  233. -moz-transition: all 0.4s;
  234. transition: all 0.4s;
  235. }
  236. .contact3-form-btn::before{
  237. content: "";
  238. display: block;
  239. position: absolute;
  240. z-index: -1;
  241. border-radius: 2px;
  242. width: 100%;
  243. height: 100%;
  244. top: 0;
  245. left: 0;
  246. background: #fff;
  247. opacity: 1;
  248. -webkit-transition: all 0.4s;
  249. -o-transition: all 0.4s;
  250. -moz-transition: all 0.4s;
  251. transition: all 0.4s;
  252. }
  253. .contact3-form-btn:hover {
  254. color: #fff;
  255. }
  256. .contact3-form-btn:hover:before {
  257. opacity: 0;
  258. }
  259. /*------------------------------------------------------------------
  260. [ Responsive ]*/
  261. @media (max-width: 576px) {
  262. .wrap-contact3 {
  263. padding: 72px 15px 65px 15px;
  264. }
  265. }
  266. /*------------------------------------------------------------------
  267. [ Alert validate ]*/
  268. .validate-input {
  269. position: relative;
  270. }
  271. .alert-validate::before {
  272. content: attr(data-validate);
  273. position: absolute;
  274. max-width: 70%;
  275. background-color: #fff;
  276. border: 1px solid #c80000;
  277. border-radius: 2px;
  278. padding: 4px 25px 4px 10px;
  279. top: 50%;
  280. -webkit-transform: translateY(-50%);
  281. -moz-transform: translateY(-50%);
  282. -ms-transform: translateY(-50%);
  283. -o-transform: translateY(-50%);
  284. transform: translateY(-50%);
  285. right: 0px;
  286. pointer-events: none;
  287. font-family: Poppins-Regular;
  288. color: #c80000;
  289. font-size: 13px;
  290. line-height: 1.4;
  291. text-align: left;
  292. visibility: hidden;
  293. opacity: 0;
  294. -webkit-transition: opacity 0.4s;
  295. -o-transition: opacity 0.4s;
  296. -moz-transition: opacity 0.4s;
  297. transition: opacity 0.4s;
  298. }
  299. .alert-validate::after {
  300. content: "\f12a";
  301. font-family: FontAwesome;
  302. display: block;
  303. position: absolute;
  304. color: #c80000;
  305. font-size: 16px;
  306. top: 50%;
  307. -webkit-transform: translateY(-50%);
  308. -moz-transform: translateY(-50%);
  309. -ms-transform: translateY(-50%);
  310. -o-transform: translateY(-50%);
  311. transform: translateY(-50%);
  312. right: 8px;
  313. }
  314. .alert-validate:hover:before {
  315. visibility: visible;
  316. opacity: 1;
  317. }
  318. @media (max-width: 992px) {
  319. .alert-validate::before {
  320. visibility: visible;
  321. opacity: 1;
  322. }
  323. }
  324. /*------------------------------------------------------------------
  325. [ Alert info ]*/
  326. .show-info::before {
  327. content: attr(info-bulle);
  328. position: relative;
  329. max-width: 70%;
  330. margin-left: 270px;
  331. background-color: #fff;
  332. border: 1px solid #f89d13;
  333. border-radius: 2px;
  334. padding: 4px 25px 4px 40px;
  335. top: 40px;
  336. -webkit-transform: translateY(-50%);
  337. -moz-transform: translateY(-50%);
  338. -ms-transform: translateY(-50%);
  339. -o-transform: translateY(-50%);
  340. transform: translateY(-50%);
  341. right: 8px;
  342. pointer-events: none;
  343. font-family: Poppins-Regular;
  344. color: #f89d13;
  345. font-size: 18px;
  346. line-height: 1;
  347. text-align: left;
  348. visibility: hidden;
  349. opacity: 0;
  350. display: block;
  351. -webkit-transition: opacity 0.4s;
  352. -o-transition: opacity 0.4s;
  353. -moz-transition: opacity 0.4s;
  354. transition: opacity 0.4s;
  355. }
  356. .show-info::after {
  357. content: "\f05a";
  358. font-family: FontAwesome;
  359. display: block;
  360. position: relative;
  361. margin-left: 270px;
  362. /*margin-top: -23px;*/
  363. color: #f89d13;
  364. font-size: 20px;
  365. bottom: 24px;
  366. -webkit-transform: translateY(-50%);
  367. -moz-transform: translateY(-50%);
  368. -ms-transform: translateY(-50%);
  369. -o-transform: translateY(-50%);
  370. transform: translateY(-50%);
  371. /*right: 10px;*/
  372. }
  373. .show-info:hover:before {
  374. visibility: visible;
  375. opacity: 1;
  376. }
  377. /*@media (max-width: 992px) {
  378. .alert-info::before {
  379. visibility: visible;
  380. opacity: 1;
  381. }*/
  382. }
  383. /*==================================================================
  384. [ Restyle Radio ]*/
  385. .wrap-contact3-form-radio {
  386. display: -webkit-box;
  387. display: -webkit-flex;
  388. display: -moz-box;
  389. display: -ms-flexbox;
  390. display: flex;
  391. flex-wrap: wrap;
  392. padding-bottom: 37px;
  393. }
  394. .input-radio3 {
  395. display: none;
  396. }
  397. .label-radio3 {
  398. display: block;
  399. position: relative;
  400. padding-left: 28px;
  401. cursor: pointer;
  402. font-family: Poppins-Medium;
  403. font-size: 20px;
  404. color: #fff;
  405. line-height: 1.2;
  406. }
  407. .label-title {
  408. display: block;
  409. position: relative;
  410. padding-left: 0px;
  411. font-family: Poppins-Medium;
  412. font-size: 30px;
  413. color: #fff;
  414. line-height: 1.2;
  415. text-align: center;
  416. }
  417. .label-parameters {
  418. display: inline-block;
  419. position: relative;
  420. cursor: pointer;
  421. font-family: Poppins-Medium;
  422. font-size: 20px;
  423. color: #fff;
  424. line-height: 1.2;
  425. margin-right: 50px;
  426. }
  427. .label-parameters2 {
  428. display: block;
  429. position: relative;
  430. padding-left: 35px;
  431. margin-bottom: 12px;
  432. cursor: pointer;
  433. color: #fff;
  434. line-height: 1.2;
  435. font-family: Poppins-Medium;
  436. font-size: 20px;
  437. -webkit-user-select: none;
  438. -moz-user-select: none;
  439. -ms-user-select: none;
  440. user-select: none;
  441. }
  442. .label-parameters2 input {
  443. position: absolute;
  444. opacity: 0;
  445. cursor: pointer;
  446. height: 0;
  447. width: 0;
  448. }
  449. .checkmark {
  450. position: absolute;
  451. margin-bottom: 12px;
  452. top: 0;
  453. left: 0;
  454. height: 25px;
  455. width: 25px;
  456. background-color: #eee;
  457. }
  458. .checks{
  459. line-height: 1;
  460. margin-left: 50px;
  461. display: inline-block;
  462. }
  463. /* On mouse-over, add a grey background color */
  464. .label-parameters2:hover input ~ .checkmark {
  465. background-color: #ccc;
  466. }
  467. /* When the checkbox is checked, add a blue background */
  468. .label-parameters2 input:checked ~ .checkmark {
  469. background-color: #f89d13;
  470. }
  471. /* Create the checkmark/indicator (hidden when not checked) */
  472. .checkmark:after {
  473. content: "";
  474. position: absolute;
  475. display: none;
  476. }
  477. /* Show the checkmark when checked */
  478. .label-parameters2 input:checked ~ .checkmark:after {
  479. display: block;
  480. }
  481. /* Style the checkmark/indicator */
  482. .label-parameters2 .checkmark:after {
  483. left: 9px;
  484. top: 5px;
  485. width: 5px;
  486. height: 10px;
  487. border: solid white;
  488. border-width: 0 3px 3px 0;
  489. -webkit-transform: rotate(45deg);
  490. -ms-transform: rotate(45deg);
  491. transform: rotate(45deg);
  492. }
  493. .label-radio3::before {
  494. content: "";
  495. display: block;
  496. position: absolute;
  497. width: 20px;
  498. height: 20px;
  499. border-radius: 50%;
  500. border: 2px solid rgba(255,255,255,0.5);
  501. background: rgba(0,0,0,0.1);
  502. left: 0;
  503. top: 50%;
  504. -webkit-transform: translateY(-50%);
  505. -moz-transform: translateY(-50%);
  506. -ms-transform: translateY(-50%);
  507. -o-transform: translateY(-50%);
  508. transform: translateY(-50%);
  509. }
  510. .label-radio3::after {
  511. content: "";
  512. display: block;
  513. position: absolute;
  514. width: 20px;
  515. height: 20px;
  516. border-radius: 50%;
  517. border: 6px solid transparent;
  518. background: rgba(255,255,255,0.5);
  519. -moz-background-clip: padding;
  520. -webkit-background-clip: padding;
  521. background-clip: padding-box;
  522. left: 0;
  523. top: 50%;
  524. -webkit-transform: translateY(-50%);
  525. -moz-transform: translateY(-50%);
  526. -ms-transform: translateY(-50%);
  527. -o-transform: translateY(-50%);
  528. transform: translateY(-50%);
  529. display: none;
  530. }
  531. .input-radio3:checked + .label-radio3::after {
  532. display: block;
  533. }
  534. /*==================================================================
  535. [ Input3 select ]*/
  536. .input3-select {
  537. display: inline-block;
  538. }
  539. /*//////////////////////////////////////////////////////////////////
  540. [ Restyle Select2 ]*/
  541. .select2-container {
  542. display: block;
  543. max-width: 100% !important;
  544. width: auto !important;
  545. }
  546. .select2-container .select2-selection--single {
  547. display: -webkit-box;
  548. display: -webkit-flex;
  549. display: -moz-box;
  550. display: -ms-flexbox;
  551. display: flex;
  552. align-items: center;
  553. background-color: transparent;
  554. border: none;
  555. height: 45px;
  556. outline: none;
  557. position: relative;
  558. }
  559. /* in select */
  560. .select2-container .select2-selection--single .select2-selection__rendered {
  561. font-family: Poppins-Regular;
  562. font-size: 15px;
  563. color: #fff;
  564. line-height: 1.2;
  565. padding-left: 5px ;
  566. background-color: transparent;
  567. }
  568. .select2-container--default .select2-selection--single .select2-selection__arrow {
  569. height: 100%;
  570. top: 50%;
  571. transform: translateY(-50%);
  572. right: 10px;
  573. display: -webkit-box;
  574. display: -webkit-flex;
  575. display: -moz-box;
  576. display: -ms-flexbox;
  577. display: flex;
  578. flex-direction: column;
  579. align-items: center;
  580. justify-content: center;
  581. }
  582. .select2-selection__arrow b {
  583. display: none;
  584. }
  585. .select2-selection__arrow::before {
  586. content: '';
  587. display: block;
  588. border-right: 5px solid transparent;
  589. border-left: 5px solid transparent;
  590. border-bottom: 5px solid #e6e6e6;
  591. margin-bottom: 2px;
  592. }
  593. .select2-selection__arrow::after {
  594. content: '';
  595. display: block;
  596. border-right: 5px solid transparent;
  597. border-left: 5px solid transparent;
  598. border-top: 5px solid #e6e6e6;
  599. }
  600. /* dropdown option */
  601. .select2-container--open .select2-dropdown {
  602. z-index: 1251;
  603. border: 1px solid #fff;
  604. border-radius: 0px;
  605. background-color: white;
  606. }
  607. .select2-container .select2-results__option[aria-selected] {
  608. padding-top: 10px;
  609. padding-bottom: 10px;
  610. }
  611. .select2-container .select2-results__option[aria-selected="true"] {
  612. background: #f89d13;
  613. background: -webkit-linear-gradient(45deg, #f89d13, #f89d13);
  614. background: -o-linear-gradient(45deg, #f89d13, #f89d13);
  615. background: -moz-linear-gradient(45deg, #56ab2f, #a8e063);
  616. background: linear-gradient(45deg, #f89d13, #f89d13);
  617. color: white;
  618. }
  619. .select2-container .select2-results__option--highlighted[aria-selected] {
  620. background: #f89d13;
  621. background: -webkit-linear-gradient(45deg, #f89d13, #f89d13);
  622. background: -o-linear-gradient(45deg, #f89d13, #f89d13);
  623. background: -moz-linear-gradient(45deg, #56ab2f, #a8e063);
  624. background: linear-gradient(45deg, #f89d13, #f89d13);
  625. color: white;
  626. }
  627. .select2-results__options {
  628. font-family: Poppins-Regular;
  629. font-size: 15px;
  630. color: #555555;
  631. line-height: 1.2;
  632. }
  633. .select2-search--dropdown .select2-search__field {
  634. border: 1px solid #aaa;
  635. outline: none;
  636. font-family: Poppins-Regular;
  637. font-size: 15px;
  638. color: #555555;
  639. line-height: 1.2;
  640. }
  641. /*added*/
  642. .label-ligne{
  643. display: flex;
  644. }