diff --git a/public/raffles/assets/css/style.css b/public/raffles/assets/css/style.css index 03182bb..ad470ea 100644 --- a/public/raffles/assets/css/style.css +++ b/public/raffles/assets/css/style.css @@ -20,6 +20,8 @@ } .bibhuti{ font-family: 'pacifico', cursive; + font-weight: bold; + font-size: 16px; } /* @font-face { @@ -611,6 +613,15 @@ z-index: 10000; box-shadow: 0 5px 15px rgba(128, 128, 128, 0.377); transition: .3s all ease-in-out; } +.col.col-md-3:nth-child(1) .course-box img, .col.col-md-3:nth-child(2) .course-box img{ + width: 100%; +} + .col.col-md-3:nth-child(4) .course-box img { + width: 125px; +} + .col.col-md-3:nth-child(4) .course-box img { + width: 120px; +} .how-it-work input, .how-it-work textarea { border: 1px solid #E3E3E3; @@ -1190,6 +1201,15 @@ font-weight: bold; padding: 40px 0; } +.numbering{ + background-color: white; + padding: 0px 20px; + border-radius: 100%; + font-size: 32px; + color: #CE171F; + font-weight: 400; + margin: 0; +} .free-resources-content .first-row{ border: 1px solid #E5E5E5; display: flex; @@ -1294,6 +1314,38 @@ margin: 10px 0; display: none; } +.tab-container .title-small{ + font-size: 20px; + font-weight: 600; + padding-bottom: 10px; + + color: black; +} +.tab-container .para{ + font-size: 16px; + font-weight: 400; + padding-bottom: 10px; + color: black; + +} +.tab-container .paraa{ + color: black; +} +.tab-container .para-slant{ + font-size: 16px; + font-weight: 400; + padding-bottom: 10px; + color: black; + font-style: italic; +} +.tab-container ul.list-disc li{ + list-style: disc; + +} +.tab-container ol.list-alpha li{ + list-style: lower-alpha; + +} .tab-content.active { display: block; } @@ -2542,6 +2594,11 @@ border-collapse: separate; position: relative; z-index: 2; } +.cost-select{ + border-radius: 30px; + border: 1px solid rgb(190, 189, 189); +} + canvas { position: absolute; top: 0; left: 0; z-index: 1; pointer-events: auto; } @@ -2941,6 +2998,9 @@ justify-content: space-between; gap: 0.5rem; } +.service-items .service-item.country:nth-child(1){ + background-color: rgba(110, 127, 153, 0.15); +} .service-item { cursor: pointer; border-radius: 0.75rem; @@ -3437,6 +3497,22 @@ justify-content: space-between; } } +.tabs-table{ + border: 1px solid gray; + padding: 20px; +} +.tabs-table td{ + border-right: 1px solid gray; + padding: 10px; +} +.tabs-table thead td{ + font-weight: bold; + font-size: 16px; +} +.tabs-table tbody td{ + font-weight: 400; + font-size: 14px; +} diff --git a/public/raffles/assets/css/utility.min.css b/public/raffles/assets/css/utility.min.css index b1fdbe1..1ec52e0 100644 --- a/public/raffles/assets/css/utility.min.css +++ b/public/raffles/assets/css/utility.min.css @@ -7519,6 +7519,9 @@ .object-cover { object-fit: cover; } +.object-contain { + object-fit: contain; +} .objpos-center { object-position: center; } diff --git a/public/raffles/assets/images/general/our-partner-img.png b/public/raffles/assets/images/general/our-partner-img.png index 3dca53d..daa41c6 100644 Binary files a/public/raffles/assets/images/general/our-partner-img.png and b/public/raffles/assets/images/general/our-partner-img.png differ diff --git a/public/raffles/assets/js/style.js b/public/raffles/assets/js/style.js index 4b146ff..a2a8da3 100644 --- a/public/raffles/assets/js/style.js +++ b/public/raffles/assets/js/style.js @@ -743,6 +743,7 @@ doneBtn.addEventListener("click", () => { } }); + // Final monkey image // document.addEventListener("DOMContentLoaded", function () { diff --git a/resources/views/client/raffles/layouts/app.blade.php b/resources/views/client/raffles/layouts/app.blade.php index 08be1e9..424b53d 100644 --- a/resources/views/client/raffles/layouts/app.blade.php +++ b/resources/views/client/raffles/layouts/app.blade.php @@ -604,16 +604,19 @@ }); diff --git a/resources/views/client/raffles/layouts/partials/footer.blade.php b/resources/views/client/raffles/layouts/partials/footer.blade.php index 96d81b5..2cea3b9 100644 --- a/resources/views/client/raffles/layouts/partials/footer.blade.php +++ b/resources/views/client/raffles/layouts/partials/footer.blade.php @@ -51,21 +51,14 @@
-
+ {{--

Subscribe for Newsletter

-
+
--}}
- -
- - -
- -
diff --git a/resources/views/client/raffles/layouts/partials/header.blade.php b/resources/views/client/raffles/layouts/partials/header.blade.php index 1410443..0d7ef73 100644 --- a/resources/views/client/raffles/layouts/partials/header.blade.php +++ b/resources/views/client/raffles/layouts/partials/header.blade.php @@ -43,7 +43,7 @@
@foreach ($countries as $country) + class="service-item country">
diff --git a/resources/views/client/raffles/pages/about-us-template.blade.php b/resources/views/client/raffles/pages/about-us-template.blade.php index a5d1ccd..a6fefa2 100644 --- a/resources/views/client/raffles/pages/about-us-template.blade.php +++ b/resources/views/client/raffles/pages/about-us-template.blade.php @@ -237,14 +237,14 @@
-

{{ $fifthPage->title }}

+

{{ $fifthPage->title }}

@foreach ($fifthPage->custom as $child)
-

{{ $child['icon'] ?? '' }} +

{{ $child['icon'] ?? '' }}

{{ $child['key'] ?? '' }}

diff --git a/resources/views/client/raffles/pages/cost-calculator.blade.php b/resources/views/client/raffles/pages/cost-calculator.blade.php index 5ed23df..260f76e 100644 --- a/resources/views/client/raffles/pages/cost-calculator.blade.php +++ b/resources/views/client/raffles/pages/cost-calculator.blade.php @@ -132,7 +132,7 @@
-
+
@@ -228,7 +228,7 @@
@foreach ($programss as $key => $program) - diff --git a/resources/views/client/raffles/pages/coursefinder-template.blade.php b/resources/views/client/raffles/pages/coursefinder-template.blade.php index a463857..fc75a43 100644 --- a/resources/views/client/raffles/pages/coursefinder-template.blade.php +++ b/resources/views/client/raffles/pages/coursefinder-template.blade.php @@ -96,7 +96,7 @@
-
diff --git a/resources/views/client/raffles/pages/resources-template.blade.php b/resources/views/client/raffles/pages/resources-template.blade.php index e897bb9..4d348dc 100644 --- a/resources/views/client/raffles/pages/resources-template.blade.php +++ b/resources/views/client/raffles/pages/resources-template.blade.php @@ -37,7 +37,7 @@ aria-labelledby="heading-question-1"> @foreach ($countries as $country) -

{{ $country->title }}

diff --git a/resources/views/client/raffles/pages/study-destination-template.blade.php b/resources/views/client/raffles/pages/study-destination-template.blade.php index 6073776..d2cfcd4 100644 --- a/resources/views/client/raffles/pages/study-destination-template.blade.php +++ b/resources/views/client/raffles/pages/study-destination-template.blade.php @@ -21,7 +21,8 @@
  • - +

    1

    + {{-- --}}
    {{ $child->title }}
  • @@ -172,6 +173,115 @@
    + + +
    +
    +

    1. What is the average tuition, living, and + health insurance cost in the USA?

    +

    Bachelors: Tuition: $15,000–$35,000 + / year

    +

    Bachelors: Tuition: $15,000–$35,000 + / year

    +

    Living: $8,000–$12,000/year | Health Insurance: + $1,000–$2,000 / year

    +
    +
    +

    2. What types of scholarships are available? +

    +
      +
    • Merit-based: Based on academic + scores or test results
    • +
    • Merit-based: Based on academic + scores or test results
    • +
    • Merit-based:Based on academic scores or test + results
    • +
    + + +
    +
    +

    3. What types of scholarships are available? +

    + +
      +
    1. Merit-based: Based on academic + scores or test results
    2. +
    3. Merit-based: Based on academic + scores or test results
    4. +
    5. Merit-based:Based on academic scores or test + results
    6. +
    + +
    +
    +

    4. What types of scholarships are available? +

    + +
      +
    1. Merit-based: Based on + academic + scores or test results
    2. +
    3. Merit-based: Based on academic + scores or test results
    4. +
    5. Merit-based:Based on academic scores or test + results
    6. +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    UniversitiesAnnual Tuition Fee + (Non-Eu/EEA) + in Euro & Approximate in NPRScholarships Available
    + University Of Copenhagen(UCPH) + + €10,000 – €17,000 OR + NPR 1,350,000 – 2,295,000 + + + Danish Government Scholarship (offered by the university + on behalf of the Danish Ministry) + +
    + University Of Copenhagen(UCPH) + + €10,000 – €17,000 OR + NPR 1,350,000 – 2,295,000 + + + Danish Government Scholarship (offered by the university + on behalf of the Danish Ministry) + +
    + +
    + +
    + +
    diff --git a/resources/views/client/raffles/pages/test-single-template.blade.php b/resources/views/client/raffles/pages/test-single-template.blade.php index 94f3ce8..6d1f40c 100644 --- a/resources/views/client/raffles/pages/test-single-template.blade.php +++ b/resources/views/client/raffles/pages/test-single-template.blade.php @@ -21,7 +21,8 @@
  • - +

    1

    + {{-- --}}
    {{ $child->title }}
  • diff --git a/resources/views/client/raffles/parts/achievements.blade.php b/resources/views/client/raffles/parts/achievements.blade.php index 1f8263f..7a726f2 100644 --- a/resources/views/client/raffles/parts/achievements.blade.php +++ b/resources/views/client/raffles/parts/achievements.blade.php @@ -5,7 +5,7 @@ $last_word = array_pop($words); $new_title = implode(' ', $words); @endphp -
    +
    diff --git a/resources/views/client/raffles/parts/banner.blade.php b/resources/views/client/raffles/parts/banner.blade.php index 1f078c4..48ed81c 100644 --- a/resources/views/client/raffles/parts/banner.blade.php +++ b/resources/views/client/raffles/parts/banner.blade.php @@ -1,5 +1,5 @@
    -